forked from uso-archive/data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.txt
1036 lines (856 loc) · 49.6 KB
/
changelog.txt
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
commit e326ba9ba0ffb79b891d9b46435fcffeea057b68
Author: 33kk <[email protected]>
Date: Wed Sep 30 21:36:40 2020 +0300
data: formatting
commit 7b80f20cac8e94a2ac095b5d8682914e25014d22
Author: 33kk <[email protected]>
Date: Wed Sep 30 20:30:52 2020 +0300
scraper: fix commit messages saying update when style is new
commit 0581d9f81cba3e60c95ec2f263c5b18d6a662658
Author: 33kk <[email protected]>
Date: Wed Sep 30 20:29:15 2020 +0300
scraper: store files formatted
commit 3b4a2f3992f6a07ecdc4745be55ec0e516545da0
Author: 33kk <[email protected]>
Date: Wed Sep 30 20:27:46 2020 +0300
ci: add turnstyle action, set update interval to every 6 hours
commit d3cf27c5af06394cad9cf61ad3801f38367d6526
Author: 33kk <[email protected]>
Date: Wed Sep 30 20:27:06 2020 +0300
converters: fix unknown id in markdown
commit f24315c96046195f94a8340b398cb9870fa76438
Author: 33kk <[email protected]>
Date: Wed Sep 30 15:36:31 2020 +0300
web: fix screenshot margin and move author and license
commit 7289d861ecc5a3b59b4f8ef90c83f28fb52ef3a8
Author: 33kk <[email protected]>
Date: Wed Sep 30 15:35:58 2020 +0300
web: show total installs
commit 1cf264db2e239c1a4adb48a3764e63b3f63cfcce
Author: GitHub Actions <[email protected]>
Date: Wed Sep 30 12:19:41 2020 +0000
data: auto update
[Update, 2020-09-30T08:15:27.000Z] Fiery Red theme for SkyCrypt (190135)
[Update, 2020-09-30T11:15:29.000Z] no baners.youtube (172587)
[Update, 2020-09-30T10:09:25.000Z] Compact Tube (White) v1.0.8 (β) (186936)
[Update, 2020-09-30T09:43:49.000Z] ProtonMail Midnight Blue <beta> (160537)
[Update, 2020-09-30T11:47:41.000Z] 3ddd.ru - Dark Theme (163681)
[Update, 2020-09-30T10:17:31.000Z] Dokomi Expo (190134)
[Update, 2020-09-30T08:27:56.000Z] NicoVideo Dark Theme Custom (187134)
[Update, 2020-09-30T09:19:27.000Z] EZGIF Dark (190136)
commit 3ad7ef08778d10c229445b66b197acb4a8b78309
Author: 33kk <[email protected]>
Date: Wed Sep 30 15:08:28 2020 +0300
scraper: move converters to separate file
commit f3e9af48dfabfcd538df226664b04f708c936fbb
Author: 33kk <[email protected]>
Date: Wed Sep 30 14:58:08 2020 +0300
scraper: hide android styles from index
commit 636c0d1987ee2202ff9aa69ee86db767390f7c66
Author: 33kk <[email protected]>
Date: Wed Sep 30 14:57:23 2020 +0300
data: hide android styles from index
commit 22366f2ac0d61bcfab96433839e84d2f05c91ee6
Author: GitHub Actions <[email protected]>
Date: Wed Sep 30 08:16:35 2020 +0000
data: auto update
[Update, 2020-09-30T05:05:13.000Z] Canta darker for Mastodon (180297)
[Update, 2020-09-30T07:19:40.000Z] 夜间斗鱼 NightMode For Douyu.com (158117)
[Update, 2020-09-30T07:23:44.000Z] stylish NightMode (190132)
[Update, 2020-09-30T06:19:20.000Z] Dark theme for Google Translate (190133)
[Update, 2020-09-30T07:59:03.000Z] NicoVideo Dark Theme Custom (187134)
[Update, 2020-09-30T08:11:56.000Z] Dokomi Expo (190134)
[Update, 2020-09-30T04:36:21.000Z] 百度系列改造 (185937)
commit 9bd7f9abcc898305b0e36445d3d89987f1af2068
Author: GitHub Actions <[email protected]>
Date: Wed Sep 30 04:16:30 2020 +0000
data: auto update
[Update, 2020-09-30T00:37:04.000Z] Ameblo Management (158183)
[Update, 2020-09-30T01:42:15.000Z] 作業実施報告書 | Workship (190126)
[Update, 2020-09-30T00:44:40.000Z] F-List WX Blue (New Site Desktop Width) (188323)
[Update, 2020-09-30T00:45:12.000Z] F-List WX Dark (New Site Desktop Width) (188057)
commit 759b6e406de2842a3a1ef896e30c6161d4ac7eb6
Author: GitHub Actions <[email protected]>
Date: Wed Sep 30 00:38:47 2020 +0000
data: auto update
[Update, 2020-09-28T21:08:52.000Z] Compact Tube (White) v1.0.7 (β) (186936)
[Update, 2020-09-28T22:25:16.000Z] YouTube Black - KMV (174767)
[Update, 2020-09-29T23:47:38.000Z] Amazon - Minimal Dark (166875)
[Update, 2020-09-29T20:20:42.000Z] 3ddd.ru - Dark Theme (163681)
[Update, 2020-09-29T03:57:25.000Z] Bob Esponja Style for Google.com.br (190065)
[Update, 2020-09-29T00:21:01.000Z] Wolvden Dark Blues (190052)
[Update, 2020-09-29T04:06:49.000Z] UnderTale Chara (190072)
[Update, 2020-09-29T04:00:03.000Z] TBBT Style for Google.com.br (190066)
[Update, 2020-09-29T21:01:50.000Z] Dededianas (190115)
[Update, 2020-09-28T19:59:20.000Z] Amazon - Dark slate (133725)
[Update, 2020-09-28T13:50:29.000Z] Reactor - Anime Style (with Dark theme) (138637)
[Update, 2020-09-29T00:43:07.000Z] Readable Twitch (190029)
[Update, 2020-09-28T22:13:19.000Z] VK Plus (107316)
[Update, 2020-09-29T05:54:51.000Z] BaiduXs 20年09月百度多栏 百度Xs-简洁 多栏 卡片 (189519)
[Update, 2020-09-29T13:58:07.000Z] weibo-dark (190089)
[Update, 2020-09-29T11:46:09.000Z] Planeta (190084)
[Update, 2020-09-29T14:17:34.000Z] Dark & section coms pour gogos pas drôles disabled (180969)
[Update, 2020-09-29T03:13:00.000Z] algo........ (190070)
[Update, 2020-09-28T16:15:59.000Z] Scrollbar Custom - KMV (182441)
[Update, 2020-09-29T23:33:53.000Z] TorrentFreak - Minimal Dark (156697)
[Update, 2020-09-28T19:25:30.000Z] The Bell Tree - 2020 Fair Theme (189774)
[Update, 2020-09-28T18:16:59.000Z] μTorrent Web Clear UI (190027)
[Update, 2020-09-29T16:50:10.000Z] Yahoo Fantasy Dark Night Theme (152103)
[Update, 2020-09-29T03:58:48.000Z] Flamengo Style for Google.com.br (190064)
[Update, 2020-09-29T11:00:00.000Z] Clean Human Benchmark (190080)
[Update, 2020-09-28T15:47:09.000Z] Custom KickAssAnime (173117)
[Update, 2020-09-28T20:57:07.000Z] bubbleteabrin (190032)
[Update, 2020-09-29T06:32:01.000Z] Google dark search (188928)
[Update, 2020-09-29T11:13:42.000Z] Tunisianet Dark (190081)
[Update, 2020-09-28T20:21:35.000Z] 2ch Reborn (165011)
[Update, 2020-09-29T16:24:25.000Z] Dark Google Collection (174098)
[Update, 2020-09-29T09:38:26.000Z] Roblox aqua (DARK MODE) (184772)
[Update, 2020-09-29T17:17:47.000Z] Baidu-百度搜索简单宽屏2020 (189928)
[Update, 2020-09-28T12:23:04.000Z] Youtube green green green (151807)
[Update, 2020-09-29T17:10:53.000Z] VK Deep Violet / тема для ВКонтакте (159819)
[Update, 2020-09-28T19:36:14.000Z] Google Darkest Fusion 1/2 (167419)
[Update, 2020-09-29T19:45:09.000Z] Handle your academic challenges using online assig (190114)
[Update, 2020-09-28T14:46:32.000Z] Roblox Old Light Theme (177302)
[Update, 2020-09-28T12:25:51.000Z] IVX Kibana Filter Fix (190019)
[Update, 2020-09-29T12:01:44.000Z] Foodgawker, Craftgawker, etc... by BamaBraves (79022)
[Update, 2020-09-29T13:37:01.000Z] тёмная тема для школьного портала (181339)
[Update, 2020-09-28T13:44:52.000Z] 夜间斗鱼 NightMode For Douyu.com (158117)
[Update, 2020-09-29T03:58:53.000Z] Friends Style 2 for Google.com.br (190053)
[Update, 2020-09-29T20:43:23.000Z] 𝐋𝐙𝐓>𝐍𝐄𝐓 𝐌𝐢𝐝𝐧𝐢𝐠𝐡𝐭 𝐂𝐥𝐚𝐬𝐬𝐢𝐜 (173629)
[Update, 2020-09-29T14:25:30.000Z] Facebook Linguaevum (179746)
[Update, 2020-09-29T03:58:13.000Z] Dark Style for Google.com.br (190060)
[Update, 2020-09-29T04:00:15.000Z] Henry Danger Style for Google.com.br (190068)
[Update, 2020-09-29T03:57:40.000Z] Broklyn 99 Style for Google.com.br (190067)
[Update, 2020-09-29T19:20:29.000Z] Donut Rain (190113)
[Update, 2020-09-28T14:59:22.000Z] Roes (190021)
[Update, 2020-09-29T16:03:23.000Z] Tiktok Dark/Night Mode by SIR (2020) (185276)
[Update, 2020-09-28T15:01:07.000Z] Twitter - Hide Images (189975)
[Update, 2020-09-29T02:12:11.000Z] ROBLOX purple cherry blossom theme (190055)
[Update, 2020-09-29T07:40:06.000Z] Brick Hill: Animated Rainbow Theme (180564)
[Update, 2020-09-29T09:42:59.000Z] StackSuite Just Answers (181633)
[Update, 2020-09-28T22:20:06.000Z] wolvden simply dark (189994)
[Update, 2020-09-27T19:21:00.000Z] Abyss for 4Chan (132317)
[Update, 2020-09-27T20:23:06.000Z] UwU YEH MELIODAS DEMON FORM MAD SUS NO CAP (189980)
[Update, 2020-09-27T19:30:43.000Z] Disable YouTube Distractions (189978)
[Update, 2020-09-27T15:35:32.000Z] Just Dance Now 2021 Style | Based on Ticpo Style (189635)
[Update, 2020-09-27T20:29:06.000Z] SHEEESH SUPA HEEET NO CAP NARUTO SHEESH (189982)
[Update, 2020-09-27T19:25:31.000Z] Vanilla Dark 2 VK Fix/Mod PART 1 of 2 (132224)
[Update, 2020-09-29T14:49:51.000Z] bts wallpaper for roblox (190091)
[Update, 2020-09-27T19:46:42.000Z] TJ порвался (189869)
[Update, 2020-09-27T20:12:31.000Z] Genius Night Theme (177730)
[Update, 2020-09-29T03:59:18.000Z] Friends Style for Google.com.br (190054)
[Update, 2020-09-27T18:31:50.000Z] Cool Backround Roblox (189977)
[Update, 2020-09-26T13:18:07.000Z] Simple Baidu 简百度 (169907)
[Update, 2020-09-26T17:07:37.000Z] Baidu Art(原Baidu Lite Repair百度轻修复) (187554)
[Update, 2020-09-26T16:42:15.000Z] Darker Google (43463)
[Update, 2020-09-26T18:40:06.000Z] Google miminal (165696)
[Update, 2020-09-26T18:40:54.000Z] wnacg 紳士漫畫 (176249)
[Update, 2020-09-26T12:47:37.000Z] Userstyles / Greasy Fork Enhancer Dark-Grey v.187 (56792)
[Update, 2020-09-26T17:27:51.000Z] Darker Userstyles.org (133817)
[Update, 2020-09-26T14:33:29.000Z] Multra.xyz Dark (189918)
[Update, 2020-09-28T01:38:17.000Z] Wikipedia SPAM Remover (189226)
[Update, 2020-09-28T01:04:32.000Z] Dark Scele CSUI (189366)
[Update, 2020-09-28T03:26:00.000Z] UACH Aulas3 Oscuro (189995)
[Update, 2020-09-27T21:37:54.000Z] Darker South Park (146397)
[Update, 2020-09-26T12:54:22.000Z] Let me fix that for you, Facebook (188578)
[Update, 2020-09-28T07:22:53.000Z] shotu todoroki by jibooreee (190007)
[Update, 2020-09-28T06:58:07.000Z] CSDN BLOG PRETTIFY(CSDN博客页美化) (162281)
[Update, 2020-09-28T08:55:54.000Z] fairygarden (190011)
[Update, 2020-09-29T05:43:50.000Z] YouTube player control bar on the outside (185571)
[Update, 2020-09-27T09:39:52.000Z] dark qresearch & frens (189958)
[Update, 2020-09-27T10:42:28.000Z] Kivinet dark mode (187997)
[Update, 2020-09-27T08:41:40.000Z] More Dark Inverted Mode (185675)
[Update, 2020-09-27T10:22:32.000Z] cute backgroud (189963)
[Update, 2020-09-26T16:45:39.000Z] Bilibili 哔哩哔哩 Nekopara (136957)
[Update, 2020-09-28T05:59:11.000Z] 数字尾巴dgtle 单栏模式 (133917)
[Update, 2020-09-28T10:16:29.000Z] 微博精简 (93351)
[Update, 2020-09-26T14:48:16.000Z] YT suggestion blurring (182333)
[Update, 2020-09-27T04:11:57.000Z] Dark Wattpad (173741)
[Update, 2020-09-28T01:48:17.000Z] Reddit Custom (RES Compatible) - KMV (182165)
[Update, 2020-09-27T20:28:53.000Z] Microsoft Login - Dark Mode (169528)
[Update, 2020-09-27T02:42:49.000Z] OSC-Dark-HomePage (188677)
[Update, 2020-09-26T12:30:09.000Z] Vivaldi - Delayed color changer (189914)
[Update, 2020-09-27T13:16:20.000Z] 斗鱼 DouyuTV 黑色模式 夜晚模式 Dark Theme 2020.9.27 (124692)
[Update, 2020-09-28T07:27:51.000Z] 00todoroki00 mha my hero academia by jibooreee (190010)
[Update, 2020-09-27T01:44:33.000Z] Bunny girl doesnt dream of (189947)
[Update, 2020-09-28T09:08:47.000Z] Google Search Green Green Green (148956)
[Update, 2020-09-27T09:30:48.000Z] SHEEP (189959)
[Update, 2020-09-27T09:53:22.000Z] Custom + Clean 123movies (178391)
[Update, 2020-09-26T03:00:23.000Z] MDN web docs Dark Theme (186581)
[Update, 2020-09-26T00:46:46.000Z] Darklingo++ (169205)
[Update, 2020-09-27T19:05:05.000Z] Vanilla Dark 2 VK Fix/Mod PART 2 of 2 (165927)
[Update, 2020-09-26T00:53:54.000Z] Custom Dark Google (173297)
[Update, 2020-09-25T23:57:06.000Z] MMO background/character pack (114267)
[Update, 2020-09-26T01:52:48.000Z] docs.filecoin.io (189832)
[Update, 2020-09-26T00:31:33.000Z] Remove Recaptcha thing (189877)
[Update, 2020-09-26T00:01:11.000Z] Moe background/character pack (115108)
[Update, 2020-09-26T05:54:51.000Z] Legacy REDDIT - Dark & Minimal (189887)
[Update, 2020-09-25T19:58:57.000Z] A18 (189870)
[Update, 2020-09-26T00:00:40.000Z] School/Romcom background/render pack (114301)
[Update, 2020-09-25T19:59:33.000Z] hina chan (189871)
[Update, 2020-09-25T19:12:27.000Z] NewVK Dark Theme - Telegram Style (159881)
[Update, 2020-09-29T03:59:32.000Z] La Casa de Papel Style for Google.com.br (190062)
[Update, 2020-09-25T19:13:15.000Z] OZEN THE IMMOVABLE (189868)
[Update, 2020-09-26T00:06:50.000Z] Roblox Old Halloween Logo (189876)
[Update, 2020-09-25T22:34:24.000Z] Add custom characters on the sides! (113824)
[Update, 2020-09-26T06:26:03.000Z] Hürriyet - Reklamsız 2020 (189889)
[Update, 2020-09-26T06:40:37.000Z] 百度多栏卡片搜索 (158844)
[Update, 2020-09-25T19:47:39.000Z] SkyCrypt Draconic Purple Theme (189826)
[Update, 2020-09-26T06:11:36.000Z] Sözcü - Reklamsız 2020 (189888)
[Update, 2020-09-26T07:55:22.000Z] Centrelink Dark (173401)
[Update, 2020-09-26T23:54:28.000Z] WCCFtech.com NightMode (137809)
[Update, 2020-09-25T18:39:53.000Z] Dark Minimal WhatsApp Web (182006)
[Update, 2020-09-25T09:54:09.000Z] willy wonka (189844)
[Update, 2020-09-25T09:21:01.000Z] Roblox Halloween Wallpaper! (189839)
[Update, 2020-09-26T09:10:37.000Z] Ameblo Management (158183)
[Update, 2020-09-26T10:47:06.000Z] PSD E-Desk (Dark Mode Theme) (189168)
[Update, 2020-09-26T04:40:47.000Z] HackerNews Modern Dark (189885)
[Update, 2020-09-27T04:34:42.000Z] MELIODAS DEMON FORM NO WAY CAP YESSIR (189951)
[Update, 2020-09-25T08:44:38.000Z] chrome font fix on win10 (173642)
[Update, 2020-09-25T18:08:47.000Z] Compact Tube v1.0.0 Beta (186420)
[Update, 2020-09-25T19:49:46.000Z] SkyCrypt Sunrise Orange Theme (189827)
[Update, 2020-09-25T08:50:19.000Z] devRant Decolorizer (161176)
[Update, 2020-09-26T09:22:29.000Z] UserStyles, How it Should Have Been (189900)
[Update, 2020-09-25T17:24:44.000Z] The Old NitroType (178813)
[Update, 2020-09-25T09:01:22.000Z] Crunchyroll purple dark (189837)
[Update, 2020-09-26T22:11:04.000Z] Dark Wired (189938)
[Update, 2020-09-25T11:15:46.000Z] Last.fm - Dark (181039)
[Update, 2020-09-26T12:29:28.000Z] Pure 百度 - 搜索/文库/知道/网盘/百科等多合一 (173673)
[Update, 2020-09-26T11:54:14.000Z] 启程实验室 (189626)
[Update, 2020-09-26T10:00:25.000Z] Cookie Clicker - Compact (189901)
[Update, 2020-09-25T18:12:50.000Z] YouTube Old On New v1.0.0 Beta 3 (186422)
[Update, 2020-09-25T10:54:29.000Z] Youtube rounded elements (188164)
[Update, 2020-09-26T10:49:41.000Z] tucao widescreen (181032)
[Update, 2020-09-25T10:14:14.000Z] Douyu Easy (178855)
[Update, 2020-09-25T13:16:26.000Z] no baners.vk (114875)
[Update, 2020-09-24T17:11:03.000Z] Stream - Tolbek + Clones Widescreen v.14 (170956)
[Update, 2020-09-24T19:02:03.000Z] Dusky Gray hightech.fm (beta) (148712)
[Update, 2020-09-24T15:12:48.000Z] Blue Moveing Fire (189814)
[Update, 2020-09-24T16:16:20.000Z] Dark theme knigavuhe.org (188624)
[Update, 2020-09-24T18:53:16.000Z] web.de Login & Postfach + optionalen Dark Mode (120173)
[Update, 2020-09-25T18:40:18.000Z] plurall login dark (189865)
[Update, 2020-09-25T23:27:47.000Z] Make MAL translucent (182548)
[Update, 2020-09-24T20:29:17.000Z] Revert StackExchange Formatting (updated!) (188588)
[Update, 2020-09-26T11:52:44.000Z] Mooc.fi Java [Dark Mode] (189720)
[Update, 2020-09-26T10:39:48.000Z] Cookie Clicker - Stacked (189909)
[Update, 2020-09-24T15:21:52.000Z] dddddddddd (189815)
[Update, 2020-09-25T08:31:25.000Z] Google Meet Crazy Neon (189833)
[Update, 2020-09-24T22:37:58.000Z] Big Whisper Button (189820)
[Update, 2020-09-25T02:01:59.000Z] Roblox Dark by BamaBraves (169013)
[Update, 2020-09-24T23:16:11.000Z] YouTube Studio Dark Theme (188483)
[Update, 2020-09-25T06:47:18.000Z] 【知乎】大字+护眼色 zhihu (148959)
[Update, 2020-09-24T22:33:50.000Z] Google Searches Dark Theme (180957)
[Update, 2020-09-25T08:30:44.000Z] Bilibili 黑色模式 夜晚模式 Dark Theme 哔哩哔哩 2020.9.25 (121587)
[Update, 2020-09-25T20:33:33.000Z] Pepper.pl - Full Dark Theme 2019/2020 (171874)
[Update, 2020-09-24T14:48:57.000Z] Roblox Fire (189813)
[Update, 2020-09-25T02:58:26.000Z] YouTube Dark by BamaBraves (162835)
[Update, 2020-09-25T19:29:36.000Z] better animeflv [no ads] (187835)
[Update, 2020-09-25T01:37:48.000Z] Youtube Vanilla Dark (147992)
[Update, 2020-09-24T18:11:21.000Z] Gmx - webmails - restore blue buttons bar (189816)
[Update, 2020-09-24T18:23:33.000Z] Roblox DevHub Dark (165585)
[Update, 2020-09-25T08:42:50.000Z] Instagram Night Mode (184220)
[Update, 2020-09-24T20:27:05.000Z] GOOGLE - Onna bugeisha (Female Samurai) (137268)
[Update, 2020-09-24T15:31:43.000Z] Complete Google Search Font Fix (174384)
[Update, 2020-09-24T11:34:41.000Z] aws-navbar-color-by-region (150583)
[Update, 2020-09-25T02:06:30.000Z] Keystone Dark (189824)
[Update, 2020-09-24T21:32:59.000Z] Twitter - Clean 2019 Design (Now With Light Blue™) (173920)
commit badcc0b63a8ce67b8dd296e33445e8ddef696f24
Author: Marko <[email protected]>
Date: Wed Sep 30 02:42:49 2020 +0300
other: replace badge in readme
commit d7396a3c4dea77b29d4ae30a7d260260a006a93b
Author: Marko <[email protected]>
Date: Wed Sep 30 02:39:30 2020 +0300
scraper: clean up update action
commit c1a6477c0322d3664b51ce0dbbea45fc73c993e7
Author: 33kk <[email protected]>
Date: Wed Sep 30 02:21:34 2020 +0300
web: github pages attempt #3
commit aa11a57f4b99127ffaf153db4b38429f877fb03f
Author: 33kk <[email protected]>
Date: Wed Sep 30 02:15:54 2020 +0300
web: github pages attempt #2
commit 093d993b2cb1b5875ee9b6300191856baca8141c
Author: 33kk <[email protected]>
Date: Wed Sep 30 02:15:15 2020 +0300
web: github pages attempt #2
commit c3b1b85130f53ad47fb65c21ea4e60cacb2427a9
Author: 33kk <[email protected]>
Date: Wed Sep 30 02:08:58 2020 +0300
web: github pages attempt #1
commit 502825fb22c7267e11d337a3f156a1dee2abd101
Author: 33kk <[email protected]>
Date: Wed Sep 30 01:39:58 2020 +0300
web: delete template readme
commit 49167af4908f7c393d56c7aa0e791d7e20891b7b
Author: 33kk <[email protected]>
Date: Wed Sep 30 01:34:10 2020 +0300
web: filter by format
commit bc64a729f065f97701dcc9bc58d8dcb934f4028f
Author: 33kk <[email protected]>
Date: Wed Sep 30 01:11:11 2020 +0300
data: fix format field missing
commit 1c98f934c580a0ec43f03f103770e6a5581bf5cf
Author: 33kk <[email protected]>
Date: Tue Sep 29 23:25:38 2020 +0300
web: use unix time in index
commit 0be3965bb371b2c5adfa5e0bc2097585a170d85c
Author: 33kk <[email protected]>
Date: Tue Sep 29 23:25:24 2020 +0300
scraper: use unix time in index
commit 3d4cbe03471c92b54cd78ace1e2c217de7a72684
Author: 33kk <[email protected]>
Date: Tue Sep 29 23:24:30 2020 +0300
data: use unix time in index
commit b1d3d63d5a0e693744859aeab69cce3eb6086c4b
Author: 33kk <[email protected]>
Date: Tue Sep 29 23:14:02 2020 +0300
data: update indexes
commit 6d212b09ab293c443cac7f71d4f431b17147b812
Author: 33kk <[email protected]>
Date: Tue Sep 29 23:06:52 2020 +0300
scraper: fix archived being false
commit d5e916f97644e639f4c18a76132761667aa5351f
Author: 33kk <[email protected]>
Date: Tue Sep 29 22:43:52 2020 +0300
data: remove usercss for android styles
commit 4c9b3e91d2ee9a41a44eff650685ee99e82e7a8a
Author: 33kk <[email protected]>
Date: Tue Sep 29 22:00:07 2020 +0300
data: set style type to uso-android for android styles
commit d6782ed87baf2b0ac594f6786e2f7953f4a1f260
Author: 33kk <[email protected]>
Date: Thu Sep 24 14:11:48 2020 +0300
web: use smaller index
commit ac5ea74974ef46891e75c081a0f684efe624f942
Author: 33kk <[email protected]>
Date: Thu Sep 24 13:50:41 2020 +0300
data: reindex
commit a38f6b4b32d74aafe053459518da3a2c6fddba1a
Author: GitHub Actions <[email protected]>
Date: Thu Sep 24 10:47:23 2020 +0000
data: auto update
[Update, 2020-09-24T10:01:50.000Z] NewVK Dark Theme - Telegram Style (159881)
[Update, 2020-09-24T08:26:27.000Z] Roblox Dark by BamaBraves (169013)
commit e212e73a63f770367ad389e1b71282f774bf676b
Author: 33kk <[email protected]>
Date: Thu Sep 24 13:39:38 2020 +0300
scraper: maybe this time actually fix updater
commit 58cb392de8ed0055831f18f9d631f9c92c3dc38f
Author: GitHub Actions <[email protected]>
Date: Thu Sep 24 08:17:26 2020 +0000
data: auto update
[Update, 2020-09-24T07:51:46.000Z] 2020 Libero Mail (176285)
[New, 2020-09-24T05:13:22.000Z] Dark n Simple IMDb (189776)
[Update, 2020-09-24T04:44:14.000Z] DUELING NEXUS CHANGER (189713)
[Update, 2020-09-24T05:05:00.000Z] StackSuite Just Answers (181633)
[Update, 2020-09-24T08:16:07.000Z] Roblox Dark by BamaBraves (169013)
[Update, 2020-09-24T06:04:39.000Z] Dark dtf.ru (189679)
[New, 2020-09-24T07:39:45.000Z] The Bell Tree - 2020 Fair Theme (189774)
[Update, 2020-09-24T04:51:50.000Z] Dark Twitch -by NORWIN-09.2020 (140262)
[Update, 2020-09-24T07:51:07.000Z] Minimalist Dark Theme (181134)
[Update, 2020-09-24T04:39:06.000Z] YouTube ホームのサムネ縮小化 (177057)
commit e8f9b5eb80f9c05e0fb7f457627f2ccc5e5a2e2a
Author: GitHub Actions <[email protected]>
Date: Thu Sep 24 04:16:29 2020 +0000
data: auto update
[Update, 2020-09-24T00:41:44.000Z] whatsapp seguro (146933)
[Update, 2020-09-24T01:24:20.000Z] google Dark By BamaBraves (78377)
commit fc7a0e309fb3fe9efa00ea8ea3c44c1eb077a977
Author: GitHub Actions <[email protected]>
Date: Thu Sep 24 00:33:36 2020 +0000
data: auto update
[Update, 2020-09-24T00:13:23.000Z] Google search \"old style\" (179230)
[New, 2020-09-24T00:23:16.000Z] Green Lemon (189770)
commit 3176fc61af6fac6affd024d8e7e98bab064a2e16
Author: 33kk <[email protected]>
Date: Thu Sep 24 02:25:27 2020 +0300
scraper: fix updater
commit 0716c560416cef7ad8d7ddf234a43d07f258a5ef
Author: 33kk <[email protected]>
Date: Thu Sep 24 01:52:51 2020 +0300
data: update
commit 4d202589fee6eff5cab02f3694dea05aec710a58
Author: 33kk <[email protected]>
Date: Thu Sep 24 01:45:39 2020 +0300
web: add sort dropdown
commit 223906f8cdee1f9b902658a2dc4bf37c3d4b196b
Author: 33kk <[email protected]>
Date: Wed Sep 23 18:51:15 2020 +0300
web: replace userstyles.org links
commit 3c4814f6ee6bcf3fd13140949f73021d6067e51d
Author: 33kk <[email protected]>
Date: Tue Sep 22 18:55:33 2020 +0300
web: show additional style screenshots
commit 3416a81a96285639793c49d13c34cd6d48816afa
Author: 33kk <[email protected]>
Date: Tue Sep 22 18:24:28 2020 +0300
add code
commit e94442feb0bc7ab166a96812ac3b215847de3163
Author: 33kk <[email protected]>
Date: Tue Sep 22 18:18:39 2020 +0300
data: add markdown
commit 772123838c8de15e28b7d18b8dcfb3cd11d3e2d5
Author: 33kk <[email protected]>
Date: Tue Sep 22 18:15:00 2020 +0300
data: add other things
commit 308416ea36c338db3a9d40568530081a59baaae9
Author: 33kk <[email protected]>
Date: Tue Sep 22 17:48:15 2020 +0300
data: add uso styles
commit 8e97e1294841bd9c03de536442b14629c0a36449
Author: 33kk <[email protected]>
Date: Tue Sep 22 17:31:54 2020 +0300
data: add screenshots 2/2
commit ef32ac5e7c8198565a1f003f1469fdf7907e5778
Author: 33kk <[email protected]>
Date: Tue Sep 22 17:16:48 2020 +0300
data: add screenshots 1/2
commit d29d209f9454d5b1a3a7905a58f0359401f99220
Author: 33kk <[email protected]>
Date: Tue Sep 22 13:51:04 2020 +0300
data: add usercss
commit bcac0991cf08c04d256795d1a53095bdc2ae2442
Author: 33kk <[email protected]>
Date: Tue Sep 22 13:30:23 2020 +0300
data: add styles
commit 6aca41bb5c5736093a699a6dadda4f1929b64a61
Author: 33kk <[email protected]>
Date: Wed Oct 7 15:04:51 2020 +0300
ci: updated every 12 hours
commit a3a99f48eaee03c76f7aaffb5a33d92121bed4ba
Author: 33kk <[email protected]>
Date: Wed Oct 7 14:39:31 2020 +0300
data: markdown is no more
commit 0f8f4773a1d9f433d2f64a3c3f4dd2cdc8b92aff
Author: 33kk <[email protected]>
Date: Wed Oct 7 14:35:45 2020 +0300
scraper: fix auto screenshots, do not create indexes in get-style-info, escape quotes in settings labels
commit 547e90ab27437a8c49767e05553b5a7a49d0833a
Author: GitHub Actions <[email protected]>
Date: Wed Oct 7 06:07:35 2020 +0000
data: auto update
[Update, 2020-10-06T23:11:38.000Z] Elodie's AMQ Script V8.2 (179263)
[Update, 2020-10-07T05:17:02.000Z] NewVK Dark Theme Dark Header [Add-on] (187267)
[Update, 2020-10-07T05:39:34.000Z] Vanilla Dark 2 VK Fix/Mod PART 1 of 2 (132224)
[Update, 2020-10-07T00:46:41.000Z] IGN - Minimal Dark (166896)
[Update, 2020-10-07T05:18:23.000Z] notalone.tv Dark Room (189445)
[Update, 2020-10-07T05:23:37.000Z] dark_green_VK (165366)
[New, 2020-10-06T22:16:49.000Z] Halloween Roblox Background *2020* (190399)
[New, 2020-10-07T01:02:30.000Z] Gawr Gura (190389)
[Update, 2020-10-07T05:00:41.000Z] ひまわり動画(himado.in) 目にやさしい黒化 (118059)
[New, 2020-10-06T21:36:25.000Z] PROOOOOO (190398)
[Update, 2020-10-07T02:07:23.000Z] Fobaz Dekanser Dark Transparent VK (149314)
[New, 2020-10-06T19:58:16.000Z] Every Microsoft Site Dark Theme (W.I.P) v0.1 (190392)
[Update, 2020-10-07T02:37:02.000Z] VK Crystal (175257)
[Update, 2020-10-06T19:59:35.000Z] Wanikani: Forum Transparency 2.0 (163317)
[Update, 2020-10-07T04:35:28.000Z] Dark Scele CSUI (189366)
commit f34b28e79ce5e87b1550781d5b69e5264b814c2d
Author: 33kk <[email protected]>
Date: Wed Oct 7 03:12:03 2020 +0300
web: fix auto screenshots
commit 621fcacbf452fd84c8cf9a0c1c870e1f672bb9fd
Author: GitHub Actions <[email protected]>
Date: Tue Oct 6 18:09:31 2020 +0000
data: auto update
[Update, 2020-10-06T16:07:19.000Z] JoyReactor - небольшие дополнения (146938)
[Update, 2020-10-06T16:56:19.000Z] Youtube WideScreen (New Design Polymer) v.2 (188453)
[Update, 2020-10-06T13:07:29.000Z] Compact Tube (White) v1.1.2 (β) (186936)
[New, 2020-10-06T12:41:15.000Z] Roblox cat blue eyes (190378)
[Update, 2020-10-06T14:52:29.000Z] Fandom Dark Theme (185108)
[New, 2020-10-06T13:29:49.000Z] asas2358913275yu013LordKualre (190381)
[New, 2020-10-06T16:31:09.000Z] Pink mysdpbc theme (190390)
[Update, 2020-10-06T12:49:29.000Z] Deep-Dark-Zhihu (163565)
[New, 2020-10-06T13:08:59.000Z] asas (190379)
[Update, 2020-10-06T17:33:47.000Z] GOG.com Dark Theme (189521)
[Update, 2020-10-06T15:20:55.000Z] Depoliticize (190374)
[New, 2020-10-06T13:25:09.000Z] Marine hololive (190382)
[Update, 2020-10-06T12:18:15.000Z] MyLearningBox (190261)
commit 0d31135bdf21af51bbf945ccd98d4b4df27ad977
Author: GitHub Actions <[email protected]>
Date: Tue Oct 6 12:08:08 2020 +0000
data: auto update
[Update, 2020-10-06T08:20:26.000Z] Magister Black-Red (190341)
[New, 2020-10-06T07:29:10.000Z] Depoliticize (190374)
[Update, 2020-10-06T06:09:53.000Z] Чёрный стиль сайта YouTube (170092)
[Update, 2020-10-06T09:33:47.000Z] Douyu Easy (178855)
[New, 2020-10-06T11:34:31.000Z] Fubuki (190377)
[Update, 2020-10-06T07:49:43.000Z] AliExpress.com Dark NightMode --- AliExpress (178870)
[Update, 2020-10-06T09:08:41.000Z] Darker YouTube (50852)
[Update, 2020-10-06T10:58:34.000Z] FoilStyle (177386)
[Update, 2020-10-06T06:08:14.000Z] Чёрный стиль сайта Одноклассники (174753)
[Update, 2020-10-06T06:31:49.000Z] Dark Scele CSUI (189366)
[Update, 2020-10-06T11:45:11.000Z] Compact Tube (White) v1.1.2 (β) (186936)
[Update, 2020-10-06T10:16:32.000Z] Vivaldi - Menu button spinner (189465)
commit b89b077553065190287794db1cee65530b7f553a
Author: GitHub Actions <[email protected]>
Date: Tue Oct 6 06:07:56 2020 +0000
data: auto update
[Update, 2020-10-06T03:36:58.000Z] Чёрный стиль сайта Osu (169765)
[Update, 2020-10-06T03:35:07.000Z] Чёрный стиль сайта Discord (172606)
[Update, 2020-10-06T03:33:19.000Z] Чёрный стиль сайта Ask.fm (169758)
[Update, 2020-10-06T06:05:17.000Z] Чёрный стиль сайта Twitter (174764)
[Update, 2020-10-06T06:06:01.000Z] Чёрный стиль сайта ВКонтакте (169723)
[Update, 2020-10-06T06:03:56.000Z] 夜间斗鱼 NightMode For Douyu.com (158117)
commit be7d5c114248fdd5bbc6fd94734081b7aae9df41
Author: GitHub Actions <[email protected]>
Date: Tue Oct 6 00:12:24 2020 +0000
data: auto update
[Update, 2020-10-05T18:36:33.000Z] Momio Dark & Relax Mode (190262)
[Update, 2020-10-05T18:53:53.000Z] Dark-Instagram by Vednoc (151951)
[New, 2020-10-06T00:02:18.000Z] Typeracer Halloween 1 (190364)
[Update, 2020-10-05T18:46:03.000Z] Dark-WhatsApp by Vednoc (142096)
[Update, 2020-10-05T22:46:20.000Z] no baners.e.mail (173110)
[Update, 2020-10-05T21:18:34.000Z] AMQ - Air and Dusk (172094)
[Update, 2020-10-05T23:06:49.000Z] VK Plus (107316)
[Update, 2020-10-05T20:38:24.000Z] AMQ - Air and Dusk transparent (172559)
[New, 2020-10-05T23:17:17.000Z] Pepper Tiles Grid (190360)
[New, 2020-10-05T21:54:10.000Z] sr.ht dark (190361)
[Update, 2020-10-05T20:28:44.000Z] Twitch Dark Theme Enhancer (175745)
[New, 2020-10-05T23:57:39.000Z] no baners.userstyles (190363)
[Update, 2020-10-05T21:17:36.000Z] Google Pale-Blue Background - Improved (15219)
[Update, 2020-10-05T19:13:47.000Z] Dark Twitch -by NORWIN-10.2020 (140262)
[Update, 2020-10-05T21:35:01.000Z] Google Search - Turquoise Background (13382)
commit 286f68b2eeb40d6dd19c5162cb3a2aa25362cb2e
Author: GitHub Actions <[email protected]>
Date: Mon Oct 5 18:09:04 2020 +0000
data: auto update
[Update, 2020-10-05T12:25:38.000Z] Youtube - Playback Status 100% (Watched) (164256)
[Update, 2020-10-05T14:36:25.000Z] UOJ圆角化 (188495)
[Update, 2020-10-05T12:34:16.000Z] Compact Tube (White) v1.1.1 (β) (186936)
[Update, 2020-10-05T16:23:17.000Z] Tiktok Dark/Night Mode by SIR (2020) (185276)
[New, 2020-10-05T13:53:54.000Z] sofya now united (190345)
[Update, 2020-10-05T12:26:56.000Z] Youtube - Subscription Feed - 100% Width (164257)
[New, 2020-10-05T17:17:51.000Z] Cute rain cloud (190355)
[Update, 2020-10-05T14:08:30.000Z] 夜间斗鱼 NightMode For Douyu.com (158117)
[Update, 2020-10-05T17:46:23.000Z] Notion Todoist Integration (190149)
[Update, 2020-10-05T16:13:15.000Z] Meduza Gorgona (112717)
[Update, 2020-10-05T12:36:55.000Z] dev.opera by BamaBraves (92391)
[Update, 2020-10-05T16:11:30.000Z] NewVK Dark Theme - Telegram Style (159881)
[New, 2020-10-05T15:55:11.000Z] E-girl (190347)
[Update, 2020-10-05T17:43:23.000Z] Todoist - Compact View (176824)
commit 0e6fb12330d6464d009b2a80f39941f5a3e3edf1
Author: GitHub Actions <[email protected]>
Date: Mon Oct 5 12:08:55 2020 +0000
data: auto update
[Update, 2020-10-05T08:21:34.000Z] Baidu Art(原Baidu Lite Repair百度轻修复) (187554)
[Update, 2020-10-05T09:40:52.000Z] KrazosModVK (134018)
[New, 2020-10-05T10:17:56.000Z] Media4x Dark (190336)
[New, 2020-10-05T11:52:12.000Z] Vivaldi - Hide panel borderline V2 (190343)
[New, 2020-10-05T10:25:25.000Z] GitHub Dark by Bane (190090)
[Update, 2020-10-05T06:29:02.000Z] dark qresearch & frens (189958)
[New, 2020-10-05T11:41:27.000Z] Magister Black-Red (190341)
[New, 2020-10-05T10:21:34.000Z] Erai-Raws but not terribly designed (190337)
[Update, 2020-10-05T11:31:38.000Z] pixivイラストページ旧レイアウト風 (161476)
[Update, 2020-10-05T10:58:55.000Z] MyLearningBox (190261)
[New, 2020-10-05T07:32:49.000Z] Youtube orange outline (190329)
[Update, 2020-10-05T09:35:58.000Z] 網頁預設字型 (77744)
commit 9e2194ec5ccd31b305a801ed5099ee6bd3d00a44
Author: GitHub Actions <[email protected]>
Date: Mon Oct 5 06:07:53 2020 +0000
data: auto update
[Update, 2020-10-05T01:59:02.000Z] theNextCuteVOZ (181411)
[Update, 2020-10-05T02:01:39.000Z] ◆ASCII.jp (85818)
[Update, 2020-10-05T02:54:01.000Z] UACH Aulas3 Oscuro (189995)
[Update, 2020-10-05T02:16:05.000Z] Respiro Inmortal (173470)
[Update, 2020-10-05T05:16:32.000Z] ニコニコ動画 動画再生ページ ダークテーマ(HTML5版) (189730)
commit 083811aa74f7db57919880679ca2d189eec1a581
Author: GitHub Actions <[email protected]>
Date: Mon Oct 5 00:12:04 2020 +0000
data: auto update
[Update, 2020-10-04T18:43:14.000Z] AnimeFLV Dark (Beta) (190295)
[Update, 2020-10-04T18:30:02.000Z] AVEN dark grruple (189596)
[New, 2020-10-04T20:54:01.000Z] Dynu.com Dark Mode (190314)
[New, 2020-10-04T20:51:24.000Z] ROBLONIUM Holiday Theme (190313)
[New, 2020-10-04T20:57:26.000Z] ROBLONIUM ROBLOX Holiday Theme (190315)
[New, 2020-10-04T20:14:34.000Z] ROBLONIUM ROBLOX 2013 Theme (190311)
[New, 2020-10-04T20:37:24.000Z] ROBLONIUM Sitetest NBC Theme (190312)
[Update, 2020-10-05T00:00:07.000Z] Respiro Inmortal (173470)
[Update, 2020-10-04T21:57:50.000Z] Nova VK (141699)
[New, 2020-10-04T19:52:07.000Z] ROBLONIUM Halloween Theme 2013 (190310)
commit 6dd3b84c533dd66e1f2e4af4318c98ffcc33bba8
Author: GitHub Actions <[email protected]>
Date: Sun Oct 4 18:09:11 2020 +0000
data: auto update
[New, 2020-10-04T12:36:57.000Z] MyLearningBox (190261)
[Update, 2020-10-04T15:47:11.000Z] 苹果叶优化 (186695)
[Update, 2020-10-04T16:11:13.000Z] ニコニコ動画 動画再生ページ ダークテーマ(HTML5版) (189730)
[Update, 2020-10-04T15:17:00.000Z] 夜间斗鱼 NightMode For Douyu.com (158117)
[Update, 2020-10-04T17:05:52.000Z] VK Deep Violet / тема для ВКонтакте (159819)
[Update, 2020-10-04T17:28:49.000Z] KrazosModVK (134018)
[Update, 2020-10-04T17:42:05.000Z] Crunchyroll - Hide Message Box and Background Ad (137681)
[Update, 2020-10-04T12:18:42.000Z] elastic.co reading mode (190298)
[Update, 2020-10-04T17:45:51.000Z] 2ch Reborn (165011)
[Update, 2020-10-04T17:26:13.000Z] Multi Row Tabs Toolbar - OK Firefox 81 (67453)
[Update, 2020-10-04T13:01:01.000Z] Dark EKWB (190250)
[Update, 2020-10-04T15:14:35.000Z] NewVK Dark Theme - Telegram Style (159881)
[Update, 2020-10-04T14:11:50.000Z] Roblox Old Light Theme (2019) (177302)
[Update, 2020-10-04T16:59:11.000Z] Momio Dark & Relax Mode (190262)
[New, 2020-10-04T16:34:38.000Z] DemoSlytherinStyle (190308)
commit dd52578bda2d312c2a515a73c223bb1c63b44d76
Author: Marko <[email protected]>
Date: Sun Oct 4 17:40:46 2020 +0300
ci: add label check for push
commit d253bf10e63ecd4872604a6941f722e9455d8ea2
Author: GitHub Actions <[email protected]>
Date: Sun Oct 4 12:08:28 2020 +0000
data: auto update
[New, 2020-10-04T08:30:54.000Z] AnimeFLV Dark (Beta) (190295)
[Update, 2020-10-04T06:11:07.000Z] VK Deep Violet / тема для ВКонтакте (159819)
[Update, 2020-10-04T09:49:57.000Z] Dark Marktplaats (188328)
[Update, 2020-10-04T09:57:35.000Z] S1 MUX DARK 样式 (119998)
[New, 2020-10-04T09:48:12.000Z] elastic.co reading mode (190298)
[Update, 2020-10-04T09:57:40.000Z] S1 MUX 样式 (119944)
[Update, 2020-10-04T11:51:28.000Z] crayon for mal (86145)
[Update, 2020-10-04T08:27:59.000Z] Fritz!Box Dark (FRITZ!OS 7.0x) (164386)
[Update, 2020-10-04T10:38:08.000Z] Dark EKWB (190250)
[Update, 2020-10-04T10:00:13.000Z] SoundCloud Responsive Style (172565)
commit bed8f65302ee3745fd7352760a1b234757a8fadc
Author: GitHub Actions <[email protected]>
Date: Sun Oct 4 06:07:57 2020 +0000
data: auto update
[Update, 2020-10-04T02:05:07.000Z] 9anime Layout (170256)
[New, 2020-10-04T00:48:56.000Z] Lil Peep BG (190283)
[New, 2020-10-04T02:12:51.000Z] clima (cian) (190284)
[Update, 2020-10-04T03:46:22.000Z] 【Oct 4 Updated】Dribbble Dark Mode (178754)
[Update, 2020-10-04T05:19:08.000Z] erai-raws.info clean, white text and resized image (167353)
commit 68d1ff885fd11cf40f521d1d2d4ff59a60ad3d36
Author: GitHub Actions <[email protected]>
Date: Sun Oct 4 00:13:55 2020 +0000
data: auto update
[Update, 2020-10-03T19:33:13.000Z] liveinternet.ru comfort (128553)
[New, 2020-10-03T23:27:24.000Z] Momio Dark & Relax Mode (190262)
[Update, 2020-10-03T18:17:29.000Z] Allegro brak reklam sponsorowanych i innych śmieci (137914)
[Update, 2020-10-03T20:35:48.000Z] 3ddd.ru - Dark Theme (163681)
[Update, 2020-10-03T19:40:15.000Z] Nova VK (141699)
[Update, 2020-10-03T20:23:57.000Z] Minimal Transparent Whatsapp ☺ (137361)
[Update, 2020-10-03T20:05:03.000Z] youtube toolsbar fix for little resolution (182407)
[Update, 2020-10-03T20:48:42.000Z] Dark EKWB (190250)
[New, 2020-10-03T20:00:34.000Z] Pinkish Manga Background - Roblox (190268)
[New, 2020-10-03T23:52:33.000Z] Neon Field (190282)
[Update, 2020-10-03T21:29:42.000Z] Reddit Custom (RES Compatible) - KMV (182165)
[Update, 2020-10-03T20:37:26.000Z] Dark Inoreader mods (138536)
[Update, 2020-10-03T22:59:44.000Z] Pplware, versão limpa (121778)
[Update, 2020-10-03T19:52:52.000Z] BBS.IO-TECH.fi Classic Dark Theme - Xenforo 2.1 (179950)
commit d62c826adab752bfd9579a8c6b198ec7f614f3f1
Author: GitHub Actions <[email protected]>
Date: Sat Oct 3 18:10:04 2020 +0000
data: auto update
[Update, 2020-10-03T17:42:24.000Z] BBS.IO-TECH.fi Classic Dark Theme - Xenforo 2.1 (179950)
[Update, 2020-10-03T12:11:07.000Z] Twitch Future Funk (189576)
[Update, 2020-10-03T13:30:50.000Z] Compact Tube (White) v1.1.0 (β) (186936)
[Update, 2020-10-03T13:00:17.000Z] Bilibili 黑色模式 夜晚模式 Dark Theme 哔哩哔哩 2020.10.3 (121587)
[Update, 2020-10-03T17:48:43.000Z] deviantArt Eclipse Redesign (182758)
[Update, 2020-10-03T14:53:33.000Z] Multi Row Tabs Toolbar - OK Firefox 81 (67453)
[New, 2020-10-03T14:04:06.000Z] Pink Sparkle Roblox Background (AESTHETIC!) (190256)
[Update, 2020-10-03T15:17:36.000Z] ProtonMail Midnight Blue <beta> (160537)
[Update, 2020-10-03T14:46:02.000Z] Minimal Transparent Whatsapp ☺ (137361)
[New, 2020-10-03T12:29:43.000Z] VK Переименование \"Мессенджер\" в \"Сообщения\" (190155)
[New, 2020-10-03T15:12:27.000Z] Star-Moom Roblox Background (AESTHETIC) (190257)
[Update, 2020-10-03T12:49:13.000Z] Microsoft Sticky Notes - Dark Mode (170362)
commit 71e70d99d0ad2827aeaf6b6a833f4a27b9d81b3d
Author: GitHub Actions <[email protected]>
Date: Sat Oct 3 12:07:40 2020 +0000
data: auto update
[New, 2020-10-03T09:23:18.000Z] Dark EKWB (190250)
[Update, 2020-10-03T09:07:15.000Z] Tweakers Dark V2 (by EotT) (165596)
[Update, 2020-10-03T07:23:48.000Z] ProtonMail Midnight Blue <beta> (160537)
[Update, 2020-10-03T06:25:29.000Z] Microsoft Sticky Notes - Dark Mode (170362)
[Update, 2020-10-03T06:31:29.000Z] High-class VoZ (186526)
[Update, 2020-10-03T06:47:57.000Z] https://next.voz.vn/ (137623)
[Update, 2020-10-03T11:57:54.000Z] https://facebook.com (137673)
commit 4c31db9875428b7ec17c9aab59b1aaafa7c594e6
Author: GitHub Actions <[email protected]>
Date: Sat Oct 3 06:08:33 2020 +0000
data: auto update
[Update, 2020-10-03T03:01:44.000Z] ◆Google 検索 (127669)
[Update, 2020-10-03T01:28:45.000Z] Mr Clean Wikipedia (187656)
[Update, 2020-10-03T05:59:14.000Z] ProtonMail Midnight Blue <beta> (160537)
[Update, 2020-10-03T01:46:15.000Z] HorribleSubs & Disqus Dark Mode (168912)
[New, 2020-10-03T01:43:36.000Z] Asana Darkness 2020 (190243)
commit d653b3dac7f01925d7ac22a7ed41c230bd0ffe52
Author: GitHub Actions <[email protected]>
Date: Sat Oct 3 00:11:56 2020 +0000
data: auto update
[Update, 2020-10-02T19:31:36.000Z] TJ порвался (189869)
[Update, 2020-10-02T19:54:37.000Z] YouTube Black - KMV (174767)
[Update, 2020-10-02T18:41:53.000Z] 2020 RELEASE | Magister Magic (147779)
[Update, 2020-10-02T21:58:06.000Z] Google search \"old style\" (179230)
[New, 2020-10-02T20:50:45.000Z] Vivaldi - Delayed color changer V2 (190239)
[Update, 2020-10-02T20:00:30.000Z] Dark HorriblePP by Mad Scientist (190227)
[New, 2020-10-02T18:48:49.000Z] my melody pink theme google doc (190237)
[Update, 2020-10-02T22:59:17.000Z] clean with white text (167353)
[New, 2020-10-02T20:40:43.000Z] Vivaldi - Hide panel borderline (190238)
[New, 2020-10-02T23:22:21.000Z] karol blas feria (190241)
[Update, 2020-10-02T20:36:40.000Z] Vivaldi - Hide toolbar underline (189314)
[Update, 2020-10-02T19:24:11.000Z] 2019 Halloween Theme - Brick Hill (176209)
[Update, 2020-10-02T18:41:25.000Z] Compact Tube (White) v1.0.9 (β) (186936)
commit 676fd437880e916cfcbb799d5d6dbeab37054269
Author: GitHub Actions <[email protected]>
Date: Fri Oct 2 18:09:23 2020 +0000
data: auto update
[Update, 2020-10-02T16:50:27.000Z] Montevideo a Oscuras (181155)
[New, 2020-10-02T16:26:58.000Z] carnap.io dark mode (190234)
[Update, 2020-10-02T14:29:48.000Z] Dark Style for platforma.polsl.pl (176373)
[New, 2020-10-02T17:24:43.000Z] cudrícla style (190236)
[Update, 2020-10-02T14:07:29.000Z] Just Dance Now 2021 Style | Based on Ticpo Style (189635)
[New, 2020-10-02T15:09:43.000Z] My melody themed google classroom background (190233)
[New, 2020-10-02T16:55:04.000Z] Google Solarized Theme (190235)
[New, 2020-10-02T13:21:04.000Z] Dark HorriblePP by Mad Scientist (190227)
[New, 2020-10-02T14:30:00.000Z] Ariana (190231)
[Update, 2020-10-02T13:22:58.000Z] Ecosia - Dark theme 2020 (176759)
commit c1184c0a8ecf55276ad612e623391c9213efa721
Author: GitHub Actions <[email protected]>
Date: Fri Oct 2 12:11:20 2020 +0000
data: auto update
[Update, 2020-10-02T11:51:41.000Z] 2020 RELEASE | Magister Magic (147779)
[Update, 2020-10-02T08:16:53.000Z] cleanwhite | moi3d.com (170107)
[Update, 2020-10-02T11:29:04.000Z] YouTube Studio Dark Theme (188483)
[New, 2020-10-02T07:10:26.000Z] Petiole (190221)
[Update, 2020-10-02T07:14:34.000Z] RU AdList CSS Fixes (101141)
[Update, 2020-10-02T08:17:55.000Z] cleanwhite | wikipedia.org (154467)
[Update, 2020-10-02T08:47:11.000Z] Google Search Sidebar (148233)
[Update, 2020-10-02T08:43:30.000Z] brick hill - rule 34 theme (177425)
[Update, 2020-10-02T08:13:35.000Z] Magister Rainbow (164970)
[Update, 2020-10-02T11:40:23.000Z] Dark pub.dev (184316)
commit 530b9ad047a22fb7987777b767d4f6736e9799ed
Author: GitHub Actions <[email protected]>
Date: Fri Oct 2 06:09:06 2020 +0000
data: auto update
[New, 2020-10-02T00:49:34.000Z] erftgyhuj (190203)
[New, 2020-10-02T05:47:17.000Z] roblox zero two wallpaper (190219)
[Update, 2020-10-02T00:57:54.000Z] Bulbapedia beautifier (145225)
[Update, 2020-10-02T02:37:36.000Z] 1337x.?? by BamaBraves (164248)
[Update, 2020-10-02T02:41:03.000Z] UACH Aulas3 Oscuro (189995)
[Update, 2020-10-02T03:00:17.000Z] Dark Scele CSUI (189366)
[Update, 2020-10-02T02:44:27.000Z] Pinterest Dark by BamaBraves (98703)
[Update, 2020-10-02T01:59:38.000Z] YouTube Studio Dark Theme (188483)
[Update, 2020-10-02T02:12:36.000Z] 2007 Youtube Logo for BitView (189645)
[Update, 2020-10-02T01:51:57.000Z] google Dark By BamaBraves (78377)
[Update, 2020-10-02T01:20:41.000Z] Bing Dark by BamaBraves (89558)
[Update, 2020-10-02T03:45:53.000Z] Pithy JD | 简洁京东 (187041)
[Update, 2020-10-02T04:35:59.000Z] Microsoft Sticky Notes - Dark Mode (170362)
[Update, 2020-10-02T05:57:11.000Z] theNextCuteVOZ (181411)
commit d9ca5fc424e5fd3616af1e03db88c5c9d2369556
Author: GitHub Actions <[email protected]>
Date: Fri Oct 2 00:11:05 2020 +0000
data: auto update
[Update, 2020-10-01T21:03:03.000Z] Wanikani: Forum Transparency 2.0 (163317)
[Update, 2020-10-01T21:26:02.000Z] Cleanup google results (179255)
[New, 2020-10-01T21:43:30.000Z] Show Headlines (190202)
[Update, 2020-10-01T23:21:55.000Z] Better Archive Dark+ (190183)
[Update, 2020-10-01T23:49:35.000Z] The Register - Dark (160050)
[New, 2020-10-01T21:39:14.000Z] Gawr Gura [Hololive] BG (190201)
commit f2babb8bf5874f54c310f650337928234f46239c
Author: 33kk <[email protected]>
Date: Fri Oct 2 01:03:34 2020 +0300
scraper: do not format indexes
commit 26a4aa89420ff42d7650ae7082319e2c215f109d
Author: 33kk <[email protected]>
Date: Fri Oct 2 00:59:32 2020 +0300
data: fix
commit b05fe9bb6e457b22eb9182ab1a7a160fd790b643
Author: 33kk <[email protected]>
Date: Thu Oct 1 23:40:37 2020 +0300
web: make screenshots clickable
commit 36832b86c360cfe9f9968ddb79b1af252caf64ab
Author: 33kk <[email protected]>
Date: Thu Oct 1 23:38:11 2020 +0300
scraper: now actually fix archived being false
commit 09cb89559772da011a32f2b2bc538f5ffd56de1b
Author: GitHub Actions <[email protected]>
Date: Thu Oct 1 19:17:42 2020 +0000
data: auto update
[Update, 2020-09-30T13:09:32.000Z] 🧙♂️ xMessenger VK (173255)
[Update, 2020-10-01T13:24:40.000Z] Dokomi Expo (190134)
[New, 2020-10-01T13:56:34.000Z] UuserContent1.css (190185)
[New, 2020-10-01T14:07:51.000Z] Better Archive Dark+ (190183)
[Update, 2020-09-30T13:09:20.000Z] Compact Tube (White) v1.0.8 (β) (186936)
[Update, 2020-10-01T14:30:12.000Z] 方角微博 · 美化版(Square-Weibo_Prettify) (107188)
[Update, 2020-10-01T11:42:24.000Z] Custom Dark Google (173297)
[New, 2020-10-01T15:04:00.000Z] Hamza Maqsood (190192)
[Update, 2020-10-01T19:12:24.000Z] Wanikani: Forum Transparency 2.0 (163317)
[Update, 2020-10-01T15:33:29.000Z] AniList to MAL (189764)
[New, 2020-10-01T13:58:39.000Z] Sheikh Hamza Maqsood (190187)
[New, 2020-10-01T13:42:45.000Z] userrrContent.css (190184)
[New, 2020-10-01T14:21:11.000Z] Vikunja – Dark mode (190165)
[Update, 2020-10-01T02:04:32.000Z] ebay Dark by BamaBraves (106895)
[Update, 2020-10-01T14:30:56.000Z] 方角微博 · 基础版(Square-Weibo_Basic) (107050)
[New, 2020-09-30T18:46:12.000Z] ROBLOX! (Stars-Moon Aesthetic Background) (190153)
[Update, 2020-10-01T09:57:00.000Z] Microsoft Login - Dark Mode (169528)
[Update, 2020-10-01T01:17:03.000Z] estatesales.net by BamaBraves (171062)
[Update, 2020-09-30T14:50:47.000Z] Dark Google Calendar (2020) (143026)
[New, 2020-09-30T18:18:34.000Z] Notion Todoist Integration (190149)
[New, 2020-10-01T15:53:36.000Z] Hamzamaqsood (190193)
[Update, 2020-09-30T15:35:12.000Z] Yandex Map Editor Dark Theme (164198)
[New, 2020-10-01T13:37:03.000Z] userContent1.css (190181)
[New, 2020-10-01T16:33:58.000Z] hamzagg (190196)
[New, 2020-10-01T14:00:35.000Z] stylesheettt.css (190174)
[Update, 2020-10-01T03:18:41.000Z] Google Search Green Green Green (148956)
[Update, 2020-09-30T13:05:02.000Z] brick hill - rule 34 theme (177425)
[Update, 2020-09-30T21:59:32.000Z] YouTube Black - KMV (174767)
[Update, 2020-09-30T17:22:13.000Z] Dark dtf.ru (189679)
[Update, 2020-09-30T16:46:13.000Z] 2020 RELEASE | Magister Magic (147779)
[Update, 2020-10-01T03:22:49.000Z] 酷狗-2 (173006)
[Update, 2020-10-01T06:33:13.000Z] Bitbank幅調整 (181285)
[Update, 2020-10-01T05:19:14.000Z] Dark Scrollbars - Quantum Nox (177056)
[Update, 2020-10-01T06:40:02.000Z] 百度系列改造 (185937)
[Update, 2020-10-01T09:32:06.000Z] The Register - Dark (160050)
[Update, 2020-10-01T06:19:59.000Z] RGL.gg Dark Theme (164208)
[New, 2020-10-01T06:14:46.000Z] Digi24 Dark (190160)
[New, 2020-09-30T12:55:05.000Z] 苹果叶优化 (186695)
[Update, 2020-09-30T16:21:44.000Z] Jeuxvideo.com - JVide v2 - xRock (173737)
[Update, 2020-10-01T06:23:06.000Z] ZenHub - Kill GitHub Header (181105)
[New, 2020-10-01T07:40:10.000Z] OkCupid Bigger Message Window (190167)
[Update, 2020-09-30T13:35:24.000Z] Darker Facebook (100480)
[New, 2020-10-01T14:37:31.000Z] ROBLOX! ( Aesthetic Autumn Backgrounds!!!) (190190)
[Update, 2020-09-30T14:18:15.000Z] NY Millennials Blaseball Theme (189163)
[Update, 2020-10-01T13:35:53.000Z] Custom Discord (180176)
[New, 2020-10-01T14:37:56.000Z] ROBLOX! ( Aesthetic Autumns Backgrounds!!!) (190191)
[Update, 2020-10-01T18:59:31.000Z] Ravelry - Return to Subtle Greens (185312)
[Update, 2020-10-01T16:36:34.000Z] Google Darkest Fusion 1/2 (167419)
[New, 2020-10-01T08:23:26.000Z] Blue among us cursor (190168)
[Update, 2020-10-01T05:14:28.000Z] Amazon - Dark slate (133725)
[Update, 2020-10-01T15:39:42.000Z] тёмная тема для школьного портала (181339)
[Update, 2020-10-01T17:52:02.000Z] 2ch Reborn (165011)
[Update, 2020-10-01T05:26:10.000Z] wykop.pl Wykop usuwacz reklam + opcje (148825)
commit cd67240c56ea81b2e9d725b17c9f3fb23a00de7a
Author: 33kk <[email protected]>
Date: Thu Oct 1 21:48:21 2020 +0300
data: add screenshots #2
commit ff4199bfe1bc5c35d8cbe310f3fa4568de4840c0
Author: 33kk <[email protected]>
Date: Thu Oct 1 21:44:56 2020 +0300
data: add screenshots #1
commit b72f7cc399a49a2f9bad14952b6db8ed3572e8a6
Author: 33kk <[email protected]>
Date: Thu Oct 1 20:49:19 2020 +0300
data: add additional screenshots
commit 3a6f5653462b8a038695f91b40b6bfb36f9d5f3c
Author: 33kk <[email protected]>
Date: Thu Oct 1 17:49:31 2020 +0300
data: add uso pages