-
Notifications
You must be signed in to change notification settings - Fork 74
/
brave-unbreak.txt
1099 lines (1098 loc) · 55.9 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
! brave.com specfic filters
@@||ads.brave.software^$first-party
@@||ads-admin.bravesoftware.com^$first-party
@@||ads.bravesoftware.com^$first-party
@@||ads-admin.brave.com^$first-party
@@||ads-admin.brave.software^$first-party
@@||ads.brave.com^$first-party
@@||brave.com^$image,stylesheet,first-party
! basicattentiontoken.org specfic filters
@@||basicattentiontoken.org^$ghide
@@||basicattentiontoken.org^$first-party
! search.brave.com specfic filters
! https://github.com/uBlockOrigin/uAssets/blob/master/filters/privacy.txt#L260
@@||search.brave.com^$ghide
@@||search.brave.com/api/$first-party
search.brave.com#@#+js(no-fetch-if, body:browser)
! stats.brave.com
@@||stats.brave.com^$ghide
@@||stats.brave.com^$first-party
! Temp fix of first-party cosmetic filtering on Brave Search on IOS.
! Will be removed when brave/brave-ios#7294 is rolled out to everyone
! Exception added to un-break Amazon results and integration on Brave Search.
! The Amazon integration does not involve collecting user data, profiling, or sharing information with Amazon.
! More information about the privacy policy and commitments with Brave Search can be found at https://search.brave.com/help/privacy-policy
@@||search.brave.com/serp/v1/static/serp-js/paid/
@@||search.brave.com/serp/v1/static/serp-js/shopping/
search.brave.com#@##shopping
! community.brave.com
@@||community.brave.com^$ghide
! Remove google login popup nag
###credential_picker_container
###credential_picker_iframe
! Google signin popup (fixes)
thebetterindia.com##.vspl__gtap-notification-content
thebetterindia.com##.vspl__gtap-notification-overlay
grubhub.com,dashboard.razorpay.com,joinhoney.com#@##credential_picker_container
! 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
userlytics.com##+js(set, navigator.connection, {})
! :has
youtube.com##ytd-rich-item-renderer:has(ytd-display-ad-renderer)
9gag.com##article:has(.promoted)
! Fix youtube (quick fix)
youtube.com,youtubekids.com,youtube-nocookie.com#@#+js(set, ytInitialPlayerResponse.auxiliaryUi.messageRenderers.bkaEnforcementMessageViewModel, undefined)
! 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
! 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^
! block scripts that profile user behavior using password managers
@@||api.huobi.pro^$domain=www.huobi.pro
! Twitter ad cosmetic element
twitter.com##[style]>div>div>[data-testid=placementTracking]
! Disable PDFJS which we include by default's telemetry
||pdfjs.robwu.nl
! Scroll bar-consent
collegeconfidential.com##body:style(overflow: auto !important; max-height: 1px !important;)
! Fix preloader (facebook check)
igniteunmc.com##.preloader
! 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
||platform.twitter.com^$third-party,domain=~tweetdeck.com|~twitter.com|~twitter.jp
! Outbrain elements
###around-the-web
###g-outbrain
###js-outbrain-module
###js-outbrain-relateds
###js-outbrain-under-article
###outbrain
###outbrain-section
###outbrain1
###outbrainWidget
###outbrain_widget_0
##.ArticleFooter-outbrain
##.ArticleOutbrainLocal
##.Atom-outbrain
##.OUTBRAIN
##.box-outbrain
##.c2_outbrain
##.component-outbrain
##.nok-outbrain-list
##.ob-smartfeed-wrapper
##.outbrain
##.outbrain-ads
##.outbrain-bloc
##.outbrain-content
##.outbrain-group
##.outbrain-module
##.outbrain-placeholder
##.outbrain-recommended
##.outbrain-relateds
##.outbrain-widget
##.outbrain-wrap
##.outbrain-wrapper
##.outbrain-wrapper-outer
##.outbrainWidget
##.outbrain__main
##.outbrain_container
##.outbrain_skybox
##.outbrainbox
##.pane-bonnier-outbrain-outbrain-video-vr3-widget
##.pmc-outbrain-amp-widget
##.sics-component__outbrain
##.tr-outbrain-container
##.widget_ione-outbrain
##.widget_outbrain
##.yom-outbrain
!
! 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
! 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
! vresp.com (https://community.brave.com/t/cant-see-captcha-on-form/67187)
@@||captcha.vresp.com^$domain=lawfirmkpi.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
! uptostream
uptostream.com,tirexo.lol##+js(acis, window.a)
@@||tirexo.lol^$generichide
! 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.
!! -- ported from uBO Annoyances filters (START)
! Anti-adblock message codehelppro.com
@@||codehelppro.com^$ghide
codehelppro.com##.adsbygoogle
! Anti-adblock message ckk.ai
@@||ckk.ai^$ghide
! https://github.com/AdguardTeam/AdguardFilters/issues/70801
tusubtitulo.com###bannerAdBlock
! https://github.com/uBlockOrigin/uAssets/issues/3921
topomap.co.nz###modal-adblocker
topomap.co.nz##.modal-backdrop
! https://github.com/uBlockOrigin/uAssets/issues/3931
spookshow.net##+js(set, adBlockFunction, trueFunc)
! 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/NanoMeow/QuickReports/issues/266
discord.club##+js(acis, document.getElementById, adsChecker)
! https://github.com/uBlockOrigin/uAssets/issues/4043
||navcomic.com/wp-content/uploads/*/ad-blocking.gif$image,1p
! https://github.com/uBlockOrigin/uAssets/issues/4045
steptalk.org##+js(nostif, (), 3000)
! https://github.com/uBlockOrigin/uAssets/issues/4046
short-story.net##+js(nostif, (), 2000)
! https://github.com/uBlockOrigin/uAssets/issues/3964
pokemonforever.com##+js(set, google_jobrunner, true)
! 2iptv .com warning anti adb
2iptv.com##+js(nostif, google_jobrunner)
! https://github.com/uBlockOrigin/uAssets/issues/7811
keybr.com##+js(nostif, , 5000)
keybr.com##+js(nostif, [native code])
! edmontonjournal .com anti adb warning
@@||edmontonjournal.com^$ghide
! gamebanana anti adblock notice
gamebanana.com##+js(aopr, adBlockDetected)
! https://github.com/NanoMeow/QuickReports/issues/2767
includehelp.com##+js(acis, document.getElementById, banner)
! https://github.com/NanoMeow/QuickReports/issues/2787
hedgeaccordingly.com##+js(aopw, ABD)
! https://forums.lanik.us/viewtopic.php?f=62&t=44254
@@||linux.org^$ghide
! https://github.com/NanoMeow/QuickReports/issues/2981
@@||queer.pl^$ghide
queer.pl#@#[class^="ad-"]
queer.pl##.box-adv
! https://github.com/uBlockOrigin/uAssets/issues/6956
mocospace.com##+js(nostif, adblocker)
! bigten .org anti adb warning
@@||bigten.org^$xhr,1p
! https://github.com/AdguardTeam/AdguardFilters/issues/50013
strangermeetup.com##+js(set, adsEnabled, true)
! mt07-forum/auto-treff anti-adb
mt07-forum.de,auto-treff.com##+js(acis, $, offsetHeight)
! Steady anti adb warning
handball-world.news,mobiflip.de,titanic-magazin.de,mimikama.org,langweiledich.net,der-postillon.com,perlentaucher.de,lwlies.com,serieslyawesome.tv,critic.de,mediotejo.net,nahrungsmittel-intoleranz.com##+js(nostif, Delay)
handball-world.news##small
! fiscomania .com anti adb notice
@@||fiscomania.com^$ghide
! playbill .com anti adb warning
playbill.com##+js(nostif, offsetHeight)
! thegatewaypundit .com anti adb warning
thegatewaypundit.com##+js(aeld, , adtoniq)
! https://github.com/uBlockOrigin/uAssets/issues/7396
yaledailynews.com##+js(acis, $, undefined)
! https://github.com/NanoMeow/QuickReports/issues/3846
4x4earth.com##+js(set, adBlockDetected, false)
4x4earth.com##+js(nostif, samOverlay)
! https://github.com/uBlockOrigin/uAssets/issues/3877
endorfinese.com.br##+js(nostif, google_jobrunner)
! https://github.com/uBlockOrigin/uAssets/issues/7411
ivoox.com##+js(set, getCookie, trueFunc)
! https://github.com/AdguardTeam/AdguardFilters/issues/56652
poedb.tw##+js(aopr, adBlockDetected)
! https://github.com/NanoMeow/QuickReports/issues/3169
malekal.com##+js(nostif, adb)
! warning message elitepvpers.com
elitepvpers.com##+js(nostif, $)
elitepvpers.com##+js(acis, $, Promise)
! https://github.com/uBlockOrigin/uAssets/issues/10252
affbank.com##+js(set, canRunAds, true)
! https://www.reddit.com/r/uBlockOrigin/comments/qbcvtc/nbc_sports_anti_ad_block_workaround/
nbcsportsedge.com##+js(aopw, admrlWpJsonP)
! https://github.com/uBlockOrigin/uAssets/issues/10233
! https://github.com/NanoAdblocker/NanoFilters/issues/540
epn.bz,longecity.org##+js(set, ab, false)
! https://github.com/AdguardTeam/AdguardFilters/issues/103536
otomobilgunluklerim.com##.adblockalert
otomobilgunluklerim.com##.ad_block_detected:style(overflow: auto !important;)
! https://github.com/uBlockOrigin/uAssets/issues/11129
ssuathletics.com##+js(acis, document.querySelector, adblock)
! https://www.reddit.com/r/uBlockOrigin/comments/q31fnc/mocahorg_adblocker_detection/
mocah.org##+js(nosiif, adsbygoogle)
! https://forums.lanik.us/viewtopic.php?f=91&t=46783
developpez.com##+js(acis, document.getElementById, cookie)
! https://github.com/uBlockOrigin/uAssets/issues/11815
pushsquare.com##+js(aopr, _sp_._networkListenerData)
! Anti-adblock message gamingsinners.com,grandoldteam.com
gamingsinners.com,grandoldteam.com##+js(acis, $, test)
! anti adb warning the-food-story. com
the-food-story.com##+js(aost, String.prototype.charCodeAt, ai_)
! https://github.com/uBlockOrigin/uAssets/issues/9878
hendersonville.com##.adblock-detected
! https://github.com/uBlockOrigin/uAssets/issues/9666
tiermaker.com##+js(nostif, &adslot)
! https://github.com/uBlockOrigin/uAssets/issues/9583
fimfiction.net##+js(aeld, load, adLazy)
! https://github.com/uBlockOrigin/uAssets/issues/2060
nicematin.com##+js(aeld, , AdB)
! https://github.com/AdguardTeam/AdguardFilters/issues/57758
audiostereo.pl##+js(nostif, adb)
! https://www.reddit.com/r/uBlockOrigin/comments/o7bhur/problem_ubo_detected_on_fauxid/
fauxid.com##+js(aeld, error)
! https://github.com/AdguardTeam/AdguardFilters/issues/85350
babiato.co##+js(acis, $, test)
@@||babiato.co^$ghide
babiato.co##.adsbygoogle
! https://github.com/uBlockOrigin/uAssets/issues/10458
buondua.com##.noblock-modal
buondua.com##body.tingle-enabled:style(position: static!important;overflow: auto!important;)
! Anti-adblock blur meteoblue.com
meteoblue.com##+js(set, mb.advertisingShouldBeEnabled, false)
! https://github.com/uBlockOrigin/uAssets/issues/11517
funnygames.eu##.is-blocked
! https://github.com/uBlockOrigin/uAssets/issues/10781
@@||coinpayu.com^$ghide
! Anti-adblock message geektyper.com
geektyper.com###itemz[style^="position:fixed; top:10px"]
! Anti-adblock message dhd24.com
dhd24.com#@#.adunit
! https://www.reddit.com/r/uBlockOrigin/comments/qkf91l/timeanddatecom/
@@||timeanddate.com^$ghide
timeanddate.com###ad300
! Anti-adblock message allmusic.com
allmusic.com##+js(abort-current-script, $, adblock)
! Anti-adblock message cinemablend.com
cinemablend.com##+js(abort-on-property-read, __cmpGdprAppliesGlobally)
! Anti-adblock message topspeed.com
@@||topspeed.com^$ghide
topspeed.com##.adsninja-ad-zone
topspeed.com##.txt-ad
topspeed.com##.daily-vid-ad
topspeed.com##.top-horizontal-ad-content
! 1st-party fix for cnn.com
cnn.com##+js(set, _sp_.msg.displayMessage, noopFunc)
! Anti-adblock message suncalc.org
###adsGross1
###adsKlein
! light.gg soft anti-adb
light.gg##.items-right-square
light.gg##.remove-turtles
light.gg###ad-blocker-nudge
! e-words.jp anti-adb
e-words.jp###forvisitors
! https://digital.elmercurio.com/2022/05/02/A/SN44A2B9 private mode detection
||digital.elmercurio.com/assets/js/detectPrivateMode.js$script,1p
! https://github.com/uBlockOrigin/uAssets/issues/12861
telewebgram.com#@#.adsbygoogle
! https://github.com/uBlockOrigin/uAssets/issues/12768
||dl.gmx.*/uim/connector/live/v2/nonfriendlyiframe.html$frame,1p
! techus. website anti adb soft
techus.website##+js(nostif, ai_)
! waves4you. com anti adblock
waves4you.com##+js(aost, String.prototype.charCodeAt, ai_)
! https://ww3.watchgintama.com/gintama-episode-367-subbed/ preroll video
animecruzers.com##+js(set, Object.prototype.preroll, [])
! https://github.com/uBlockOrigin/uAssets/issues/12623
valid.x86.fr##.widget-advert-300-600
! https://www.reddit.com/r/uBlockOrigin/comments/tydsev/adblocker_detected_on_unidiversfr/
unidivers.fr##+js(no-xhr-if, googlesyndication)
! allthingsvegas. com anti adb warning
@@||allthingsvegas.com^$ghide
! fnbrjp.com anti-adb
fnbrjp.com##+js(nostif, 広告)
! https://github.com/uBlockOrigin/uAssets/issues/12462
coolwallpapers.me##+js(nosiif, dfgh-adsbygoogle)
! https://github.com/uBlockOrigin/uAssets/issues/12119
101soundboards.com##.blocked-notice-small
! https://github.com/uBlockOrigin/uAssets/issues/3068
pornhub.com##+js(rc, hasAdAlert, header)
pornhub.com###js-abContainterMain
! https://github.com/uBlockOrigin/uAssets/issues/12012
academy.hackthebox.com##.show.fade
academy.hackthebox.com##body:style(overflow:auto !important)
! eshentai. tv warning
eshentai.tv##.aviso
! https://github.com/uBlockOrigin/uAssets/issues/11785
allhorror.com##.ad-placeholder-wrapper
! https://github.com/uBlockOrigin/uAssets/issues/13094
photopea.com##+js(no-fetch-if, /googlesyndication|uniconsent/)
photopea.com##+js(set, console.clear, noopFunc)
! https://github.com/uBlockOrigin/uAssets/issues/13037
@@||ruyamanga.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/3885
northwestfirearms.com,techkings.org##+js(set, samDetected, true)
cafesaxophone.com##+js(aopw, XF)
! https://github.com/uBlockOrigin/uAssets/issues/3908
@@||enfsolar.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/3905
hayum.in##+js(set, detectAdBlock, noopFunc)
! https://github.com/uBlockOrigin/uAssets/issues/3901
bronze-bravery.com,ultimate-bravery.net##+js(nostif, (), 2000)
! https://github.com/uBlockOrigin/uAssets/issues/3900
fabricjs.com##+js(nostif, (), 4000)
! https://github.com/uBlockOrigin/uAssets/issues/3913
@@||brightonandhovenews.org^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/3912
japancamerahunter.com##+js(acis, 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/3920
htmlreference.io##+js(nostif, (), 2000)
htmlreference.io##.header-carbon
! https://github.com/uBlockOrigin/uAssets/issues/3922
wildstarlogs.com##+js(nostif, (), 1000)
! https://github.com/uBlockOrigin/uAssets/issues/10636
zwei-euro.com##+js(nostif, Delay)
! https://forums.lanik.us/viewtopic.php?f=62&t=40602
@@||html-online.com^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/2185
@@||socialblade.com^$ghide
! https://github.com/NanoAdblocker/NanoFilters/issues/63
sportsnet.ca##+js(aopr, uxGuid)
! phys.org anti-adblock nag
@@||phys.org^$ghide
phys.org##.amp-unresolved
phys.org##.adsbygoogle
phys.org##.ads-336x280
! https://github.com/AdguardTeam/AdguardFilters/issues/122484
iskandinavya.com##+js(aopr, kan_vars.adblock)
! kryptografie. de anti adblock notice
||kryptografie.de/js/wb_dead.js
! anti adb warning leekduck. com
leekduck.com##+js(nostif, abp)
! https://github.com/uBlockOrigin/uAssets/issues/13418
/wp-content/themes/*/public/js/detect-adblock.js$script,1p
! https://github.com/AdguardTeam/AdguardFilters/issues/78541
*$xhr,redirect-rule=noopjs,domain=maxedtech.com
@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,domain=maxedtech.com
@@||googlesyndication.com^$xhr,domain=maxedtech.com
! https://github.com/uBlockOrigin/uAssets/issues/9159
olarila.com##+js(nostif, offsetHeight)
! https://github.com/uBlockOrigin/uAssets/issues/8968
revistavanityfair.es##+js(aopr, initAdBlockerPanel)
! https://github.com/uBlockOrigin/uAssets/issues/8866
gmx.net##+js(set, document.documentElement.AdBlockDetection, noopFunc)
! https://github.com/AdguardTeam/AdguardFilters/issues/82216
lcpdfr.com##+js(acis, $, AdBlock)
! https://github.com/uBlockOrigin/uAssets/issues/8554
htmlgames.com##.banner
! https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats
phoronix.com##+js(acis, onload, setTimeout)
! https://github.com/AdguardTeam/AdguardFilters/issues/65000
telefon-treff.de,dodge-forum.eu##+js(acis, $, offsetHeight)
! https://github.com/AdguardTeam/AdguardFilters/issues/64268
routinehub.co###ethad
! https://github.com/NanoMeow/QuickReports/issues/4545
randomlists.com##.whine
! https://github.com/NanoMeow/QuickReports/issues/4511
webcamtaxi.com##+js(nostif, blocker)
! https://github.com/uBlockOrigin/uAssets/issues/186#issuecomment-486142318
wired.co.uk##+js(set, ads_not_blocked, true)
! https://github.com/uBlockOrigin/uAssets/issues/9183
drawasaurus.org##+js(nostif, forceRefresh)
! katholisches. info warning popup
katholisches.info##+js(nostif, pop)
! Admiral popups
arstechnica.com,audiodoceo.com,audiotools.pro,audizine.com,blackenterprise.com,boston.com,cheatsheet.com,cwtv.com,esportstales.com,forums.hfboards.com,freep.com,golfdigest.com,hancinema.net,hemmings.com,ijr.com,informazionefiscale.it,inquirer.net,knowyourmeme.com,magesypro.pro,money.it,motorbiscuit.com,movieweb.com,nationalreview.com,nofilmschool.com,omg.blog,order-order.com,pastes.io,playstationlifestyle.net,savvytime.com,siliconera.com,techlicious.com,technicpack.net,thedraftnetwork.com,thenerdstash.com,titantv.com,twinfinite.net,usatoday.com,videogamer.com,wnd.com,worldpopulationreview.com,wral.com,wrestlezone.com,wrestlinginc.com##+js(acis, document.createElement, admiral)
! Admiral Anti-adblock (gamerevolution.com/playstationlifestyle.net/probably others)
||succeedscene.com/ads_*/ads.load.js$script,redirect=noop.js
! https://github.com/uBlockOrigin/uAssets/pull/14563
warcraftlogs.com##+js(aopr, onAdScriptFailure)
! https://github.com/uBlockOrigin/uAssets/issues/14550
||hbzb111.com/api/advert/
! https://github.com/uBlockOrigin/uAssets/issues/14580
protopage.com##+js(aost, document.createElement, createAdblockFallbackSubscribeToProtopageAdDiv)
! https://github.com/uBlockOrigin/uAssets/issues/14674
||georgiadogs.com/js/prebid-$xhr,1p,redirect=noop.txt
! https://www.iphoneincanada.ca/ anti-adb
iphoneincanada.ca##.slbElement
! www.dailyprincetonian.com anti-adb
||blink.net/iframe.html$domain=dailyprincetonian.com
! www.anisearch.com ad reinjection
||privacy-mgmt.com/unified/wrapperMessagingWithoutDetection.js$script,redirect-rule=noop.js,domain=anisearch.com
! https://github.com/uBlockOrigin/uAssets/issues/15106
*$script,domain=geotastic.net,redirect-rule=noopjs
! https://www.reddit.com/r/uBlockOrigin/comments/xy6lh0/
pixwox.com##+js(nostif, length, 3000)
! www.lamusica.com anti-adb
lamusica.com##.modal-open:style(overflow: auto !important;)
lamusica.com##div[id$="___BV_modal_outer_"]
! https://profreehost.com/ anti-adb
||profreehost.com/includes/js/customBottom.js$script,1p
! https://github.com/uBlockOrigin/uAssets/issues/14749
modrinth.com##.info-wrapper[ethical-ads-big=""]
modrinth.com##.content-wrapper[ethical-ads-big]
modrinth.com##.info-wrapper[data-v-7cd21295]
! https://www.slideshare.net/secret/r4TGJDeZF0s9jt anti adb
slideshare.net##+js(acis, ab_tests)
! https://github.com/uBlockOrigin/uAssets/issues/15598
startpage.com#@#.ad.widget
! tarnkappe. info anti adblock annoyance
tarnkappe.info##+js(set, traffective, true)
tarnkappe.info##section[style="min-height: 304px;"]
! https://github.com/uBlockOrigin/uAssets/issues/15784
@@||discordbotlist.com^$ghide
! ganohr.net anti-adb
@@||ganohr.net^$ghide
ganohr.net###gnr-modal
! https://github.com/uBlockOrigin/uAssets/issues/16251
memoryhackers.org##+js(acs, RegExp, googlebot)
! https://github.com/uBlockOrigin/uAssets/issues/15861
hidemywp.co##+js(acs, jQuery, userAgent)
! grabify. link anti adb warning
@@||grabify.link^$ghide
! https://www.reddit.com/r/uBlockOrigin/comments/10acynj/
steamcollector.com##+js(acs, document.querySelectorAll, adblock)
steamcollector.com##.abg-card
! jojoy.io anti-adb - triggered only on mobile
jojoy.io###ad_block_reminder_dialog
! https://github.com/uBlockOrigin/uAssets/issues/16689
virustotal.com##.alert-info
! sneakernews.com anti-adb
sneakernews.com##+js(aopr, sneakerGoogleTag)
! twitcasting.tv anti-adb (login needed)
@@||ads.twitcasting.tv/js/env_test/ads.js$script,1p
! https://raider.io/ anti-adb
||intergient.com^$script,domain=raider.io,redirect-rule=noopjs
! https://github.com/uBlockOrigin/uAssets/issues/17354
geeksforgeeks.org##.ad-blocker-modal
geeksforgeeks.org##body:style(overflow: auto !important;)
! https://github.com/uBlockOrigin/uAssets/issues/4241#issuecomment-1468322284
actiongame.com,brain-games.co.uk,classicgame.com,games-site.co.uk,hiddenobjectgames.com,mahjong.co.uk,mahjong.com,match3.co.uk,match3games.com,mindgames.com,neongames.co.uk,neongames.com,solitaireonline.com,timemanagementgame.com##.adBlocked
actiongame.com,brain-games.co.uk,classicgame.com,games-site.co.uk,hiddenobjectgames.com,mahjong.co.uk,mahjong.com,match3.co.uk,match3games.com,mindgames.com,neongames.co.uk,neongames.com,solitaireonline.com,timemanagementgame.com##.banner
! romviet.com anti adblock annoyance
romviet.com##+js(noeval-if, AdBlocker)
!! -- 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)
!! -- ported from uBO Quick Fixes --
! filecr.com
*$image,domain=filecr.com,redirect-rule=1x1.gif
@@||scriptcdn.net/code/$xhr,domain=filecr.com
@@||googleads.g.doubleclick.net/pagead/ads$subdocument,domain=filecr.com
@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,domain=filecr.com
@@||pagead2.googlesyndication.com/pagead/managed/js/adsense/*/show_ads_impl*$script,domain=filecr.com
@@||pagead2.googlesyndication.com/getconfig/sodar$xhr,domain=filecr.com
filecr.com#@#ins.adsbygoogle
filecr.com##ins.adsbygoogle:style(height: 0px !important;)
filecr.com##div[id^="aswift"]
! https://github.com/uBlockOrigin/uAssets/issues/17356
filecr.com##+js(no-fetch-if, scriptcdn)
! https://twitter.com/HFL_fan/status/1632275022197981184
miitus.jp#@#.new-ad-box
! https://github.com/AdguardTeam/AdguardFilters/commit/de31889b8fdd2a1b4717119395f3ebcaf1b26735#commitcomment-103396170
rocketnews24.com#@#.ad
! https://github.com/uBlockOrigin/uAssets/issues/16909
@@||googletagmanager.com/gtm.js$script,domain=abczdrowie.pl
behealthymagazine.abczdrowie.pl##[href*="/?utm_source="]
! https://github.com/uBlockOrigin/uAssets/issues/16616
autosport.com,motorsport.com##+js(aeld, load, length)
@@||mstm.motorsport.com/mstm.js
! https://github.com/uBlockOrigin/uAssets/issues/17254
||run.app/events$badfilter
||run.app/events$domain=imgur.com
canale.live##+js(set-constant, moneyAbovePrivacyByvCDN, true)
canale.live##+js(no-setInterval-if, href)
! https://github.com/uBlockOrigin/uAssets/issues/14142
@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xhr,domain=10play.com.au
@@||global.ssl.fastly.net^$domain=10play.com.au
@@||imasdk.googleapis.com/js/sdkloader/ima3_dai.js$script,domain=10play.com.au
@@||pubads.g.doubleclick.net/ondemand/hls/content/*/streams$xhr,domain=10play.com.au
10play.com.au##+js(m3u-prune, /^https?:\/\/redirector\.googlevideo\.com.*/, /.*m3u8/)
! luscious. net anti adb
@@*$xhr,domain=luscious.net,3p
! chip.de
||mms.chip.de^
! Anti-adblock (Brave fix on https://github.com/brave/brave-browser/issues/12737)
@@||static.adsafeprotected.com/vans-adapter-google-ima.js$script,domain=motorsport.tv|motorsport.com
@@||imasdk.googleapis.com/js/sdkloader/ima3.js$script,domain=motorsport.tv|motorsport.com
! 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
! 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
! ghide
@@||compuhoy.com^$ghide
@@||fluttercampus.com^$ghide
! 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.li,kisscartoon.sh,kisscartoon.nz,kisscartoon.ac,kisscartoon.es,kissanime.com.ru,kiss-anime.su,kissanime.sx,kissanime.org.ru,kissanime.co##+js(acis, String.fromCharCode, /btoa|break/)
kimcartoon.li,kisscartoon.sh,kisscartoon.nz,kisscartoon.ac,kisscartoon.es,kissanime.com.ru,kiss-anime.su,kissanime.sx,kissanime.org.ru,kissanime.co##+js(acis, JSON.parse, break;case $.)
kimcartoon.li,kisscartoon.sh,kisscartoon.nz,kisscartoon.ac,kisscartoon.es,kissanime.com.ru,kiss-anime.su,kissanime.sx,kissanime.org.ru,kissanime.co##+js(window.open-defuser)
! uBO-domain wildcard workaround kissasian
kissasian.fan,kissasian.pe,kissasian.com.ru,kissasian.li,kissasian.es##+js(acis, String.fromCharCode, /btoa|break/)
kissasian.fan,kissasian.pe,kissasian.com.ru,kissasian.li,kissasian.es##+js(acis, JSON.parse, break;case $.)
kissasian.fan,kissasian.pe,kissasian.com.ru,kissasian.li,kissasian.es##+js(window.open-defuser)
kissasian.fan,kissasian.pe,kissasian.com.ru,kissasian.li,kissasian.es##+js(aeld, /^(?:click|mousedown)$/, _0x)
kissasian.fan,kissasian.pe,kissasian.com.ru,kissasian.li,kissasian.es##+js(nostif, (), 45000)
kissasian.fan,kissasian.pe,kissasian.com.ru,kissasian.li,kissasian.es##+js(set, check_adblock, true)
@@||kissasian.pe^$ghide
@@||kissasian.li^$ghide
@@||kissasian.fan^$ghide
@@||kissasian.com.ru^$ghide
@@||kissasian.es^$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)
! Hide ads in standard blocking mode
kimcartoon.si,9animes.ru,kisscartoon.sh,kimcartoon.li,kisscartoon.nz,kissanime.com.ru,kissanime.sx,kissanime.org.ru,kissanime.co,gogoanime.gs,animesuge.to,kissasian.pe,kissasian.li,kissasian.fan,kissasian.com.ru,kissasian.es##div[style*="position:relative;text-align:"]
! uBO-domain wildcard workaround tube8/pornhub
redtube.camp,redtube.com,redtube.net##+js(acis, Object.defineProperty, trafficjunky)
redtube.camp,redtube.com,redtube.net##+js(set, page_params.holiday_promo, true)
tube8.com,tube8.es,tube8.fr##+js(acis, Object.defineProperty, trafficjunky)
tube8.com,tube8.es,tube8.fr##+js(aeld, , _0x)
tube8.com,tube8.es,tube8.fr##+js(aopw, IS_ADBLOCK)
tube8.com,tube8.es,tube8.fr##+js(nowoif)
tube8.com,tube8.es,tube8.fr##+js(set, page_params.holiday_promo, true)
pornhub.com##.realsex
pornhub.com,pornhubthbh7ap3u.onion##.premiumPromoBanner
pornhub.com,pornhubthbh7ap3u.onion###pb_template
pornhub.com##+js(set, page_params.holiday_promo, true)
! uBO-domain wildcard workaround animepahe.com/mmkvcage.site/pahe.li
animepahe.com,mmkvcage.site,pahe.li##+js(aopw, _pop)
animepahe.com,kwik.cx##+js(acis, String.fromCharCode, 'shift')
animepahe.com,kwik.cx##+js(aopr, open)
animepahe.com,kwik.cx##+js(aopr, PopAds)
pahe.li##+js(acis, JSON.parse, break;case $.)
pahe.li##+js(aeld, , _0x)
@@||pahe.li^$ghide
! uBO-domain wildcard workaround (https://community.brave.com/t/kindly-remove-disable-adblock-and-reload-the-page/308756)
vipbox.lc,v1sts.me##+js(acis, JSON.parse, break;case)
vipbox.lc,tvply.me,v1sts.me,vipboxtv.se##+js(aopw, _pop)
tvply.me,vipbox.lc,vipboxtv.se,viprow.me##+js(acis, JSON.parse, break;case $.)
vipbox.lc##.position-absolute
! uBO-domain wildcard workaround
*$script,3p,domain=igg-games.com
*$xhr,subdocument,3p,domain=igg-games.com
@@||cdn.fastcomments.com^$script,domain=igg-games.com
@@||ajax.googleapis.com^$script,domain=igg-games.com
! uBO-domain wildcard workaround
@@||cdn.gotraffic.net^$domain=bloomberg.com|bloomberg.co.jp
! Potential Tracker, Annoyance
||govdelivery.com^$third-party
! Bait,Anti-adblock
@@||onceagain.mooo.com^$script,domain=bigbtc.win
! Anti-Brave checks
cnnespanol.cnn.com,optus.com.au,trezor.io,ganohr.net,megacloud.tv,coingax.com,capitaloneshopping.com,comohoy.com,leak.sx,pornleaks.in,bigbtc.win,formula1.com,revadvert.com,pistonheads.com,itv.com,everywherepaycard.com,cosme-de.com,lens-labo.net,opendroneid.org,itrum.org,kalista-beauty.com,projectcircuitbreaker.com,wheel.health,thera-link.com,rapid-cloud.co,musenboya.com,instantconsult.com.au,zoro.to,twitch.tv,healthrangerstore.com,saramart.com,html-code-generator.com,support-lock.com,fordeal.com,hyundaipowerequipment.co.uk,playl2.net,volcom.ca,itrum.org,thunder-io.com,nothing.tech,pythonstudy.xyz,calcolastipendionetto.it,psychologytoday.com,krunker.io,gommonauti.it,btdig.com,archive.is,archive.today,archive.vn,archive.fo,archive.md,archive.li,archive.ph,archivecaslytosk.onion,archiveiya74codqgiixo33q62qlrqtkgmcitqx5u2oeqnmn5bpcbiyd.onion,pethouse.com.au,uploadbank.com,divnil.com,capitaloneoffers.com,capitalone.com##+js(brave-fix)
!
! Standard blocking of Bing mouselog tracker (is blocked in Aggressive)
||bing.com/mouselog$script,redirect-rule=noopjs,domain=bing.com
! EasyDutch https://github.com/EasyDutch-uBO/EasyDutch/blob/main/EasyDutch/Anti-Adblock.txt (START)
! https://github.com/AdguardTeam/AdguardFilters/issues/115542
@@||kijk.nl^$ghide
@@||ads-talpa.adhese.com/json/$xhr,domain=kijk.nl
*$image,domain=kijk.nl,redirect-rule=1x1.gif
! 2022-01-29
autoweek.nl##+js(set, isAdBlockActive, false)
! 2021-11-09
@@||looopings.nl/wp-banners.js
looopings.nl##+js(acis, document.getElementById, .style.display=)
! 2021-10-29
dumpert.nl##+js(setTimeout-defuser, AdBlockerCheck)
dumpert.nl#@#.ads_box
! 2021-08-09
doorbraak.be,gowiththevlo.nl##+js(aopw, advanced_ads_check_adblocker)
! 2021-08-07
@@||hb.improvedigital.com/pbw/headerlift.min.js$script,3p,domain=funnygames.be|funnygames.nl|spele.be|spele.nl
! 2021-08-06
funnygames.nl,funnygames.be,spele.be,spele.nl##.is-billboard
funnygames.nl,funnygames.be,spele.be,spele.nl##.is-skyscraper
marokko.nl##+js(set, ads_toegestaan, true)
@@*$ghide,domain=modekoninginmaxima.nl|quickclaims.nl
! 2021-06-01
notebookcheck.nl##+js(acis, document.getElementById, send)
! 2021-05-04
112midden-zeeland.nl##+js(aopr, anOptions)
! 2021-04-28
webwereld.nl##+js(set, adBlockStatus, false)
nu.nl##+js(set, isAdBlockEnabled, false)
! 2021-04-27
@@||partner.googleadservices.com/gpt/pubads_impl_$script,domain=vtm.be
directwonen.nl#@#.adsbox
girlscene.nl##+js(set, adblock, 0)
! EasyDutch https://github.com/EasyDutch-uBO/EasyDutch/blob/main/EasyDutch/Anti-Adblock.txt (END)
! globalnews.ca Anti-adblock
@@||globalnews.ca^$ghide
globalnews.ca##.l-headerAd__container
globalnews.ca##.c-newsletterSignup
! Fix yandex.ru blocking on 3dnews.ru
||aflt.market.yandex.ru^$script,third-party
! Broken search on https://www.capitalone.com/search
@@||nexus.ensighten.com/capitalone/Bootstrap.js$script,domain=capitalone.com
! ip-approval bug
||ip-approval.com^$third-party,domain=mufon.com
! Anti-adblock: lapresse.ca
||lapresse-ca.lapresse.ca^$domain=lapresse.ca
! Fix foxnews video playback
@@||imasdk.googleapis.com/js/sdkloader/ima3.js$script,domain=foxbusiness.com|foxnews.com
@@||fncstatic.com/static/isa/app/lib/VisitorAPI.js$script,domain=foxbusiness.com|foxnews.com
! Temp fix for Google funding Yellow Bar (https://github.com/brave/brave-browser/issues/11945)
##div[style*="box-shadow: rgb(136, 136, 136) 0px 0px 12px; color: "]
! To counter $ghide in uBO
geekzone.co.nz,elpais.com,abc.es,lapresse.ca##div[style*="box-shadow: rgb(136, 136, 136) 0px 0px 12px; color: "]
! Fix googlefunding issues (Android) https://github.com/uBlockOrigin/uAssets/blob/master/filters/filters.txt#L21331
! googlefunding (latimes.com) (fix scroll)
latimes.com##body:style(overflow: auto !important;)
! https://github.com/brave/brave-browser/issues/23154
accuweather.com,kupujemprodajem.com,polovniautomobili.com##+js(remove-attr, class, .ads-not-loaded, stay)
! Cookie consent :remove fix
computerbase.de#@#+js(rc, consent-dialog-open, body)
computerbase.de#@#.js-consent.consent
! async-hide delay
davidstea.com,ibotta.com,polovniautomobili.com##+js(rc, async-hide, , stay)
! googlefunding (foxnews / foxbusiness)
||foxnews.com^*choices.js$script,domain=foxnews.com|foxbusiness.com
! Anti-adblock: indiatimes.com / timesofindia.com
@@||indiatimes.com/ads.cms$script,domain=indiatimes.com
@@/ad-banner-zedo/*$image,domain=indiatimes.com|timesofindia.com
@@||timesofindia.com/acms/$xmlhttprequest,domain=timesofindia.com
! /track/view| fix for amazon tracking
@@||amazon.*/shiptrack/view.html$~third-party
! Anti-adblock: Instart
||vxq18c.g02.ign.com^$script,domain=ign.com
||earzxzsl.g02.ign.com^$subdocument,domain=ign.com
! ebay.co.uk + ebay.com and other ebay regions (https://github.com/brave/brave-browser/issues/5019)
@@||ebay.com/experience/listing_auto_complete/$xmlhttprequest
! ebay image upload issue (https://github.com/brave/brave-browser/issues/5190)
@@||ebay.com/ws/$xmlhttprequest
! api.ebay.com (https://community.brave.com/t/referral-not-getting-download-and-comfirmed/75898)
@@||api.ebay.com^$xmlhttprequest,subdocument
! env fixes
novinky.cz#@#+js(aost, Math, inlineScript)
! Empty spaces due to shields/standard
cultofmac.com,futuregaming.io,cydiageeks.com,askdavetaylor.com,pedigreedatabase.com,greatamericandaily.com,basquetplus.com,liverampup.com,q4interview.com,happybirthdaymsg.com,gerweck.net,smartwatchspecifications.com,toutandroid.fr,wikinetworth.com,tutorials-raspberrypi.com##+js(rc, ezoic-ad, , stay)
webmd.com##+js(rc, instreamAd, , stay)
theregister.com##+js(rc, adun, , stay)
9gag.com##+js(rc, block-ad, , stay)
businessinsider.com,insider.com##+js(rc, l-ad, , stay)
businessinsider.com,insider.com##+js(rc, subnav-ad-layout, , stay)
arstechnica.com##+js(rc, ad, , stay)
forbes.com##+js(rc, top-ad-container, , stay)
cnet.com##+js(rc, c-adSkyBox, , stay)
cnet.com##+js(rc, c-adSkyBox_expanded, , stay)
reuters.com##+js(rc, ad-slot__container__FEnoz, , stay)
darkreading.com##*:style(opacity: 1 !important;)
bloomberg.com##+js(rc, leaderboard-wrapper, , stay)
bloomberg.com##+js(rc, FullWidthAd_fullWidthAdWrapper-fClHZteIk3k-, , stay)
npr.org##[aria-label="advertisement"]
npr.org##+js(rc, ad-standard, , stay)
imdb.com+js(ra, id="inline20_wrapper", , stay)
imdb.com+js(ra, id="inline40_wrapper", , stay)
tasteofhome.com##+js(rc, advertisement, , stay)
tasteofhome.com##+js(rc, pre-article-ad, , stay)
newsnow.co.uk##+js(rc, rs-ad-frame__desktop--leaderboard, , stay)
space.com##+js(rc, dfp-leaderboard-container, , stay)
space.com##+js(rc, ad-unit, , stay)
space.com##+js(rc, static-lightbox2, , stay)
space.com##+js(rc, static-lightbox3, , stay)
foxnews.com,foxbusiness.com##+js(rc, vendor-unit, , stay)
adelaidenow.com.au,heraldsun.com.au,couriermail.com.au,dailytelegraph.com.au,news.com.au,themercury.com.au,geelongadvertiser.com.au,cairnspost.com.au,goldcoastbulletin.com.au,townsvillebulletin.com.au,thechronicle.com.au,ntnews.com.au,weeklytimesnow.com.au##+js(rc, header_ads-container, , stay)
adelaidenow.com.au,heraldsun.com.au,couriermail.com.au,dailytelegraph.com.au,news.com.au,themercury.com.au,geelongadvertiser.com.au,cairnspost.com.au,goldcoastbulletin.com.au,townsvillebulletin.com.au,thechronicle.com.au,ntnews.com.au,weeklytimesnow.com.au##+js(rc, ad-halfpage, , stay)
theaustralian.com.au##+js(rc, header__ad, , stay)
racenet.com.au##+js(rc, header-ad, , stay)
bbc.com##+js(rc, ssrcss-1gt3c8g-LeaderboardDiv, , stay)
bbc.com##+js(rc, nw-c-leaderboard-ad, , stay)
bbc.com##+js(rc, leaderboard-ad-placeholder, , stay)
cbssports.com##+js(rc, skybox-top-wrapper, , stay)
cbssports.com##+js(rc, leaderboard-wrap, , stay)
cbssports.com##+js(rc, fixed-skybox-placeholder, , stay)
! Regex fix (counter complex ubo regex)
$xhr,3p,domain=nxbrew.com
$script,3p,domain=animixplay.to|animepahe.ru|nxbrew.com
@@||disqus.com/count-data.js$script,domain=animixplay.to
@@||disqus.com/embed.js$script,domain=animixplay.to
! Korean adblock (cosmetic)
newtoki64.com##.basic-banner
newtoki64.com##.board-tail-banner
! Anti-adblock: pandora.com (IoS)
@@||pandora.com/static/ads/
! blockadblock
blockadblock.com##+js(nobab)
! Anti-adblock: gazzetta.it
@@||rcsobjects.it^*/openx/$script,domain=gazzetta.it
! Anti-adblock: geoguessr.com
@@||geoguessr.com/_ads/$script,xmlhttprequest,domain=geoguessr.com
! thehindu.com (https://github.com/brave/brave-browser/issues/4808)
@@||thgim.com/static/js/ads.min.js$script,domain=thehindu.com
! gifycat.com ads (https://community.brave.com/t/pages-loads-3rd-party-ads-after-page-loads/71472/10)
||ga.gfycat.com^$script,domain=gfycat.com
! *#@#div.adsbygoogle.Ad-Container.sidebar-ad:style(display:block !important)
! Anti-adblock kbizoom.com
mylivewallpapers.com,nsw2u.com,kbizoom.com##div.adsbygoogle.Ad-Container.sidebar-ad:style(display:block !important)
! thequint.com Anti-adblock (address thequint.com#@#span:has-text(ADVERTISEMENT))
! Also other generic exceptions
@@||thequint.com^$ghide
! Blank spaces aftonbladet.se (:upward)
aftonbladet.se##.css-4thb3o
aftonbladet.se##.css-1d3w5wq
! scrolller.com (anti-adblock, upward)
scrolller.com##.popup--fixed
! Cosmetic fixes (https://github.com/brave/brave-browser/issues/14825)
! Spotify (redirect priority issue) https://github.com/brave/brave-browser/issues/30476
! https://github.com/uBlockOrigin/uAssets/issues/18148#issuecomment-1555962148
||akamaized.net/audio/$media,redirect-rule=noop-1s.mp4,domain=open.spotify.com,important
||scdn.co/audio/$media,redirect=noop-1s.mp4,domain=open.spotify.com,important
! fixes from remove()
apnews.com##+js(ra, data-leaderboard-is-fixed, html, stay)
! Counter blocked by extension warnings
naver.com###veta_top
naver.com###veta_branding
naver.com##.banner_area
! Anti-Adblock: bild.de
@@||asadcdn.com/adlib/$script,stylesheet,domain=bild.de
! Adblock-Tracking: (News corp AU sites)
@@||tags.news.com.au/prod/adblock/adblock.js$script,domain=foxsports.com.au|kidspot.com.au|cairnspost.com.au|ntnews.com.au|goldcoastbulletin.com.au|townsvillebulletin.com.au|themercury.com.au|news.com.au|taste.com.au|heraldsun.com.au|dailytelegraph.com.au|adelaidenow.com.au|bodyandsoul.com.au|bestrecipes.com.au|whimn.com.au|vogue.com.au|delicious.com.au|escape.com.au|weeklytimesnow.com.au|geelongadvertiser.com.au
! Adblock-Tracking: MediaNews Group
@@||townnews.com^*/flex/components/ads/$script,domain=southernchestercountyweeklies.com|dailylocal.com|delcotimes.com|morningjournal.com|delconewsnetwork.com|montgomerynews.com|mainlinemedianews.com|news-herald.com|cnweekly.com|troyrecord.com|southjerseylocalnews.com|saratogian.com|oneidadispatch.com|dailyfreeman.com|trentonian.com|berksmontnews.com|thenewsherald.com|dailytribune.com|theoaklandpress.com|voicenews.com|themorningsun.com|pottsmerc.com|phoenixvillenews.com|timesherald.com|thereporteronline.com|pvnews.com|tbrnews.com|pressandguide.com|gazettes.com|macombdaily.com
@@/static/js/ads.js$script,domain=redlandsdailyfacts.com|pasadenastarnews.com|dailybulletin.com|marinij.com|montereyherald.com|presstelegram.com|times-standard.com|chicoer.com|whittierdailynews.com|dailydemocrat.com|dailynews.com|ocregister.com|pe.com|buffzone.com|orovillemr.com|journal-advocate.com|reporterherald.com|broomfieldenterprise.com|record-bee.com|sentinelandenterprise.com|bostonherald.com|nashobavalleyvoice.com|eptrail.com|akronnewsreporter.com|willitsnews.com|redbluffdailynews.com|thevalleydispatch.com|twincities.com|burlington-record.com|fortmorgantimes.com|coloradodaily.com|lamarledger.com|timescall.com|canoncitydailyrecord.com|excelsiorcalifornia.com|advocate-news.com|paradisepost.com|redwoodtimes.com|denverpost.com|mendocinobeacon.com
! Rambler Network
lenta.ru,championat.com,passion.ru,wmj.ru,eda.ru,rambler.ru,motor.ru,autorambler.ru,letidor.ru,quto.ru,rns.online,gazeta.ru##+js(json-prune, Blocks)
! Rambler (imported from Adguard)
afisha.ru,letidor.ru,autorambler.ru,wmj.ru,motor.ru,passion.ru,quto.ru,eda.ru,rns.online,championat.com,gazeta.ru,lenta.ru,rambler.ru##+js(aopw, Object.prototype.getPlaceSelectorByBannerId)
! https://canyoublockit.com/extreme-test/
! https://old.reddit.com/r/brave_browser/comments/158399q/popup_ads_not_getting_blocked_in_brave/
canyoublockit.com##+js(nowoif)
! rutracker.net (regional)
||rutrk.org^$domain=rutracker.net
||betsonsport.ru^$domain=rutracker.net
! Fix endless loading on epaper.timesgroup.com
@@||googletagservices.com/tag/js/gpt.js$script,domain=epaper.timesgroup.com
! Fix nfl.com video playback
@@||googletagservices.com/tag/js/gpt.js$script,domain=nfl.com
! Fix twitter images
@@||pbs.twimg.com/media/$image,third-party
@@||pbs.twimg.com/ext_tw_video_thumb/$image,third-party
@@||abs.twimg.com/emoji/$image,third-party
@@||pbs.twimg.com/profile_images/$image,third-party
@@||pbs.twimg.com/amplify_video_thumb/$image,third-party
! mycima.me
mycima.biz##+js(acis, parseInt, break;case $.)
! Fix consent issue on porsche.com (IOS)
@@||googletagmanager.com/gtm.js$script,domain=porsche.com
! Debounce fixes
! https://github.com/brave/brave-browser/issues/22437
||tradedoubler.com^$third-party,badfilter
||doubleclick.net^$third-party,badfilter
||atdmt.com^$badfilter
||demdex.net^$badfilter
||awin1.com^$third-party,badfilter
||shareasale.com^$third-party,badfilter
||valuecommerce.com^$third-party,badfilter
||linksynergy.com^$third-party,badfilter
! Debounce fixes (image,script,xml) Which will allow the debounce.
||tradedoubler.com^$image,script,subdocument,xmlhttprequest,third-party
||doubleclick.net^$image,subdocument,script,subdocument,xmlhttprequest,third-party
||atdmt.com^$image,script,subdocument,xmlhttprequest
||demdex.net^$image,script,subdocument,xmlhttprequest
||awin1.com^$image,script,xmlhttprequest,subdocument,third-party
||shareasale.com^$image,script,xmlhttprequest,subdocument,third-party
||valuecommerce.com^$image,script,xmlhttprequest,subdocument,third-party
||linksynergy.com^$image,script,xmlhttprequest,subdocument,third-party
! nytimes.com (fixes no images)
@@||securepubads.g.doubleclick.net/tag/js/gpt.js$script,domain=nytimes.com
! Peter Lowe fixes
||blockthrough.com^$badfilter
||criteo.com^$badfilter
||app.pendo.io^$badfilter
||pubmatic.com^$badfilter
||appsflyer.com^$badfilter
||tapfiliate.com^$badfilter
! Fix blank page on flipp.com
@@||wishabi.net^$image,domain=flipp.com
! https://community.brave.com/t/walmart-com-redirects-to-account-sign-in-screen-brave-linux-and-mac-not-ff-or-safari/500040/
! window.navigator.globalPrivacyControl related
walmart.com##+js(cookie-remover.js, sod)
walmart.com##+js(set-cookie, sod, 0)
! Fix "Alien Warning" script check on dslreports.com https://community.brave.com/t/alien-script-detected-inline-code-at-dslreports-com-speedtest/173716/
dslreports.com###errorlog
! Anti-adblock: docker.events.cube365.net
cube365.net##+js(aopr, bootbox.alert)
! Allow ads on DDG: brave-browser/issues#4533
@@||duckduckgo.com/m.js
@@||duckduckgo.com/share/spice/amazon/
! Taboola scripts
-taboola-article.
-taboola-loader.
-widget-taboola-
/ad-taboola.min.js
/components/taboola/*
/modulo/taboola/*
/taboola-header.js
/taboola-iframe/*
/taboola-module.
/taboola.js
/taboola/footer.
/taboola/head.
/taboolaArticleFooter.
/taboolaArticleHead.
/taboolaBottomBody.
/taboolaHead.
||taboolasyndication.com^$third-party
! Outbrain scripts
/cdn-cgi/pe/bag2?*odb.outbrain.com
/outbrain-load-
/outbrain.js
/outbrain/base?
/outbrain?
/outbrainAd.
||outbrainimg.com^$third-party
! Easyprivacy Notifcations (For ios)
||accengage.net^$third-party
||actirinius.com^$third-party
||aimtell.com^$third-party
||alertme.news^$third-party
||amazonaws.com/cdn.aimtell.com/
||aswpsdkus.com^$third-party
||bildirt.com^$third-party
||bosspush.com^$third-party
||browserpusher.com^$third-party
||cdn-sitegainer.com^$third-party
||centrpush.com^$third-party
||cleverpush.com^$third-party
||copush.com^$third-party
||cracataum.com^$third-party