-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
themes.json
1061 lines (1061 loc) · 62.4 KB
/
themes.json
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
997
998
999
1000
{
"a5f6a231-e3c8-4ce8-8a8e-3e93efd6adec": {
"id": "a5f6a231-e3c8-4ce8-8a8e-3e93efd6adec",
"name": "Cleaned URL bar",
"description": "Cleans up zen's URL bar.",
"homepage": "https://github.com/Dinno-DEV/zen-cleaned-url-bar",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/a5f6a231-e3c8-4ce8-8a8e-3e93efd6adec/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/a5f6a231-e3c8-4ce8-8a8e-3e93efd6adec/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/a5f6a231-e3c8-4ce8-8a8e-3e93efd6adec/image.png",
"author": "Dinno-DEV",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-11-01",
"updatedAt": "2024-11-02"
},
"5941aefd-67b0-453d-9b62-9071a31cbb0d": {
"id": "5941aefd-67b0-453d-9b62-9071a31cbb0d",
"name": "Smaller Compact Mode",
"description": "Reduce the height of the compact sidebar!",
"homepage": "https://github.com/n7itro/Zen-Themes",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5941aefd-67b0-453d-9b62-9071a31cbb0d/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5941aefd-67b0-453d-9b62-9071a31cbb0d/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5941aefd-67b0-453d-9b62-9071a31cbb0d/image.png",
"author": "n7itro",
"version": "1.0.2",
"tags": [],
"createdAt": "2024-08-31",
"updatedAt": "2024-10-01"
},
"d2953516-d239-4ef8-aac5-b238e3dc0360": {
"id": "d2953516-d239-4ef8-aac5-b238e3dc0360",
"name": "PywalZen",
"description": "Enable correct support for Pywalfox with this theme!",
"homepage": "https://github.com/Axenide/PywalZen",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d2953516-d239-4ef8-aac5-b238e3dc0360/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d2953516-d239-4ef8-aac5-b238e3dc0360/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d2953516-d239-4ef8-aac5-b238e3dc0360/image.png",
"author": "Axenide",
"version": "1.0.2",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d2953516-d239-4ef8-aac5-b238e3dc0360/preferences.json",
"tags": [],
"createdAt": "2024-09-29",
"updatedAt": "2024-10-31"
},
"f4a7562f-6e54-4f1e-b835-a397fc6c15f2": {
"id": "f4a7562f-6e54-4f1e-b835-a397fc6c15f2",
"name": "Ros\u00e9 Pine Dawn",
"description": "Minimalist, pine, freshness for your browser!",
"homepage": "https://github.com/feco/zen-rose-pine-dawn",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f4a7562f-6e54-4f1e-b835-a397fc6c15f2/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f4a7562f-6e54-4f1e-b835-a397fc6c15f2/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f4a7562f-6e54-4f1e-b835-a397fc6c15f2/image.png",
"author": "feco",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-10-06",
"updatedAt": "2024-10-06"
},
"c8f20381-388a-4b67-b640-eaa539355ea4": {
"id": "c8f20381-388a-4b67-b640-eaa539355ea4",
"name": "Right On Hover Sidebar",
"description": "Web Panels sidebar that popups on hover on the right (like compact mode)",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8f20381-388a-4b67-b640-eaa539355ea4/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8f20381-388a-4b67-b640-eaa539355ea4/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8f20381-388a-4b67-b640-eaa539355ea4/image.png",
"author": "p2d0",
"version": "1.0.0",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8f20381-388a-4b67-b640-eaa539355ea4/preferences.json",
"tags": [],
"createdAt": "2024-10-02",
"updatedAt": "2024-10-02"
},
"f50841b2-5e4a-4534-985d-b7f7b96088c2": {
"id": "f50841b2-5e4a-4534-985d-b7f7b96088c2",
"name": "NoHighlightSplit",
"description": "Removes the border highlight around the active tab while using split view.",
"homepage": "https://github.com/JtdeGraaf/zen-remove-split-view-tab-highlight",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f50841b2-5e4a-4534-985d-b7f7b96088c2/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f50841b2-5e4a-4534-985d-b7f7b96088c2/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f50841b2-5e4a-4534-985d-b7f7b96088c2/image.png",
"author": "JtdeGraaf",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-10-06",
"updatedAt": "2024-10-06"
},
"b51ff956-6aea-47ab-80c7-d6c047c0d510": {
"id": "b51ff956-6aea-47ab-80c7-d6c047c0d510",
"name": "Disable Status Bar",
"description": "This removes the bottom-left status bar when hovering over a URL.",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b51ff956-6aea-47ab-80c7-d6c047c0d510/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b51ff956-6aea-47ab-80c7-d6c047c0d510/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b51ff956-6aea-47ab-80c7-d6c047c0d510/image.png",
"author": "F-U-B-AR",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-09-03",
"updatedAt": "2024-09-03"
},
"67b12475-1c26-4d13-9156-297383ed8dbf": {
"id": "67b12475-1c26-4d13-9156-297383ed8dbf",
"name": "Floating toolbar",
"description": "Detaches toolbar from edge of browser window so that it appears to float",
"homepage": "https://github.com/anaarkei/zen-floating-toolbar",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/image.png",
"author": "anaarkei",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/67b12475-1c26-4d13-9156-297383ed8dbf/preferences.json",
"version": "2.1.2",
"tags": [],
"createdAt": "2024-09-15",
"updatedAt": "2024-09-30"
},
"d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe": {
"id": "d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe",
"name": "Better Active Tab",
"description": "Adds a bright line next to the active tab to better highlight it.",
"homepage": "https://github.com/HliasOuzounis/zen-browser-better-active-tab-indicator",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d8b79d4a-6cba-4495-9ff6-d6d30b0e94fe/image.png",
"author": "HliasOuzounis",
"version": "1.0.3",
"tags": [
"tabs"
],
"createdAt": "2024-09-07",
"updatedAt": "2024-09-24"
},
"2e3369c7-e450-46ba-8794-75ccb0de5e48": {
"id": "2e3369c7-e450-46ba-8794-75ccb0de5e48",
"name": "Now playing indicator",
"description": "Display an indicator on the 'Now playing' tab when the sidebar is collapsed.",
"homepage": "https://github.com/benstone326/zen-browser-now-playing-indicator",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/2e3369c7-e450-46ba-8794-75ccb0de5e48/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/2e3369c7-e450-46ba-8794-75ccb0de5e48/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/2e3369c7-e450-46ba-8794-75ccb0de5e48/image.png",
"author": "benstone326",
"version": "1.2.1",
"tags": [
"tabs"
],
"createdAt": "2024-08-28",
"updatedAt": "2024-10-19"
},
"906c6915-5677-48ff-9bfc-096a02a72379": {
"id": "906c6915-5677-48ff-9bfc-096a02a72379",
"name": "Floating Status Bar",
"description": "Mod for Zen Browser that detaches the status bar from the bottom left corner of the browser window.",
"homepage": "https://github.com/AmirhBeigi/zen-floating-statusbar/",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/906c6915-5677-48ff-9bfc-096a02a72379/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/906c6915-5677-48ff-9bfc-096a02a72379/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/906c6915-5677-48ff-9bfc-096a02a72379/image.png",
"author": "AmirhBeigi",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-10-06",
"updatedAt": "2024-10-06"
},
"180d9426-a020-4bd7-98ec-63f957291119": {
"id": "180d9426-a020-4bd7-98ec-63f957291119",
"name": "TitleBarButton UI Tweaks",
"description": "Small UI tweaks to the titlebar buttons to make them more coherent with the Zen Browser design philosophy.",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/180d9426-a020-4bd7-98ec-63f957291119/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/180d9426-a020-4bd7-98ec-63f957291119/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/180d9426-a020-4bd7-98ec-63f957291119/image.png",
"author": "DaitiDay",
"version": "1.0.1",
"tags": [],
"createdAt": "2024-09-18",
"updatedAt": "2024-10-19"
},
"bed8c922-616a-4165-8c86-6822ccf478ad": {
"id": "bed8c922-616a-4165-8c86-6822ccf478ad",
"name": "Erics Zen UI Tweak Box",
"description": "Various tweaks for the Zen Browser UI",
"homepage": "https://github.com/ericmackrodt/zen-themes",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/image.png",
"author": "ericmackrodt",
"version": "1.0.0",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bed8c922-616a-4165-8c86-6822ccf478ad/preferences.json",
"tags": [],
"createdAt": "2024-09-07",
"updatedAt": "2024-09-07"
},
"11d685eb-4515-4045-864b-0a50589f8a4d": {
"id": "11d685eb-4515-4045-864b-0a50589f8a4d",
"name": "Monochrome",
"description": "There is no monochrome option in theme settings, so i created this theme.",
"homepage": "https://github.com/antonsizikov/zen-browser-monochrome-theme",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/11d685eb-4515-4045-864b-0a50589f8a4d/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/11d685eb-4515-4045-864b-0a50589f8a4d/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/11d685eb-4515-4045-864b-0a50589f8a4d/image.png",
"author": "antonsizikov",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-10-06",
"updatedAt": "2024-10-06"
},
"c6813222-6571-4ba6-8faf-58f3343324f6": {
"id": "c6813222-6571-4ba6-8faf-58f3343324f6",
"name": "Disable Rounded Corners",
"description": "Disable Rounded Corners from Web View.",
"homepage": "https://github.com/gunir/desktop/tree/themes/themes",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c6813222-6571-4ba6-8faf-58f3343324f6/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c6813222-6571-4ba6-8faf-58f3343324f6/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c6813222-6571-4ba6-8faf-58f3343324f6/image.png",
"author": "gunir",
"version": "3.0.0",
"tags": [],
"createdAt": "2024-08-19",
"updatedAt": "2024-11-02"
},
"664c54f9-d97d-410b-a479-23dd8a08a628": {
"id": "664c54f9-d97d-410b-a479-23dd8a08a628",
"name": "Better Tab Indicators",
"description": "This Zen Theme provides some alternative styling for the tabs on the sidebar.",
"homepage": "https://github.com/TheRealMG/zen-themes/tree/main/BetterTabIndicators",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/664c54f9-d97d-410b-a479-23dd8a08a628/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/664c54f9-d97d-410b-a479-23dd8a08a628/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/664c54f9-d97d-410b-a479-23dd8a08a628/image.png",
"author": "TheRealMG",
"version": "1.0.0",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/664c54f9-d97d-410b-a479-23dd8a08a628/preferences.json",
"tags": [],
"createdAt": "2024-10-12",
"updatedAt": "2024-10-12"
},
"83a641f7-eca9-4c0f-91af-45627bef0539": {
"id": "83a641f7-eca9-4c0f-91af-45627bef0539",
"name": "Floating URLbar",
"description": "Levitate the URL bar when focusing on it, with a blurred background.",
"homepage": "https://github.com/zen-browser/theme-components",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/83a641f7-eca9-4c0f-91af-45627bef0539/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/83a641f7-eca9-4c0f-91af-45627bef0539/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/83a641f7-eca9-4c0f-91af-45627bef0539/image.png",
"author": "mauro-balades",
"version": "1.0.5",
"tags": [],
"createdAt": "2024-08-15",
"updatedAt": "2024-09-18"
},
"64cdc40f-2366-4b5b-8bad-d0524682595e": {
"id": "64cdc40f-2366-4b5b-8bad-d0524682595e",
"name": "Allow Toolbar Theming",
"description": "This allows you to use Firefox themes to customize your toolbar",
"homepage": "https://github.com/ch4og/zenbrowser-themes/tree/main/Allow%20Toolbar%20Theming",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/64cdc40f-2366-4b5b-8bad-d0524682595e/image.png",
"author": "ch4og",
"version": "1.0.2",
"tags": [],
"createdAt": "2024-08-23",
"updatedAt": "2024-09-07"
},
"35f24f2c-b211-43e2-9fe4-2c3bc217d9f7": {
"id": "35f24f2c-b211-43e2-9fe4-2c3bc217d9f7",
"name": "Compact tabs title",
"description": "Show the first few title characters even in compact mode",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/image.png",
"author": "Tc-001",
"version": "1.0.0",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/35f24f2c-b211-43e2-9fe4-2c3bc217d9f7/preferences.json",
"tags": [
"tabs"
],
"createdAt": "2024-08-28",
"updatedAt": "2024-09-07"
},
"4596d8f9-f0b7-4aeb-aa92-851222dc1888": {
"id": "4596d8f9-f0b7-4aeb-aa92-851222dc1888",
"name": "Only Close On Hover",
"description": "Show tab's close button only on hover, even on the active tab.",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4596d8f9-f0b7-4aeb-aa92-851222dc1888/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4596d8f9-f0b7-4aeb-aa92-851222dc1888/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/4596d8f9-f0b7-4aeb-aa92-851222dc1888/image.png",
"author": "p-sw",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-10-12",
"updatedAt": "2024-10-12"
},
"c8d9e6e6-e702-4e15-8972-3596e57cf398": {
"id": "c8d9e6e6-e702-4e15-8972-3596e57cf398",
"name": "Zen Back Forward",
"description": "Hide Back and Forward button when you don't need them",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8d9e6e6-e702-4e15-8972-3596e57cf398/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8d9e6e6-e702-4e15-8972-3596e57cf398/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c8d9e6e6-e702-4e15-8972-3596e57cf398/image.png",
"author": "KiKaraage",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-09-03",
"updatedAt": "2024-09-03"
},
"053a3ffa-9233-4554-88f3-076e6a6ebb43": {
"id": "053a3ffa-9233-4554-88f3-076e6a6ebb43",
"name": "Hide tab mute",
"description": "Hides the mute/unmute button when the sidebar is collapsed to make clicking on tabs easier.",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/053a3ffa-9233-4554-88f3-076e6a6ebb43/image.png",
"author": "Tc-001",
"version": "1.0.1",
"tags": [
"tabs"
],
"createdAt": "2024-08-21",
"updatedAt": "2024-09-18"
},
"ad97bb70-0066-4e42-9b5f-173a5e42c6fc": {
"id": "ad97bb70-0066-4e42-9b5f-173a5e42c6fc",
"name": "SuperPins",
"description": "This Zen Mod enhances pinned tabs, by making some UI/UX changes.",
"homepage": "https://github.com/JLBlk/Zen-Themes/tree/main/SuperPins",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/image.png",
"author": "JLBlk",
"version": "1.3.7",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ad97bb70-0066-4e42-9b5f-173a5e42c6fc/preferences.json",
"tags": [
"tabs"
],
"createdAt": "2024-08-28",
"updatedAt": "2024-10-31"
},
"d42bf02e-3411-4265-84e6-3dc2dba5fdd8": {
"id": "d42bf02e-3411-4265-84e6-3dc2dba5fdd8",
"name": "elementary OS Titlebar",
"description": "Respect elementary OS's default titlebar layout",
"homepage": "https://ark.sudovanilla.org/Korbs/zen-eos-fix",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d42bf02e-3411-4265-84e6-3dc2dba5fdd8/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d42bf02e-3411-4265-84e6-3dc2dba5fdd8/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d42bf02e-3411-4265-84e6-3dc2dba5fdd8/image.png",
"author": "SudoVanilla",
"version": "1.0.1",
"tags": [],
"createdAt": "2024-08-28",
"updatedAt": "2024-08-31"
},
"1207efa9-fce4-439f-a673-9d3c0e4e8820": {
"id": "1207efa9-fce4-439f-a673-9d3c0e4e8820",
"name": "Clickable Scrollbar",
"description": "Makes Sidebar Scrollbar clickable",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1207efa9-fce4-439f-a673-9d3c0e4e8820/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1207efa9-fce4-439f-a673-9d3c0e4e8820/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1207efa9-fce4-439f-a673-9d3c0e4e8820/image.png",
"author": "tahawael",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-10-19",
"updatedAt": "2024-10-19"
},
"cb15abdb-0514-4e09-8ce5-722cf1f4a20f": {
"id": "cb15abdb-0514-4e09-8ce5-722cf1f4a20f",
"name": "Hide Extension Name",
"description": "Hides the name of the extension on tabs loaded from the extension",
"homepage": "https://github.com/ch4og/zenbrowser-themes/tree/main/Hide%20Extension%20Name",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/cb15abdb-0514-4e09-8ce5-722cf1f4a20f/image.png",
"author": "ch4og",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-08-24",
"updatedAt": "2024-08-24"
},
"5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c": {
"id": "5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c",
"name": "Uniform Workspaces Button",
"description": "Make the workspaces button consistent with the other sidebar buttons, while remaining unique.",
"homepage": "https://github.com/andrewbellucci/zen-uniform-workspaces-button",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ac61d13-a0dc-400e-aaa0-0f10fd3a7d0c/image.png",
"author": "andrewbellucci",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-08-24",
"updatedAt": "2024-08-24"
},
"3ff55ba7-4690-4f74-96a8-9e4416685e4e": {
"id": "3ff55ba7-4690-4f74-96a8-9e4416685e4e",
"name": "Colored container tab",
"description": "Changes the default container tab theme",
"homepage": "https://github.com/ocean-mars/things",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/3ff55ba7-4690-4f74-96a8-9e4416685e4e/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/3ff55ba7-4690-4f74-96a8-9e4416685e4e/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/3ff55ba7-4690-4f74-96a8-9e4416685e4e/image.png",
"author": "ocean-mars",
"version": "1.0.0",
"tags": [
"tabs"
],
"createdAt": "2024-10-06",
"updatedAt": "2024-10-06"
},
"74c755b3-41a5-4f78-83cb-cd1e1e076bb6": {
"id": "74c755b3-41a5-4f78-83cb-cd1e1e076bb6",
"name": "Better UniExtBtn",
"description": "change unified extensions button to zen browser icon",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/74c755b3-41a5-4f78-83cb-cd1e1e076bb6/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/74c755b3-41a5-4f78-83cb-cd1e1e076bb6/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/74c755b3-41a5-4f78-83cb-cd1e1e076bb6/image.png",
"author": "lindongbin",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-08-30",
"updatedAt": "2024-08-30"
},
"5c4d7772-d963-4672-ab03-e9d541438881": {
"id": "5c4d7772-d963-4672-ab03-e9d541438881",
"name": "Bigger Mute Button",
"description": "Enlarges mute button, hides sound labels, and replaces tab icon with mute button when not expanded.",
"homepage": "https://github.com/jvabn/zenbrowser-themes",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5c4d7772-d963-4672-ab03-e9d541438881/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5c4d7772-d963-4672-ab03-e9d541438881/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5c4d7772-d963-4672-ab03-e9d541438881/image.png",
"author": "jvabn",
"version": "1.0.2",
"tags": [],
"createdAt": "2024-10-12",
"updatedAt": "2024-11-02"
},
"1e9f3101-210b-4ff5-8830-434e4919100d": {
"id": "1e9f3101-210b-4ff5-8830-434e4919100d",
"name": "Better Letterboxing",
"description": "More pleasant, theme-friendly, and most importantly, rounded letterboxing.",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e9f3101-210b-4ff5-8830-434e4919100d/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e9f3101-210b-4ff5-8830-434e4919100d/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e9f3101-210b-4ff5-8830-434e4919100d/image.png",
"author": "qtchaos",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-08-28",
"updatedAt": "2024-08-28"
},
"ab9b529c-63d6-48c0-a59a-4a407c5c3129": {
"id": "ab9b529c-63d6-48c0-a59a-4a407c5c3129",
"name": "Minimal sidebar",
"description": "With this Zen theme, you can remove the buttons from the sidebar and make more space for your tabs",
"homepage": "https://github.com/Venca321/Zen-Minimal-Sidebar-Theme",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/image.png",
"author": "Venca321",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ab9b529c-63d6-48c0-a59a-4a407c5c3129/preferences.json",
"version": "1.1.0",
"tags": [],
"createdAt": "2024-08-23",
"updatedAt": "2024-09-10"
},
"dbe05f83-b471-4278-a3f9-e5ed244b0d6c": {
"id": "dbe05f83-b471-4278-a3f9-e5ed244b0d6c",
"name": "Old navigation buttons",
"description": "Restore the original Firefox navigation buttons.",
"homepage": "https://github.com/Osmagtor/zen-themes/tree/main/Restore%20navigation%20buttons",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dbe05f83-b471-4278-a3f9-e5ed244b0d6c/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dbe05f83-b471-4278-a3f9-e5ed244b0d6c/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dbe05f83-b471-4278-a3f9-e5ed244b0d6c/image.png",
"author": "Osmagtor",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-09-25",
"updatedAt": "2024-09-25"
},
"a7125691-139e-4a62-aad9-06c6e9f2e5ba": {
"id": "a7125691-139e-4a62-aad9-06c6e9f2e5ba",
"name": "CustomCursor",
"description": "Choose your custom cursor!",
"homepage": "https://github.com/GunGunGun/zenCustomCursorMod",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/a7125691-139e-4a62-aad9-06c6e9f2e5ba/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/a7125691-139e-4a62-aad9-06c6e9f2e5ba/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/a7125691-139e-4a62-aad9-06c6e9f2e5ba/image.png",
"author": "GunGunGun",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-10-26",
"updatedAt": "2024-10-26",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/a7125691-139e-4a62-aad9-06c6e9f2e5ba/preferences.json"
},
"7ba20fe1-7286-4b1f-9bf6-39d40bec8ae0": {
"id": "7ba20fe1-7286-4b1f-9bf6-39d40bec8ae0",
"name": "Crimson",
"description": "A crimson red theme for Zen :)",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/7ba20fe1-7286-4b1f-9bf6-39d40bec8ae0/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/7ba20fe1-7286-4b1f-9bf6-39d40bec8ae0/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/7ba20fe1-7286-4b1f-9bf6-39d40bec8ae0/image.png",
"author": "shaeriz",
"version": "1.0.0",
"tags": [
"color scheme",
"dark"
],
"createdAt": "2024-10-12",
"updatedAt": "2024-10-12"
},
"80112b28-39e0-407c-8988-2290bc973b97": {
"id": "80112b28-39e0-407c-8988-2290bc973b97",
"name": "Matcha",
"description": "Sweet and peaceful vibrant theme, supported light and dark mode",
"homepage": "https://github.com/KiKaraage/ZenMods",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/80112b28-39e0-407c-8988-2290bc973b97/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/80112b28-39e0-407c-8988-2290bc973b97/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/80112b28-39e0-407c-8988-2290bc973b97/image.png",
"author": "KiKaraage",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-09-24",
"updatedAt": "2024-09-24"
},
"e4faf306-61b1-4785-8678-7bdee9dc2564": {
"id": "e4faf306-61b1-4785-8678-7bdee9dc2564",
"name": "Tokyo Night Moon",
"description": "A dark theme inspired by folke's Tokyo Night Moon color palette",
"homepage": "https://github.com/ZweTyy/Tokyo-Night-Moon-Theme-Zen-browser",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4faf306-61b1-4785-8678-7bdee9dc2564/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4faf306-61b1-4785-8678-7bdee9dc2564/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4faf306-61b1-4785-8678-7bdee9dc2564/image.png",
"author": "ZweTyy",
"version": "1.0.1",
"isDarkMode": true,
"isColorTheme": true,
"tags": [
"color scheme",
"dark"
],
"createdAt": "2024-09-15",
"updatedAt": "2024-09-15"
},
"17f70712-4530-42d0-ba0f-fa25bcbf2ddc": {
"id": "17f70712-4530-42d0-ba0f-fa25bcbf2ddc",
"name": "Vesper Dark",
"description": "Pepermint and orange flavored dark theme for Zen browser.",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/17f70712-4530-42d0-ba0f-fa25bcbf2ddc/readme.md",
"image": "https://i.imgur.com/SmQiVq7.png",
"author": "bdsqqq",
"version": "1.0.1",
"isDarkMode": true,
"isColorTheme": true,
"tags": [
"color scheme",
"dark"
],
"createdAt": "2024-08-22",
"updatedAt": "2024-09-03"
},
"bfcc400a-4ecb-4752-bfd2-a68f116a2722": {
"id": "bfcc400a-4ecb-4752-bfd2-a68f116a2722",
"name": "No Gaps",
"description": "Removes the gaps when the view isn't split.",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bfcc400a-4ecb-4752-bfd2-a68f116a2722/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bfcc400a-4ecb-4752-bfd2-a68f116a2722/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bfcc400a-4ecb-4752-bfd2-a68f116a2722/image.png",
"author": "Peleret",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-10-21",
"updatedAt": "2024-10-23",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bfcc400a-4ecb-4752-bfd2-a68f116a2722/preferences.json"
},
"753c7518-237d-480a-abfd-1f42a7eabacc": {
"id": "753c7518-237d-480a-abfd-1f42a7eabacc",
"name": "Zen Paper Cut Theme",
"description": "Zen's interface be made pointy and boxy. Watchout for paper cuts!",
"homepage": "https://github.com/Dinno-DEV/zen-paper-cut-theme",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/753c7518-237d-480a-abfd-1f42a7eabacc/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/753c7518-237d-480a-abfd-1f42a7eabacc/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/753c7518-237d-480a-abfd-1f42a7eabacc/image.png",
"author": "Dinno-DEV",
"version": "1.0.3",
"tags": [],
"createdAt": "2024-09-24",
"updatedAt": "2024-10-28"
},
"e4274cbc-c99b-411a-876d-9b943eb91282": {
"id": "e4274cbc-c99b-411a-876d-9b943eb91282",
"name": "Exit Button Right Padding",
"description": "A simple theme that adds a bit of padding to the right of the exit button",
"homepage": "https://github.com/ericmackrodt/zen-themes/",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4274cbc-c99b-411a-876d-9b943eb91282/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4274cbc-c99b-411a-876d-9b943eb91282/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/e4274cbc-c99b-411a-876d-9b943eb91282/image.png",
"author": "ericmackrodt",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-08-31",
"updatedAt": "2024-08-31"
},
"ef16716a-58dc-42d4-99f8-b1667d32247d": {
"id": "ef16716a-58dc-42d4-99f8-b1667d32247d",
"name": "Formula 1",
"description": "Embrace the simplicity of black and red",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ef16716a-58dc-42d4-99f8-b1667d32247d/image.png",
"author": "thejournalwriter",
"version": "1.0.0",
"isDarkMode": true,
"isColorTheme": true,
"tags": [
"color scheme",
"dark"
],
"createdAt": "2024-08-22",
"updatedAt": "2024-08-22"
},
"570afd9d-96fa-48b5-bad3-0c106757cce9": {
"id": "570afd9d-96fa-48b5-bad3-0c106757cce9",
"name": "Super Sleek UI",
"description": "A sleek & minimalistic UI with grid-style quick access, smaller navbar, no border padding & more.",
"homepage": "https://github.com/lingais/Zen-Broswer-Super-Sleek-UI-Theme.git",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/570afd9d-96fa-48b5-bad3-0c106757cce9/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/570afd9d-96fa-48b5-bad3-0c106757cce9/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/570afd9d-96fa-48b5-bad3-0c106757cce9/image.png",
"author": "lingais",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-08-28",
"updatedAt": "2024-08-28"
},
"49dbaa98-06ee-42bd-9a8e-834babef7a41": {
"id": "49dbaa98-06ee-42bd-9a8e-834babef7a41",
"name": "Collapsed Tab X Button",
"description": "This theme adds a close button to the collapsed tabs in Zen Browser.",
"homepage": "https://github.com/burnt0rice/zen-themes/tree/main/collapsed-tab-close-button",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/49dbaa98-06ee-42bd-9a8e-834babef7a41/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/49dbaa98-06ee-42bd-9a8e-834babef7a41/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/49dbaa98-06ee-42bd-9a8e-834babef7a41/image.png",
"author": "burnt0rice",
"version": "1.0.0",
"tags": [
"tabs"
],
"createdAt": "2024-08-31",
"updatedAt": "2024-09-07"
},
"56449583-f295-4f34-baf8-da70d3d156e7": {
"id": "56449583-f295-4f34-baf8-da70d3d156e7",
"name": "Solarized",
"description": "Solarized color pallete ported into Zen!",
"homepage": "https://github.com/mohvn/solarized-zenbrowser",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/56449583-f295-4f34-baf8-da70d3d156e7/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/56449583-f295-4f34-baf8-da70d3d156e7/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/56449583-f295-4f34-baf8-da70d3d156e7/image.png",
"author": "mohvn",
"version": "1.0.0",
"isDarkMode": true,
"isColorTheme": true,
"tags": [
"color scheme",
"dark"
],
"createdAt": "2024-09-09",
"updatedAt": "2024-09-09"
},
"1e86cf37-a127-4f24-b919-d265b5ce29a0": {
"id": "1e86cf37-a127-4f24-b919-d265b5ce29a0",
"name": "Cleaner Extension Menu",
"description": "Remove header and reduce width of the Unified Extension Menu in Zen",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e86cf37-a127-4f24-b919-d265b5ce29a0/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e86cf37-a127-4f24-b919-d265b5ce29a0/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/1e86cf37-a127-4f24-b919-d265b5ce29a0/image.png",
"author": "KiKaraage",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-09-03",
"updatedAt": "2024-09-03"
},
"00aeb359-cce5-4eb5-8c5c-5f928a715664": {
"id": "00aeb359-cce5-4eb5-8c5c-5f928a715664",
"name": "Nyan Catto Mod",
"description": "Playful sidebar mod featuring Bongo Cat above and marching Nyan Cats below \ud83d\udc31",
"homepage": "https://github.com/RayZ3R0/nyan-catto",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/00aeb359-cce5-4eb5-8c5c-5f928a715664/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/00aeb359-cce5-4eb5-8c5c-5f928a715664/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/00aeb359-cce5-4eb5-8c5c-5f928a715664/image.png",
"author": "RayZ3R0",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-10-29",
"updatedAt": "2024-11-03",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/00aeb359-cce5-4eb5-8c5c-5f928a715664/preferences.json"
},
"daf345ec-9a89-4b5d-9d41-47df562e29c9": {
"id": "daf345ec-9a89-4b5d-9d41-47df562e29c9",
"name": "Secret Theme",
"description": "Secret theme made for people to have a little laugh!",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/daf345ec-9a89-4b5d-9d41-47df562e29c9/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/daf345ec-9a89-4b5d-9d41-47df562e29c9/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/daf345ec-9a89-4b5d-9d41-47df562e29c9/image.png",
"author": "mauro-balades",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-08-29",
"updatedAt": "2024-08-29"
},
"b430a958-cd66-4edd-b451-c6c7cfb7e160": {
"id": "b430a958-cd66-4edd-b451-c6c7cfb7e160",
"name": "HidePlugins",
"description": "Theme to hide the plugin button from the toolbar.",
"homepage": "https://github.com/adammpkins/HidePlugins/tree/main",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b430a958-cd66-4edd-b451-c6c7cfb7e160/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b430a958-cd66-4edd-b451-c6c7cfb7e160/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/b430a958-cd66-4edd-b451-c6c7cfb7e160/image.png",
"author": "adammpkins",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-08-29",
"updatedAt": "2024-08-29"
},
"dd4f5461-1564-4e56-9f9d-f81e3c18f93c": {
"id": "dd4f5461-1564-4e56-9f9d-f81e3c18f93c",
"name": "Zen Sidebar At Right Side",
"description": "Pin or float the Zen Sidebar at the right side.",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/image.png",
"author": "AntonioSTM",
"version": "1.0.2",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/dd4f5461-1564-4e56-9f9d-f81e3c18f93c/preferences.json",
"tags": [],
"createdAt": "2024-09-03",
"updatedAt": "2024-09-03"
},
"39907934-59e9-4e42-89f0-a254d3c5e280": {
"id": "39907934-59e9-4e42-89f0-a254d3c5e280",
"name": "Sidebery",
"description": "Tweaks to support Sidebery as an alternative to Zen's native tabs and workspace implementation.",
"homepage": "https://github.com/shanto/sidebery",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/39907934-59e9-4e42-89f0-a254d3c5e280/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/39907934-59e9-4e42-89f0-a254d3c5e280/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/39907934-59e9-4e42-89f0-a254d3c5e280/image.png",
"author": "Shaan",
"version": "1.0.1",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/39907934-59e9-4e42-89f0-a254d3c5e280/preferences.json",
"tags": [],
"createdAt": "2024-10-09",
"updatedAt": "2024-10-19"
},
"58649066-2b6f-4a5b-af6d-c3d21d16fc00": {
"id": "58649066-2b6f-4a5b-af6d-c3d21d16fc00",
"name": "Private Mode Highlighting",
"description": "This theme adds extra theming and an icon to the main toolbar of any private browsing window.",
"homepage": "https://github.com/danm36/zen-browser-private-browsing-toolbar-highlighting",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/image.png",
"author": "danm36",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/58649066-2b6f-4a5b-af6d-c3d21d16fc00/preferences.json",
"version": "1.0.4",
"tags": [],
"createdAt": "2024-08-09",
"updatedAt": "2024-09-25"
},
"abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5": {
"id": "abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5",
"name": "Drop Shadow",
"description": "Adds a drop shadow to the website's browser panel.",
"homepage": "https://github.com/mohvn/dropshadow-zenbrowser",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/abc2d6d8-ea9c-4313-a99c-fb1e76e8b3e5/image.png",
"author": "mohvn",
"version": "1.0.2",
"tags": [],
"createdAt": "2024-09-03",
"updatedAt": "2024-10-19"
},
"f7c71d9a-bce2-420f-ae44-a64bd92975ab": {
"id": "f7c71d9a-bce2-420f-ae44-a64bd92975ab",
"name": "Better Unloaded Tabs",
"description": "Makes unloaded tabs easier to notice by making them greyscale and transparent.",
"homepage": "https://github.com/Felkazz/zen-browser-better-unloaded-tabs",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f7c71d9a-bce2-420f-ae44-a64bd92975ab/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f7c71d9a-bce2-420f-ae44-a64bd92975ab/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/f7c71d9a-bce2-420f-ae44-a64bd92975ab/image.png",
"author": "Felkazz",
"version": "1.0.1",
"tags": [],
"createdAt": "2024-10-12",
"updatedAt": "2024-10-12"
},
"bc25808c-a012-4c0d-ad9a-aa86be616019": {
"id": "bc25808c-a012-4c0d-ad9a-aa86be616019",
"name": "sleek border",
"description": "Sleek Zen browser borders with subtle opacity for a refined, modern look.",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bc25808c-a012-4c0d-ad9a-aa86be616019/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bc25808c-a012-4c0d-ad9a-aa86be616019/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bc25808c-a012-4c0d-ad9a-aa86be616019/image.png",
"author": "Lumio4u",
"version": "1.0.0",
"createdAt": "2024-10-14",
"updatedAt": "2024-10-19",
"tags": []
},
"ba3621a3-3967-40d4-86cd-519eae7f76c2": {
"id": "ba3621a3-3967-40d4-86cd-519eae7f76c2",
"name": "Hide Unified Extensions",
"description": "You can finally hide the unifiedExtensions button.",
"homepage": "https://github.com/tangowithfoxtrot/zen-hide-unified-extensions",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ba3621a3-3967-40d4-86cd-519eae7f76c2/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ba3621a3-3967-40d4-86cd-519eae7f76c2/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ba3621a3-3967-40d4-86cd-519eae7f76c2/image.png",
"author": "tangowithfoxtrot",
"createdAt": "2024-10-20",
"updatedAt": "2024-10-20",
"tags": []
},
"c5f7fb68-cc75-4df0-8b02-dc9ee13aa773": {
"id": "c5f7fb68-cc75-4df0-8b02-dc9ee13aa773",
"name": "Audio TabIcon Plus",
"description": "Enhance audio/mute tab-icon",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/image.png",
"author": "DaitiDay",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/c5f7fb68-cc75-4df0-8b02-dc9ee13aa773/preferences.json",
"version": "1.0.1",
"tags": [
"tabs"
],
"createdAt": "2024-08-28",
"updatedAt": "2024-09-07"
},
"253a3a74-0cc4-47b7-8b82-996a64f030d5": {
"id": "253a3a74-0cc4-47b7-8b82-996a64f030d5",
"name": "Floating History",
"description": "Detaches and moves a redesgined history sidebar to the left so that it appears to float and matches the zen aesthetic.",
"homepage": "https://github.com/ahmaadaziz/zen-floating-history",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/253a3a74-0cc4-47b7-8b82-996a64f030d5/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/253a3a74-0cc4-47b7-8b82-996a64f030d5/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/253a3a74-0cc4-47b7-8b82-996a64f030d5/image.png",
"author": "ahmaadaziz",
"createdAt": "2024-10-12",
"updatedAt": "2024-10-12",
"version": "1.0.0"
},
"bb61b145-6875-4afe-86f2-ab00024459dc": {
"id": "bb61b145-6875-4afe-86f2-ab00024459dc",
"name": "AstroTheme Dark",
"description": "A dark theme inspired by AstroNvim's AstroTheme color palette",
"homepage": "https://github.com/AstroNvim/astrotheme",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bb61b145-6875-4afe-86f2-ab00024459dc/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bb61b145-6875-4afe-86f2-ab00024459dc/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/bb61b145-6875-4afe-86f2-ab00024459dc/image.png",
"author": "mehalter",
"version": "1.0.0",
"tags": [
"color scheme",
"dark"
],
"createdAt": "2024-10-12",
"updatedAt": "2024-10-12"
},
"ecda11ae-d3fd-4052-8881-303b2504e3ce": {
"id": "ecda11ae-d3fd-4052-8881-303b2504e3ce",
"name": "Gruvbox",
"description": "A gruvbox based theme",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/ecda11ae-d3fd-4052-8881-303b2504e3ce/image.png",
"author": "Blaster4385",
"version": "1.0.0",
"isDarkMode": true,
"isColorTheme": true,
"tags": [
"color scheme",
"dark"
],
"createdAt": "2024-08-23",
"updatedAt": "2024-08-24"
},
"81fcd6b3-f014-4796-988f-6c3cb3874db8": {
"id": "81fcd6b3-f014-4796-988f-6c3cb3874db8",
"name": "Zen Context Menu",
"description": "Declutter your right click menu, hide options you don't need",
"homepage": "https://github.com/KiKaraage/ZenMods/",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/81fcd6b3-f014-4796-988f-6c3cb3874db8/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/81fcd6b3-f014-4796-988f-6c3cb3874db8/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/81fcd6b3-f014-4796-988f-6c3cb3874db8/image.png",
"author": "KiKaraage",
"version": "1.1.4",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/81fcd6b3-f014-4796-988f-6c3cb3874db8/preferences.json",
"tags": [
"context menu"
],
"createdAt": "2024-10-06",
"updatedAt": "2024-10-23"
},
"d93e67f8-e5e1-401e-9b82-f9d5bab231e6": {
"id": "d93e67f8-e5e1-401e-9b82-f9d5bab231e6",
"name": "Super Url Bar",
"description": "Get simple rounded edges, centered text, a removed border for your url bar and a background blur.",
"homepage": "https://github.com/JLBlk/Zen-Themes/tree/main/SuperUrlBar",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/image.png",
"author": "JLBlk",
"version": "1.4.2",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/d93e67f8-e5e1-401e-9b82-f9d5bab231e6/preferences.json",
"tags": [
"urlbar"
],
"createdAt": "2024-08-31",
"updatedAt": "2024-11-03"
},
"5a007026-0801-4a5d-9740-f17dc1c3ff21": {
"id": "5a007026-0801-4a5d-9740-f17dc1c3ff21",
"name": "Hide Window Buttons",
"description": "Hide the minimize, maximize, and close window buttons",
"homepage": "https://github.com/n7itro/Zen-Themes",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/image.png",
"author": "n7itro",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5a007026-0801-4a5d-9740-f17dc1c3ff21/preferences.json",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-08-16",
"updatedAt": "2024-08-22"
},
"803c7895-b39b-458e-84f8-a521f4d7a064": {
"id": "803c7895-b39b-458e-84f8-a521f4d7a064",
"name": "Hide Inactive Workspaces",
"description": "Reducing space by hiding inactive workspace icons, extremely useful if you have a lot of workspaces.",
"homepage": "https://github.com/GunGunGun/zenCustomCursorMod/tree/main/autohide_inactive_workspaces",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/803c7895-b39b-458e-84f8-a521f4d7a064/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/803c7895-b39b-458e-84f8-a521f4d7a064/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/803c7895-b39b-458e-84f8-a521f4d7a064/image.png",
"author": "GunGunGun",
"version": "1.0.0",
"tags": [],
"createdAt": "2024-11-02",
"updatedAt": "2024-11-02"
},
"5ca67725-1f43-4ff2-9fcf-0c59af71c73a": {
"id": "5ca67725-1f43-4ff2-9fcf-0c59af71c73a",
"name": "Midnight",
"description": "A dark and pleasant to the eyes purple theme :)",
"homepage": "",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ca67725-1f43-4ff2-9fcf-0c59af71c73a/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ca67725-1f43-4ff2-9fcf-0c59af71c73a/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/5ca67725-1f43-4ff2-9fcf-0c59af71c73a/image.png",
"author": "shaeriz",
"version": "1.0.0",
"isDarkMode": true,
"isColorTheme": true,
"tags": [
"color scheme",
"dark"
],
"createdAt": "2024-08-31",
"updatedAt": "2024-08-31"
},
"6cd4bca9-f17d-4461-b554-844d69a4887c": {
"id": "6cd4bca9-f17d-4461-b554-844d69a4887c",
"name": "Zen Minimal Exit Menu",
"description": "A zen browser mod that changes the exit menu to 3 circles similar (but a bit different) to one in MacOS.",
"homepage": "https://github.com/Dinno-DEV/zen-minimal-exit-menu",
"style": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/chrome.css",
"readme": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/readme.md",
"image": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/image.png",
"preferences": "https://raw.githubusercontent.com/zen-browser/theme-store/main/themes/6cd4bca9-f17d-4461-b554-844d69a4887c/preferences.json",
"author": "Dinno-DEV",
"version": "1.0.2",
"tags": [],
"createdAt": "2024-09-19",
"updatedAt": "2024-10-06"
},
"e3eec307-7c64-4cbd-a0c5-3447cd45a840": {
"id": "e3eec307-7c64-4cbd-a0c5-3447cd45a840",