-
-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathindex.html
More file actions
996 lines (919 loc) · 58.7 KB
/
index.html
File metadata and controls
996 lines (919 loc) · 58.7 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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DockDoor - Free Alt+Tab and Native Dock Previews for Mac | Download Now</title>
<meta name="description"
content="DockDoor Free adds Alt+Tab switching and live previews to the native macOS Dock. Privacy-first, open-source window management. Download instantly!">
<meta name="keywords"
content="free mac app, alt tab mac, window switcher macOS, dock previews, mac productivity app, option tab, macOS window management, free productivity software, mac utilities, window switcher free, alt tab for mac, dock window preview, mac workflow, productivity tools mac, dockdoor pro separate product, dock replacement mac">
<meta property="og:title" content="DockDoor - Free Alt+Tab and Native Dock Previews for Mac">
<meta property="og:description"
content="Transform your Mac workflow with DockDoor's free Alt+Tab switcher & dock previews. Privacy-first, open-source window management. Download instantly!">
<meta property="og:type" content="website">
<meta property="og:url" content="https://dockdoor.net">
<meta property="og:image" content="/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-iOS-Default-512x512@1x.png">
<link rel="canonical" href="https://dockdoor.net">
<link rel="icon" href="/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-iOS-Default-512x512@1x.png">
<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&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "DockDoor",
"description": "Free Alt+Tab window switcher and native Dock previews for macOS. Privacy-first, open-source window management app.",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "macOS",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"author": {
"@type": "Organization",
"name": "DockDoor"
},
"downloadUrl": "https://github.com/ejbills/DockDoor/releases/latest/download/DockDoor.dmg",
"softwareVersion": "Latest",
"datePublished": "2024",
"keywords": "mac app, alt tab, window switcher, dock previews, productivity, macOS utilities",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5.0",
"ratingCount": "100+"
}
}
</script>
</head>
<body>
<!-- Header -->
<header id="header">
<div class="container header-container">
<a href="#home" class="logo">
<img src="/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-iOS-Default-512x512@1x.png" alt="DockDoor Logo">
<span class="logo-text" data-text="DockDoor">DockDoor</span>
</a>
<nav>
<ul class="nav-links">
<li><a href="#privacy" class="nav-link">Privacy</a></li>
<li><a href="#features" class="nav-link">Features</a></li>
<li><a href="#faq" class="nav-link">FAQ</a></li>
<li><a href="docs.html" class="nav-link">Docs</a></li>
<li><a href="donate.html" class="nav-link">Donate</a></li>
<li><a href="#free-vs-pro" class="nav-link">Free vs Pro</a></li>
</ul>
</nav>
<div class="header-actions">
<a href="#download" class="btn btn-primary">Download</a>
<button class="mobile-menu-btn" id="mobile-menu-btn" aria-label="Toggle mobile menu">☰</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero section" id="home">
<div class="container">
<div class="hero-content">
<div class="privacy-badge">
<img src="./resources/svg/heroShield.svg" alt="Shield icon" width="16" height="16">
<span>Privacy First • Community Funded</span>
</div>
<div class="privacy-highlights">
<span class="privacy-highlight">Native Performance</span>
<span class="privacy-highlight">Open Source</span>
</div>
<h1 class="hero-title">Previews and switching for the Dock you already use</h1>
<h2 class="hero-subtitle">DockDoor Free enhances the native macOS Dock with live previews, Alt+Tab switching, and keyboard window controls. It does not replace your Dock or collect your data.</h2>
<div class="hero-actions">
<a href="#download" class="btn btn-primary btn-large">Get It Now</a>
<a href="#features" class="btn btn-outline">See Features</a>
</div>
<p class="support-callout">🚀 Built by a solo developer.</p>
<div class="support-links">
<a href="donate.html" class="btn btn-coffee double-span">Support development</a>
<a href="https://discord.gg/TZeRs73hFb" class="btn btn-outline">Discord</a>
<a href="https://github.com/ejbills/DockDoor" class="btn btn-outline">GitHub</a>
</div>
</div>
<div class="hero-visual">
<div class="hero-image-container">
<img src="/resources/dockdoorHero.png" alt="DockDoor window management interface" class="hero-image">
</div>
</div>
<div class="from-dev-section">
<span class="from-dev-heading">From the same dev</span>
<div class="from-dev-cards">
<a href="https://pro.dockdoor.net" class="from-dev-card from-dev-featured" target="_blank" rel="noopener">
<div class="from-dev-featured-badge">Open Beta</div>
<img src="https://pro.dockdoor.net/_astro/dockdoor-icon.DNTkj7IN_GoFVN.webp" alt="DockDoor Pro" class="from-dev-icon">
<div class="from-dev-content">
<span class="from-dev-title">DockDoor Pro</span>
<span class="from-dev-description">Separate paid app; replaces the Dock</span>
</div>
<span class="from-dev-price">$20</span>
</a>
<a href="https://apps.apple.com/us/app/lookieloo-rock-your-notch/id6747730721?mt=12" class="from-dev-card" target="_blank">
<img src="https://lookielooapp.org/resources/icon.png" alt="LookieLoo" class="from-dev-icon">
<div class="from-dev-content">
<span class="from-dev-title">LookieLoo</span>
<span class="from-dev-description">Dynamic Island for Spotify on macOS</span>
</div>
<span class="from-dev-price">$4</span>
</a>
</div>
</div>
</div>
</section>
<!-- Press Reviews Section -->
<section class="press-section section">
<div class="container">
<h2 class="section-title">What people are saying.</h2>
</div>
<div class="press-carousel">
<div class="press-track">
<div class="press-item">
<p class="press-quote">"This is a great way to jump to a particular window without having to hunt it down with the mouse."</p>
<p class="press-attribution">— Lifehacker</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"I wish I had found this app much earlier, because it would have saved me a lot of frustration in figuring out which of the 10 open windows in Safari has the tab I'm looking for."</p>
<p class="press-attribution">— Medium</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"I can see what's going on with the app much better, which helps my workflow."</p>
<p class="press-attribution">— GroovyPost</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"If you want an alternative to AltTab that includes previews of your apps when you hover over their icon in the dock, try DockDoor."</p>
<p class="press-attribution">— Yahoo</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"The app allows users to manage and interact with application windows on their desktops. It emphasizes ease of use and seamless integration with the macOS environment."</p>
<p class="press-attribution">— Mac Treasure</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"In Windows, when you hover over an app on the taskbar, the operating system shows you the open windows for that app, a useful feature missing in macOS until now with the introduction of the free menu bar app DockDoor."</p>
<p class="press-attribution">— AppAddict</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"It's free, open-source, and honestly, Apple should have bought this developer out by now."</p>
<p class="press-attribution">— Medium</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<!-- Duplicate for seamless loop -->
<div class="press-item">
<p class="press-quote">"This is a great way to jump to a particular window without having to hunt it down with the mouse."</p>
<p class="press-attribution">— Lifehacker</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"I wish I had found this app much earlier, because it would have saved me a lot of frustration in figuring out which of the 10 open windows in Safari has the tab I'm looking for."</p>
<p class="press-attribution">— Medium</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"I can see what's going on with the app much better, which helps my workflow."</p>
<p class="press-attribution">— GroovyPost</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"If you want an alternative to AltTab that includes previews of your apps when you hover over their icon in the dock, try DockDoor."</p>
<p class="press-attribution">— Yahoo</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"The app allows users to manage and interact with application windows on their desktops. It emphasizes ease of use and seamless integration with the macOS environment."</p>
<p class="press-attribution">— Mac Treasure</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"In Windows, when you hover over an app on the taskbar, the operating system shows you the open windows for that app, a useful feature missing in macOS until now with the introduction of the free menu bar app DockDoor."</p>
<p class="press-attribution">— AppAddict</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
<div class="press-item">
<p class="press-quote">"It's free, open-source, and honestly, Apple should have bought this developer out by now."</p>
<p class="press-attribution">— Medium</p>
<img class="press-icon" src="./resources/svg/reviewDoubleQuotes.svg" alt="Double quotes icon">
</div>
</div>
</div>
</section>
<!-- Privacy Section -->
<section class="privacy-section section" id="privacy">
<div class="container">
<div class="privacy-content">
<h2 class="privacy-headline">Privacy by Design</h2>
<p class="privacy-subheadline">Your data stays on your Mac. Always.</p>
<div class="privacy-features">
<div class="privacy-feature">
<img src="./resources/svg/privacyFeature1.svg" alt="Feature 1" width="72" height="72">
<h3 class="privacy-feature-title">100% Local</h3>
<p class="privacy-feature-desc">No cloud, no servers, no external connections. Even debug logs stay on your Mac.</p>
</div>
<div class="privacy-feature">
<img src="./resources/svg/privacyFeature2.svg" alt="Feature 2" width="72" height="72">
<h3 class="privacy-feature-title">Zero Tracking</h3>
<p class="privacy-feature-desc">We don't collect analytics, usage data, or personal information. Not even crash reports.</p>
</div>
<div class="privacy-feature">
<img src="./resources/svg/privacyFeature3.svg" alt="Feature 3" width="72" height="72">
<h3 class="privacy-feature-title">Open Source</h3>
<p class="privacy-feature-desc">Full transparency. Review our code, contribute, help with translations, or build it yourself.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features-section" id="features">
<div class="container">
<h2 class="section-title">Focused window tools.<br>Built around the native Dock.</h2>
<p class="section-subtitle">Keep the macOS Dock and add the window controls Apple left out.</p>
<div class="special-features-grid">
<!-- Feature 1: Dock Previews -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Dock Previews</h3>
<p class="special-feature-description">Hover over app icons in the native macOS Dock to see live previews of open windows. Click to switch or manage without changing focus.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline class="special-feature-video">
<source src="/resources/dockpeek.mp4" type="video/mp4">
</video>
</div>
</div>
<!-- Feature 2: Folder Pop -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Folder Pop</h3>
<p class="special-feature-description">Hover over folders in the native Dock to preview their contents, sort the list, open items, and grant access only when DockDoor needs permission for that folder.</p>
</div>
<div class="special-feature-media">
<img src="/resources/folderPop.png" alt="Folder Pop showing a Dock folder preview panel" class="feature-image">
</div>
</div>
<!-- Feature 3: Alt+Tab Switching -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Alt+Tab Switching</h3>
<p class="special-feature-description">Press Option+Tab for fast window switching with live previews, keyboard navigation, and configurable actions.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline>
<source src="/resources/alttab.mp4" type="video/mp4">
</video>
</div>
</div>
<!-- Feature 4: Cmd+Tab Enhancements -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Cmd+Tab Enhancements</h3>
<p class="special-feature-description">Enhance the native macOS Command+Tab experience with richer previews and smoother navigation.</p>
</div>
<div class="special-feature-media">
<img src="/resources/cmd-tab-enhancements.png" alt="Cmd+Tab enhancements preview" class="feature-image">
</div>
</div>
</div>
</div>
</section>
<!-- Customization Section -->
<section class="features-section">
<div class="container">
<h2 class="section-title">Make It Your Own</h2>
<p class="section-subtitle">Customize DockDoor to match your workflow preferences</p>
<div class="special-features-grid">
<!-- Dock Preview Variations -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Dock Preview Layouts</h3>
<p class="special-feature-description">Personalize your dock preview experience with different layout options. Adjust spacing, sizing, and arrangement to suit your needs.</p>
</div>
<div class="customization-slideshow" id="dock-preview-slideshow">
<div class="slideshow-track">
<div class="slideshow-slide">
<img src="/resources/variations/dockpreview1.png" alt="Dock preview layout 1">
</div>
<div class="slideshow-slide">
<img src="/resources/variations/dockpreview2.png" alt="Dock preview layout 2">
</div>
</div>
<div class="slideshow-controls">
<button class="slideshow-control" data-direction="prev">←</button>
<div class="slideshow-indicators">
<span class="slideshow-indicator active"></span>
<span class="slideshow-indicator"></span>
</div>
<button class="slideshow-control" data-direction="next">→</button>
</div>
</div>
</div>
<!-- Window Switcher Variations -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Window Switcher Layouts</h3>
<p class="special-feature-description">Choose from different visual styles and layouts for your window switcher. Customize the appearance to match your workflow and visual preferences.</p>
</div>
<div class="customization-slideshow" id="window-switcher-slideshow">
<div class="slideshow-track">
<div class="slideshow-slide">
<img src="/resources/variations/windowswitcher1.png" alt="Window switcher variation 1">
</div>
<div class="slideshow-slide">
<img src="/resources/variations/windowswitcher2.png" alt="Window switcher variation 2">
</div>
</div>
<div class="slideshow-controls">
<button class="slideshow-control" data-direction="prev">←</button>
<div class="slideshow-indicators">
<span class="slideshow-indicator active"></span>
<span class="slideshow-indicator"></span>
</div>
<button class="slideshow-control" data-direction="next">→</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Settings Section -->
<section class="features-section">
<div class="container">
<h2 class="section-title">Extensive Settings</h2>
<p class="section-subtitle">Customize every aspect of DockDoor to fit your needs</p>
<div class="settings-grid">
<div class="settings-card">
<h3 class="settings-title">Dock Previews</h3>
<p class="settings-description">Fine-tune dock hover behavior, preview thresholds, and per-feature toggles for dock interactions.</p>
</div>
<div class="settings-card">
<h3 class="settings-title">Window Switcher</h3>
<p class="settings-description">Configure Alt+Tab behavior, sorting, layout direction, and compact mode thresholds.</p>
</div>
<div class="settings-card">
<h3 class="settings-title">Cmd+Tab</h3>
<p class="settings-description">Replace the native Cmd+Tab with DockDoor's enhanced overlay, with its own appearance and behavior settings.</p>
</div>
<div class="settings-card">
<h3 class="settings-title">Appearance</h3>
<p class="settings-description">Customize the look and feel of previews, colors, window sizing, and visual effects.</p>
</div>
<div class="settings-card">
<h3 class="settings-title">Gestures & Keybinds</h3>
<p class="settings-description">Configure trackpad gestures, keyboard shortcuts, and window positioning actions.</p>
</div>
<div class="settings-card">
<h3 class="settings-title">Filters & Widgets</h3>
<p class="settings-description">Choose which apps show in previews, and configure media controls and calendar widgets on dock hover.</p>
</div>
</div>
</div>
</section>
<!-- Mouse Controls Section -->
<section class="features-section">
<div class="container">
<h2 class="section-title">Intuitive Controls</h2>
<p class="section-subtitle">Window controls exactly where you need them</p>
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Mouse Controls</h3>
<p class="special-feature-description">DockDoor adds intuitive window controls to each preview. Close, minimize, or maximize windows with just one click, without having to switch focus.</p>
</div>
<div class="feature-visual">
<img src="/resources/dockPeekCommented.png" alt="Window controls in dock previews" class="feature-image">
</div>
</div>
</div>
</section>
<!-- Keyboard Controls Section -->
<section class="features-section">
<div class="container">
<div class="keyboard-content">
<h2 class="section-title">Full Keyboard Control</h2>
<p class="section-subtitle">Navigate and control windows entirely with your keyboard</p>
<div class="keyboard-shortcuts">
<div class="shortcut-group">
<h3 class="shortcut-title">Navigate</h3>
<div class="shortcut-keys">
<kbd class="key">Tab</kbd>
<kbd class="key">Shift</kbd>
<kbd class="key">↑↓←→</kbd>
</div>
<p class="shortcut-desc">Tab forward, Shift backward, or use arrow keys to navigate through windows</p>
</div>
<div class="shortcut-group">
<h3 class="shortcut-title">Actions</h3>
<div class="shortcut-keys">
<kbd class="key key-action">Return</kbd>
<kbd class="key key-close">⌘ W</kbd>
<kbd class="key key-quit">⌘ Q</kbd>
<kbd class="key key-minimize">⌘ M</kbd>
</div>
<p class="shortcut-desc"><span class="action-select">Select</span>, <span class="action-close">close</span>, <span class="action-quit">quit</span>, or <span class="action-minimize">minimize</span> windows</p>
</div>
<div class="shortcut-group">
<h3 class="shortcut-title">Quick Start</h3>
<div class="shortcut-keys">
<kbd class="key">Option + Tab</kbd>
</div>
<p class="shortcut-desc">Open Window Switcher and navigate without touching your mouse</p>
</div>
</div>
<div class="keyboard-workflow">
<h3 class="workflow-title">How it works</h3>
<div class="workflow-steps">
<div class="workflow-step">
<span class="step-number">1</span>
<span class="step-text">Press <strong>Option+Tab</strong> or hover over dock icons</span>
</div>
<div class="workflow-step">
<span class="step-number">2</span>
<span class="step-text">Navigate with <strong>Tab</strong>, <strong>Shift</strong>, or arrow keys</span>
</div>
<div class="workflow-step">
<span class="step-number">3</span>
<span class="step-text">Press <strong>Return</strong> to select or use shortcuts</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Special Features Grid -->
<section class="features-section">
<div class="container">
<h2 class="section-title">Power Features</h2>
<p class="section-subtitle">Enhance your workflow with these productivity tools</p>
<div class="special-features-grid">
<!-- Media Controls Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Media Controls & Lyrics</h3>
<p class="special-feature-description">Pin music widgets to your screen with synchronized lyrics for Spotify and Apple Music. Transform your media experience with real-time lyric synchronization.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline>
<source src="/resources/lyrics.mp4" type="video/mp4">
Your browser does not support video playback.
</video>
</div>
</div>
<!-- Calendar Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Calendar Integration</h3>
<p class="special-feature-description">Hover over the Calendar app to see all your events for the day. Never miss an appointment with instant calendar previews right from your dock.</p>
</div>
<div class="special-feature-media">
<img src="/resources/calendar.png" alt="Calendar demonstration" class="large-preview-image">
</div>
</div>
<!-- Compact List View Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Compact List View</h3>
<p class="special-feature-description">Switch to a space-efficient list view when you have many windows open. Set thresholds to automatically enable compact mode, or use it all the time. Configure in Settings → Appearance.</p>
</div>
<div class="special-feature-media">
<img src="/resources/listView.png" alt="Compact list view showing windows in a vertical list" class="portrait-image">
</div>
</div>
<!-- Trackpad Gestures Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Trackpad Gestures</h3>
<p class="special-feature-description">Use two-finger swipes on window previews to control windows. Swipe toward the dock to minimize, swipe away to maximize. Gesture directions adapt to your dock position. Configure actions in Settings → Gestures & Keybinds.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline>
<source src="/resources/gestureControl.mp4" type="video/mp4">
Your browser does not support video playback.
</video>
<img src="/resources/settings/gestureOptions.png" alt="Trackpad gesture configuration options" class="gesture-options-image">
</div>
</div>
<!-- Dock Locking Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Dock Locking</h3>
<p class="special-feature-description">Pin the Dock to a single monitor in multi-display setups. Stops the Dock from jumping when your cursor reaches the bottom of another screen. Works best with "Displays have separate Spaces" enabled. Configure in Settings → Dock Locking.</p>
</div>
<div class="special-feature-media">
<img src="/resources/dockLocking.png" alt="Dock Locking settings showing screen picker and bypass modifier options" class="large-preview-image">
</div>
</div>
<!-- Enhanced Previews Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Enhanced Previews</h3>
<p class="special-feature-description">Get a better view of your windows with large preview option. Perfect for dealing with multiple similar windows or for users with larger displays.</p>
</div>
<div class="special-feature-media">
<img src="/resources/largePreviewDemo.png" alt="Large preview demonstration" class="large-preview-image">
</div>
</div>
<!-- CMD Right Click Quit Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Quick Quit from Dock</h3>
<p class="special-feature-description">Quit applications instantly with ⌘ + Right Click on any dock icon. For stubborn apps, use ⌘ + ⌥ + Right Click to force quit. No menus, no waiting—just fast, direct control.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline>
<source src="/resources/cmdClick.mp4" type="video/mp4">
Your browser does not support video playback.
</video>
</div>
</div>
<!-- Middle Click Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Middle-Click to Close Windows</h3>
<p class="special-feature-description">Quickly close windows without switching focus by
middle-clicking on their preview. Perfect for cleaning up your workspace while staying in your
current application.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline>
<source src="/resources/middleClick.mp4" type="video/mp4">
Your browser does not support video playback.
</video>
</div>
</div>
<!-- Window Dragging Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Window Dragging</h3>
<p class="special-feature-description">Drag and drop windows between applications directly from dock
previews. Effortlessly organize your workspace without the need to switch contexts.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline>
<source src="/resources/windowDrag.mp4" type="video/mp4">
Your browser does not support video playback.
</video>
</div>
</div>
<!-- Aero Shake Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Aero Shake</h3>
<p class="special-feature-description">Shake a window preview to instantly minimize or close all other windows. Configure this in Settings → Gestures & Keybinds under the Dock Preview Gestures section.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline>
<source src="/resources/aeroShake.mp4" type="video/mp4">
Your browser does not support video playback.
</video>
</div>
</div>
<!-- Minimize All Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Close or Minimize All Windows</h3>
<p class="special-feature-description">Clear your workspace instantly with one click. Hover over an
app icon to access options to close or minimize all windows for that application.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline>
<source src="/resources/minimizeAll.mp4" type="video/mp4">
Your browser does not support video playback.
</video>
</div>
</div>
<!-- Click to Minimize Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Click Dock Icon to Minimize</h3>
<p class="special-feature-description">Click any dock icon to instantly hide all windows for that application. Enable this in Settings → Dock Previews, then toggle "Hide all app windows on dock icon click."</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline class="align-left">
<source src="/resources/clickToMinimize.mp4" type="video/mp4">
Your browser does not support video playback.
</video>
</div>
</div>
<!-- Scroll to Show/Hide Feature -->
<div class="special-feature-item">
<div class="special-feature-content">
<h3 class="special-feature-title">Scroll to Show/Hide Apps</h3>
<p class="special-feature-description">Scroll up on any dock icon to bring the app to the front, or scroll down to hide all its windows. Works with trackpad, Magic Mouse, or any scroll wheel. Enable this in Settings → Gestures & Keybinds under the Dock Icon Scroll Gesture section.</p>
</div>
<div class="special-feature-media">
<video autoplay muted loop playsinline>
<source src="/resources/scrollToHide.mp4" type="video/mp4">
Your browser does not support video playback.
</video>
</div>
</div>
</div>
</div>
</section>
<!-- Support Section -->
<section class="support-section section">
<div class="container">
<div class="support-content">
<h2 class="support-headline">Support Independent Development</h2>
<p class="support-subheadline">DockDoor is built by a solo developer and kept 100% free.<br>Every contribution directly funds development and keeps the project alive.</p>
<div class="support-actions">
<div class="support-primary">
<h3 class="support-title">Help Keep DockDoor Free & Growing</h3>
<p class="support-description">Your support funds new features, bug fixes, and ongoing maintenance. No subscriptions, no ads, no data selling. Just community support.</p>
<a href="donate.html" class="btn btn-coffee btn-large">Support Development</a>
<p class="support-line">Even $3 makes a huge difference</p>
</div>
</div>
<div class="support-alternatives">
<h3 class="alternatives-title">Other ways to help</h3>
<div class="alternatives-grid">
<a href="https://github.com/ejbills/DockDoor" class="alternative-link">
<span class="alternative-title">⭐ Star on GitHub</span>
<span class="alternative-desc">Help others discover DockDoor</span>
</a>
<a href="https://github.com/ejbills/DockDoor/issues" class="alternative-link">
<span class="alternative-title">🐛 Report Issues</span>
<span class="alternative-desc">Help us improve the app</span>
</a>
<a href="https://crowdin.com/project/dockdoor" class="alternative-link">
<span class="alternative-title">🌍 Help Translate</span>
<span class="alternative-desc">Make DockDoor global</span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Download Section -->
<section class="download-section section" id="download">
<div class="container">
<div class="download-content">
<h2 class="download-headline">Download DockDoor</h2>
<p class="download-subheadline">Free for macOS 13 Ventura and later</p>
<div class="download-actions">
<a href="https://github.com/ejbills/DockDoor/releases/latest/download/DockDoor.dmg"
class="btn btn-primary btn-large download-btn donation-prompt">Download for Mac</a>
<a href="https://formulae.brew.sh/cask/dockdoor"
class="btn btn-outline btn-large download-btn donation-prompt">Install via Homebrew</a>
</div>
<div class="download-requirements">
<span class="download-requirement">Requires macOS 13.0 or later</span>
<span class="download-requirement">Notarized by Apple</span>
<span class="download-requirement">Apple Silicon & Intel support</span>
</div>
<div class="product-hunt-embed">
<a href="https://www.producthunt.com/products/dockdoor/reviews?utm_source=badge-product_rating&utm_medium=badge&utm_source=badge-dockdoor" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/product_rating.svg?product_id=1063815&theme=light" alt="DockDoor -  Window peeking and alt-tab functionality for macOS  | Product Hunt" /></a>
</div>
</div>
</div>
</section>
<!-- Donation Modal -->
<div id="donation-modal" class="modal-overlay">
<div class="modal-content">
<button class="modal-close" aria-label="Close modal">×</button>
<div class="modal-header">
<h2 class="modal-title">Love DockDoor?</h2>
</div>
<p class="modal-text">DockDoor is built by a solo developer and kept 100% free. If you find it useful, consider supporting development. Even $3 helps keep this project alive!</p>
<div class="modal-actions">
<a href="donate.html" class="btn btn-primary">Support Development</a>
<a href="#" id="proceed-to-download" class="btn btn-secondary">Continue to Download</a>
</div>
</div>
</div>
<!-- Toast Container for Donation Request -->
<div class="toast-container">
<!-- Toast will be dynamically added here by JavaScript -->
</div>
<section class="product-split-section section" id="free-vs-pro">
<div class="container">
<details class="product-split-disclosure">
<summary class="product-split-summary">
<span class="section-kicker">DockDoor Free vs Pro</span>
<span class="product-split-summary-icon">↓</span>
<span class="section-title product-split-title">Two separate apps. Two different jobs.</span>
<span class="section-subtitle product-split-subtitle">DockDoor Free enhances the Dock that ships with macOS. DockDoor Pro is a separate app for users who want to replace the Dock entirely.</span>
</summary>
<div class="product-split-grid">
<article class="product-split-card">
<span class="product-split-label">DockDoor Free</span>
<h3>Enhances the native Dock.</h3>
<p>Adds live Dock previews, Alt+Tab switching, keyboard controls, gestures, and preview actions while keeping the built-in macOS Dock in place.</p>
</article>
<article class="product-split-card product-split-card-pro">
<span class="product-split-label">DockDoor Pro</span>
<h3>Replaces the Dock.</h3>
<p>Runs as its own full Dock with its own icon previews, profiles, widgets, pinned folders and files, marketplace widgets, deep customization, and advanced window workflows.</p>
<a href="https://pro.dockdoor.net" class="btn btn-primary">Explore DockDoor Pro</a>
</article>
</div>
</details>
</div>
</section>
<!-- FAQ Section -->
<section class="faq-section section" id="faq">
<div class="container">
<h2 class="faq-headline">Questions</h2>
<p class="faq-subheadline">Everything you need to know about DockDoor.</p>
<div class="faq-grid">
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>Where should I download DockDoor from?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p>The only official sources are:</p>
<ul>
<li><strong>DockDoor Free</strong> — <strong><a href="https://dockdoor.net">dockdoor.net</a></strong> or <strong><a href="https://github.com/ejbills/DockDoor">github.com/ejbills/DockDoor</a></strong></li>
<li><strong>DockDoor Pro</strong> — <strong><a href="https://pro.dockdoor.net">pro.dockdoor.net</a></strong></li>
</ul>
<p>Any other site offering DockDoor or DockDoor Pro downloads, cracks, torrents, or "free" versions is not affiliated with us and should not be trusted.</p>
<div class="faq-why">
<h4>Why?</h4>
<p>DockDoor requires Accessibility and Screen Recording permissions to function. Installing an app with that level of system access from an untrusted source is a serious security risk — a modified version could silently record your screen, log your keystrokes, or exfiltrate personal data. We have already found re-uploaded and cracked versions of DockDoor on various sites containing malware and unauthorized modifications. There is no legitimate free version of DockDoor Pro. Protect yourself by only using the official sources listed above.</p>
</div>
</div>
</details>
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>Is DockDoor Pro part of DockDoor Free?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p><strong>DockDoor Free</strong> is a lightweight enhancement for the built-in macOS Dock. It adds window previews, Alt+Tab switching, gestures, and keyboard controls on top of the system Dock. It does not replace anything.</p>
<p><strong>DockDoor Pro</strong> is a separate paid product from the same developer. It replaces the Dock entirely, with previews from its own Dock icons, profiles, pinned content, widgets, customization, file staging, Quick Actions, advanced keybinds, Alt+Tab-style navigation, and deeper window controls.</p>
<p>You usually do not need DockDoor Free if DockDoor Pro is replacing your Dock. DockDoor Free is for people who want to keep the built-in macOS Dock and add lightweight preview enhancements.</p>
<p>Currently in <strong>open beta</strong> at <strong><a href="https://pro.dockdoor.net">pro.dockdoor.net</a></strong> — $20 lifetime license. Beta feedback is managed via our <a href="https://discord.gg/TZeRs73hFb">Discord community</a>.</p>
</div>
</details>
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>Is DockDoor free?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p>Yes. DockDoor is completely free and open-source with no hidden costs or subscriptions.</p>
<div class="faq-why">
<h4>Why?</h4>
<p>Because too many software companies price gouge users, subscriptions are terrible, and we believe great tools should be accessible to everyone.</p>
</div>
</div>
</details>
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>What are the system requirements?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p>macOS 13.0 Ventura or later. DockDoor runs natively on both Apple Silicon (M1, M2, M3) and Intel Macs.</p>
</div>
</details>
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>Does it affect performance?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p>No. DockDoor is designed to be lightweight with minimal impact on system performance and battery life.</p>
</div>
</details>
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>How do I customize shortcuts?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p>Open DockDoor settings and go to the <strong>Gestures & Keybinds</strong> tab. Here you can customize:</p>
<div class="faq-steps">
<div class="faq-step">
<span class="step-number">1</span>
<span class="step-text"><strong>Window Switcher Shortcut</strong> — Change the modifier key (Control, Option, or Command) and trigger key</span>
</div>
<div class="faq-step">
<span class="step-number">2</span>
<span class="step-text"><strong>Cmd+Key Shortcuts</strong> — Configure up to 3 custom Cmd+key actions (close, minimize, quit, etc.) for quick window control</span>
</div>
<div class="faq-step">
<span class="step-number">3</span>
<span class="step-text"><strong>Trackpad Gestures</strong> — Set swipe actions for dock previews and window switcher</span>
</div>
<div class="faq-step">
<span class="step-number">4</span>
<span class="step-text"><strong>Mouse Actions</strong> — Configure middle-click behavior on window previews</span>
</div>
</div>
</div>
</details>
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>Which apps are supported?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p>Most standard macOS applications work perfectly. Some apps with custom UI frameworks may have limited functionality.</p>
</div>
</details>
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>How do I get the old slim window appearance back?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p>You can restore the dynamic sizing behavior for dock previews:</p>
<div class="faq-steps">
<div class="faq-step">
<span class="step-number">1</span>
<span class="step-text">Open DockDoor settings</span>
</div>
<div class="faq-step">
<span class="step-number">2</span>
<span class="step-text">Navigate to the Dock Previews tab</span>
</div>
<div class="faq-step">
<span class="step-number">3</span>
<span class="step-text">Enable "Allow dynamic image sizing" to make windows resize dynamically</span>
</div>
<div class="faq-step">
<span class="step-number">4</span>
<span class="step-text">Check "Embed controls in preview frames" for the classic toolbar style</span>
</div>
<div class="faq-step optional">
<span class="step-number">5</span>
<span class="step-text">Optional: Disable "Dock styling on traffic light buttons" for minimal appearance</span>
</div>
</div>
<p class="faq-note">These settings only affect dock previews. Window switcher behavior remains unchanged.</p>
</div>
</details>
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>How do I troubleshoot issues with debug logging?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p>DockDoor includes an optional debug logging feature to help diagnose performance issues:</p>
<div class="faq-steps">
<div class="faq-step">
<span class="step-number">1</span>
<span class="step-text">Open DockDoor settings → Support tab</span>
</div>
<div class="faq-step">
<span class="step-number">2</span>
<span class="step-text">Enable "Debug Logging" under the Updates section</span>
</div>
<div class="faq-step">
<span class="step-number">3</span>
<span class="step-text">Reproduce your issue while debug mode is enabled</span>
</div>
<div class="faq-step">
<span class="step-number">4</span>
<span class="step-text">Click "Export Logs" to save the debug file to share with support</span>
</div>
</div>
<p class="faq-note">Debug logs are stored locally on your Mac and never sent anywhere automatically. You control when and if logs are shared.</p>
</div>
</details>
<details class="faq-item" name="faq-dockdoor">
<summary class="faq-question">
<p>How can I contribute?</p>
<i>↓</i>
</summary>
<div class="faq-answer">
<p>Report issues on GitHub, contribute code, help with translations, or support development financially.</p>
</div>
</details>
</div>
</div>
</section>
<section class="community-section">
<div class="container community-container">
<h3 class="community-headline">Built by the Community</h3>
<p class="community-subheadline">
DockDoor is an open-source project made possible by these wonderful contributors.
</p>
<a href="https://github.com/ejbills/DockDoor/graphs/contributors" target="_blank" rel="noopener noreferrer" class="contributors-link">
<img src="https://contrib.rocks/image?repo=ejbills/DockDoor&columns=7" alt="DockDoor Contributors" class="contributors-img" loading="lazy">
</a>
<div class="community-actions">
<span class="community-subtext">Want to join them?</span>
<a href="https://github.com/ejbills/DockDoor" target="_blank" class="link-highlight">Contribute Code</a>
<span class="divider">|</span>
<a href="donate.html" class="link-highlight">Support Development</a>
</div>
</div>
</section>
<!-- Script -->
<script src="scripts.js"></script>
</body>
</html>