-
Notifications
You must be signed in to change notification settings - Fork 75
/
brave-unbreak.txt
1430 lines (1422 loc) · 88.1 KB
/
brave-unbreak.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
[Adblock Plus 2.0; uBlock Origin]
! Title: Brave Unbreak
! Expires: 12 hours
! https://github.com/easylist/easylist/issues/19234
@@||mssl.fwmrm.net/libs/$domain=southpark.de|southparkstudios.co.uk|southparkstudios.com.br|southparkstudios.com
@@||imasdk.googleapis.com/pal/sdkloader/pal.js$domain=southpark.de|southparkstudios.co.uk|southparkstudios.com.br|southparkstudios.com
!
! Counter wsj.com breakage (images not showing)
! https://github.com/uBlockOrigin/uAssets/issues/24960
@@||cloudfront.net/o?*fqdn=$xhr,3p,domain=marketwatch.com|wsj.com
@@||cloudfront.net/*.js|$script,3p,domain=marketwatch.com|wsj.com
! Generic blocks
.com/watch.*&kw=$third-party
.click/gd/
.shop/cuid/
! strict3p workaround
! /^https:\/\/[a-z]\d{3}\.[a-z]+\.com\/script\.js$/$script,1p,redirect-rule=noopjs,strict3p,from=com
/^https:\/\/[a-z]\d{3}\.[a-z]+\.com\/script\.js$/$script,1p,redirect-rule=noopjs,domain=beaumontenterprise.com|bigrapidsnews.com|chicagotribune.com|courant.com|ctinsider.com|ctpost.com|expressnews.com|greenwichtime.com|houstonchronicle.com|lmtonline.com|mcall.com|michigansthumb.com|mrt.com|myjournalcourier.com|myplainview.com|newstimes.com|nydailynews.com|orlandosentinel.com|ourmidland.com|pilotonline.com|seattlepi.com|sfchronicle.com|sfgate.com|stamfordadvocate.com|sun-sentinel.com|thehour.com|theintelligencer.com|thetelegraph.com|timesunion.com
! domain=com workaround (popads)
! /^https:\/\/[a-z]{8,12}\.com\/en\/(?:[a-z]{2,5}\/){0,2}[a-z]{2,}\?(?:[a-z]+=(?:\d+|[a-z]+)&)*?id=[12]\d{6}/$script,3p,match-case,to=com
! /^https?:\/\/(?:www\.|[0-9a-z]{7,10}\.)?[-0-9a-z]{5,}\.com\/\/?(?:[0-9a-z]{2}\/){2,3}[0-9a-f]{32}\.js/$script,3p,redirect-rule=noop.js,to=com
! /^https:\/\/[a-z]{3,5}\.[a-z]{10,14}\.top\/[a-z]{10,16}\/[a-z]{5,6}(?:\?d=\d)?$/$script,3p,match-case,to=top
/^https:\/\/[a-z]{8,12}\.com\/en\/(?:[a-z]{2,5}\/){0,2}[a-z]{2,}\?(?:[a-z]+=(?:\d+|[a-z]+)&)*?id=[12]\d{6}/$script,3p,match-case
/^https:\/\/[a-z]{3,5}\.[a-z]{10,14}\.top\/[a-z]{10,16}\/[a-z]{5,6}(?:\?d=\d)?$/$script,xhr,3p
/^https?:\/\/(?:www\.|[0-9a-z]{7,10}\.)?[-0-9a-z]{5,}\.com\/\/?(?:[0-9a-z]{2}\/){2,3}[0-9a-f]{32}\.js/$script,3p,redirect-rule=noop.js
! test (possible redirection issue)
twitter.com##+js(remove-cookie, d_prefs)
twitter.com##+js(remove-cookie, twid)
twitter.com##+js(remove-cookie, personalization_id)
! Adshield
blog.esuteru.com,blog.livedoor.jp,carscoops.com,eurointegration.com.ua,ff14net.2chblog.jp,flatpanelshd.com,golf-live.at,horairesdouverture24.fr,hoyme.jp,itainews.com,jin115.com,kreuzwortraetsel.de,lamire.jp,m.economictimes.com,modhub.us,motherlyvisions.com,ndtvprofit.com,news4vip.livedoor.biz,nyitvatartas24.hu,onecall2ch.com,palabr.as,picrew.me,pravda.com.ua,rabitsokuhou.2chblog.jp,raetsel-hilfe.de,suzusoku.blog.jp,the-crossword-solver.com,thestockmarketwatch.com,verkaufsoffener-sonntag.com,winfuture.de,word-grabber.com,wort-suchen.de,yugioh-starlight.com##iframe[src="about:blank"]:remove()
! csp + doc (remove doc) *$doc,csp=script-src-attr 'none',to=flatpanelshd.com|sportsrec.com|badmouth1.com|picrew.me|lamire.jp
*$csp=script-src-attr 'none',domain=badmouth1.com|blog.esuteru.com|eurointegration.com.ua|flatpanelshd.com|hoyme.jp|issuya.com|iusm.co.kr|jin115.com|lamire.jp|picrew.me|sportsrec.com
!
! win7/8 YT crashes
! CNAME: account.adobe.com
@@||account.adobe.com^
! CNAME: pol.dk
@@||www.pol.dk^
! CNAME: autonews.com (https://community.brave.com/t/autonews-com-images-dont-load/488276)
@@||s3-prod.autonews.com^$domain=autonews.com
! CNAME: linkvertise.com
@@||taboola.com/libtrc/linkvertise-link-to/loader.js$domain=linkvertise.com
@@||taboola.map.fastly.net^$domain=linkvertise.com
! CNAME: https://api.atlassian.com/metal/ingest
! https://github.com/brave/adblock-lists/issues/752
@@||api.atlassian.com^$first-party
! CNAME: https://yab.yomiuri.co.jp/adv/presage/3.html
@@||yab.yomiuri.co.jp/adv/$first-party
@@||omicroncdn.net^$domain=yab.yomiuri.co.jp
! CNAME: https://www.imdb.com/video/vi935705113?playlistId=tt1568346
@@||cloudfront.net^$domain=imdb.com|media-imdb.com
! CNAME: xing.com
@@||cloudfront.net^$domain=xing.com
! CNAME: iraiser.eu
@@||iraiser.eu^$image,stylesheet,subdocument
@@||cdn.iraiser.eu^
! CNAME: https://darknetdiaries.com/episode/78/
@@||traffic.megaphone.fm^$domain=megaphone.fm|darknetdiaries.com
@@||adserver.va3.megaphone.cloud.$domain=megaphone.fm|darknetdiaries.com
! theatlantic.com anti-blocker filters
||theatlantic.blueconic.net$domain=theatlantic.com
||theatlantic.com/please-support-us^
! navigator.clipboard checks
webplatform.news##+js(aopw, navigator.clipboard)
! navigator.connection checks
pandora.com,userlytics.com##+js(set, navigator.connection, {})
! :has
youtube.com##ytd-rich-item-renderer:has(ytd-display-ad-renderer)
9gag.com##article:has(.promoted)
! Fix browser lockup on skepticalscience.com (https://github.com/brave/brave-browser/issues/5406)
||skepticalscience.net/widgets/heat_widget/js/heat_content.js$script,domain=skepticalscience.com
! adops.com unusable without this
@@||adops.com^$~third-party
@@||www.scrumpoker.online^$~third-party
! https://github.com/brave/brave-browser/issues/31954
crunchyroll.com##+js(set-local-storage-item, /_evidon_consent_ls_\d+/, $remove$)
! fixes for several requests bypassing default blocklists
||aolcdn.com/*/adsWrapper.js$script
||zergnet.com^$script,third-party
! https://coveryourtracks.eff.org/ Cover your tracks test
||trackersimulator.org^
||eviltracker.net^
||do-not-tracker.org^
! omegascans.org/nsfwyoutube.com/torlock.com
/^https:\/\/[0-9a-f]{10}\.[0-9a-f]{10}\.com\/[0-9a-f]{32}\.js$/$script,3p,domain=fastpic.org|torlock.com|nsfwyoutube.com|omegascans.org|animeland.tv|streamhub.to|unblockit.africa
! Disable PDFJS which we include by default's telemetry
||pdfjs.robwu.nl
! GPC issues
! weather.com https://github.com/brave/brave-browser/issues/35431
eventbrite.com,weather.com##+js(set, Navigator.prototype.globalPrivacyControl, false)
eventbrite.com,weather.com##+js(set, navigator.globalPrivacyControl, false)
! Soft anti-adblock
maxroll.gg##+js(trusted-set-local-storage-item, adBlockWarning, '{"value":true}')
! Scroll bar-consent
collegeconfidential.com##body:style(overflow: auto !important; max-height: 1px !important;)
! open-in-app reddit nag
reddit.com##+js(trusted-set-local-storage-item, xpromo-consolidation, $currentDate$)
! Fix preloader (facebook check)
igniteunmc.com##.preloader
! youtube
youtube.com#@##masthead-ad
youtube.com#@##player-ads
! youtube.com#@##shorts-inner-container > .ytd-shorts:has(> .ytd-reel-video-renderer > ytd-ad-slot-renderer)
youtube.com#@#.ytd-merch-shelf-renderer
youtube.com#@#.ytp-suggested-action > button.ytp-suggested-action-badge
! m.youtube.com#@#lazy-list > ad-slot-renderer
youtube.com#@#ytd-ad-slot-renderer
! youtube.com#@#ytd-rich-item-renderer:has(> #content > ytd-ad-slot-renderer)
youtube.com#@#ytd-search-pyv-renderer
! m.youtube.com#@#ytm-companion-slot[data-content-type] > ytm-companion-ad-renderer
! m.youtube.com#@#ytm-rich-item-renderer > ad-slot-renderer
! youtube (previous)
youtube.com###items > ytd-ad-slot-renderer
youtube.com###panels > [target-id="engagement-panel-ads"]
youtube.com###related > div#player-ads
youtube.com###content > ytd-ad-slot-renderer
youtube.com###contents.style-scope.ytd-search-pyv-renderer
youtube.com###main > #banner.ytd-merch-shelf-renderer
youtube.com###masthead-ad > .ytd-rich-grid-renderer
youtube.com###scroll-container > #items.ytd-merch-shelf-renderer
youtube.com###ytd-player button.ytp-suggested-action-badge
youtube.com##.ytp-chrome-top-buttons > .ytp-cards-teaser
m.youtube.com##lazy-list > ad-slot-renderer
youtube.com##ytd-ad-slot-renderer.style-scope.ytd-item-section-renderer
youtube.com##ytd-rich-item-renderer:has(> .ytd-rich-item-renderer > ytd-ad-slot-renderer)
youtube.com##ytd-rich-item-renderer:has(ytd-display-ad-renderer)
!
! Brave-social (temp)
! List used by Brave for preventing social elements from loading
!
! Facebook
||graph.facebook.com^$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
||static.ak.connect.facebook.com^$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
||connect.facebook.net^*/sdk.js$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
||connect.facebook.net^*/all.js$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
||connect.facebook.com^*/all.js$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
||connect.facebook.com^*/sdk.js$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
||connect.facebook.net^*/sdk/$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
||connect.facebook.net^*/fp.js$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
! Facebook Plugins (3rd-party embedded plugins)
||facebook.com^*/plugins/$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
||facebook.com/plugins/$third-party,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com
! Twitter
||api.twitter.com^$third-party,domain=~tweetdeck.com|~twitter.com|~twitter.jp|~x.com
||platform.twitter.com^$third-party,domain=~tweetdeck.com|~twitter.com|~twitter.jp|~x.com
||api.x.com^$third-party,domain=~tweetdeck.com|~twitter.com|~twitter.jp|~x.com
||platform.x.com^$third-party,domain=~tweetdeck.com|~twitter.com|~twitter.jp|~x.com
!
! Note that options will be added to exclude these filters soon. They
! are added both as a blocking rule and as an exception rule so that
! an exception is hit and will override what's in tracking protection protection.
! Facebook logins and embeds
@@||connect.facebook.net^*/sdk/$tag=fb-embeds
@@||connect.facebook.net^*/sdk.js$tag=fb-embeds
@@||connect.facebook.net^*/all.js$tag=fb-embeds
@@||connect.facebook.com^*/all.js$tag=fb-embeds
@@||connect.facebook.com^*/sdk.js$tag=fb-embeds
@@||connect.facebook.net^*/fp.js$tag=fb-embeds
@@||static.ak.connect.facebook.com^$tag=fb-embeds
@@||facebook.com/plugins/$tag=fb-embeds
@@||facebook.com^*/plugins/$tag=fb-embeds
@@||graph.facebook.com^$tag=fb-embeds
! Facebook tracking events
/fbevents-amd.js
/fbevents.js
/fbevents.min.js
||facebook.com/tr/
||facebook.com/tr?
! Facebook fixes
@@||connect.facebook.net^$script,domain=denver.org
! Twitter embeds
@@||api.twitter.com^$tag=twitter-embeds
@@||platform.twitter.com^$tag=twitter-embeds
@@||api.x.com^$tag=twitter-embeds
@@||platform.x.com^$tag=twitter-embeds
! LinkedIn in embeds
@@||licdn.com^$tag=linked-in-embeds
@@||platform.linkedin.com^$tag=linked-in-embeds
! jcrew.com reviews not showing
jcrew.com##+js(cookie-remover.js, dns_cookie)
! Fix sign in icon on https://app.mysms.com/#login
@@||developers.google.com/identity/$image,domain=mysms.com
! Adservers (ios)
||pixfuture.com^$third-party
||taboola.com^$third-party
! Allow doubleclick clickthrough (ios)
@@||ad.doubleclick.net/ddm/clk/$domain=ad.doubleclick.net
! google adsettings (ios)
@@||www.google.com/ads/preferences/$first-party
@@||adssettings.google.com^$first-party
! Fix nordpass/protomail clickthrough on ios
@@/aff_c?offer_id=
@@?offer_id=*&aff_id=
! ca.yahoo.com (ios)
/av/ads/*$domain=yahoo.com
! https://www.nintendo.co.jp/ring/index.html (https://github.com/brave/brave-browser/issues/11448)
@@||nintendo.co.jp/ring/assets_top/img/adv/$~third-party
! suumo.jp (ios)
@@||suumo.jp/sp/js/beacon.js$script,domain=suumo.jp
! usps.com fix (ios)
@@||tools.usps.com/go/scripts/tracking.js$script,domain=tools.usps.com
! Fix startpage ads
startpage.com###gcsa-top
! Fix onesignal.com example push notifications
@@||googletagmanager.com/gtm.js$script,domain=onesignal.com
! Fix for https://www.home.neustar/ (blank page)
@@||neustar.biz^$domain=home.neustar
! Blockfi Notifcations
@@||braze.com^$third-party,domain=blockfi.com
! https://canyoublockit.com/extreme-test/ (https://github.com/brave/brave-browser/issues/12929)
canyoublockit.com##+js(aopr, atob)
canyoublockit.com##+js(acis, atob, decodeURIComponent)
! Fix livemint.com (anti-adblock)
@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xmlhttprequest,domain=livemint.com
! Broken video playback on tn.com.ar (https://community.brave.com/t/the-blocker-does-not-allow-you-to-watch-the-video/76691)
@@||googletagmanager.com/gtm.js$script,domain=tn.com.ar
! portscanning script
gap.com,ibanking-services.com,connectonebank.com,tescobank.com,sbisec.co.jp,tsb.co.uk,tiaabank.com,tiaa.org,directpay.irs.gov,t-mobile.com,simplii.com,citibank.com.au,fisglobal.com,adp.com,skyid.sky.com,onehealthcareid.com,betfair.es,betfair.com.au,paddypower.com,healthsafe-id.com,canadiantire.ca,sportchek.ca,ingbank.pl,optumbank.com,mbna.ca,tdcommercialbanking.com,coastcapitalsavings.com,my100bank.com,royalbank.com,td.com,spectrum.net,quicken.com,citibankonline.com,bmo.com,eftps.gov,optumbank.com,samsclub.com,intuit.com,betfair.com,sofi.com,53.com,ameriprise.com,cibc.com,citi.com,discover.com,fidelity.com,homedepot.com,sciencedirect.com,ebay.com,ebay-kleinanzeigen.de,tdbank.com,walmart.com##+js(acis, tmx_post_session_params_fixed)
! slate.com Anti-adblock workaround https://github.com/brave/brave-browser/issues/15702
! thehindu.com https://www.reddit.com/r/brave_browser/comments/10hh4j6/this_site_is_detecting_braveandroid_adblock/
||tinypass.com^$domain=slate.com|www.thehindu.com
wetter.com,spiegel.de##[referrerpolicy]
! Warning message
||spiegel.de/public/shared/generated/3rdparty/js/msg_without_detection.
! atozmath.com Anti-adblock
atozmath.com###lblAdContent
!! -- ported from uBO Annoyances filters (START)
! https://github.com/uBlockOrigin/uAssets/issues/1343
! https://github.com/uBlockOrigin/uAssets/issues/1879
agar.io##+js(aopw, hasAdblock)
@@||imasdk.googleapis.com/js/sdkloader/outstream.js$script,domain=agar.io
agar.io###advertisement
! https://github.com/uBlockOrigin/uAssets/issues/1445
wings.io##+js(aopr, hasAdblock)
wings.io###mpu-top
! https://github.com/uBlockOrigin/uAssets/issues/1446
brutal.io###mpu-top
brutal.io##+js(set, hasAdblock, false)
! https://github.com/uBlockOrigin/uAssets/issues/1447
starve.io###trevda
! https://github.com/uBlockOrigin/uAssets/issues/1582
! https://github.com/jspenguin2017/uBlockProtector/issues/974
! https://github.com/NanoMeow/QuickReports/issues/8
! https://www.reddit.com/r/uBlockOrigin/comments/9tj2zp/help_to_get_past_this_adblocker_block/
! https://forums.lanik.us/viewtopic.php?f=62&t=43097
! https://github.com/NanoMeow/QuickReports/issues/1382
! https://github.com/NanoMeow/QuickReports/issues/1528
! https://github.com/uBlockOrigin/uAssets/issues/6517
! https://github.com/NanoMeow/QuickReports/issues/3246
al.com,allkpop.com,calendarpedia.co.uk,ccn.com,cleveland.com,comicsands.com,duffelblog.com,gamepur.com,gamerevolution.com,interestingengineering.com,keengamer.com,listenonrepeat.com,mandatory.com,mlive.com,musicfeeds.com.au,newatlas.com,pgatour.com,readlightnovel.org,secondnexus.com,sevenforums.com,sport24.co.za,superherohype.com,thefashionspot.com,theodysseyonline.com,totalbeauty.com,westernjournal.com##+js(aopr, __cmpGdprAppliesGlobally)
! techonthenet warning anti adb
techonthenet.com##+js(set-cookie, sabl, 1)
! https://github.com/uBlockOrigin/uAssets/issues/2185
@@||socialblade.com^$ghide
socialblade.com##.cas-container
socialblade.com##.cas-wide-container
socialblade.com##div[style^="width: 300px; height: 250px;"][style*="background: #fff;"]
socialblade.com##div[style^="width: 860px; min-height: 90px"]
socialblade.com###bottomAd:style(position: absolute !important; left: -4000px !important;)
! https://github.com/NanoAdblocker/NanoFilters/issues/63
sportsnet.ca##+js(aopr, uxGuid)
! https://github.com/NanoAdblocker/NanoFilters/issues/87
realcleardefense.com##+js(set, warning_widget.check_ad_block_status, noopFunc)
! https://github.com/NanoAdblocker/NanoFilters/issues/134
tv.mademyday.com##.blnotice
! https://github.com/jspenguin2017/uBlockProtector/issues/968
iosgods.com##+js(aopw, CheckAdLoad)
! phys.org anti-adblock nag
@@||phys.org^$ghide
phys.org##.amp-unresolved
phys.org##.adsbygoogle
phys.org##.ads-336x280
! https://github.com/NanoAdblocker/NanoFilters/issues/145
minijuegos.com###adBlockDisclaimer
! https://github.com/uBlockOrigin/uAssets/issues/3006
gardenista.com##+js(set, adsAreBlocked, false)
! https://github.com/NanoAdblocker/NanoFilters/issues/156
punto-informatico.it##+js(aopr, blazemedia_adBlock)
! https://github.com/uBlockOrigin/uAssets/issues/3115
@@||umterps.com^$ghide
umterps.com##.single-ad
! https://github.com/uBlockOrigin/uAssets/issues/3204
myfxbook.com##+js(nostif, checkForAds)
! https://github.com/uBlockOrigin/uAssets/issues/3220
planete-205.com###nonono
! https://github.com/uBlockOrigin/uAssets/issues/3221
@@||vide-greniers.org^$ghide
||pagead2.googlesyndication.com/pagead/$script,redirect=noopjs,domain=vide-greniers.org
! https://github.com/uBlockOrigin/uAssets/issues/3318
hqq.tv##+js(nostif, check, 100)
! https://github.com/NanoMeow/QuickReports/issues/29
! https://reddit.com/r/uBlockOrigin/comments/ea6rv3
zerohedge.com###abd-banner
zerohedge.com##.modal__overlay
! https://github.com/reek/anti-adblock-killer/issues/4147
@@||racefans.net^$ghide
racefans.net##.textwidget
! https://github.com/NanoMeow/QuickReports/issues/47
gearside.com##+js(set, nebula.session.flags.adblock, undefined)
! https://github.com/uBlockOrigin/uAssets/issues/3382
emol.com##+js(aopr, addLink)
! https://github.com/uBlockOrigin/uAssets/issues/3411
@@||radioline.co/*/ad$1p
! https://github.com/uBlockOrigin/uAssets/issues/3278#issuecomment-421038747
nytimes.com##+js(set, _adBlockCheck, true)
! https://github.com/uBlockOrigin/uAssets/issues/3466
! https://github.com/NanoMeow/QuickReports/issues/4672
||googlesyndication.com/pagead/js/adsbygoogle.js$xhr,redirect=noop.js,domain=unknowncheats.me
*$xhr,redirect-rule=nooptext,domain=unknowncheats.me
! https://github.com/uBlockOrigin/uAssets/issues/3489
columbiaspectator.com##+js(nostif, ads, 2000)
! https://github.com/uBlockOrigin/uAssets/issues/3545
springfieldspringfield.co.uk##+js(aopr, addLink)
! https://github.com/NanoMeow/QuickReports/issues/142
flyertalk.com##+js(acs, $, AdBlock)
! https://github.com/NanoMeow/QuickReports/issues/179
esercizinglese.com,pelisfull.tv##+js(aopw, adBlockDetected)
masternodes.pro###adblocker
! https://github.com/NanoMeow/QuickReports/issues/182
ancient.eu##+js(set, ADBdetected, noopFunc)
! https://github.com/NanoMeow/QuickReports/issues/215
gota.io##+js(aopr, fuckAdBlock)
! https://github.com/uBlockOrigin/uAssets/issues/3743
greenocktelegraph.co.uk##+js(aopr, _sp_._networkListenerData)
! https://github.com/uBlockOrigin/uAssets/issues/3790
kashmirobserver.net##+js(acs, document.getElementById, ad-blocker)
! https://github.com/uBlockOrigin/uAssets/issues/3797
allafinedelpalo.it##+js(aopr, ABDSettings)
! https://github.com/uBlockOrigin/uAssets/issues/3814
cathouseonthekings.com##+js(acs, document.getElementById, .ab_detected)
! https://github.com/uBlockOrigin/uAssets/issues/3846
kollyinsider.com##+js(aopw, adMessage)
! https://github.com/uBlockOrigin/uAssets/issues/3862
ewrc-results.com##+js(aopw, adBlockEnabled)
! https://github.com/uBlockOrigin/uAssets/issues/3865
raven-mythic.com##+js(aopw, $adframe)
! https://github.com/uBlockOrigin/uAssets/issues/3868
investmentnews.com###blocker
! https://github.com/uBlockOrigin/uAssets/issues/3855
intramed.net##+js(set, adblock, false)
! https://github.com/uBlockOrigin/uAssets/issues/3888
protest.eu##+js(set, BIA.ADBLOCKER, false)
! https://github.com/uBlockOrigin/uAssets/issues/3877
/wp-content/plugins/simple-adblock-notice/*$~css
books-world.net,pc3mag.com##+js(nostif, Adblocker, 10000)
centrumher.eu##[class^="san_howtowhitelist_"]
centrumher.eu##+js(acs, jQuery, undefined)
! https://github.com/uBlockOrigin/uAssets/issues/3885
northwestfirearms.com,techkings.org##+js(set, samDetected, true)
! https://github.com/uBlockOrigin/uAssets/issues/3908
@@||enfsolar.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/3913
@@||brightonandhovenews.org^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/3912
japancamerahunter.com##+js(acs, jQuery, ads)
! https://github.com/uBlockOrigin/uAssets/issues/3918
remotelyawesomejobs.com###ad-plea
! https://github.com/uBlockOrigin/uAssets/issues/3919
@@||rightwingtribune.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/3925
heypoorplayer.com##+js(aopr, ABDSettings)
! https://github.com/uBlockOrigin/uAssets/issues/3931
spookshow.net##+js(set, adBlockFunction, trueFunc)
! https://github.com/uBlockOrigin/uAssets/issues/3928
@@||gamerotic.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/3934
tastycookery.com##+js(aeld, DOMContentLoaded, .js-popup-adblock)
! https://github.com/uBlockOrigin/uAssets/issues/3935
@@||resdz.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/3940
airlinercafe.com##+js(acs, jQuery, ads)
! https://github.com/uBlockOrigin/uAssets/issues/3941
@@||ricochet.media^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/3953
halotracker.com##+js(aopw, adBlockDetected)
! fosshub.com/PSPad.html warning antiadb
fosshub.com##+js(set, checkAds, trueFunc)
! https://github.com/uBlockOrigin/uAssets/issues/3962
juancarlosmolinos.net##+js(aopw, ABDSettings)
! https://github.com/uBlockOrigin/uAssets/issues/3963
stoneyroads.com##.ad-container
! https://github.com/uBlockOrigin/uAssets/issues/3964
pokemonforever.com##+js(set, google_jobrunner, true)
! https://github.com/NanoMeow/QuickReports/issues/267
bucketpages.com##+js(nostif, #advert-tracker, 500)
! https://forums.lanik.us/viewtopic.php?f=64&t=42119#p143017
carsguide.com.au##+js(set, isAdblockDisabled, true)
carsguide.com.au###adBlockMessage
! https://github.com/NanoMeow/QuickReports/issues/309
@@||dermatologytimes.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/4120
! https://github.com/NanoMeow/QuickReports/issues/32
motherjones.com##.mj-adblock-widget
! https://github.com/NanoMeow/QuickReports/issues/422
@@||topspeed.com^$ghide
topspeed.com##.adsninja-ad-zone
topspeed.com##.txt-ad
topspeed.com##.daily-vid-ad
topspeed.com##.top-horizontal-ad-content
! https://github.com/uBlockOrigin/uAssets/issues/4268#issuecomment-445478692
@@||mywrestling.com.pl^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/4268#issuecomment-445481905
webwereld.nl##+js(set, adsAreShown, true)
! anti adb warning /bigleaguepolitics . com
@@||bigleaguepolitics.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/4388
palemoon.org##+js(set, abd, false)
! https://github.com/NanoMeow/QuickReports/issues/505
@@||soundonsound.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/4447
@@||jrocknews.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/4551
@@||creditonebank.com^$ghide
! https://forums.lanik.us/viewtopic.php?p=144782#p144782
aoezone.net##+js(set, aoezone_adchecker, true)
! https://github.com/uBlockOrigin/uAssets/issues/4650
r7.com###inner-ad-container
! https://github.com/NanoMeow/QuickReports/issues/590
xnxx.com##+js(aopr, fuckAdBlock)
! https://github.com/NanoMeow/QuickReports/issues/631
randaris.app##.adblock-box
! nachrichten . at anti adb
@@||nachrichten.at^$ghide
! https://www.reddit.com/r/uBlockOrigin/comments/annrln/polygon_antiadblock/
heroesneverdie.com##+js(nostif, adsBlocked)
! https://github.com/NanoMeow/QuickReports/issues/648
! https://github.com/jspenguin2017/uBlockProtector/issues/1019
curbed.com,eater.com,funnyordie.com,mmafighting.com,mmamania.com,polygon.com,racked.com,riftherald.com,sbnation.com,theverge.com,vox.com##+js(nostif, adsBlocked)
! bdcraft
@@||bdcraft.net^$ghide
bdcraft.net##+js(set, adsbygoogle, null)
bdcraft.net##.cc-banner
bdcraft.net##.hostBtn
bdcraft.net##.adsbygoogle
bdcraft.net###bottombanner
bdcraft.net###header > .wrapper > [class]
! https://github.com/uBlockOrigin/uAssets/issues/4950
diynetwork.com##.o-AdhesionNotifier
! https://github.com/NanoMeow/QuickReports/issues/713
@@||eppingforestguardian.co.uk^$ghide
eppingforestguardian.co.uk##.dfp-ad
eppingforestguardian.co.uk##.mar-block-ad
! https://github.com/NanoMeow/QuickReports/issues/714
||code.adsales.snidigital.com/lib/*/sni-ads.min.js$script,domain=travelchannel.com
! https://github.com/NanoMeow/QuickReports/issues/783
ruwix.com##+js(nostif, NoAd, 8000)
! https://github.com/NanoMeow/QuickReports/issues/1324
@@||globalnews.ca^$ghide
globalnews.ca##.ad-container
globalnews.ca###headerAd
! https://github.com/uBlockOrigin/uAssets/issues/186#issuecomment-486142318
wired.co.uk##+js(set, ads_not_blocked, true)
! https://github.com/NanoMeow/QuickReports/issues/1073
polygon.com##+js(nostif, adsBlocked)
! https://github.com/NanoMeow/QuickReports/issues/1071
twinkietown.com##+js(nostif, adsBlocked)
! https://forums.lanik.us/viewtopic.php?f=62&t=42960
tv2.no###aabl-container
! https://github.com/NanoMeow/QuickReports/issues/1114
@@||dcdirtylaundry.com^$ghide
! https://github.com/NanoMeow/QuickReports/issues/1126
@@||sostariffe.it^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/2101#issuecomment-491625176
zdnet.de##+js(aopr, can_i_run_ads)
! https://github.com/NanoMeow/QuickReports/issues/1209
cinemablend.com##+js(aopr, __cmpGdprAppliesGlobally)
! https://github.com/uBlockOrigin/uAssets/issues/5613
@@||metabattle.com^$ghide
! turbolab .it anti adb warning
turbolab.it##+js(nostif, warning)
! https://github.com/NanoMeow/QuickReports/issues/1311
medicalnewstoday.com##.sticky_ad_container
! https://github.com/NanoMeow/QuickReports/issues/1338
buienradar.nl##+js(set, hideBannerBlockedMessage, true)
buienradar.nl###adholderContainerHeader
! glamourmagazine.co.uk anti adb annoyance
glamourmagazine.co.uk##+js(set, ads_not_blocked, true)
! https://github.com/NanoMeow/QuickReports/issues/1527
@@||mentalmars.com^$ghide
! https://github.com/NanoMeow/QuickReports/issues/1588
@@||independent.ie^$ghide
! https://forums.lanik.us/viewtopic.php?f=62&t=43327&p=148979#p148979
@@||nzz.ch^$ghide
nzz.ch###adnz_maxiboard_1
! https://github.com/NanoMeow/QuickReports/issues/1620
@@||airbnbhell.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/6093
@@||cdnjs.cloudflare.com/ajax/libs/blockadblock/*/blockadblock.min.js$script,domain=starblast.io
@@||starblast.io^$ghide
*$script,redirect-rule=noopjs,domain=starblast.io
! https://github.com/NanoMeow/QuickReports/issues/1396
@@||wired.com^$ghide
wired.com##.ad
! https://github.com/NanoMeow/QuickReports/issues/1780
@@||belfasttelegraph.co.uk^$ghide
! https://github.com/NanoMeow/QuickReports/issues/1832
@@||flightaware.com^$ghide
! https://www.reddit.com/r/uBlockOrigin/comments/d5ekq0/antiadblock_detected_wwwlesoirbe/
lesoir.be##+js(aopr, abStyle)
! https://github.com/NanoMeow/QuickReports/issues/1865
@@||typing-speed.net^$ghide
! https://forums.lanik.us/viewtopic.php?f=62&t=43618
bold.dk##+js(acs, eval, abd)
! https://github.com/NanoMeow/QuickReports/issues/1933
@@||as.com^$ghide
as.com##.publi
! https://github.com/NanoMeow/QuickReports/issues/1948
pureinfotech.com##+js(acs, jQuery, ai_adb)
! https://forums.lanik.us/viewtopic.php?f=62&t=43651
fairyabc.com##+js(nostif, adblock)
! https://github.com/uBlockOrigin/uAssets/issues/6405
otvfoco.com.br##+js(aopr, addLink)
! https://github.com/uBlockOrigin/uAssets/issues/6421
portalportuario.cl##+js(aopr, addLink)
! https://github.com/uBlockOrigin/uAssets/issues/6471
glitterphoto.net##.adBlocked
! https://github.com/NanoMeow/QuickReports/issues/2119
@@||dumpert.nl^$ghide
! https://github.com/NanoMeow/QuickReports/issues/2123
@@||beinsports.com^$ghide
! https://github.com/NanoMeow/QuickReports/issues/2143
@@||mizonatv.com^$ghide
! https://github.com/NanoMeow/QuickReports/issues/2154
nakedcapitalism.com##+js(aopw, ABD)
! https://github.com/NanoMeow/QuickReports/issues/2257
laptopmag.com##+js(aopr, _sp_.mms.startMsg)
! https://github.com/uBlockOrigin/uAssets/issues/6572
windows101tricks.com##+js(aopr, __cmpGdprAppliesGlobally)
windows101tricks.com##+js(set, better_ads_adblock, 0)
! https://github.com/NanoMeow/QuickReports/issues/2545
forum.nlmod.net##+js(acs, document.createElement, adblock)
! https://github.com/uBlockOrigin/uAssets/issues/6759
fontsfree.pro##+js(set, adBlock, false)
! https://github.com/NanoMeow/QuickReports/issues/2635
theherald-news.com##+js(nostif, null)
! https://github.com/NanoMeow/QuickReports/issues/2605
insidermonkey.com##+js(aopr, ABD)
! https://github.com/NanoMeow/QuickReports/issues/2640
venea.net##+js(aeld, , ads)
! https://github.com/NanoMeow/QuickReports/issues/2341
@@||puhutv.com^$ghide
! edmontonjournal .com anti adb warning
@@||edmontonjournal.com^$ghide
! gamebanana anti adblock notice
gamebanana.com##+js(aopr, adBlockDetected)
! https://github.com/AdguardTeam/AdguardFilters/issues/42495#issuecomment-574761083
@@||metropoles.com^$ghide
! https://github.com/AdguardTeam/AdguardFilters/issues/42495#issuecomment-574761083
@@||metropoles.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/6877
theregister.co.uk##+js(aopr, adtoniq)
! almasdarnews .com warning anti adb #2421
almasdarnews.com##+js(acs, jQuery, ai_adb)
! https://github.com/NanoMeow/QuickReports/issues/2972
livescience.com##+js(aopr, _sp_.mms.startMsg)
! https://github.com/NanoMeow/QuickReports/issues/2981
@@||queer.pl^$ghide
queer.pl#@#[class^="ad-"]
queer.pl##.box-adv
! https://github.com/uBlockOrigin/uAssets/issues/6945
@@||snipboard.io^$ghide
! musicradar .com and other sites anti adb warning
digitalcameraworld.com,guitarworld.com,musicradar.com##+js(aopr, _sp_.mms.startMsg)
! https://github.com/uBlockOrigin/uAssets/issues/6956
mocospace.com##+js(nostif, adblocker)
! bigten .org anti adb warning
@@||bigten.org^$xhr,1p
! ai_adb warning
casertace.net,civildigital.com,lesmoutonsenrages.fr,venusarchives.com,verpornocomic.com##+js(acs, jQuery, ai_adb)
! https://github.com/AdguardTeam/AdguardFilters/issues/50414
civicx.com##.adblock_detector
! mp3fy .com anti adb warning
@@||mp3fy.com^$ghide
! https://github.com/NanoMeow/QuickReports/issues/3924
radarbox.com##+js(set, ads_enabled, true)
! https://forums.lanik.us/viewtopic.php?p=153251#p153251
keighleynews.co.uk##+js(aopr, _sp_.mms.startMsg)
! mt07-forum/auto-treff anti-adb
mt07-forum.de,auto-treff.com##+js(acs, $, offsetHeight)
! https://github.com/NanoMeow/QuickReports/issues/3310
dxmaps.com##+js(nostif, adsbygoogle, 5000)
! photoshop-online anti-adb
photoshop-online.biz##+js(nostif, google_jobrunner)
photoshop-online.biz##div.aslot
! https://github.com/NanoMeow/QuickReports/issues/3447
loudersound.com##+js(aopr, _sp_._networkListenerData)
! photoshop-online anti-adb
photoshop-online.biz##+js(nostif, google_jobrunner)
photoshop-online.biz##div.aslot
! https://github.com/NanoMeow/QuickReports/issues/3447
loudersound.com##+js(aopr, _sp_._networkListenerData)
! https://forums.lanik.us/viewtopic.php?p=153944#p153944
deezer.com##+js(nostif, bait)
deezer.com##.abp-banner
! https://github.com/AdguardTeam/AdguardFilters/issues/53425
adslayuda.com##+js(set, better_ads_adblock, null)
! https://github.com/NanoMeow/QuickReports/issues/3559
creativebloq.com##+js(aopr, _sp_.mms.startMsg)
! https://github.com/NanoMeow/QuickReports/issues/3578
simpleflying.com##.simpl-adlabel
! https://github.com/AdguardTeam/AdguardFilters/issues/53650
masrawy.com##+js(acs, document.getElementById, adblockerdetected)
! https://github.com/AdguardTeam/AdguardFilters/issues/53694
milfzr.com##+js(acs, $, juicyads)
! litecompare .com anti adb notice
@@||litecompare.com^$ghide
! fiscomania .com anti adb notice
@@||fiscomania.com^$ghide
! playbill .com anti adb warning
playbill.com##+js(nostif, offsetHeight)
! https://github.com/NanoMeow/QuickReports/issues/3687
t3.com##+js(aopr, _sp_.mms.startMsg)
! https://github.com/AdguardTeam/AdguardFilters/issues/54544
smokingmeatforums.com##+js(acs, $, btoa)
! https://affiliate.fc2.com/ anti-adblock
affiliate.fc2.com##+js(nostif, checkFeed, 1000)
! thegatewaypundit .com anti adb warning
thegatewaypundit.com##+js(aeld, , adtoniq)
! https://github.com/uBlockOrigin/uAssets/issues/7359
@@||9lives.be^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/7371
jeu2048.fr##+js(aopw, FuckAdBlock)
! https://github.com/uBlockOrigin/uAssets/issues/7363
@@||holowczak.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/7373
*$script,redirect-rule=noopjs,domain=luchaonline.com
! https://github.com/uBlockOrigin/uAssets/issues/7384
taperaki.gr##.widget_et_ads
! https://github.com/uBlockOrigin/uAssets/issues/7417
baby.be##.warning
! https://www.reddit.com/r/uBlockOrigin/comments/gmtlci/adblocking_detected/
||wetransfer.net/*/adblocker$3p,domain=wetransfer.com
! https://github.com/AdguardTeam/AdguardFilters/issues/55781
stevensducks.com###sidearm-adblock-modal
! https://github.com/AdguardTeam/AdguardFilters/issues/55846
trojmiasto.pl##+js(aopr, adBlockDetected)
! https://github.com/NanoMeow/QuickReports/issues/3914
diffchecker.com##+js(nostif, adStillHere)
! https://github.com/NanoMeow/QuickReports/issues/3963
moving2canada.com##.ad-blocker-notice
! https://github.com/AdguardTeam/AdguardFilters/issues/56652
poedb.tw##+js(aopr, adBlockDetected)
! https://github.com/NanoMeow/QuickReports/issues/3169
malekal.com##+js(nostif, adb)
! https://github.com/AdguardTeam/AdguardFilters/issues/57295
motortrader.com.my##+js(aopr, canRunAds)
! https://github.com/NanoMeow/QuickReports/issues/4161
abola.pt##+js(acs, $, Adblock)
! https://github.com/AdguardTeam/AdguardFilters/issues/58166
betaprofiles.com##.adblock
! thisisfutbol .com anti adb notice
@@||thisisfutbol.com^$ghide
thisisfutbol.com##.ad-billboard
thisisfutbol.com##.c-header__advert
thisisfutbol.com###snack_dex6
! https://github.com/AdguardTeam/AdguardFilters/issues/59414
tileman.io##.adbanner:remove()
! mbs.jp right click
mbs.jp##+js(aopw, document.oncontextmenu)
! https://github.com/NanoMeow/QuickReports/issues/4372
polyflore.net##+js(nostif, adBlockDetected)
! https://github.com/AdguardTeam/AdguardFilters/issues/59933
nightpoint.io##+js(nofab)
! https://github.com/AdguardTeam/AdguardFilters/issues/59995
chemz.io##.menu_ad1Box
! https://github.com/NanoAdblocker/NanoFilters/issues/540
longecity.org##+js(set, abp, false)
! humanbenchmark .com warning anti adb
*$script,3p,domain=humanbenchmark.com
! https://github.com/NanoMeow/QuickReports/issues/4489
cpuid.com##+js(nostif, blocked, 1000)
! https://github.com/AdguardTeam/AdguardFilters/issues/61381
ratebeer.com##[class^="AdBlockDetector"]
! https://github.com/NanoMeow/QuickReports/issues/4489
cpuid.com##+js(nostif, blocked, 1000)
! https://github.com/AdguardTeam/AdguardFilters/issues/61381
ratebeer.com##[class^="AdBlockDetector"]
! abcya .com anti adb - warning
*$script,domain=abcya.com,redirect-rule=noopjs
! https://github.com/AdguardTeam/AdguardFilters/issues/61999
good-football.org##+js(aopr, adBlockDetected)
! https://github.com/uBlockOrigin/uAssets/issues/11242
@@||dailyvoice.com^$ghide
*$xhr,redirect-rule=nooptext,domain=dailyvoice.com
dailyvoice.com###nativo_rightrail1
! https://github.com/AdguardTeam/AdguardFilters/issues/67845
jimnong.tistory.com##.adblock-on
! json2csharp.com anti-adb
*$script,redirect-rule=noopjs,domain=json2csharp.com
! nextplatform.com anti adb
nextplatform.com###adtoniq-msgr-bar
! 2iptv .com warning anti adb
2iptv.com##+js(nostif, google_jobrunner)
! Anti-adb keybr.com
keybr.com##.Placeholder
! https://github.com/uBlockOrigin/uAssets/issues/8554
htmlgames.com##.banner
! https://github.com/uBlockOrigin/uAssets/issues/8551
pbinfo.ro##.text-warning
! https://github.com/uBlockOrigin/uAssets/issues/8578
@@||freedomoutpost.com^$ghide
! https://github.com/AdguardTeam/AdguardFilters/issues/82216
lcpdfr.com##+js(acs, $, AdBlock)
! https://github.com/AdguardTeam/AdguardFilters/issues/76660
whatfontis.com##+js(acs, $, adBlock)
! scrolller.com anti-adb
scrolller.com##.notification[style^="height: 189px;"]
! https://github.com/AdguardTeam/AdguardFilters/issues/77665
xtv.cz##+js(nostif, pgblck)
! https://github.com/AdguardTeam/AdguardFilters/issues/80139
theblaze.com##+js(aopw, admrlWpJsonP)
! https://github.com/uBlockOrigin/uAssets/issues/8968
revistavanityfair.es##+js(aopr, initAdBlockerPanel)
! https://github.com/AdguardTeam/AdguardFilters/issues/81778
spielspiele.de##.is-blocked
! https://github.com/AdguardTeam/AdguardFilters/issues/83664
@@||dmax.de^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/9208
nbcsports.com##+js(aopw, admrlWpJsonP)
! katholisches. info warning popup
katholisches.info##+js(nostif, pop)
! https://github.com/AdguardTeam/AdguardFilters/issues/84616
ubuntudde.com##+js(acs, String.prototype.charCodeAt, ai_)
! https://github.com/uBlockOrigin/uAssets/issues/9339
streaminglearningcenter.com##+js(nostif, ads)
! https://github.com/AdguardTeam/AdguardFilters/issues/57758
audiostereo.pl##+js(nostif, adb)
! https://github.com/uBlockOrigin/uAssets/issues/2060
nicematin.com##+js(aeld, , AdB)
! https://github.com/uBlockOrigin/uAssets/issues/9666
tiermaker.com##+js(nostif, &adslot)
! https://github.com/uBlockOrigin/uAssets/issues/9828
dez.ro#@#.ad-placement
! https://github.com/uBlockOrigin/uBlock-issues/issues/1700
windguru.net###warning-content
! https://github.com/uBlockOrigin/uAssets/issues/9878
hendersonville.com##.adblock-detected
! https://www.reddit.com/r/uBlockOrigin/comments/q31fnc/mocahorg_adblocker_detection/
mocah.org##+js(nosiif, adsbygoogle)
! https://github.com/uBlockOrigin/uAssets/issues/10233
epn.bz##+js(set, ab, false)
! https://www.reddit.com/r/uBlockOrigin/comments/qbcvtc/nbc_sports_anti_ad_block_workaround/
nbcsportsedge.com##+js(aopw, admrlWpJsonP)
! https://www.reddit.com/r/uBlockOrigin/comments/qkf91l/timeanddatecom/
@@||timeanddate.com^$ghide
timeanddate.com###ad300
! https://github.com/uBlockOrigin/uAssets/issues/10781
@@||coinpayu.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/10976
dhd24.com#@#.adunit
! https://github.com/uBlockOrigin/uAssets/issues/11129
ssuathletics.com##+js(acs, document.querySelector, adblock)
! https://github.com/uBlockOrigin/uAssets/issues/3068
pornhub.*##+js(rc, hasAdAlert, header)
pornhub.*###js-abContainterMain
! https://github.com/uBlockOrigin/uAssets/issues/11762
grandoldteam.com##+js(acs, $, test)
! https://github.com/uBlockOrigin/uAssets/issues/11775
gamingsinners.com##+js(acs, $, test)
! warning msg
elitepvpers.com##+js(nostif, $)
elitepvpers.com##+js(acs, $, Promise)
geeksforgeeks.org##+js(acs, showAdblockerModal)
! codehelppro.com anti-adblock
@@||codehelppro.com^$ghide
codehelppro.com##.adsbygoogle
! https://github.com/uBlockOrigin/uAssets/issues/12462
coolwallpapers.me##+js(nosiif, dfgh-adsbygoogle)
! https://github.com/AdguardTeam/AdguardFilters/issues/113837
@@||freshersnow.com^$ghide
freshersnow.com##.adsbygoogle
! allthingsvegas. com anti adb warning
@@||allthingsvegas.com^$ghide
! waves4you. com anti adblock
waves4you.com##+js(aost, String.prototype.charCodeAt, ai_)
! techus. website anti adb soft
techus.website##+js(nostif, ai_)
! anti adb warning leekduck. com
leekduck.com##+js(nostif, abp)
! https://github.com/AdguardTeam/AdguardFilters/issues/122484
iskandinavya.com##+js(aopr, kan_vars.adblock)
! https://github.com/uBlockOrigin/uAssets/pull/14563
! https://github.com/AdguardTeam/AdguardFilters/issues/175983
! https://github.com/uBlockOrigin/uAssets/issues/23536
esologs.com,fflogs.com,swtorlogs.com,warcraftlogs.com##+js(acs, attachToDom, ad-fallback)
esologs.com,fflogs.com,swtorlogs.com,warcraftlogs.com##.side-rail-ads
! https://github.com/AdguardTeam/AdguardFilters/issues/129173
craftpip.github.io##+js(nostif, adsok)
! www.dailyprincetonian.com anti-adb
||blink.net/iframe.html$domain=dailyprincetonian.com
! https://profreehost.com/ anti-adb
||profreehost.com/includes/js/customBottom.js$script,1p
! https://github.com/uBlockOrigin/uAssets/issues/15784
@@||discordbotlist.com^$ghide
! grabify. link anti adb warning
@@||grabify.link^$ghide
! sneakernews.com anti-adb
sneakernews.com##+js(aopr, sneakerGoogleTag)
! freefilesync. org anti-blocker
freefilesync.org#@#.adsbygoogle
! https://raider.io/ anti-adb
||intergient.com^$script,domain=raider.io,redirect-rule=noopjs
! jojoy.io anti-adb - triggered only on mobile
jojoy.io###ad_block_reminder_dialog
! https://github.com/uBlockOrigin/uAssets/issues/16896
mgsm.pl##+js(acs, checkAdblockBait)
mgsm.pl##^script:has-text(checkAdblockBait)
! romviet.com anti adblock annoyance
romviet.com##+js(noeval-if, AdBlocker)
! squidboards.com anti-adb
squidboards.com##.top_block
! Soft Anti-Blocker
jsfiddle.net##+js(nostif, modal)
regexr.com##div.hello
! https://github.com/uBlockOrigin/uAssets/issues/18169
ikorektor.pl##+js(nostif, ad)
ikorektor.pl###ad-top-dsk
ikorektor.pl##.adx1
! https://github.com/uBlockOrigin/uAssets/issues/18180
theonegenerator.com##+js(no-fetch-if, ads)
! https://github.com/uBlockOrigin/uAssets/issues/19271#issuecomment-1664958435
161.97.70.5##+js(rmnt, script, isadb)
! https://github.com/uBlockOrigin/uAssets/issues/19280
zerogpt.net##+js(nostif, adsbygoogle)
! https://github.com/uBlockOrigin/uAssets/issues/20113
photopea.com##.confirm:has-text(AdBlocker)
||photopea.com/img/pp_wide.png^$image,1p
||photopea.com/img/pp_tall.png^$image,1p
photopea.com##+js(set, console.clear, noopFunc)
photopea.com##.bnotify
! getemoji.com anti adblock annoyance
getemoji.com##+js(set-session-storage-item, fs.adb.dis, 1)
! https://github.com/uBlockOrigin/uAssets/issues/20294
marinetraffic.com##+js(set, mtGlobal.disabledAds, true)
marinetraffic.com##.under-map-wrapper:upward(1)
! https://www.reddit.com/r/uBlockOrigin/comments/17iihqp/anime_news_network_rolled_out_antiadblocker/
animenewsnetwork.com##+js(set, ANN.ads.adblocked, false)
! https://www.reddit.com/r/uBlockOrigin/comments/17mifyx/adblocker_detected_on_hackthebox_website/
||hackthebox.com/build/assets/just-detect-adblock-$script,1p
! https://github.com/uBlockOrigin/uAssets/issues/20657
alfred.camera##+js(aeld, DOMContentLoaded, ads)
alfred.camera##+js(nosiif, ads)
! https://github.com/uBlockOrigin/uAssets/issues/21072
@@||iphoneincanada.ca^$ghide
iphoneincanada.ca##.adthrive-ad
! https://community.brave.com/t/asheville-com-ad-appearing/522978
asheville.com##+js(nostif, adblock)
! nsmb .com anti-adb
nsmb.com##+js(no-xhr-if, googlesyndication)
nsmb.com###header-banner
! https://github.com/uBlockOrigin/uAssets/issues/22140
mcskinhistory.com##+js(no-fetch-if, ads)
! viewing .nyc banners
viewing.nyc##+js(no-fetch-if, googlesyndication)
! https://github.com/uBlockOrigin/uAssets/issues/22349
op.gg##.adfree-td
op.gg##.adfree-banner
! tweaking4all .com anti-adb banners
tweaking4all.com##+js(nostif, adsbygoogle, 2000)
! https://github.com/uBlockOrigin/uAssets/issues/22693
vnexpress.net##+js(set, adblock, 2)
! https://www.reddit.com/r/uBlockOrigin/comments/1b906te/pop_up_that_says_to_not_use_adblockers_on/
d4armory.io,helldivers.io##+js(aopr, nitroAds)
helldivers.io###gwvideo
! fightful .com anti-adb modal
fightful.com##+js(nosiif, getComputedStyle)
! conservationmag .org anti-adb popup
@@||conservationmag.org^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/26038
! thenation.com anti-adb
||site-config.com^$3p
||content-settings.com^$3p
||config-factory.com^$3p
! https://github.com/EasyDutch-uBO/EasyDutch/issues/127
solarmagazine.nl##+js(no-xhr-if, ads)
! https://github.com/uBlockOrigin/uAssets/issues/23472
timeanddate.com##+js(aeld, load, ad-wrap)
! https://www.reddit.com/r/uBlockOrigin/comments/1crhv1q/ubo_detected_on_klsescreener/
klsescreener.com##+js(acs, document.getElementById, adblock)
! https://github.com/uBlockOrigin/uAssets/issues/23851
weibo.com##+js(nowoif, &disp=popup, 1)
! https://www.reddit.com/r/uBlockOrigin/comments/1d204k4/antiadblock_message_at_httpswwwlcpdfrcom/
lcpdfr.com##+js(aopr, FuckAdBlock)
! https://www.swagbucks.com/ - anti-adb
swagbucks.com#@#.ad_warn
swagbucks.com#@##topAd
! https://www.swagbucks.com/ - anti-adb
swagbucks.com#@#.ad_warn
swagbucks.com#@##topAd
! https://www.reddit.com/r/uBlockOrigin/comments/1dkss3r/readcomiconline_detecting_adblock/
readcomiconline.li##+js(rmnt, script, checkAdsBlocked)
! https://www.autopareri.com/ - soft anti-adb
autopareri.com##+js(no-fetch-if, googlesyndication)
! https://github.com/uBlockOrigin/uAssets/issues/24975
||cined.com/content/plugins/abss-adblock
! https://www.etools.ch anti-adb
@@||etools.ch^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/25268
curseforge.com##+js(no-fetch-if, googlesyndication)
! https://www.reddit.com/r/uBlockOrigin/comments/1fnvf02/camspider_adblock_notice/
camspider.com##+js(set-local-storage-item, adblockNoticePermaDismiss, true)
! https://github.com/uBlockOrigin/uAssets/issues/25437
html5.gamedistribution.com###gd__adblocker__overlay
! https://zonatmo.com/ - anti-adb
zonatmo.com##+js(nostif, adb-enabled)
! https://github.com/uBlockOrigin/uAssets/issues/25846
ajanstv.com.tr##+js(nostif, adblock)
###kanews-modal-adblock
! https://github.com/uBlockOrigin/uAssets/issues/25990
karistudio.com##div.confuse:remove()
! https://github.com/uBlockOrigin/uAssets/issues/26042
@@||time.is^$script,1p
!! -- ported from uBO Annoyances filters (END)
!! -- ported from Fanboy Annoyances filters (START)
! theblock.co (newsletter blocks, overlays)
theblock.co##.newsletterModal
theblock.co##.newsletterBox
theblock.co##.modal-container
theblock.co##body:style(overflow: auto !important;)
!! -- ported from Fanboy Annoyances filters (END)
!! -- Exception rules for uBO Quick Fixes -- (START)
youtube.com#@#+js(json-prune, playerResponse.adPlacements playerResponse.playerAds playerResponse.adSlots adPlacements playerAds adSlots legacyImportant)
!! --Exception rules for uBO Quick Fixes -- (END)
! Temp fix for CBS/Paramountplus (https://github.com/brave/brave-browser/issues/12705)
@@||s0.2mdn.net/instream/html5/ima3.js$script,domain=paramountplus.com|cbs.com
@@||adservice.google.com/adsid/integrator.js$script,domain=paramountplus.com|cbs.com
||ad.doubleclick.net^$image,redirect=1x1.gif,domain=cbs.com|paramountplus.com
! Fix blank screen
||fastly.net^$script,important,redirect=noopjs,domain=cbs.com,badfilter
! nbc (Video Ads fixes)
! player.theplatform.com##+js(nbc)
! Anti-adblock: concert.io (vox sites)
twinkietown.com,chicago.suntimes.com,theverge.com,vox.com,eater.com,polygon.com,sbnation.com,curbed.com,theringer.com,mmafighting.com,racked.com,mmamania.com,funnyordie.com,riftherald.com##+js(nostif, adsBlocked)
twinkietown.com,chicago.suntimes.com,theverge.com,vox.com,eater.com,polygon.com,sbnation.com,curbed.com,theringer.com,mmafighting.com,racked.com,mmamania.com,funnyordie.com,riftherald.com##.adblock-allowlist-messaging__wrapper
||concert.io/lib/adblock/$subdocument
!
! Re-added:
! https://community.brave.com/t/unable-to-open-reddit-com-urls-in-private-tabs/503125/
! https://github.com/uBlockOrigin/uAssets/commit/eee6fec5647e3014d1da144d0cd9888254fa09a4
||reddit.com^$removeparam=rdt,doc,badfilter
! ghide
@@||filmisub.cc^$ghide
@@||compuhoy.com^$ghide
@@||fluttercampus.com^$ghide
@@||samuraiscan.org^$ghide
! https://a2zapk.io/dload/1323593/file/ https://community.brave.com/t/a2zapk-io-anti-adblock/549363
||googlesyndication.com^$image,redirect-rule=1x1.gif,domain=educatiocenter.online|a2zapk.io
! streameast.* wildcard rules
streameast.is,streameast.live,streameast.xyz,streameast.io,streameast.to,thestreameast.to,thestreameast.gg##+js(aeld, /^/, 0x)
streameast.is,streameast.live,streameast.xyz,streameast.io,streameast.to,thestreameast.to,thestreameast.gg##+js(nosiif, visibility, 1000)
streameast.is,streameast.live,streameast.xyz,streameast.io,streameast.to,thestreameast.to,thestreameast.gg##+js(nowebrtc)
streameast.is,streameast.live,streameast.xyz,streameast.io,streameast.to,thestreameast.to,thestreameast.gg##+js(nostif, sadbl)
*$xhr,redirect-rule=nooptext,domain=streameast.to|thestreameast.to|thestreameast.gg|streameast.io|streameast.is|streameast.live|streameast.xyz
*$image,redirect-rule=32x32.png,domain=streameast.to|thestreameast.to|thestreameast.gg|streameast.io|streameast.is|streameast.live|streameast.xyz
*$image,redirect-rule=32x32.png,domain=streameast.to|thestreameast.to|thestreameast.gg|streameast.io|streameast.is|streameast.live|streameast.xyz
! chp anti-adblock
fresheroffcampus.com,cizzyscripts.com##+js(aopw, startCheckingAdblock)
! uBO-domain wildcard workaround rnbxclusive1.* https://github.com/uBlockOrigin/uAssets/pull/12579
@@||rnbxclusive1.me^$ghide
rnbxclusive1.me##+js(aopw, _pop)
! uBO-domain wildcard workaround fmovies.*
fmovies.to,fmovies.world,fmovies.ps,fmovies.wtf,fmovies.taxi,fmovies.pub,fmovies.cafe,fmovies.co##+js(aeld, , break;case $.)
fmovies.to,fmovies.world,fmovies.ps,fmovies.wtf,fmovies.taxi,fmovies.pub,fmovies.cafe,fmovies.co##+js(acs, JSON.parse, break;case $.)
fmovies.to,fmovies.world,fmovies.ps,fmovies.wtf,fmovies.taxi,fmovies.pub,fmovies.cafe,fmovies.co##+js(acs, parseInt, break;case $.)
! uBO-domain wildcard workaround crichd
crichd.tv,crichd.ac,crichd.com,crichd.vip##+js(aopr, AaDetector)
crichd.tv,crichd.ac,crichd.com,crichd.vip##+js(acis, JSON.parse, break;case $.)
crichd.tv,crichd.ac,crichd.com,crichd.vip##+js(aopw, _pop)
! uBO-domain wildcard workaround lightnovelpub/webnovelpub.com/other mirrors
@@*$ghide,domain=lightnovelpub.com|lightnovelworld.com|novelpub.com|webnovelpub.com
lightnovelpub.com,webnovelpub.com,novelpub.com,lightnovelworld.com,lightnovelspot.com##.sticky-body
lightnovelpub.com,webnovelpub.com##+js(no-setTimeout-if, =>)
lightnovelpub.com,webnovelpub.com##+js(no-setTimeout-if, /appendChild|e\("/)
lightnovelpub.com,webnovelpub.com,novelpub.com,lightnovelworld.com,lightnovelspot.com##.FJCbkSro
lightnovelpub.com,webnovelpub.com,novelpub.com,lightnovelworld.com,lightnovelspot.com##.IKuOHDYt
! uBO-domain wildcard workaround kissanime
kimcartoon.*,kissanime.*,kaas.*,kickassanimes.*,kissasiantv.*,kissasian.*,kisscartoon.*##+js(acis, String.fromCharCode, /btoa|break/)
kimcartoon.*,kissanime.*,kaas.*,kickassanimes.*,kissasiantv.*,kissasian.*,kisscartoon.*##+js(acis, JSON.parse, break;case $.)
kimcartoon.*,kissanime.*,kaas.*,kickassanimes.*,kissasiantv.*,kissasian.*,kisscartoon.*##+js(window.open-defuser)
kimcartoon.*,kissanime.*,kaas.*,kickassanimes.*,kissasiantv.*,kissasian.*,kisscartoon.*##+js(set, check_adblock, true)
@@||kissasian.*$ghide
@@||kissasiantv.*$ghide
@@||kisscartoon.*$ghide
@@||kimcartoon.*$ghide
@@||kissanime.*$ghide
@@||kaas.*$ghide
! Anti-adblock (https://old.reddit.com/r/brave_browser/comments/zjtfyg/adblock_adblockers/)
! https://github.com/brave/adblock-rust/issues/194
*$script,redirect-rule=noopjs,domain=kimcartoon.si|9animes.ru|kisscartoon.sh|kimcartoon.li|kisscartoon.nz|kissanime.com.ru|kissanime.sx|kissanime.org.ru|kissanime.co|gogoanime.gs|animesuge.to|kiss-anime.su|kissasian.pe|kissasian.li|kissasian.fan|kissasian.com.ru|kissasian.es
! Standard sheilds mode
timesunion.com##+js(aopw, blueConicPreListeners)