-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproducts.html
More file actions
644 lines (606 loc) · 29.6 KB
/
Copy pathproducts.html
File metadata and controls
644 lines (606 loc) · 29.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShareConnect Products - Explore All Connectors</title>
<meta name="description" content="Discover all ShareConnect connectors for torrent clients, media servers, cloud storage, and download managers. Detailed product information and features.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Theme Toggle -->
<button id="theme-toggle" class="theme-toggle" aria-label="Toggle theme">
<i class="fas fa-moon"></i>
<i class="fas fa-sun"></i>
</button>
<!-- Mobile Menu Overlay -->
<div class="mobile-menu-overlay"></div>
<!-- Header -->
<header class="header">
<nav class="nav">
<div class="nav-container">
<a href="index.html" class="logo">
<div class="logo-icon">
<img src="assets/logo.jpeg" alt="ShareConnect Logo" class="logo-image">
</div>
<span>ShareConnect</span>
</a>
<div class="nav-menu">
<a href="index.html" class="nav-link">Home</a>
<a href="#torrent" class="nav-link">Torrent</a>
<a href="#media" class="nav-link">Media</a>
<a href="#download" class="nav-link">Download</a>
<a href="#cloud" class="nav-link">Cloud</a>
<a href="manuals.html" class="nav-link">Manuals</a>
<a href="https://github.com/yourusername/ShareConnect" class="nav-link github">
<i class="fab fa-github"></i>
GitHub
</a>
</div>
<!-- Mobile Menu -->
<div class="nav-menu mobile">
<a href="index.html" class="nav-link">Home</a>
<a href="#torrent" class="nav-link">Torrent</a>
<a href="#media" class="nav-link">Media</a>
<a href="#download" class="nav-link">Download</a>
<a href="#cloud" class="nav-link">Cloud</a>
<a href="manuals.html" class="nav-link">Manuals</a>
<a href="https://github.com/yourusername/ShareConnect" class="nav-link github">
<i class="fab fa-github"></i>
GitHub
</a>
</div>
<button class="mobile-menu-toggle" aria-label="Toggle menu">
<i class="fas fa-bars"></i>
</button>
</div>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-container">
<div class="hero-content">
<div class="hero-badge"> <span class="badge-text">Professional Video Courses Available</span> </div>
<h1 class="hero-title">
All Our
<span class="gradient-text">Service Connections</span>
</h1>
<p class="hero-subtitle">
Browse all 20+ ShareConnect services designed to work with your favorite apps. Each connection is optimized for fast, reliable media sharing.
</p>
<div class="hero-stats">
<div class="stat">
<div class="stat-number">20+</div>
<div class="stat-label">Connectors</div>
</div>
<div class="stat">
<div class="stat-number">1800+</div>
<div class="stat-label">Sites Supported</div>
</div>
<div class="stat">
<div class="stat-number">100%</div>
<div class="stat-label">Test Coverage</div>
</div>
</div>
</div>
</div>
</section>
<!-- Torrent Connectors -->
<section id="torrent" class="products-section">
<div class="container">
<div class="section-header">
<h2>Torrent Clients</h2>
<p>Start torrent downloads instantly from any app</p>
</div>
<div class="products-grid">
<a href="qbitconnect.html" class="product-card-link">
<div class="product-card">
<div class="product-header">
<div class="product-icon torrent">
<i class="fas fa-magnet"></i>
</div>
<h3>qBittorrent Connect</h3>
</div>
<p class="product-description">
Send torrent links directly to qBittorrent. Start downloads instantly with full queue management and automatic file organization.
</p>
<div class="product-features">
<span class="feature-tag">RSS Support</span>
<span class="feature-tag">Search Plugins</span>
<span class="feature-tag">Web UI</span>
<span class="feature-tag">Categories</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
</a>
<a href="transmissionconnect.html" class="product-card-link">
<div class="product-card">
<div class="product-header">
<div class="product-icon torrent">
<i class="fas fa-bolt"></i>
</div>
<h3>Transmission Connect</h3>
</div>
<p class="product-description">
Connect to Transmission for fast, reliable torrent downloads. Perfect for servers and low-resource devices.
</p>
<div class="product-features">
<span class="feature-tag">Lightweight</span>
<span class="feature-tag">Headless</span>
<span class="feature-tag">Watch Directory</span>
<span class="feature-tag">RPC API</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
</a>
<div class="product-card">
<div class="product-header">
<div class="product-icon torrent">
<i class="fas fa-cloud-download-alt"></i>
</div>
<h3>uTorrent Connect</h3>
</div>
<p class="product-description">
Use uTorrent with advanced features like bandwidth control and remote access. Perfect for power users.
</p>
<div class="product-features">
<span class="feature-tag">Queue Management</span>
<span class="feature-tag">Bandwidth Control</span>
<span class="feature-tag">Remote Access</span>
<span class="feature-tag">Labels</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
</div>
</div>
</section>
<!-- Media Servers -->
<section id="media" class="products-section">
<div class="container">
<div class="section-header">
<h2>Media Servers</h2>
<p>Add content to your streaming libraries with one tap</p>
</div>
<div class="products-grid">
<a href="plexconnect.html" class="product-card-link">
<div class="product-card">
<div class="product-header">
<div class="product-icon media">
<i class="fas fa-tv"></i>
</div>
<h3>Plex Connect</h3>
</div>
<p class="product-description">
Add content to your Plex library instantly. Supports all your media types with automatic organization.
</p>
<div class="product-features">
<span class="feature-tag">Transcoding</span>
<span class="feature-tag">Libraries</span>
<span class="feature-tag">Playlists</span>
<span class="feature-tag">Remote Access</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
</a>
<a href="jellyfinconnect.html" class="product-card-link">
<div class="product-card">
<div class="product-header">
<div class="product-icon media">
<i class="fas fa-film"></i>
</div>
<h3>Jellyfin Connect</h3>
</div>
<p class="product-description">
Connect to Jellyfin for free media streaming. Hardware acceleration and plugin support included.
</p>
<div class="product-features">
<span class="feature-tag">Open Source</span>
<span class="feature-tag">Hardware Acceleration</span>
<span class="feature-tag">Plugins</span>
<span class="feature-tag">Free</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon media">
<i class="fas fa-play-circle"></i>
</div>
<h3>Emby Connect</h3>
</div>
<p class="product-description">
Use Emby with live TV and DVR features. Perfect for organizing your entire media collection.
</p>
<div class="product-features">
<span class="feature-tag">Live TV</span>
<span class="feature-tag">DVR</span>
<span class="feature-tag">Collections</span>
<span class="feature-tag">Mobile Sync</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
</div>
</div>
</section>
<!-- Download Managers -->
<section id="download" class="products-section">
<div class="container">
<div class="section-header">
<h2>Download Managers</h2>
<p>Download from 1800+ sites automatically</p>
</div>
<div class="products-grid">
<a href="jdownloaderconnect.html" class="product-card-link">
<div class="product-card">
<div class="product-header">
<div class="product-icon download">
<i class="fas fa-download"></i>
</div>
<h3>JDownloader Connect</h3>
</div>
<p class="product-description">
Download from premium sites with JDownloader. Supports batch downloads and automatic link checking.
</p>
<div class="product-features">
<span class="feature-tag">Premium Support</span>
<span class="feature-tag">Link Checking</span>
<span class="feature-tag">Batch Downloads</span>
<span class="feature-tag">CAPTCHA Solving</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
</a>
<div class="product-card">
<div class="product-header">
<div class="product-icon download">
<i class="fab fa-youtube"></i>
</div>
<h3>YT-DLP Connect</h3>
</div>
<p class="product-description">
Download videos from 1800+ sites including YouTube, TikTok, and Vimeo. Choose quality and format preferences.
</p>
<div class="product-features">
<span class="feature-tag">1800+ Sites</span>
<span class="feature-tag">Format Selection</span>
<span class="feature-tag">Subtitles</span>
<span class="feature-tag">Metadata</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon download">
<i class="fas fa-video"></i>
</div>
<h3>MeTube Connect</h3>
</div>
<p class="product-description">
Download YouTube videos with MeTube's web interface. Perfect for building personal video collections.
</p>
<div class="product-features">
<span class="feature-tag">YouTube Focused</span>
<span class="feature-tag">Web Interface</span>
<span class="feature-tag">Quality Selection</span>
<span class="feature-tag">Audio Extraction</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
</div>
</div>
</section>
<!-- Cloud Storage -->
<section id="cloud" class="products-section">
<div class="container">
<div class="section-header">
<h2>Cloud Storage</h2>
<p>Save files directly to your cloud accounts</p>
</div>
<div class="products-grid">
<div class="product-card">
<div class="product-header">
<div class="product-icon cloud">
<i class="fas fa-cloud"></i>
</div>
<h3>Nextcloud Connect</h3>
</div>
<p class="product-description">
Save files to your Nextcloud server. End-to-end encryption and collaborative editing included.
</p>
<div class="product-features">
<span class="feature-tag">Self-Hosted</span>
<span class="feature-tag">E2E Encryption</span>
<span class="feature-tag">Collaboration</span>
<span class="feature-tag">Versioning</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon cloud">
<i class="fas fa-lock"></i>
</div>
<h3>Seafile Connect</h3>
</div>
<p class="product-description">
Sync files securely with Seafile. AES-256 encryption and cross-platform support.
</p>
<div class="product-features">
<span class="feature-tag">AES-256</span>
<span class="feature-tag">Libraries</span>
<span class="feature-tag">Sync</span>
<span class="feature-tag">Cross-Platform</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon cloud">
<i class="fas fa-folder"></i>
</div>
<h3>FileBrowser Connect</h3>
</div>
<p class="product-description">
Manage files with FileBrowser's web interface. Drag-and-drop uploads and text editing included.
</p>
<div class="product-features">
<span class="feature-tag">Web Interface</span>
<span class="feature-tag">Drag & Drop</span>
<span class="feature-tag">Text Editor</span>
<span class="feature-tag">Commands</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
</div>
</div>
</section>
<!-- Specialized Services -->
<section id="specialized" class="products-section">
<div class="container">
<div class="section-header">
<h2>Specialized Tools</h2>
<p>Connect to messaging, sync, and other useful services</p>
</div>
<div class="products-grid">
<div class="product-card">
<div class="product-header">
<div class="product-icon specialized">
<i class="fas fa-sync"></i>
</div>
<h3>Syncthing Connect</h3>
</div>
<p class="product-description">
Sync files between devices with Syncthing. Real-time synchronization and version history.
</p>
<div class="product-features">
<span class="feature-tag">P2P</span>
<span class="feature-tag">Real-time</span>
<span class="feature-tag">Decentralized</span>
<span class="feature-tag">Versioning</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon specialized">
<i class="fas fa-comments"></i>
</div>
<h3>Matrix Connect</h3>
</div>
<p class="product-description">
Send secure messages with Matrix. End-to-end encryption and bridge support for other platforms.
</p>
<div class="product-features">
<span class="feature-tag">E2E Encrypted</span>
<span class="feature-tag">Decentralized</span>
<span class="feature-tag">Bridges</span>
<span class="feature-tag">Olm/Megolm</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon specialized">
<i class="fas fa-file-pdf"></i>
</div>
<h3>Paperless NG Connect</h3>
</div>
<p class="product-description">
Organize documents with Paperless NG. Automatic OCR, tagging, and full-text search.
</p>
<div class="product-features">
<span class="feature-tag">OCR</span>
<span class="feature-tag">Auto Tagging</span>
<span class="feature-tag">Full-text Search</span>
<span class="feature-tag">PDF Processing</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon specialized">
<i class="fas fa-database"></i>
</div>
<h3>Duplicati Connect</h3>
</div>
<p class="product-description">
Manage backups with Duplicati. Incremental backups with encryption and compression.
</p>
<div class="product-features">
<span class="feature-tag">Incremental</span>
<span class="feature-tag">Encrypted</span>
<span class="feature-tag">Compressed</span>
<span class="feature-tag">Multi-backend</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon specialized">
<i class="fas fa-shield-alt"></i>
</div>
<h3>WireGuard Connect</h3>
</div>
<p class="product-description">
Configure WireGuard VPN easily. QR code setup and multi-device management included.
</p>
<div class="product-features">
<span class="feature-tag">QR Codes</span>
<span class="feature-tag">Easy Setup</span>
<span class="feature-tag">Monitoring</span>
<span class="feature-tag">Multi-device</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon specialized">
<i class="fas fa-gamepad"></i>
</div>
<h3>Minecraft Server Connect</h3>
</div>
<p class="product-description">
Manage Minecraft servers remotely. Execute commands and monitor player activity.
</p>
<div class="product-features">
<span class="feature-tag">RCON</span>
<span class="feature-tag">Commands</span>
<span class="feature-tag">Player Mgmt</span>
<span class="feature-tag">Monitoring</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
<div class="product-card">
<div class="product-header">
<div class="product-icon specialized">
<i class="fas fa-file-word"></i>
</div>
<h3>OnlyOffice Connect</h3>
</div>
<p class="product-description">
Edit documents collaboratively with OnlyOffice. Real-time sync and version control included.
</p>
<div class="product-features">
<span class="feature-tag">Real-time</span>
<span class="feature-tag">Collaboration</span>
<span class="feature-tag">Office Suite</span>
<span class="feature-tag">Version Control</span>
</div>
<div class="product-status">
<span class="status-badge status-success">Production Ready</span>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta">
<div class="container">
<div class="cta-content">
<h2>Ready to Connect Your Services?</h2>
<p>Start using ShareConnect today and simplify your media sharing across all your favorite apps.</p>
<div class="cta-actions">
<a href="https://github.com/yourusername/ShareConnect" class="btn btn-primary btn-large">
<i class="fab fa-github"></i>
Download from GitHub
</a>
<a href="manuals.html" class="btn btn-outline btn-large">
<i class="fas fa-book"></i>
Read the Manuals
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<div class="footer-logo">
<div class="logo-icon">
<img src="assets/logo.jpeg" alt="ShareConnect Logo" class="logo-image">
</div>
<span>ShareConnect</span>
</div>
<p>Revolutionizing media sharing with intelligent connectors.</p>
</div>
<div class="footer-section">
<h4>Products</h4>
<ul>
<li><a href="#torrent">Torrent Connectors</a></li>
<li><a href="#media">Media Servers</a></li>
<li><a href="#download">Download Managers</a></li>
<li><a href="#cloud">Cloud Storage</a></li>
<li><a href="#specialized">Specialized Services</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Resources</h4>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="manuals.html">User Manuals</a></li>
<li><a href="https://github.com/yourusername/ShareConnect">GitHub</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Community</h4>
<ul>
<li><a href="#">Discord</a></li>
<li><a href="#">Contribute</a></li>
<li><a href="#">Bug Reports</a></li>
<li><a href="#">Feature Requests</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 ShareConnect. Built for the future of media sharing.</p>
</div>
</div>
</footer>
<!-- Toast Notifications -->
<div id="toast-container" class="toast-container"></div>
<script src="script.js"></script>
</body>
</html>