-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path4chanx-settings.json
1192 lines (1192 loc) · 34 KB
/
4chanx-settings.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
{
"version": "1.14.16.4",
"date": 1581409945975,
"Conf": {
"Redirect to HTTPS": true,
"JSON Index": true,
"Use 4chan X Catalog": true,
"Index Refresh Notifications": false,
"Follow Cursor": true,
"Open Threads in New Tab": false,
"External Catalog": false,
"Catalog Links": false,
"Announcement Hiding": true,
"Desktop Notifications": true,
"404 Redirect": true,
"Archive Report": true,
"Exempt Archives from Encryption": true,
"Keybinds": true,
"Time Formatting": true,
"Relative Post Dates": true,
"Relative Date Title": true,
"Comment Expansion": true,
"File Info Formatting": true,
"Thread Expansion": true,
"Index Navigation": false,
"Reply Navigation": false,
"Unique ID and Capcode Navigation": false,
"Custom Board Titles": true,
"Persistent Custom Board Titles": false,
"Show Updated Notifications": true,
"Color User IDs": true,
"Count Posts by ID": true,
"Remove Spoilers": false,
"Reveal Spoilers": false,
"Normalize URL": true,
"Work around CORB Bug": true,
"Disable Autoplaying Sounds": false,
"Disable Native Extension": true,
"Enable Native Flash Embedding": true,
"Linkify": true,
"Link Title": true,
"Cover Preview": true,
"Embedding": true,
"Auto-embed": false,
"Floating Embeds": false,
"Anonymize": false,
"Filter": true,
"Filtered Backlinks": false,
"Filter in Native Catalog": true,
"MD5 Quick Filter Notifications": true,
"Recursive Hiding": true,
"Thread Hiding Buttons": true,
"Reply Hiding Buttons": true,
"Stubs": true,
"Image Expansion": true,
"Image Hover": false,
"Image Hover in Catalog": false,
"Gallery": true,
"Fullscreen Gallery": false,
"PDF in Gallery": false,
"Sauce": true,
"WEBM Metadata": true,
"Reveal Spoiler Thumbnails": false,
"Replace GIF": false,
"Replace JPG": false,
"Replace PNG": false,
"Replace WEBM": false,
"Image Prefetching": true,
"Fappe Tyme": true,
"Werk Tyme": true,
"Autoplay": true,
"Restart when Opened": false,
"Show Controls": true,
"Click Passthrough": false,
"Allow Sound": true,
"Mouse Wheel Volume": true,
"Loop in New Tab": true,
"Volume in New Tab": true,
"Menu": true,
"Report Link": true,
"Copy Text Link": true,
"Thread Hiding Link": true,
"Reply Hiding Link": true,
"Delete Link": true,
"Archive Link": true,
"Edit Link": true,
"Download Link": false,
"Thread Updater": true,
"Unread Count": true,
"Quoted Title": false,
"Hide Unread Count at (0)": false,
"Unread Favicon": true,
"Unread Line": true,
"Remember Last Read Post": true,
"Scroll to Last Read Post": true,
"Unread Line in Index": false,
"Remove Thread Excerpt": false,
"Thread Stats": true,
"IP Count in Stats": true,
"Page Count in Stats": true,
"Updater and Stats in Header": true,
"Thread Watcher": true,
"Fixed Thread Watcher": true,
"Persistent Thread Watcher": true,
"Mark New IPs": false,
"Reply Pruning": true,
"Prune All Threads": false,
"Quick Reply": true,
"Persistent QR": false,
"Auto Hide QR": true,
"Open Post in New Tab": true,
"Remember QR Size": false,
"Remember Spoiler": false,
"Randomize Filename": false,
"Show New Thread Option in Threads": true,
"Show Upload Progress": true,
"Cooldown": true,
"Posting Success Notifications": true,
"Auto-load captcha": false,
"Post on Captcha Completion": false,
"Captcha Fixes": true,
"Force Noscript Captcha": false,
"Pass Link": false,
"Quote Backlinks": true,
"OP Backlinks": true,
"Bottom Backlinks": false,
"Quote Inlining": true,
"Inline Cross-thread Quotes Only": false,
"Quote Hash Navigation": false,
"Forward Hiding": true,
"Quote Previewing": true,
"Quote Highlighting": true,
"Resurrect Quotes": true,
"Remember Your Posts": true,
"Mark Quotes of You": true,
"Highlight Posts Quoting You": true,
"Highlight Own Posts": true,
"Mark OP Quotes": true,
"Mark Cross-thread Quotes": true,
"Quote Threading": true,
"Fit width": true,
"Fit height": false,
"Scroll into view": true,
"Expand spoilers": true,
"Expand videos": true,
"Expand from here": false,
"Expand thread only": false,
"Advance on contract": false,
"Hide Thumbnails": false,
"Fit Width": true,
"Fit Height": true,
"Stretch to Fit": false,
"Scroll to Post": true,
"Slide Delay": 6,
"Default Volume": 1,
"Current Board": false,
"Auto Update Thread Watcher": true,
"Auto Watch": true,
"Auto Watch Reply": true,
"Auto Prune": true,
"Show Page": true,
"Show Unread Count": true,
"Show Site Prefix": true,
"Require OP Quote Link": false,
"general": "",
"postID": "# Highlight dubs on [s4s]:\n#/(\\d)\\1$/;highlight;top:no;boards:s4s",
"name": "# Filter any namefags:\n#/^(?!Anonymous$)/",
"uniqueID": "# Filter a specific ID:\n#/Txhvk1Tl/",
"tripcode": "# Filter any tripfag\n#/^!/",
"capcode": "# Set a custom class for mods:\n#/Mod$/;highlight:mod;op:yes\n# Set a custom class for admins:\n#/Admin$/;highlight:admin;op:yes",
"pass": "# Filter anyone using since4pass:\n#/./",
"email": "",
"subject": "# Filter Generals on /v/:\n#/general/i;boards:v;op:only",
"comment": "# Filter Stallman copypasta on /g/:\n#/what you're refer+ing to as linux/i;boards:g\n# Filter posts with 20 or more quote links:\n#/(?:>>\\d(?:(?!>>\\d)[^])*){20}/\n# Filter posts like T H I S / H / I / S:\n#/^>?\\s?\\w\\s?(\\w)\\s?(\\w)\\s?(\\w).*$[\\s>]+\\1[\\s>]+\\2[\\s>]+\\3/im",
"flag": "",
"filename": "",
"dimensions": "# Highlight potential wallpapers:\n#/1920x1080/;op:yes;highlight;top:no;boards:w,wg",
"filesize": "",
"MD5": "",
"sauces": "# Known filename formats:\nhttps://www.pixiv.net/member_illust.php?mode=medium&illust_id=%$1;regexp:/^(\\d+)_p\\d+/\nhttps://www.deviantart.com/gallery/#/d%$1%$2;regexp:/^\\w+_by_\\w+[_-]d([\\da-z]{6})\\b|^d([\\da-z]{6})-[\\da-z]{8}-/\nhttps://imgur.com/%$1;regexp:/^(?![a-zA-Z][a-z]{6})(?![A-Z]{7})(?!\\d{7})([\\da-zA-Z]{7})(?: \\(\\d+\\))?\\.\\w+$/\nhttps://flickr.com/photo.gne?id=%$1;regexp:/^(\\d+)_[\\da-f]{10}(?:_\\w)*\\b/\nhttps://www.facebook.com/photo.php?fbid=%$1;regexp:/^\\d+_(\\d+)_\\d+_[no]\\b/\n\n# Reverse image search:\nhttps://www.google.com/searchbyimage?image_url=%IMG&safe=off\nhttps://yandex.com/images/search?rpt=imageview&url=%IMG\n#//tineye.com/search?url=%IMG\n#//www.bing.com/images/search?q=imgurl:%IMG&view=detailv2&iss=sbi#enterInsights\n\n# Specialized reverse image search:\n//iqdb.org/?url=%IMG\nhttps://trace.moe/?auto&url=%IMG;text:wait\n#//3d.iqdb.org/?url=%IMG\n#//saucenao.com/search.php?url=%IMG\n\n# \"View Same\" in archives:\nhttp://eye.swfchan.com/search/?q=%name;types:swf\n#https://desuarchive.org/_/search/image/%sMD5/\n#https://archive.4plebs.org/_/search/image/%sMD5/\n#https://boards.fireden.net/_/search/image/%sMD5/\n#https://foolz.fireden.net/_/search/image/%sMD5/\n\n# Other tools:\n#http://exif.regex.info/exif.cgi?imgurl=%URL\n#//imgops.com/%URL;types:gif,jpg,png\n#//www.gif-explode.com/%URL;types:gif",
"werk": false,
"Custom CSS": true,
"Index Mode": "infinite",
"Previous Index Mode": "infinite",
"Index Size": "small",
"Show Replies": true,
"Catalog Hover Expand": false,
"Catalog Hover Toggle": true,
"Pin Watched Threads": false,
"Anchor Hidden Threads": true,
"Refreshed Navigation": false,
"Fixed Header": true,
"Header auto-hide": false,
"Header auto-hide on scroll": false,
"Bottom Header": false,
"Centered links": false,
"Header catalog links": false,
"Bottom Board List": true,
"Shortcut Icons": true,
"Custom Board Navigation": true,
"archiveLists": "https://nstepien.github.io/archives.json/archives.json",
"lastarchivecheck": 1581393131922,
"archiveAutoUpdate": true,
"externalCatalogURLs": "//catalog.neet.tv/%board/;boards:4chan.org:3,a,adv,an,asp,biz,c,cgl,ck,cm,co,diy,f,fa,fit,g,gd,his,i,int,jp,k,lgbt,lit,m,mlp,mu,n,news,o,out,p,po,pol,s4s,sci,sp,tg,toy,trv,tv,v,vg,vip,vp,vr,w,wg,wsg,wsr,x",
"boardnav": "[ toggle-all ]\n[g]\n[b]\n[wg]\n[mu]",
"QR.personas": "#options:\"sage\";boards:jp;always",
"sjisPreview": false,
"jsWhitelist": "http://s.4cdn.org\nhttps://s.4cdn.org\nhttp://www.google.com\nhttps://www.google.com\nhttps://www.gstatic.com\nhttp://cdn.mathjax.org\nhttps://cdn.mathjax.org\nhttps://cdnjs.cloudflare.com\n'self'\n'unsafe-inline'\n'unsafe-eval'\n\n# Banner ads\n#http://s.zkcdn.net/ados.js\n#https://s.zkcdn.net/ados.js\n#http://engine.4chan-ads.org\n#https://engine.4chan-ads.org",
"captchaLanguage": "",
"time": "%m/%d/%y(%a)%H:%M:%S",
"timeLocale": "",
"backlink": ">>%id",
"pastedname": "file",
"fileInfo": "%l %d (%p%s, %r%g)",
"favicon": "ferongr",
"usercss": "/* Board title rice */\ndiv.boardTitle {\n font-weight: 400 !important;\n}\n:root.yotsuba div.boardTitle {\n font-family: sans-serif !important;\n text-shadow: 1px 1px 1px rgba(100,0,0,0.6);\n}\n:root.yotsuba-b div.boardTitle {\n font-family: sans-serif !important;\n text-shadow: 1px 1px 1px rgba(105,10,15,0.6);\n}\n:root.photon div.boardTitle {\n font-family: sans-serif !important;\n text-shadow: 1px 1px 1px rgba(0,74,153,0.6);\n}\n:root.tomorrow div.boardTitle {\n font-family: sans-serif !important;\n text-shadow: 1px 1px 1px rgba(167,170,168,0.6);\n}\n",
"Toggle board list": "Ctrl+b",
"Toggle header": "Shift+h",
"Open empty QR": "q",
"Open QR": "Shift+q",
"Open settings": "Alt+o",
"Close": "Esc",
"Spoiler tags": "Ctrl+s",
"Code tags": "Alt+c",
"Eqn tags": "Alt+e",
"Math tags": "Alt+m",
"SJIS tags": "Alt+a",
"Toggle sage": "Alt+s",
"Toggle Cooldown": "Alt+Comma",
"Post from URL": "Alt+l",
"Add new post": "Alt+n",
"Submit QR": "Ctrl+Enter",
"Watch": "w",
"Update": "r",
"Update thread watcher": "Shift+r",
"Toggle thread watcher": "t",
"Toggle threading": "Shift+t",
"Mark thread read": "Ctrl+0",
"Expand image": "Shift+e",
"Expand images": "e",
"Open Gallery": "g",
"Next Gallery Image": "Right",
"Previous Gallery Image": "Left",
"Advance Gallery": "Enter",
"Pause": "p",
"Slideshow": "Ctrl+Right",
"Rotate image clockwise": "Shift+Right",
"Rotate image anticlockwise": "Shift+Left",
"fappeTyme": "f",
"werkTyme": "Shift+w",
"Front page": "1",
"Open front page": "Shift+1",
"Next page": "Ctrl+Right",
"Previous page": "Ctrl+Left",
"Paged mode": "Alt+1",
"Infinite scrolling mode": "Alt+2",
"All pages mode": "Alt+3",
"Open catalog": "Shift+c",
"Search form": "Ctrl+Alt+s",
"Cycle sort type": "Alt+x",
"Next thread": "Ctrl+Down",
"Previous thread": "Ctrl+Up",
"Expand thread": "Ctrl+e",
"Open thread": "o",
"Open thread tab": "Shift+o",
"Next reply": "j",
"Previous reply": "k",
"Deselect reply": "Shift+d",
"Hide": "x",
"Quick Filter MD5": "5",
"Previous Post Quoting You": "Alt+Up",
"Next Post Quoting You": "Alt+Down",
"Beep": false,
"Beep Quoting You": false,
"Auto Scroll": false,
"Bottom Scroll": false,
"Scroll BG": false,
"Auto Update": true,
"Optional Increase": false,
"Interval": 5,
"customCooldown": 0,
"customCooldownEnabled": true,
"Thread Quotes": false,
"Max Replies": 1000,
"Autohiding Scrollbar": false,
"embedding.position": "top: 50px; right: 0px;",
"thread-stats.position": "bottom: 0px; right: 0px;",
"updater.position": "bottom: 0px; left: 0px;",
"thread-watcher.position": "top: 3.87597%; left: 0px;",
"qr.position": "top: 50px; right: 0px;",
"captchaServiceDomain": "",
"captchaServiceKey": {
"https://api.captcha.guru": "",
"https://2captcha.com": ""
},
"fourchanImageHost": "i.4cdn.org",
"hiddenPSAList": {},
"knownBanners": "0.jpg,1.jpg,2.jpg,4.jpg,6.jpg,7.jpg,8.jpg,9.jpg,10.jpg,11.jpg,12.jpg,13.jpg,14.jpg,16.jpg,17.jpg,18.jpg,19.jpg,20.jpg,21.jpg,22.jpg,24.jpg,25.jpg,26.jpg,28.jpg,29.jpg,33.jpg,38.jpg,39.jpg,43.jpg,44.jpg,45.jpg,46.jpg,47.jpg,52.jpg,54.jpg,57.jpg,59.jpg,60.jpg,61.jpg,64.jpg,66.jpg,67.jpg,69.jpg,71.jpg,72.jpg,76.jpg,77.jpg,81.jpg,82.jpg,83.jpg,84.jpg,88.jpg,90.jpg,91.jpg,96.jpg,98.jpg,99.jpg,100.jpg,104.jpg,106.jpg,116.jpg,119.jpg,137.jpg,140.jpg,148.jpg,149.jpg,150.jpg,154.jpg,156.jpg,157.jpg,158.jpg,159.jpg,161.jpg,162.jpg,164.jpg,165.jpg,166.jpg,167.jpg,168.jpg,169.jpg,170.jpg,171.jpg,172.jpg,173.jpg,174.jpg,175.jpg,176.jpg,178.jpg,179.jpg,180.jpg,181.jpg,182.jpg,183.jpg,186.jpg,189.jpg,190.jpg,192.jpg,193.jpg,194.jpg,197.jpg,198.jpg,200.jpg,201.jpg,202.jpg,203.jpg,205.jpg,206.jpg,207.jpg,208.jpg,210.jpg,213.jpg,214.jpg,215.jpg,216.jpg,218.jpg,219.jpg,220.jpg,221.jpg,222.jpg,223.jpg,224.jpg,227.jpg,0.png,1.png,2.png,3.png,5.png,6.png,9.png,10.png,11.png,12.png,14.png,16.png,19.png,20.png,21.png,22.png,23.png,24.png,26.png,27.png,28.png,29.png,30.png,31.png,32.png,33.png,34.png,37.png,39.png,40.png,41.png,42.png,43.png,44.png,45.png,48.png,49.png,50.png,51.png,52.png,53.png,57.png,58.png,59.png,64.png,66.png,67.png,68.png,69.png,70.png,71.png,72.png,76.png,78.png,79.png,81.png,82.png,85.png,86.png,87.png,89.png,95.png,98.png,100.png,101.png,102.png,105.png,106.png,107.png,109.png,110.png,111.png,112.png,113.png,114.png,115.png,116.png,118.png,119.png,120.png,121.png,122.png,123.png,126.png,128.png,130.png,134.png,136.png,138.png,139.png,140.png,142.png,145.png,146.png,149.png,150.png,151.png,152.png,153.png,154.png,155.png,156.png,157.png,158.png,159.png,160.png,163.png,164.png,165.png,166.png,167.png,168.png,169.png,170.png,171.png,172.png,173.png,174.png,178.png,179.png,180.png,181.png,182.png,184.png,186.png,188.png,190.png,192.png,193.png,194.png,195.png,196.png,197.png,198.png,200.png,202.png,203.png,205.png,206.png,207.png,209.png,212.png,213.png,214.png,216.png,217.png,218.png,219.png,220.png,221.png,222.png,223.png,224.png,225.png,226.png,229.png,231.png,232.png,233.png,234.png,235.png,237.png,238.png,239.png,240.png,241.png,242.png,244.png,245.png,246.png,247.png,248.png,249.png,250.png,253.png,254.png,255.png,256.png,257.png,258.png,259.png,260.png,262.png,268.png,0.gif,1.gif,2.gif,3.gif,4.gif,5.gif,6.gif,7.gif,8.gif,9.gif,10.gif,12.gif,13.gif,14.gif,15.gif,16.gif,18.gif,19.gif,20.gif,21.gif,22.gif,23.gif,24.gif,28.gif,29.gif,30.gif,33.gif,34.gif,35.gif,36.gif,37.gif,39.gif,40.gif,42.gif,44.gif,45.gif,46.gif,48.gif,50.gif,52.gif,54.gif,55.gif,57.gif,58.gif,59.gif,60.gif,61.gif,63.gif,64.gif,66.gif,67.gif,68.gif,69.gif,70.gif,72.gif,73.gif,75.gif,76.gif,77.gif,78.gif,80.gif,81.gif,82.gif,83.gif,86.gif,87.gif,88.gif,92.gif,93.gif,94.gif,95.gif,96.gif,97.gif,98.gif,99.gif,100.gif,101.gif,102.gif,103.gif,104.gif,105.gif,106.gif,108.gif,109.gif,110.gif,111.gif,112.gif,113.gif,115.gif,116.gif,117.gif,118.gif,119.gif,120.gif,122.gif,123.gif,124.gif,127.gif,129.gif,130.gif,131.gif,134.gif,135.gif,136.gif,138.gif,139.gif,141.gif,144.gif,146.gif,148.gif,149.gif,153.gif,154.gif,155.gif,157.gif,158.gif,159.gif,160.gif,161.gif,162.gif,164.gif,166.gif,167.gif,168.gif,169.gif,170.gif,171.gif,172.gif,173.gif,174.gif,175.gif,176.gif,177.gif,178.gif,181.gif,182.gif,183.gif,185.gif,186.gif,187.gif,188.gif,189.gif,190.gif,191.gif,192.gif,193.gif,195.gif,196.gif,197.gif,200.gif,201.gif,202.gif,203.gif,204.gif,205.gif,206.gif,207.gif,208.gif,209.gif,210.gif,211.gif,212.gif,213.gif,214.gif,215.gif,216.gif,217.gif,219.gif,220.gif,221.gif,222.gif,224.gif,225.gif,226.gif,227.gif,228.gif,230.gif,232.gif,233.gif,234.gif,235.gif,238.gif,240.gif,241.gif,243.gif,244.gif,245.gif,246.gif,247.gif,249.gif,250.gif,251.gif,253.gif",
"cachedTitles": [
{
"key": "SoundCloud",
"text": "wincing",
"uid": "wwwincing"
},
{
"key": "SoundCloud",
"text": "Teenage Guitar (Feat. GioteX, $wagg $tuff, DJ BluFlaim, DJ Majikk) by dj dubbi",
"uid": "dj-dubbi/teenage-guitar-feat-giotex-wagg-tuff-dj-bluflaim-dj-majikk"
},
{
"key": "SoundCloud",
"text": "fant0m",
"uid": "user-723934925/tracks"
},
{
"key": "SoundCloud",
"text": "NEWBASSMUSIC2019 MegaMiX FREE DOWNLOAD by dj dubbi",
"uid": "dj-dubbi/newbassmusic2019"
},
{
"key": "SoundCloud",
"text": "Take This Out (Feat. GioteX,$wagg $tuff, DJ BluFlaim, and DJ Majikk) by dj dubbi",
"uid": "dj-dubbi/take-this-out-feat-giotex"
},
{
"key": "SoundCloud",
"text": "4D Ghosts Remix (Feat. $kullAxi$ D3D, GioteX, $wagg $tuff)FREE DOWNLOAD by dj dubbi",
"uid": "dj-dubbi/4d-ghosts-remix"
},
{
"key": "SoundCloud",
"text": "FAQQI",
"uid": "immortal-faqqi"
},
{
"key": "SoundCloud",
"text": "dj dubbi",
"uid": "dj-dubbi"
},
{
"key": "SoundCloud",
"text": "I'm Ill Wid It! by dj dubbi",
"uid": "dj-dubbi/im-ill-wid-it"
},
{
"key": "SoundCloud",
"text": "This My Bangin (Ultra Dancer Mix 2014)(Feat. GioteX,$wagg $tuff, DJ BluFlaim, and DJ Majikk) by dj dubbi",
"uid": "dj-dubbi/this-my-bangin-ultra-dancer-mix-2014"
},
{
"key": "SoundCloud",
"text": "Transform2018 (feat. GioteX, $wagg $tuff, DJ BluFlaim, and DJ Majikk) by dj dubbi",
"uid": "dj-dubbi/transform2018"
},
{
"key": "SoundCloud",
"text": "xyddi the clown",
"uid": "xyddi"
},
{
"key": "YouTube",
"text": "Jackass theme song",
"uid": "23aaanf_pn4"
},
{
"key": "YouTube",
"text": "Michael Gira - Where Does Your Body Begin?",
"uid": "pOubv5PveKk"
},
{
"key": "YouTube",
"text": "Roses In The Snow (Alternate Version)",
"uid": "B9qW2Vh2iT8"
},
{
"key": "YouTube",
"text": "GODDAMN by WINCING.",
"uid": "vbHvZc_Wup8"
},
{
"key": "YouTube",
"text": "DJ Dubbi - Clip to the Backrooms",
"uid": "rE7JhW4mHi8"
},
{
"key": "YouTube",
"text": "DJ Dubbi - Life Is Like That Bike!",
"uid": "gDQDExqGXGo"
},
{
"key": "YouTube",
"text": "WobbleBass Romance",
"uid": "sKEpKfZFUQY"
},
{
"key": "YouTube",
"text": "DJ Dubbi - Ay YOo! (Music Video)",
"uid": "F9AOfFcyPsU"
},
{
"key": "YouTube",
"text": "DJ Dubbi - Blassé",
"uid": "i4Oy1bbwj3Y"
},
{
"key": "YouTube",
"text": "FAQQI - NSFW 💋 music video",
"uid": "GRsMoHhu3X0"
},
{
"key": "YouTube",
"text": "FAQQI a.k.a Lil Deep Head - Hear It",
"uid": "xLGnd94D_qA"
},
{
"key": "YouTube",
"text": "xyddi the clown - Stay Focussed Silly Brain!",
"uid": "Y2eAta2FOXU"
},
{
"key": "YouTube",
"text": "Jesus Christ - Brand New",
"uid": "cjPyvoLXPs4"
},
{
"key": "YouTube",
"text": "Bengalfuel - Ekes (Full Album)",
"uid": "kuwGICf3cLk"
},
{
"key": "YouTube",
"text": "Step One+Dub-Stefano Antoniol (Stebass)",
"uid": "s0uzZQlEH3w"
},
{
"key": "YouTube",
"text": "Hopa & Bones - Tings Could Be Better",
"uid": "hW7j5IAck5E"
},
{
"key": "YouTube",
"text": "Dee Patten~Who's The Bad Man [Sound System Mix]",
"uid": "s-9svLyuDPs"
},
{
"key": "YouTube",
"text": "Transllusion - Dirty South Strut",
"uid": "DZTkDaV5ryI"
},
{
"key": "YouTube",
"text": "SLIKBACK - KITE",
"uid": "ysY0C3BdjFc"
},
{
"key": "YouTube",
"text": "Sleep D- Hydro Dub",
"uid": "EFafOhXlDVw"
},
{
"key": "YouTube",
"text": "Security DJ - Boaliketool",
"uid": "BHOSLlg4zx0"
},
{
"key": "YouTube",
"text": "Awesome 3 - Headstrong",
"uid": "9AYXXqUzKOU"
},
{
"key": "YouTube",
"text": "Glenn Astro - Stutter Shades (Deft Remix)",
"uid": "4PCDXlPJK04"
},
{
"key": "YouTube",
"text": "Om Unit & Djrum - Ruins",
"uid": "dk2xthwJr3Q"
},
{
"key": "YouTube",
"text": "Elena Siegman - 115 Lyrics",
"uid": "bty4-TgBV9I"
},
{
"key": "YouTube",
"text": "Cosmo Jarvis - Is The World Strange or Am I Strange?",
"uid": "UujJxUUyegg"
},
{
"key": "YouTube",
"text": "Oksennus (Finland) - Valkoinen Jättiläinen (2014).avi",
"uid": "cS3WYQpE0gg"
},
{
"key": "YouTube",
"text": "Like Me (feat. Steven a. Clark)",
"uid": "Z7OgYE_wqYg"
},
{
"key": "YouTube",
"text": "party of helicopters - slowdance",
"uid": "xB_u3mMBxBU"
},
{
"key": "YouTube",
"text": "frail hands - frail hands",
"uid": "wwM17n0VS4w"
},
{
"key": "YouTube",
"text": "GAUNT NEW SONG FUCK YEAH",
"uid": "b5xGtQWxs_E"
},
{
"key": "YouTube",
"text": "Story: No Title",
"uid": "AaL1Km4sq5s"
},
{
"key": "YouTube",
"text": "増尾好秋 マスオライブ 05アイ・ウィル・ファインド・ア・プレイス",
"uid": "vZbX8Yb581w"
},
{
"key": "YouTube",
"text": "Xiu Xiu - Sad Pony Guerrilla Girl (from A Promise)",
"uid": "dqcHwFNyfXA"
},
{
"key": "YouTube",
"text": "Are You Going With Me? (Live)",
"uid": "a8oZwPGYqf8"
},
{
"key": "YouTube",
"text": "«Да исправится молитва моя...»",
"uid": "vh-jFBEOC6s"
},
{
"key": "YouTube",
"text": "OG Maco - U Guessed It (ALESIA X EPROM Remix)",
"uid": "hHs6bYVMxiI"
},
{
"key": "YouTube",
"text": "OG Maco - U Guessed It (ALESIA X EPROM Remix) (Bassnectar edit)",
"uid": "lViEdv2EQjw"
},
{
"key": "SoundCloud",
"text": "Ad Astra by droonid taevas",
"uid": "mhmdroonid/ad-astra"
},
{
"key": "SoundCloud",
"text": "Walk Freestyle(Prod. nk Beats) by Rain Man",
"uid": "hiaven/walk"
},
{
"key": "SoundCloud",
"text": "The Bridge of Love (Candy Bot 3000 Mix) by Lollipop",
"uid": "alwayswatchyourbacks/the-bridge-of-love-candy-bot-3000-mix-1"
},
{
"key": "SoundCloud",
"text": "revin goff",
"uid": "revingoff"
},
{
"key": "SoundCloud",
"text": "Thoughts by FoulPla¥",
"uid": "foulplaybeats/thoughts"
}
],
"passMessageClosed": false,
"Prerequest Captcha": false,
"youtubeAPIKey": "AIzaSyB5_zaen_-46Uhz1xGR-lz1YoUMHqCD6CE",
"hiddenThreads": {
"4chan.org": {
"boards": {
"g": {
"74720350": true,
"74720818": true
}
},
"lastChecked": 1581409928734
},
"version": 4
},
"hiddenPosts": {
"4chan.org": {
"boards": {},
"lastChecked": 1581409928734
}
},
"lastReadPosts": {
"4chan.org": {
"boards": {
"g": {
"74694456": 74694660
},
"wg": {
"7547168": 7547212
}
},
"lastChecked": 1581403557031
},
"version": 5
},
"yourPosts": {
"4chan.org": {
"boards": {
"wg": {
"7547168": {
"7547212": true
}
}
},
"lastChecked": 1581408431895
},
"version": 1
},
"watchedThreads": {
"4chan.org": {
"boards": {
"wg": {
"7547168": {
"excerpt": "/wg/ - Logos in the middle of screens",
"isArchived": false,
"isDead": false,
"last": 7547212,
"lastPage": false,
"modified": 1581406071,
"page": 1,
"quotingYou": 0,
"replies": 12,
"unread": 0
}
}
}
},
"lastChecked": 1581409793999,
"lastChecked2": 1581407840929,
"version": 66
},
"watcherLastModified": {
"4chan.org": {
"boards": {
"wg": {
"https://a.4cdn.org/wg/threads.json": "Tue, 11 Feb 2020 08:23:47 GMT"
}
}
},
"version": 18
},
"customTitles": {
"4chan.org": {
"boards": {
"qa": {
"boardTitle": {
"orig": "/qa/ - Question & Answer",
"title": "/qa/ - 2D/Random"
}
}
}
}
},
"archives": [
{
"boards": [
"adv",
"f",
"hr",
"o",
"pol",
"s4s",
"sp",
"tg",
"trv",
"tv",
"x"
],
"domain": "archive.4plebs.org",
"files": [
"adv",
"f",
"hr",
"o",
"pol",
"s4s",
"sp",
"tg",
"trv",
"tv",
"x"
],
"http": true,
"https": true,
"name": "4plebs",
"reports": true,
"software": "foolfuuka",
"uid": 3
},
{
"boards": [
"bant",
"c",
"e",
"n",
"news",
"out",
"p",
"toy",
"vip",
"vp",
"w",
"wg",
"wsr"
],
"domain": "archive.nyafuu.org",
"files": [
"bant",
"c",
"e",
"n",
"news",
"out",
"p",
"toy",
"vip",
"vp",
"w",
"wg",
"wsr"
],
"http": false,
"https": true,
"name": "Nyafuu Archive",
"reports": true,
"software": "foolfuuka",
"uid": 4
},
{
"boards": [
"cgl",
"g",
"mu"
],
"domain": "archive.rebeccablacktech.com",
"files": [
"cgl",
"g",
"mu"
],
"http": false,
"https": true,
"name": "Rebecca Black Tech",
"reports": true,
"software": "foolfuuka",
"uid": 8
},
{
"boards": [
"3",
"biz",
"cgl",
"ck",
"diy",
"fa",
"g",
"ic",
"jp",
"lit",
"sci",
"tg",
"vr"
],
"domain": "warosu.org",
"files": [
"3",
"biz",
"cgl",
"ck",
"diy",
"fa",
"g",
"ic",
"jp",
"lit",
"sci",
"tg",
"vr"
],
"http": false,
"https": true,
"name": "warosu",
"search": [
"biz",
"cgl",
"ck",
"diy",
"fa",
"g",
"ic",
"jp",
"lit",
"sci",
"tg",
"vr"
],
"software": "fuuka",
"uid": 10
},
{
"boards": [
"a",
"aco",
"an",
"c",
"co",
"d",
"fit",
"gif",
"his",
"int",
"k",
"m",
"mlp",
"qa",
"r9k",
"tg",
"trash",
"vr",
"wsg"
],
"domain": "desuarchive.org",
"files": [
"a",
"aco",
"an",
"c",
"co",
"d",
"fit",
"gif",
"his",
"int",
"k",
"m",
"mlp",
"qa",
"r9k",
"tg",
"trash",
"vr",
"wsg"
],
"http": true,
"https": true,
"name": "Desuarchive",
"reports": true,
"software": "foolfuuka",
"uid": 23
},
{
"boards": [
"cm",
"co",
"ic",
"sci",
"tg",
"vip",
"y"
],
"domain": "boards.fireden.net",
"files": [
"cm",
"co",
"ic",
"sci",
"tg",
"vip",
"y"
],
"http": false,
"https": true,
"name": "fireden.net",
"search": [
"cm",
"co",
"ic",
"sci",
"tg",
"y"
],
"software": "foolfuuka",
"uid": 24
},
{
"boards": [
"g",
"jp",
"mlp",
"v",
"vg",
"vp"
],
"domain": "arch.b4k.co",
"files": [],
"http": true,
"https": true,
"name": "arch.b4k.co",
"search": [
"v",
"vg"
],
"software": "foolfuuka",
"uid": 25
},
{
"boards": [
"f",
"cm",
"hm",
"lgbt",
"news",
"qst",
"trash",
"y"
],
"domain": "archive.b-stats.org",
"files": [],
"http": false,
"https": true,
"name": "bstats",
"software": "foolfuuka",
"uid": 28
},
{
"boards": [
"3",
"a",
"aco",
"adv",
"an",
"asp",
"b",
"bant",
"biz",
"c",
"can",
"cgl",
"ck",
"cm",
"co",
"cock",
"d",
"diy",
"e",
"f",
"fa",
"fap",
"fit",
"fitlit",
"g",
"gd",
"gif",
"h",
"hc",
"his",
"hm",
"hr",
"i",
"ic",
"int",
"jp",
"k",
"lgbt",
"lit",
"m",
"mlp",
"mlpol",
"mo",
"mtv",
"mu",
"n",
"news",
"o",
"out",
"outsoc",
"p",
"po",
"pol",
"qa",
"qst",
"r",
"r9k",
"s",
"s4s",