-
Notifications
You must be signed in to change notification settings - Fork 829
/
Copy pathfilters.txt
13724 lines (11330 loc) · 604 KB
/
filters.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
! Title: uBlock filters
! Last modified: %timestamp%
! Expires: 5 days
! Description: Filters optimized for uBlock, to be used along EasyList
! Homepage: https://github.com/uBlockOrigin/uAssets
! License: https://github.com/uBlockOrigin/uAssets/blob/master/LICENSE
!
! GitHub issues: https://github.com/uBlockOrigin/uAssets/issues
! GitHub pull requests: https://github.com/uBlockOrigin/uAssets/pulls
! https://github.com/uBlockOrigin/uAssets/issues/1408
*_ad_$media,domain=youtube.com,3p
! https://github.com/easylist/easylist/issues/5112
! @@||youtube.com/get_video_info?*timedtext_editor$xhr,1p
! https://redd.it/ggcmkp https://redd.it/gx03e0
! https://github.com/uBlockOrigin/uAssets/pull/18106/
! https://www.reddit.com/r/uBlockOrigin/comments/1atwzem/comment/l06ayn9/
tv.youtube.com##+js(trusted-replace-xhr-response, '"adPlacements"', '"no_ads"', /playlist\?list=|\/player(?:\?.+)?$|watch\?[tv]=/)
!#if !cap_html_filtering
www.youtube.com##+js(trusted-replace-xhr-response, /"adPlacements.*?([A-Z]"\}|"\}{2\,4})\}\]\,/, , /playlist\?list=|\/player(?:\?.+)?$|watch\?[tv]=/)
www.youtube.com##+js(trusted-replace-xhr-response, /"adPlacements.*?("adSlots"|"adBreakHeartbeatParams")/gms, $1, /\/player(?:\?.+)?$/)
www.youtube.com##+js(trusted-replace-fetch-response, /"adPlacements.*?([A-Z]"\}|"\}{2\,4})\}\]\,/, , player?)
www.youtube.com##+js(trusted-replace-fetch-response, /"adSlots.*?\}\}\]\,"adBreakHeartbeatParams/, "adBreakHeartbeatParams, player?)
!#else
||www.youtube.com/playlist?list=$xhr,1p,replace=/"adPlacements.*?([A-Z]"\}|"\}{2\,4})\}\]\,//
||www.youtube.com/playlist?list=$xhr,1p,replace=/"adSlots.*?\}\}\]\,"adBreakHeartbeatParams/"adBreakHeartbeatParams/
||www.youtube.com/watch?$xhr,1p,replace=/"adPlacements.*?([A-Z]"\}|"\}{2\,4})\}\]\,//
||www.youtube.com/watch?$xhr,1p,replace=/"adSlots.*?\}\}\]\,"adBreakHeartbeatParams/"adBreakHeartbeatParams/
||www.youtube.com/youtubei/v1/player?$xhr,1p,replace=/"adPlacements.*?([A-Z]"\}|"\}{2\,4})\}\]\,//
||www.youtube.com/youtubei/v1/player?$xhr,1p,replace=/"adSlots.*?\}\}\]\,"adBreakHeartbeatParams/"adBreakHeartbeatParams/
!#endif
! https://www.reddit.com/r/uBlockOrigin/comments/154vtwy/getting_ads_on_youtube/jsu299l/
! https://github.com/uBlockOrigin/uBlock-issues/issues/3083#issuecomment-1899349892
! https://github.com/uBlockOrigin/uBlock-discussions/discussions/831#discussioncomment-8271839
m.youtube.com,music.youtube.com,tv.youtube.com,www.youtube.com,youtubekids.com,youtube-nocookie.com##+js(set, ytInitialPlayerResponse.playerAds, undefined)
m.youtube.com,music.youtube.com,tv.youtube.com,www.youtube.com,youtubekids.com,youtube-nocookie.com##+js(set, ytInitialPlayerResponse.adPlacements, undefined)
m.youtube.com,music.youtube.com,tv.youtube.com,www.youtube.com,youtubekids.com,youtube-nocookie.com##+js(set, ytInitialPlayerResponse.adSlots, undefined)
m.youtube.com,music.youtube.com,tv.youtube.com,www.youtube.com,youtubekids.com,youtube-nocookie.com##+js(set, playerResponse.adPlacements, undefined)
! https://github.com/uBlockOrigin/uAssets/issues/7636#issuecomment-1674303331
m.youtube.com,music.youtube.com,youtubekids.com,youtube-nocookie.com##+js(json-prune, playerResponse.adPlacements playerResponse.playerAds playerResponse.adSlots adPlacements playerAds adSlots important)
! https://github.com/uBlockOrigin/uAssets/issues/20586#issuecomment-2144781835
www.youtube.com##+js(json-prune-fetch-response, playerAds adPlacements adSlots playerResponse.playerAds playerResponse.adPlacements playerResponse.adSlots, , propsToMatch, /playlist?)
! https://www.reddit.com/r/uBlockOrigin/comments/1ebwr6c/is_ublock_broken_again_or_am_i_doing_something/
www.youtube.com##+js(json-prune-fetch-response, playerAds adPlacements adSlots playerResponse.playerAds playerResponse.adPlacements playerResponse.adSlots [].playerResponse.adPlacements [].playerResponse.playerAds [].playerResponse.adSlots, , propsToMatch, /player?)
! https://github.com/uBlockOrigin/uAssets/issues/15632
youtube.com##.ytlr-horizontal-list-renderer__items > .yt-virtual-list__container > .yt-virtual-list__item--visible.yt-virtual-list__item--selected.yt-virtual-list__item:has-text(Ad)
! https://www.reddit.com/r/uBlockOrigin/comments/163cy47/youtube_antiadblock_and_ads_weekly_thread_august/jyemgzo/
||googlevideo.com/initplayback?source=youtube*&c=TVHTML5&oad=$xhr,domain=youtube.com
! Shorts Ad
m.youtube.com,music.youtube.com,tv.youtube.com,www.youtube.com,youtubekids.com,youtube-nocookie.com##+js(json-prune-fetch-response, reelWatchSequenceResponse.entries.[-].command.reelWatchEndpoint.adClientParams.isAd entries.[-].command.reelWatchEndpoint.adClientParams.isAd, , propsToMatch, url:/reel_watch_sequence?)
! AdDefend
!#if env_chromium
lablue.*##+js(nostif, push, 500)
||doubleclick.net^$script,important,domain=auto-motor-und-sport.de
!#endif
4-liga.com,4fansites.de,4players.de,9monate.de##+js(nostif, .call(null), 10)
aachener-nachrichten.de,aachener-zeitung.de,abendblatt.de,abendzeitung-muenchen.de,about-drinks.com,abseits-ka.de,airliners.de,ajaxshowtime.com,allgemeine-zeitung.de,alpin.de,antenne.de,arcor.de,areadvd.de,areamobile.de,ariva.de,astronews.com,aussenwirtschaftslupe.de,auszeit.bio,auto-motor-und-sport.de,auto-service.de,autobild.de,autoextrem.de,autopixx.de,autorevue.at,az-online.de##+js(nostif, .call(null), 10)
baby-vornamen.de,babyclub.de,bafoeg-aktuell.de,berliner-kurier.de,berliner-zeitung.de,bigfm.de,bikerszene.de,bildderfrau.de,blackd.de,blick.de,boerse-online.de,boerse.de,boersennews.de,braunschweiger-zeitung.de,brieffreunde.de,brigitte.de,buerstaedter-zeitung.de,buffed.de,businessinsider.de,buzzfeed.at,buzzfeed.de##+js(nostif, .call(null), 10)
caravaning.de,cavallo.de,chefkoch.de,cinema.de,clever-tanken.de,computerbild.de,computerhilfen.de,comunio-cl.com,comunio.*,connect.de,chip.de##+js(nostif, .call(null), 10)
da-imnetz.de,dasgelbeblatt.de,dbna.com,dbna.de,deichstube.de,deine-tierwelt.de,der-betze-brennt.de,derwesten.de,desired.de,dhd24.com,dieblaue24.com,digitalfernsehen.de,dnn.de,donnerwetter.de##+js(nostif, .call(null), 10)
e-hausaufgaben.de,e-mountainbike.com,eatsmarter.de,echo-online.de,ecomento.de,einfachschoen.me,elektrobike-online.com,eltern.de,epochtimes.de,essen-und-trinken.de,express.de,extratipp.com##+js(nostif, .call(null), 10)
familie.de,fanfiktion.de,fehmarn24.de,fettspielen.de,fid-gesundheitswissen.de,finanzen.*,finanznachrichten.de,finanztreff.de,finya.de,firmenwissen.de,fitforfun.de,fnp.de,football365.fr,formel1.de,fr.de,frankfurter-wochenblatt.de,freenet.de,fremdwort.de,froheweihnachten.info,frustfrei-lernen.de,fuldaerzeitung.de,funandnews.de,fussballdaten.de,futurezone.de##+js(nostif, .call(null), 10)
gala.de,gamepro.de,gamersglobal.de,gamesaktuell.de,gamestar.de,gameswelt.*,gamezone.de,gartendialog.de,gartenlexikon.de,gedichte.ws,geissblog.koeln,gelnhaeuser-tageblatt.de,general-anzeiger-bonn.de,geniale-tricks.com,genialetricks.de,gesund-vital.de,gesundheit.de,gevestor.de,gewinnspiele.tv,giessener-allgemeine.de,giessener-anzeiger.de,gifhorner-rundschau.de,giga.de,gipfelbuch.ch,gmuender-tagespost.de,golem.de,gruenderlexikon.de,gusto.at,gut-erklaert.de,gutfuerdich.co##+js(nostif, .call(null), 10)
hallo-muenchen.de,hamburg.de,hanauer.de,hardwareluxx.de,hartziv.org,harzkurier.de,haus-garten-test.de,hausgarten.net,haustec.de,haz.de,heftig.*,heidelberg24.de,heilpraxisnet.de,heise.de,helmstedter-nachrichten.de,hersfelder-zeitung.de,hftg.co,hifi-forum.de,hna.de,hochheimer-zeitung.de,hoerzu.de,hofheimer-zeitung.de##+js(nostif, .call(null), 10)
iban-rechner.de,ikz-online.de,immobilienscout24.de,ingame.de,inside-digital.de,inside-handy.de,investor-verlag.de##+js(nostif, .call(null), 10)
jappy.com,jpgames.de##+js(nostif, .call(null), 10)
kabeleins.de,kachelmannwetter.com,kamelle.de,kicker.de,kindergeld.org,klettern-magazin.de,klettern.de,kochbar.de,kreis-anzeiger.de,kreisbote.de,kreiszeitung.de,ksta.de,kurierverlag.de##+js(nostif, .call(null), 10)
lachainemeteo.com,lampertheimer-zeitung.de,landwirt.com,laut.de,lauterbacher-anzeiger.de,leckerschmecker.me,leinetal24.de,lesfoodies.com,levif.be,lifeline.de,liga3-online.de,likemag.com,linux-community.de,linux-magazin.de,live.vodafone.de,ln-online.de,lokalo24.de,lustaufsleben.at,lustich.de,lvz.de,lz.de##+js(nostif, .call(null), 10)
mactechnews.de,macwelt.de,macworld.co.uk,mail.de,main-spitze.de,manager-magazin.de,manga-tube.me,mathebibel.de,mathepower.com,maz-online.de,medisite.fr,mehr-tanken.de,mein-kummerkasten.de,mein-mmo.de,mein-wahres-ich.de,meine-anzeigenzeitung.de,meinestadt.de,menshealth.de,mercato365.com,merkur.de,messen.de,metal-hammer.de,metalflirt.de,meteologix.com,minecraft-serverlist.net,mittelbayerische.de,modhoster.de,moin.de,mopo.de,morgenpost.de,motor-talk.de,motorbasar.de,motorradonline.de,motorsport-total.com,motortests.de,mountainbike-magazin.de,moviejones.de,moviepilot.de,mt.de,mtb-news.de,musiker-board.de,musikexpress.de,musikradar.de,mz-web.de##+js(nostif, .call(null), 10)
n-tv.de,naumburger-tageblatt.de,netzwelt.de,neuepresse.de,neueroeffnung.info,news.at,news.de,news38.de,newsbreak24.de,nickles.de,nicknight.de,nl.hardware.info,nn.de,nnn.de,nordbayern.de,notebookchat.com,notebookcheck-ru.com,notebookcheck-tr.com,notebookcheck.*,noz-cdn.de,noz.de,nrz.de,nw.de,nwzonline.de##+js(nostif, .call(null), 10)
oberhessische-zeitung.de,och.to,oeffentlicher-dienst.info,onlinekosten.de,onvista.de,op-marburg.de,op-online.de,outdoor-magazin.com,outdoorchannel.de##+js(nostif, .call(null), 10)
paradisi.de,pc-magazin.de,pcgames.de,pcgameshardware.de,pcwelt.de,pcworld.es,peiner-nachrichten.de,pferde.de,pietsmiet.de,pixelio.de,pkw-forum.de,playboy.de,playfront.de,pnn.de,pons.com,prad.de,prignitzer.de,profil.at,promipool.de,promobil.de,prosiebenmaxx.de,psychic.de##+js(nostif, .call(null), 10)
quoka.de##+js(nostif, .call(null), 10)
radio.at,radio.de,radio.dk,radio.es,radio.fr,radio.it,radio.net,radio.pl,radio.pt,radio.se,ran.de,readmore.de,rechtslupe.de,recording.de,rennrad-news.de,reuters.com,reviersport.de,rhein-main-presse.de,rheinische-anzeigenblaetter.de,rimondo.com,roadbike.de,roemische-zahlen.net,rollingstone.de,rot-blau.com,rp-online.de,rtl.de,rtv.de,rugby365.fr,ruhr24.de,rundschau-online.de,runnersworld.de##+js(nostif, .call(null), 10)
safelist.eu,salzgitter-zeitung.de,sat1.de,sat1gold.de,schoener-wohnen.de,schwaebische-post.de,schwarzwaelder-bote.de,serienjunkies.de,shz.de,sixx.de,skodacommunity.de,smart-wohnen.net,sn.at,sozialversicherung-kompetent.de,spiegel.de,spielen.de,spieletipps.de,spielfilm.de,sport.de,sport1.de,sport365.fr,sportal.de,spox.com,stern.de,stuttgarter-nachrichten.de,stuttgarter-zeitung.de,sueddeutsche.de,svz.de,szene1.at,szene38.de##+js(nostif, .call(null), 10)
t-online.de,tagesspiegel.de,taschenhirn.de,techadvisor.co.uk,techstage.de,tele5.de,teltarif.de,testedich.*,the-voice-of-germany.de,thueringen24.de,tichyseinblick.de,tierfreund.co,tiervermittlung.de,torgranate.de,transfermarkt.*,trend.at,truckscout24.*,tv-media.at,tvdigital.de,tvinfo.de,tvspielfilm.de,tvtoday.de,tvtv.*,tz.de##+js(nostif, .call(null), 10)
unicum.de,unnuetzes.com,unsere-helden.com,unterhalt.net,usinger-anzeiger.de,usp-forum.de##+js(nostif, .call(null), 10)
videogameszone.de,vienna.at,vip.de,virtualnights.com,vox.de##+js(nostif, .call(null), 10)
wa.de,wallstreet-online.de,waz.de,weather.us,webfail.com,weihnachten.me,weihnachts-bilder.org,weihnachts-filme.com,welt.de,weltfussball.at,weristdeinfreund.de,werkzeug-news.de,werra-rundschau.de,wetterauer-zeitung.de,wetteronline.*,wieistmeineip.*,wiesbadener-kurier.de,wiesbadener-tagblatt.de,winboard.org,windows-7-forum.net,winfuture.de,wintotal.de,wlz-online.de,wn.de,wohngeld.org,wolfenbuetteler-zeitung.de,wolfsburger-nachrichten.de,woman.at,womenshealth.de,wormser-zeitung.de,woxikon.de,wp.de,wr.de##+js(nostif, .call(null), 10)
yachtrevue.at##+js(nostif, .call(null), 10)
ze.tt,zeit.de##+js(nostif, .call(null), 10)
meineorte.com,osthessen-news.de,techadvisor.com,focus.de##+js(nostif, .call(null))
kicker.de##+js(set, ov.advertising.tisoomi.loadScript, noopFunc)
! https://github.com/uBlockOrigin/uAssets/issues/22096
!#if cap_html_filtering
alpin.de,boersennews.de,chefkoch.de,chip.de,clever-tanken.de,desired.de,donnerwetter.de,fanfiktion.de,focus.de,formel1.de,frustfrei-lernen.de,gewinnspiele.tv,giga.de,gut-erklaert.de,kino.de,messen.de,nickles.de,nordbayern.de,spielfilm.de,teltarif.de,unsere-helden.com,weltfussball.at,watson.de,moviepilot.de,mactechnews.de,sport1.de,welt.de##^script:has-text(DisplayAcceptableAdIfAdblocked)
!#else
alpin.de,boersennews.de,chefkoch.de,chip.de,clever-tanken.de,desired.de,donnerwetter.de,fanfiktion.de,focus.de,formel1.de,frustfrei-lernen.de,gewinnspiele.tv,giga.de,gut-erklaert.de,kino.de,messen.de,nickles.de,nordbayern.de,spielfilm.de,teltarif.de,unsere-helden.com,weltfussball.at,watson.de,moviepilot.de,mactechnews.de,sport1.de,welt.de##+js(rmnt, script, DisplayAcceptableAdIfAdblocked)
!#endif
||giga.de/special/gutscheine/*.png$script,1p
||kino.de/mages/*.png$script,1p
||teltarif.de/img/$script,1p
.de/bilder/*.jpg|$script,1p
.at/bilder/*.jpg|$script,1p
.de/image/*.gif|$script,1p
teltarif.de,kino.de,desired.de,giga.de##img[referrerpolicy="unsafe-url"][src^="/img/"][src$=".jpg"]
wetter.*##+js(nostif, (null), 10)
tagesspiegel.de##+js(aopr, Notification)
newsbreak24.de##^script:has-text(===):has-text(/[\w\W]{14000}/)
t-online.de##+js(set, abp, false)
businessinsider.de##.slideshow__mobile-ad
businessinsider.de##.slideshow__middle-ad-container
businessinsider.de##.slideshow__desktop-ad:style(max-height:20px)
businessinsider.de##.bi-superbanner
businessinsider.de##.slideshow__ad
businessinsider.de##.bi-injected-ad
businessinsider.de##.adup-wrap
desired.de##.sad_banner
frustfrei-lernen.de##.noContentBannerArea
macworld.co.uk##.leaderBoardHolder
! https://www.reddit.com/r/uBlockOrigin/comments/a5g4uu/wallstreetonline_likewise_for_many_german_pages/
wallstreet-online.de##+js(nostif, userHasAdblocker)
bonedo.de##.banner
mtb-news.de##.mtbnews-forum__banner
newsbreak24.de##.aw-track-click
newsbreak24.de###adup1
transfermarkt.*##.noscript
! https://github.com/uBlockOrigin/uAssets/issues/10975
n-tv.de##+js(aopr, embedAddefend)
! To counter unnecessary exception filters
||adnxs.com^$important,domain=bz-berlin.de|metal-hammer.de|musikexpress.de|rollingstone.de|stylebook.de
||googlesyndication.com^$script,important,domain=autobild.de|metal-hammer.de|musikexpress.de|rollingstone.de
||sascdn.com^$script,important,domain=autobild.de|metal-hammer.de|musikexpress.de|rollingstone.de
||smartadserver.com^$script,important,domain=metal-hammer.de|musikexpress.de|rollingstone.de|welt.de
@@||11freunde.de/sites/all/themes/elf/gujAd/gujAd.js$domain=11freunde.de,badfilter
@@||g.doubleclick.net/gpt/pubads_impl_$script,domain=11freunde.de|auto-motor-und-sport.de|brigitte.de|gala.de|geo.de|hardwareluxx.de|hbf-info.de|kochbar.de|n-tv.de|notebooksbilliger.de|rakuten.at|rakuten.de|rtl.de|stern.de|welt.de|zalando.de,badfilter
abendzeitung-muenchen.de##.wtc-wg-plugilo-connector
boerse-online.de##.center_top_bar
wetter.de##.outbrain-ad-slot
||iframe.chefkoch.de/amp/online-food-trade/rewe/$frame
mathebibel.de###banner-bottom
/\.de\/[a-z]{10,18}\.js$/$script,1p,strict1p,match-case,domain=capital.de|essen-und-trinken.de|geo.de|eltern.de
! https://github.com/uBlockOrigin/uAssets/issues/12360 VRM anti adblock
! https://github.com/uBlockOrigin/uAssets/issues/6541#issuecomment-1093665401
! https://github.com/uBlockOrigin/uAssets/issues/12962
@@*$ghide,domain=allgemeine-zeitung.de|buffed.de|buerstaedter-zeitung.de|echo-online.de|gamezone.de|lampertheimer-zeitung.de|lauterbacher-anzeiger.de|main-spitze.de|oberhessische-zeitung.de|wiesbadener-kurier.de|wormser-zeitung.de
! https://github.com/uBlockOrigin/uAssets/issues/11915#issuecomment-1407167951
echo-online.de##.mainFooter__ccePosition
echo-online.de##.recommendations__cceWidget
echo-online.de##.storyElementWrapper__container:has(> [data-testid="storyElementWrapper-cceWidget-element"])
echo-online.de##.swiper-slide [data-testid="topStories-cardSlider-ad"]:upward(.swiper-slide)
echo-online.de##.teaserGrid > div:has(.nativeAd)
echo-online.de##div.frontpageOverview__child
allgemeine-zeitung.de,buerstaedter-zeitung.de,echo-online.de,lampertheimer-zeitung.de,lauterbacher-anzeiger.de,main-spitze.de,oberhessische-zeitung.de,wiesbadener-kurier.de,wormser-zeitung.de##.adSlot, .loadingBanner
berliner-zeitung.de##[class^="ad-slot"]
berliner-zeitung.de##[class^="outbrain"]
! breakage
@@||scdn.cxense.com/cx.cce.js$script,domain=allgemeine-zeitung.de|buerstaedter-zeitung.de|echo-online.de|lampertheimer-zeitung.de|lauterbacher-anzeiger.de|main-spitze.de|oberhessische-zeitung.de|wiesbadener-kurier.de|wormser-zeitung.de
@@||api.cxense.com/public/widget/data$xhr,domain=allgemeine-zeitung.de|buerstaedter-zeitung.de|echo-online.de|lampertheimer-zeitung.de|lauterbacher-anzeiger.de|main-spitze.de|oberhessische-zeitung.de|wiesbadener-kurier.de|wormser-zeitung.de
! Yavli ads
*.jpg$script,domain=allthingsvegas.com|clashdaily.com|madworldnews.com|politicalcowboy.com|reviveusa.com|sonsoflibertymedia.com|teltarif.de|themattwalshblog.com|videogamesblogger.com
! https://www.reddit.com/r/uBlockOrigin/comments/12hq3us/
*$script,3p,denyallow=aghtag.tech|agorahtag.tech|brid.tv|cloudflare.com|cloudflare.net|consensu.org|enetscores.com|etop.ro|facebook.net|fastly.net|fastlylb.net|fbcdn.net|fontawesome.com|google.com|googleapis.com|gstatic.com|hcaptcha.com|hwcdn.net|instagram.com|jquery.com|jsdelivr.net|jwpcdn.com|mrf.io|onnetwork.tv|pahtzh.tech|quantcast.com|recaptcha.net|wall-street.ro|ziareromania.ro,domain=ziare.com|cancan.ro|ciao.ro|gandul.ro|prosport.ro|descopera.ro|csid.ro|raziculacrimi.ro|go4games.ro|wall-street.ro|9am.ro
*$script,3p,denyallow=anycast.me|cloudflare.com|cloudflare.net|consensu.org|consentframework.com|facebook.net|fastly.net|fastlylb.net|fbcdn.net|google.com|googleapis.com|gstatic.com|hcaptcha.com|hwcdn.net|jquery.com|jsdelivr.net|mrf.io|priice.net|sirdata.fr|twitter.com|recaptcha.net|x.com,domain=lebigdata.fr|montjeuturf.net
*$script,3p,denyallow=cloudflare.com|cloudflare.net|consensu.org|facebook.net|fastly.net|fastlylb.net|fbcdn.net|google.com|googleapis.com|gstatic.com|hcaptcha.com|hwcdn.net|jquery.com|jsdelivr.net|jwpcdn.com|recaptcha.net|sharethis.com|tradingview.com|twitter.com|x.com,domain=beforeitsnews.com
! https://github.com/uBlockOrigin/uAssets/issues/18430
*$script,domain=amgreatness.com,3p,denyallow=spreaker.com|starfield.ai
/^https?:\/\/.*\/easylist\/[0-9]{5}/
*banner$domain=beforeitsnews.com,image
||jeengweb.com^$3p
! https://github.com/uBlockOrigin/uBlock-issues/issues/2858
dcdirtylaundry.com,ipatriot.com,newser.com,politicalcowboy.com##+js(aost, Math, onerror)
! aupetitparieur.com,allthingsvegas.com,beforeitsnews.com,concomber.com,conservativebrief.com,conservativefiringline.com,dailylol.com,funnyand.com,letocard.fr,mamieastuce.com,meilleurpronostic.fr,patriotnationpress.com,toptenz.net,vitamiiin.com,writerscafe.org,populist.press,dailytruthreport.com,livinggospeldaily.com,first-names-meanings.com,welovetrump.com,thehayride.com,thelibertydaily.com,thepoke.co.uk,thepolitistick.com,theblacksphere.net,shark-tank.com,naturalblaze.com,greatamericanrepublic.com,dailysurge.com,truthlion.com,flagandcross.com,westword.com,republicbrief.com,freedomfirstnetwork.com,phoenixnewtimes.com,clashdaily.com,madworldnews.com,reviveusa.com,sonsoflibertymedia.com,videogamesblogger.com,topminceur.fr,lovezin.fr,protrumpnews.com,thepalmierireport.com,kresy.pl,thepatriotjournal.com,gellerreport.com,wltreport.com,miaminewtimes.com,politicalsignal.com,rightwingnews.com,bigleaguepolitics.com,comicallyincorrect.com##+js(aost, Math.random, injectedScript)
telexplorer.com.ar##+js(aost, Math.random, /injectedScript.*inlineScript/)
designbump.com,thedesigninspiration.com##+js(aost, Math.random, /(?=.*onerror)(?=^(?!.*(https)))/)
! https://github.com/uBlockOrigin/uAssets/issues/19808
!#if cap_html_filtering
aupetitparieur.com,allthingsvegas.com,100percentfedup.com,beforeitsnews.com,concomber.com,conservativebrief.com,conservativefiringline.com,dailylol.com,funnyand.com,letocard.fr,mamieastuce.com,meilleurpronostic.fr,patriotnationpress.com,toptenz.net,vitamiiin.com,writerscafe.org,populist.press,dailytruthreport.com,livinggospeldaily.com,first-names-meanings.com,welovetrump.com,thehayride.com,thelibertydaily.com,thepoke.co.uk,thepolitistick.com,theblacksphere.net,shark-tank.com,naturalblaze.com,greatamericanrepublic.com,dailysurge.com,truthlion.com,flagandcross.com,westword.com,republicbrief.com,freedomfirstnetwork.com,phoenixnewtimes.com,designbump.com,clashdaily.com,madworldnews.com,reviveusa.com,sonsoflibertymedia.com,thedesigninspiration.com,videogamesblogger.com,protrumpnews.com,thepalmierireport.com,kresy.pl,thepatriotjournal.com,gellerreport.com,thegatewaypundit.com,wltreport.com,miaminewtimes.com,politicalsignal.com,rightwingnews.com,bigleaguepolitics.com,comicallyincorrect.com##^script:has-text(/==undefined.*body/)
!#else
aupetitparieur.com,allthingsvegas.com,100percentfedup.com,beforeitsnews.com,concomber.com,conservativebrief.com,conservativefiringline.com,dailylol.com,funnyand.com,letocard.fr,mamieastuce.com,meilleurpronostic.fr,patriotnationpress.com,toptenz.net,vitamiiin.com,writerscafe.org,populist.press,dailytruthreport.com,livinggospeldaily.com,first-names-meanings.com,welovetrump.com,thehayride.com,thelibertydaily.com,thepoke.co.uk,thepolitistick.com,theblacksphere.net,shark-tank.com,naturalblaze.com,greatamericanrepublic.com,dailysurge.com,truthlion.com,flagandcross.com,westword.com,republicbrief.com,freedomfirstnetwork.com,phoenixnewtimes.com,designbump.com,clashdaily.com,madworldnews.com,reviveusa.com,sonsoflibertymedia.com,thedesigninspiration.com,videogamesblogger.com,protrumpnews.com,thepalmierireport.com,kresy.pl,thepatriotjournal.com,gellerreport.com,thegatewaypundit.com,wltreport.com,miaminewtimes.com,politicalsignal.com,rightwingnews.com,bigleaguepolitics.com,comicallyincorrect.com##+js(rmnt, script, /==undefined.*body/)
!#endif
appteka.store##+js(aost, Math.random, /injectedScript|blob/)
||rddywd.com^$image,redirect=1x1.gif
@@||rddywd.com/advertising.js$script
@@||wltreport.com^$image,1p
! https://github.com/NanoMeow/QuickReports/issues/2493
newser.com##+js(aeld, load, Object)
funnyand.com##.ad-unit-desktop
conservativebrief.com###main-box-3
conservativebrief.com###main-box-5
conservativebrief.com###main-box-7
conservativebrief.com##.ai-attributes
conservativebrief.com##[id^="vuukle-ad-"]
conservativebrief.com##.ai_widget
conservativebrief.com###vuukle-powerbar
beforeitsnews.com##[src*="/banner"]
politicalcowboy.com##.dsk-box-ad-e
politicalcowboy.com##.dsk-box-ad-a
truthlion.com##.ad-banner-revcontent
westword.com##.AirBillboardInlineContentresponsive
gellerreport.com##.__hinit
! https://adblockplus.org/forum/viewtopic.php?f=2&t=43192
! Users should not have to punch holes in their blockers if it can be avoided.
*/fuckadblock-$script,redirect=fuckadblock.js-3.2.0:5
*/fuckadblock.$script,redirect=fuckadblock.js-3.2.0:5
! https://github.com/gorhill/uBlock/issues/1271
! https://forums.lanik.us/viewtopic.php?f=62&t=40409
*/blockadblock.$script,redirect=fuckadblock.js-3.2.0:5
*/blockadblock-$script,redirect=fuckadblock.js-3.2.0:5
! https://github.com/uBlockOrigin/uAssets/issues/1551
! https://github.com/uBlockOrigin/uAssets/issues/1554
*/wp-adblock-$script,redirect=fuckadblock.js-3.2.0:5
! https://github.com/gorhill/uBlock/issues/949
! https://github.com/uBlockOrigin/uAssets/issues/6541#issuecomment-1012435405
||s3.amazonaws.com/homad-global-configs.schneevonmorgen.com/hd-main.js$script,domain=autobild.de|cinema.de|computerbild.de|cdnapi.kaltura.com|focus.de|spieleaffe.de|sueddeutsche.de,redirect=hd-main.js
||svonm.com/hd-main.js$script,redirect=hd-main.js,domain=cinema.de|cdnapi.kaltura.com
tvspielfilm.de##.promo-box
tvtoday.de##+js(nosiif, fireEvent, 500)
@@||tvtoday.de^$ghide
! https://forums.lanik.us/viewtopic.php?p=129561#p129561
@@||a.bf-ad.net/makabo/ads_fol_init.js$script,domain=chip.de
! https://github.com/uBlockOrigin/uAssets/issues/6587
||chip.de/*&$script,1p
chip.de##.js_download_button:has(> a.Download-Button--Free[href*="withinstaller"][href*="lastchanged"])
! https://github.com/uBlockOrigin/uAssets/issues/7589
chip.de##+js(json-prune, enabled, force_disabled)
##[href*="/afu.php"]
! https://github.com/gorhill/uBlock/issues/1428
onrpg.com##a[href*="mmo-it.com/"]
onrpg.com##[href^="http://server.cpmstar.com/click.aspx"]
onrpg.com###onrpg-hotbox-widget
! https://github.com/uBlockOrigin/uAssets/issues/5156
||adnxs.com/*/sport1.js$script,redirect=noopjs,domain=sport1.de
||acdn.adnxs.com/as/1h/pages/sport1_mediathek.js$script,redirect=noopjs,domain=sport1.de
||asadcdn.com/adlib/*$script,redirect=noopjs,domain=sport1.de
@@||tag.aticdn.net^$script,domain=sport1.de
@@||asadcdn.com/adlib/pages/sport1.js$script,domain=sport1.de
sport1.de##+js(aeld, load, hard_block)
sport1.de##.s1-ad
sport1.de##strong:has-text(/anzeige/i)
! https://adblockplus.org/forum/viewtopic.php?f=10&t=44887
vaughn.live##+js(nosiif, header_menu_abvs, 10000)
vaughn.live##.vs_v9_stream_content_abvs
vaughn.live##.vs_v9_header_menu_abvs
vaughn.live##div[id$="-ad"][id^="vs_v9_"]
! Computers seizing thanks to these moronic scripts leading to system-wide out
! of memory condition
! https://github.com/gorhill/uBlock/issues/1449
||twnmm.com/js/*/adobe_audience_manager$script,redirect=noopjs
! https://forums.informaction.com/viewtopic.php?f=10&t=21675
! https://github.com/uBlockOrigin/uAssets/issues/6221
||twnmm.com/js/*/dfpad/*$script,redirect=noopjs
! https://github.com/uBlockOrigin/uAssets/issues/362
! https://github.com/uBlockOrigin/uAssets/issues/15820
allmusic.com##+js(no-fetch-if, adsbygoogle)
allmusic.com##.advertising
! https://github.com/NanoMeow/QuickReports/issues/144
redtube.*###paid_tabs_list
! https://github.com/uBlockOrigin/uAssets/issues/7164
pornhub.*##div[id^="customSkin"]
pornhub.*##div.container:style(margin-top: 0px !important)
! https://github.com/uBlockOrigin/uAssets/issues/356
! https://forums.lanik.us/viewtopic.php?p=120148#p120148
youjizz.com##+js(noeval)
youjizz.com###desktopFooterPr
youjizz.com##.top_pr
! https://forums.lanik.us/viewtopic.php?f=62&t=31285&start=30
||indiatimes.com/detector$script
||static.clmbtech.com^$script,important,domain=indiatimes.com
||chartbeat.com/js/chartbeat.js$script,important,domain=indiatimes.com
||tags.crwdcntrl.net^$script,important,domain=indiatimes.com
! https://github.com/uBlockOrigin/uAssets/issues/149
economictimes.indiatimes.com##.active > ul > li:has-text(Ad:)
indiatimes.com##[onclick] .btxt:has-text(/Ad/):xpath(../../..)
indiatimes.com#@#a[onclick*="/click.htm?"]
indiatimes.com##[onclick] p:has-text(/Ad/):xpath(../../..)
indiatimes.com,samayam.com##[onclick] p:matches-css-before(content:/Ad /):xpath(../..):not(p:has-text(/MAHA/i)):not(p:has-text(/Times/i))
samayam.com##:xpath(//span[(text()='Ad')]/../../..)
m.economictimes.com##H2:has-text(/Promoted/) + DIV
m.economictimes.com##h2:has-text(/Promoted/)
||m.economictimes.com/mpetat/commons/images/rbc-red.png$image
economictimes.indiatimes.com##div h2:has(span:matches-css-before(content: /Sponsored/))
economictimes.indiatimes.com##div h2:has(span:matches-css-before(content: /Sponsored/)) + div
indiatimes.com##h2:has-text(/Promoted/) + div
indiatimes.com##h2:has-text(/Promoted/)
indiatimes.com##.wzrk-overlay
||media.indiatimes.in/idthat/commons/images/rbc-gray.png$image
indiatimes.com##[onclick] h5:has-text(/Ad/):xpath(../../..)
m.timesofindia.com##.brand_ctn:has-text(/Ad:/):xpath(../..)
m.timesofindia.com##span:has-text(/Ad:/):xpath(../..)
m.timesofindia.com##p:has-text(/Ad:/):xpath(../../..)
indiatimes.com##p:matches-css(background-image: /colombia-icon/):xpath(../..)
indiatimes.com##div:matches-css(background-image: /colombia_/):xpath(../..)
m.timesofindia.com##.asAffiliate
seithy.com##.slick-track
indiatimes.com##.PPD_ADS_JS
timesofindia.indiatimes.com##+js(set, nsShowMaxCount, 0)
||assets.toiimg.com/affiliates/sdk/v2.js$script,domain=indiatimes.com|timesofindia.com
||assets.toiimg.com/affiliates/sdk/v1.js$script,domain=indiatimes.com|timesofindia.com
timesofindia.indiatimes.com##.nonAppView > .mPws3
timesofindia.indiatimes.com##div[class*="personaliseWidgetLoader"]
! https://github.com/uBlockOrigin/uAssets/issues/22603
timesofindia.indiatimes.com##.sidebar_ad_fix .imageBanner
timesofindia.indiatimes.com###header-masthead
! punemirror .com banner ads
||punemirror.com/api/v1$xhr,1p
! https://github.com/uBlockOrigin/uAssets/issues/4056
||malayalam.samayam.com/*/amazon_widget.cms?type=amazondeal$frame
! interstitial page
economictimes.indiatimes.com##+js(set, objVc.interstitial_web,'')
! https://github.com/uBlockOrigin/uAssets/issues/19766
economictimes.indiatimes.com##+js(nosiif, adb)
! https://github.com/uBlockOrigin/uAssets/issues/168#issuecomment-726134068
maharashtratimes.com##.ad1
maharashtratimes.com##.colombia
*/pwafeeds/amazon_$frame
||imasdk.googleapis.com/js/sdkloader/ima3.js$script,domain=indiatimes.com|iamgujarat.com|vijaykarnataka.com|tamil.samayam.com|telugu.samayam.com|malayalam.samayam.com,redirect=google-ima.js
||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima.js,domain=m.economictimes.com
||dealspakki.com^$frame,domain=eisamay.com|iamgujarat.com|indiatimes.com|maharashtratimes.com|samayam.com|vijaykarnataka.com
||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima.js,domain=maharashtratimes.com,important
! ads placeholders
eisamay.com,indiatimes.com,samayam.com,vijaykarnataka.com##.wdt-taboola
eisamay.com,indiatimes.com,samayam.com,vijaykarnataka.com##.pwa-deals.wdt_amz
eisamay.com,indiatimes.com,samayam.com,vijaykarnataka.com##div[class="news-card col4"]
eisamay.com,indiatimes.com,samayam.com,vijaykarnataka.com##.advertorialwrapper
eisamay.com,indiatimes.com,samayam.com,vijaykarnataka.com##.atf-wrapper
eisamay.com,indiatimes.com,samayam.com,vijaykarnataka.com##.top-atf-enabled-wrapper
indiatimes.com##.article_first_ad
health.economictimes.indiatimes.com##.layer-overlay
health.economictimes.indiatimes.com##.article-detail-ad-slot
! https://github.com/AdguardTeam/AdguardFilters/issues/180466
educationtimes.com##div[class]:has(> div[class] > div[id^="div-gpt-ad"])
! https://github.com/uBlockOrigin/uAssets/issues/88
! https://github.com/uBlockOrigin/uAssets/issues/211
! https://github.com/uBlockOrigin/uAssets/issues/223
! https://github.com/uBlockOrigin/uAssets/issues/622
! https://github.com/uBlockOrigin/uAssets/issues/753
! https://github.com/uBlockOrigin/uAssets/issues/1404
||svonm.com/hd-main.js$script,redirect=hd-main.js,domain=kicker.de|myspass.de|spielaffe.de|tele5.de
! https://github.com/uBlockOrigin/uAssets/issues/70
! https://github.com/uBlockOrigin/uAssets/issues/16999
aranzulla.it##+js(aopr, navigator.userAgent)
*$script,domain=aranzulla.it,redirect-rule=noopjs
aranzulla.it##.banner:remove()
aranzulla.it##[id^="ad"]:remove()
! https://github.com/uBlockOrigin/uAssets/issues/66
||paywall.folha.uol.com.br/wall.jsonp?callback=paywall.inicio$domain=blogfolha.uol.com.br|educacao.uol.com.br|folha.uol.com.br
! https://github.com/uBlockOrigin/uAssets/issues/124
||jsuol.com.br/*/detectadblock/$script,important,domain=uol.com.br
! https://github.com/uBlockOrigin/uAssets/issues/765
www.uol##.content-lightbox
www.uol##.overlay-lightbox
uol.com.br##.bg-banner
uol.com.br##[id^="banner-300x250"]:remove()
! https://github.com/gorhill/uBlock/issues/1879
||popads.net/pop.js$script,redirect=popads.net.js
! https://forums.lanik.us/viewtopic.php?f=62&t=31357&p=100144
@@||indiatoday.intoday.in/video/$ghide
! https://github.com/reek/anti-adblock-killer/issues/1698
! https://github.com/uBlockOrigin/uAssets/issues/102
businesstoday.in###zedoads1:style(height: 1px !important)
businesstoday.in###zedoads2:style(height: 1px !important)
businesstoday.in###zedotopnavads:style(height: 1px !important)
businesstoday.in###zedotopnavads1:style(height: 1px !important)
businesstoday.in###adbocker_alt
! https://github.com/uBlockOrigin/uAssets/issues/102#issuecomment-241239514
businesstoday.in##.adblocker-container
businesstoday.in###story-maincontent:style(display: block !important)
! https://adblockplus.org/forum/viewtopic.php?f=10&t=46010
! https://github.com/uBlockOrigin/uAssets/issues/102
indiatoday.in,indiatoday.intoday.in##.ad_bn.row
indiatoday.in,intoday.in###adbocker_alt
indiatoday.in,intoday.in###zedoads1:style(height: 1px !important)
indiatoday.in,intoday.in###zedoads2:style(height: 1px !important)
indiatoday.in,intoday.in##.adblockcontainer:style(display: block !important)
! https://github.com/uBlockOrigin/uAssets/issues/102#issuecomment-239625264
||zedo.com^$script,important,domain=indiatoday.in|intoday.in
||googlesyndication.com^$script,important,domain=indiatoday.in|intoday.in
! https://github.com/uBlockOrigin/uAssets/issues/98
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion###stream_pagelet div[id^="hyperfeed_story_id_"]:has(a.uiStreamSponsoredLink)
! "People You May Know": EasyList tries to block these, might as well block them fully
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion###stream_pagelet div[id^="hyperfeed_story_id_"]:if(h6:has-text(People You May Know))
touch.facebook.com,mtouch.facebook.com,x.facebook.com,iphone.facebook.com,m.beta.facebook.com,touch.beta.facebook.com,mtouch.beta.facebook.com,x.beta.facebook.com,iphone.beta.facebook.com,m.facebook.com,b-m.facebook.com,mobile.facebook.com,touch.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,mtouch.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,x.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,iphone.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,touch.beta.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,m.facebook.com,m.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,b-m.facebook.com,b-m.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,mobile.facebook.com,mobile.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##article:has(footer > div > div > a[href^="/friends/center/?fb_ref="])
! https://www.reddit.com/r/uBlockOrigin/comments/58o3k6/facebook_ads_solution/
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##.ego_section:has(a.adsCategoryTitleLink)
! https://github.com/uBlockOrigin/uAssets/issues/507
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion###stream_pagelet [id^="hyperfeed_story_id_"]:has(span._4dcu)
! https://github.com/uBlockOrigin/uAssets/issues/722
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##.ego_column:if(a[href^="/campaign/landing"])
! https://forums.lanik.us/viewtopic.php?p=128997#p128997
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##.ego_section:if(a[href^="/ad_campaign"])
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##.userContentWrapper:has(a[href*="/ads/"]):not(:has(a[href*="/ads/preferences"]))
! https://github.com/uBlockOrigin/uAssets/issues/3367
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion#@#div[id^="hyperfeed_story_id_"]:has(a[href*="utm_campaign"])
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##.userContentWrapper>div div>span>span:has-text(/^Suggested Post$/)
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##div[id^="hyperfeed_story_id_"]:has(div > span:has(abbr .timestampContent):matches-css(display: none))
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##.ego_section:has(a[href*="campaign_id"])
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##div[id^=hyperfeed_story_id_]:has(span[data-ft="{\"tn\":\"j\"}"])
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion#?#.pagelet-group .pagelet:has(a:has-text(/Sponsored|Create ad|Crear un anuncio|Publicidad/))
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-1367973454
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##div[role="complementary"] div:not([class]):not([id]) > span:not([class]):not([id]):not([aria-labelledby])
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##div[role="region"] + div[role="main"] div[role="article"] div[style="border-radius: max(0px, min(8px, ((100vw - 4px) - 100%) * 9999)) / 8px;"] > div[class]:not([class*=" "])
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-1416733062
! !#if env_chromium
! facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##html[lang="en"] div[aria-posinset] svg[style$="width: 56.8906px;"] use:upward(div[aria-posinset])
! facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##html[lang="pl"] div[aria-posinset] svg[style$="width: 78.5465px;"] use:upward(div[aria-posinset])
! facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##html[lang="vi"] div[aria-posinset] svg[style$="width: 65.0684px;"] use:upward(div[aria-posinset])
! !#endif
! !#if env_firefox
! facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##html[lang="en"] div[aria-posinset] svg[style$="width: 59px;"] use:upward(div[aria-posinset])
! facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##html[lang="pl"] div[aria-posinset] svg[style$="width: 80.8px;"] use:upward(div[aria-posinset])
! facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##html[lang="vi"] div[aria-posinset] svg[style$="width: 65px;"] use:upward(div[aria-posinset])
! !#endif
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##div[aria-posinset]:has(a[aria-label="広告"]):style(height: 0 !important; overflow: hidden !important;)
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-2094725581
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##:matches-path(/^\/(\?[a-z]+=\w+)?$/) div[aria-posinset] :is(h3, h4) span > a[href]:not([href^="/groups/"]):not([href*="section_header_type"]):matches-attr(href="/__cft__\[0\]=[-\w]{290,}/"):upward(div[aria-posinset]):style(height: 0 !important; overflow: hidden !important;)
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##div[aria-describedby]:not([aria-posinset]) :is(h3, h4) span > a[href]:not([href^="/groups/"]):not([href*="section_header_type"]):matches-attr(href="/__cft__\[0\]=[-\w]{290,}/"):upward(div[aria-describedby]):style(height: 0 !important; overflow: hidden !important;)
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion###watch_feed div:not([class]) > div:not([class]) div[class] span[class] > a span[aria-labelledby]:has(> span[style="display: flex;"] > span[class]:has-text(/^S$/)):has(> span[style="display: flex;"] > span[class]:has-text(/^p$/)):has(> span[style="display: flex;"] > span[class]:has-text(/^d$/)):upward(div:not([class]) > div:not([class])):style(height: 0 !important; overflow: hidden !important;)
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion###watch_feed div:not([class]) > div:not([class]) div[class] span[class] > a[aria-label="広告"]:upward(div:not([class]) > div:not([class])):style(height: 0 !important; overflow: hidden !important;)
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion###watch_feed div:not([class]) > div:not([class]) div[class] [class] > a[href*="utm_source=facebook"] span[class] > span[class][style*="-webkit-line-clamp"]:has-text(広告):upward(div:not([class]) > div:not([class])):style(height: 0 !important; overflow: hidden !important;)
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-2094875891
facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##:matches-path(/search/) div[role="article"] span > a[href]:not([href^="/groups/"]):not([href*="section_header_type"]):matches-attr(href="/__cft__\[0\]=[-\w]{265,}/"):upward([role="article"]):style(height: 0 !important; overflow: hidden !important;)
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-1993620105
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-1999029976
! https://www.reddit.com/r/uBlockOrigin/comments/1bjfs9x/facebook_loading_slow/kvraphx/
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-2048528598
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-2054573634
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-2232038379
!#if env_chromium
web.facebook.com,www.facebook.com##+js(json-prune, require.0.3.0.__bbox.require.[].3.1.__bbox.result.data.node, require.0.3.0.__bbox.require.[].3.1.__bbox.result.data.node.sponsored_data.ad_id)
!#else
web.facebook.com,www.facebook.com##+js(json-prune, require.0.3.0.__bbox.require.[].3.[-].__bbox.result.data.node.sponsored_data.ad_id)
!#endif
! https://github.com/uBlockOrigin/uAssets/issues/3367#issuecomment-2095001151
web.facebook.com,www.facebook.com##+js(json-prune, require.0.3.0.__bbox.require.[].3.1.__bbox.result.data.serpResponse.results.edges.[-].relay_rendering_strategy.view_model.story.sponsored_data.ad_id)
! https://www.facebook.com/marketplace/
! https://www.facebook.com/watch/
!#if cap_html_filtering
||facebook.com/api/graphql/$xhr,replace=/\{"node":\{"role":"SEARCH_ADS"[^\n]+?cursor":[^}]+\}/{}/g,domain=web.facebook.com|www.facebook.com
||facebook.com/api/graphql/$xhr,replace=/\{"node":\{"__typename":"MarketplaceFeedAdStory"[^\n]+?"cursor":(?:null|"\{[^\n]+?\}"|[^\n]+?MarketplaceSearchFeedStoriesEdge")\}/{}/g,domain=web.facebook.com|www.facebook.com
||facebook.com/api/graphql/$xhr,replace=/\{"node":\{"__typename":"VideoHomeFeedUnitSectionComponent"[^\n]+?"sponsored_data":\{"ad_id"[^\n]+?"cursor":null\}/{}/,domain=web.facebook.com|www.facebook.com
!#else
web.facebook.com,www.facebook.com##+js(trusted-replace-xhr-response, /\{"node":\{"role":"SEARCH_ADS"[^\n]+?cursor":[^}]+\}/g, {}, /api/graphql)
web.facebook.com,www.facebook.com##+js(trusted-replace-xhr-response, /\{"node":\{"__typename":"MarketplaceFeedAdStory"[^\n]+?"cursor":(?:null|"\{[^\n]+?\}"|[^\n]+?MarketplaceSearchFeedStoriesEdge")\}/g, {}, /api/graphql)
web.facebook.com,www.facebook.com##+js(trusted-replace-xhr-response, /\{"node":\{"__typename":"VideoHomeFeedUnitSectionComponent"[^\n]+?"sponsored_data":\{"ad_id"[^\n]+?"cursor":null\}/, {}, /api/graphql)
!#endif
web.facebook.com,www.facebook.com##+js(json-prune, require.0.3.0.__bbox.require.[].3.1.__bbox.result.data.node, require.0.3.0.__bbox.require.[].3.1.__bbox.result.data.node.story.sponsored_data.ad_id)
! https://www.facebook.com/marketplace/category/home/
web.facebook.com,www.facebook.com##+js(json-prune, require.0.3.0.__bbox.require.[].3.1.__bbox.result.data.marketplace_search.feed_units.edges.[-].node.story.sponsored_data.ad_id)
! https://www.facebook.com/marketplace/category/vehicles
web.facebook.com,www.facebook.com##+js(json-prune, require.0.3.0.__bbox.require.[].3.1.__bbox.result.data.viewer.marketplace_feed_stories.edges.[-].node.story.sponsored_data.ad_id)
web.facebook.com,www.facebook.com###seo_pivots ~ div > div[style^="max-width"] > div[class] > div[style^="max-width"]:has(a[href^="/ads/about/?"])
! https://www.reddit.com/r/uBlockOrigin/comments/1e4e9c1/fb_video_ads_is_getting_way_out_of_hand/ldel4vi/
web.facebook.com,www.facebook.com##+js(json-prune-xhr-response, data.viewer.instream_video_ads data.scrubber, , propsToMatch, /api/graphql)
!facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##div[role="feed"] > div[class]:has([data-ad-preview])
! https://forums.lanik.us/viewtopic.php?f=62&t=31322&start=30
ndtv.com###ndtv-myModal
ndtv.com##body:style(overflow: auto !important)
! https://github.com/uBlockOrigin/uAssets/issues/108
wetteronline.*##+js(aopr, __eiPb)
wetteronline.*##^script:has-text(runCount)
wetteronline.*###topcontainer
wetteronline.de###woRect
wetteronline.de###woCsiAdContent
! https://github.com/uBlockOrigin/uAssets/issues/104
||imasdk.googleapis.com/js/sdkloader/ima3.js$script,domain=m.timesofindia.com,redirect=google-ima.js
! https://github.com/uBlockOrigin/uAssets/issues/176
! https://github.com/NanoAdblocker/NanoFilters/issues/57
@@||m.photos.timesofindia.com^$ghide
||static.toiimg.com/ad-banner*/photo/*$image,redirect=2x2.png,domain=m.timesofindia.com
m.timesofindia.com##.adsinview
timesofindia.com##+js(aopr, detector)
timesofindia.indiatimes.com##+js(aeld, , adb)
m.timesofindia.com,timesofindia.indiatimes.com##+js(nostif, adb)
! https://github.com/NanoMeow/QuickReports/issues/1905
||indiatimes.com^$image,redirect-rule=1x1.gif
! https://github.com/uBlockOrigin/uAssets/issues/104
m.aajtak.in##body > #adbocker_alt.adblocker-page
m.aajtak.in##body > .secArticleTitle:style(display: block !important)
m.aajtak.in##body > .pubTime:style(display: block !important)
m.aajtak.in##body > .secArticleImage:style(display: block !important)
m.aajtak.in##body > .storyBody:style(display: block !important)
/amazon_products_prod.js$script,domain=aajtak.in
! https://forums.lanik.us/viewtopic.php?p=102620#p102620
amazon.*###s-results-list-atf > .s-result-item:has(> .s-item-container h5.s-sponsored-list-header)
! https://github.com/uBlockOrigin/uAssets/issues/1278
amazon.*###s-results-list-atf > .s-result-item:has(.s-item-container h5.s-sponsored-header)
! https://github.com/uBlockOrigin/uAssets/issues/399
amazon.*##.s-result-item:has(> .s-item-container > h5 .s-sponsored-info-icon)
! https://github.com/AdguardTeam/AdguardFilters/issues/83145
amazon.*##.s-widget:has(> [data-cel-widget^="MAIN"] > [data-cel-widget^="tetris"] > div[id^="CardInstance"][class^="_tetris-"])
! https://jbbs.shitaraba.net/bbs/read.cgi/internet/25463/1618326670/80 blank slide on top page
amazon.*##.a-carousel-card:has(> div > div[cel_widget_id^="adplacements:"]):remove()
! https://github.com/uBlockOrigin/uAssets/issues/12268
amazon.*##.AdHolder
! https://jbbs.shitaraba.net/bbs/read.cgi/internet/25463/1598352715/851
amazon.*###similarities_feature_div:has(span[id^="ad-feedback-text"])
! https://github.com/easylist/easylist/commit/73701244b11d5d916bef99627dbfb409e7e14e44
amazon.*##div[cel_widget_id="sims-consolidated-5_csm_instrumentation_wrapper"]
! https://github.com/uBlockOrigin/uAssets/issues/1347
motherless.com##+js(set, _ml_ads_ns, null)
motherless.com##+js(acs, jQuery, cookie)
! https://news.ycombinator.com/item?id=12677179
||x.shopsavvy.com^$3p
! https://github.com/uBlockOrigin/uAssets/issues/161
||uim.tifbs.net/js/*.js$script,redirect=noopjs,domain=gmx.*|web.de
! https://github.com/uBlockOrigin/uAssets/issues/6834
web.de##.main [data-ac]:empty
gmx.*##.main [data-ac]:empty
! https://github.com/uBlockOrigin/uAssets/issues/9083
web.de##.iba-acceptable:has-text(/Anzeige|Info/)
! https://github.com/uBlockOrigin/uAssets/issues/15422
*$image,redirect-rule=1x1.gif,domain=web.de
@@*$ghide,domain=web.de|gmx.*
web.de#@#.ad
web.de##.ad:style(position:absolute !important; left:-10000px !important; display:block !important; pointer-events: none !important;)
! https://github.com/uBlockOrigin/uAssets/issues/22834
||web.de/*/nonfriendlyiframe.html$frame,1p
web.de##+js(rmnt, script, '"Anzeige"')
web.de##div[data-service-slot-initialized]
! https://github.com/uBlockOrigin/uAssets/issues/8047
! https://github.com/uBlockOrigin/uAssets/issues/5532
! https://github.com/uBlockOrigin/uAssets/issues/5575
! https://github.com/uBlockOrigin/uBlock-issues/issues/630
! https://github.com/uBlockOrigin/uAssets/issues/6002
golem.de##+js(acs, showAds)
golem.de##+js(nostif, adBlockerDetected)
golem.de##+js(nostif, show)
||video.golem.de/*/scripts/radiant/homad$xhr,redirect=nooptext,domain=golem.de
golem.de##[href^="https://ads.golem.de/"]
golem.de##.sp-article:has(span:matches-css-before(content:/Anzeige/i))
golem.de##.list-articles>li:has(.icon-addy:matches-css-before(content: "Anzeige"))
golem.de##[data-article-id]:has([class]:matches-css-before(content:/ANZEIGE/))
! https://github.com/uBlockOrigin/uAssets/issues/7753
@@||bild.de^$ghide
bild.de#@##fullBanner
bild.de#@##powerplace
bild.de#@##subchannelBanner1_1
bild.de#@##subchannelBanner2_2
bild.de#@#.cbErotikContentbar15
bild.de#@#.contentbar
bild.de#@#.eyecatcher
bild.de#@#.footerbar
bild.de#@#.jetzt_aufnehmen
bild.de#@#.servicelinks
bild.de#@#.tea-rectangle
bild.de#@#.txe
bild.de#@#.yield
bild.de#@#.rectangle
bild.de#@#.fullbanner
bild.de#@#.ads
bild.de##div:matches-css-before(content:/Anzeige/i)
bild.de##.ad-wrapper
bild.de##aside[data-type="ad"]
! https://github.com/uBlockOrigin/uAssets/issues/8257
! https://www.reddit.com/r/uBlockOrigin/comments/jxrzda/
||tagger.opecloud.com^$xhr,redirect=noop.txt,domain=bild.de
bild.de##+js(aopr, SmartAdServerASMI)
! https://www.reddit.com/r/uBlockOrigin/comments/1gldn2v/bildde_adblockwall/
!#if cap_html_filtering
||bild.de^$doc,replace=/"adBlockWallEnabled":true/"adBlockWallEnabled":false/
!#else
bild.de##+js(rpnt, script, "adBlockWallEnabled":true, "adBlockWallEnabled":false)
!#endif
sport.bild.de#@#.ad-wrapper
! https://github.com/uBlockOrigin/uAssets/issues/8360
spiele.bild.de##+js(nano-stb, , 10000)
@@||imasdk.googleapis.com/js/sdkloader/ima3.js$script,xhr,domain=spiele.bild.de
spiele.bild.de##div[id^="ad-landingpage-"]
spiele.bild.de##div[id^="ad-gamepage-"]
spiele.bild.de##.ad-vertical-box
||servedby.adbility-media.com^$3p
! https://github.com/uBlockOrigin/uAssets/issues/9615
bild.de##.main-nav .utilities > li:style(margin-left:-0.5px !important)
! https://github.com/uBlockOrigin/uAssets/issues/174
! https://github.com/uBlockOrigin/uAssets/issues/4106
sueddeutsche.de##+js(aopr, _sp_._networkListenerData)
sueddeutsche.de##+js(aopw, SZAdBlockDetection)
sueddeutsche.de##+js(set, _sp_.config, undefined)
! https://github.com/uBlockOrigin/uAssets/issues/238
8muses.com##.a-image
8muses.com###content > div > .gallery > a.t-hover.c-tile:has(iframe[src^="/banner/"])
8muses.com##[href^="https://bit.ly/"]
! Popups triggered by webrtc
2ddl.*,allitebooks.*,bonstreams.net,convertinmp4.com,crictime.com,ddlvalley.me,dramamate.*,eztv.*,fluvore.com,kiss-anime.*,letmewatchthis.*,mac-torrents.com,mkvcage.*,nflstream.io,oceanoffgames.com,pastehere.xyz,sawlive.tv,skidrowcrack.com,toros.co,uptobox.com,yts.*,zooqle.*##+js(nowebrtc)
! https://github.com/uBlockOrigin/uAssets/issues/245
gamer.com.tw##img[onload="AntiAd.check(this)"]
gamer.com.tw##+js(aopr, AntiAd.check)
! https://github.com/uBlockOrigin/uAssets/issues/244
skidrowreloaded.com##+js(acs, open)
skidrowreloaded.com##+js(no-fetch-if, /^/)
! https://www.reddit.com/r/uBlockOrigin/comments/1eh8gsw/bypassing_ad_block_detected/
!#if cap_html_filtering
skidrowreloaded.com##^script:has-text(adserverDomain)
!#else
skidrowreloaded.com##+js(rmnt, script, adserverDomain)
!#endif
! skidrowcodexgames.com ads
skidrowcodexgames.com##+js(aopr, _pop)
skidrowcodexgames.com##[class^="aligncenter wp-image-"]
*$script,3p,denyallow=googleapis.com,domain=skidrowcodexgames.com
! Sourcepoint
! https://forums.lanik.us/viewtopic.php?f=62&t=34570
! https://github.com/uBlockOrigin/uAssets/issues/266
autobytel.com,cesoirtv.com,huffingtonpost.co.uk,huffingtonpost.com,moviefone.com,playboy.de##+js(aopw, _sp_)
faz.net##+js(acs, $, _sp_._networkListenerData)
eltern.de,essen-und-trinken.de,focus.de##+js(aopr, _sp_.mms.startMsg)
! https://github.com/jspenguin2017/uBlockProtector/issues/367
! https://github.com/uBlockOrigin/uAssets/issues/701
! https://github.com/uBlockOrigin/uAssets/issues/848
! https://forums.lanik.us/viewtopic.php?p=127088#p127088
! https://github.com/uBlockOrigin/uAssets/issues/1008
! https://github.com/NanoAdblocker/NanoFilters/issues/12
! https://github.com/uBlockOrigin/uAssets/issues/1442
! https://forums.lanik.us/viewtopic.php?f=62&t=40162
! https://github.com/uBlockOrigin/uAssets/issues/461
! https://github.com/uBlockOrigin/uAssets/issues/4076
! https://github.com/uBlockOrigin/uAssets/issues/5864
20min.ch,al.com,alphr.com,autoexpress.co.uk,bikeradar.com,blick.ch,chefkoch.de,cyclingnews.com,digitalspy.com,democratandchronicle.com,denofgeek.com,esgentside.com,evo.co.uk,exclusivomen.com,ft.com,gala.de,gala.fr,heatworld.com,itpro.co.uk,livingathome.de,masslive.com,maxisciences.com,metabomb.net,mlive.com,motherandbaby.co.uk,motorcyclenews.com,muthead.com,neonmag.fr,newyorkupstate.com,ngin-mobility.com,nj.com,nola.com,ohmirevista.com,ohmymag.*,oregonlive.com,pennlive.com,programme.tv,programme-tv.net,radiotimes.com,silive.com,simplyvoyage.com,stern.de,syracuse.com,theweek.co.uk,ydr.com##+js(aopr, _sp_._networkListenerData)
! https://github.com/uBlockOrigin/uAssets/issues/271
! https://forums.lanik.us/viewtopic.php?p=112285#p112285
car.com,codeproject.com,familyhandyman.com,goldderby.com,headlinepolitics.com,html.net,indiewire.com,marmiton.org,mymotherlode.com,nypost.com,realgm.com,tvline.com,wwd.com##+js(aopw, _sp_)
codeproject.com##+js(aopr, retrievalService)
! https://github.com/NanoMeow/QuickReports/issues/928
usatoday.com##+js(aopr, _sp_._networkListenerData)
usatoday.com##[aria-label="advertisement"]
usatoday.com##[data-gl-method="initTaboola"]
usatoday.com##.gnt_n:style(top: 0 !important; margin-top: 0 !important;)
familyhandyman.com##.ad
familyhandyman.com##.advertisement
familyhandyman.com##.cm-ad-unit-section
! https://github.com/uBlockOrigin/uAssets/issues/273
cwseed.com##+js(aopr, admrlWpJsonP)
! https://github.com/uBlockOrigin/uAssets/issues/278
pocketnow.com##+js(aopr, InstallTrigger)
! https://github.com/el1t/uBlock-Safari/issues/24
! https://github.com/uBlockOrigin/uAssets/commit/495baa68abad94e80bb3e21dbfbe6636f08cb10a#comments
! https://forums.lanik.us/viewtopic.php?p=145520#p145520
! https://github.com/NanoMeow/QuickReports/issues/3028
||adition.com^$important,domain=spiegel.de
@@||ad.yieldlab.net^$script,domain=spiegel.de,badfilter
||cdn.prod.www.spiegel.de/public/spon/generated/web/js/header*.js$script,1p
spiele.spiegel.de###ad-gamepage-top
spiele.spiegel.de##.ad
spiele.spiegel.de##div#ad-gamepage-bottom
spiegel.de##[data-area="affiliatebox"]
spiegel.de##[data-area="vouchers"]
! https://github.com/uBlockOrigin/uAssets/issues/289
! https://github.com/uBlockOrigin/uAssets/issues/2114
! https://github.com/uBlockOrigin/uAssets/issues/2262
! https://github.com/uBlockOrigin/uAssets/issues/2404
! https://github.com/uBlockOrigin/uAssets/issues/3640
quora.com##.PromptsList
quora.com##.AdBundle
quora.com##.AdStory
!#if env_mobile
quora.com##.top_slot
!#endif
quora.com##div[id$="_content_box"]
quora.com##.lower_slot
quora.com##[disable_auto_login*="True"]
quora.com##:xpath(//div[not(@class="ui_qtext_para") and contains(text(), 'ad by')]/parent::div/parent::div/parent::div[@id])
quora.com##:xpath(//div[not(@class="ui_qtext_para") and contains(text(), 'promoted') and contains(text(), 'by')]/parent::a/parent::div/parent::div/parent::div[@id])
quora.com##:xpath(//div[not(@class="ui_qtext_para") and contains(text(), 'Quora') and contains(text(), 'by') and contains(text(), 'Business')]/parent::a/parent::div/parent::div/parent::div[@id])
quora.com##.FeedStory.feed_item > div > div:has-text(/by Quora for Business/i)
quora.com##.Toggle.SimpleToggle.ToggleAnswerFooterWrapper > div:has-text(/Promoted/i)
quora.com##:xpath(//span[contains(text(), 'by')]/ancestor::*[contains(concat(' ', @class, ' '), ' external_link ')]/../../..)
quora.com##:xpath(//p[(text()='d')]/../../../../..)
! from abp cv list for https://github.com/uBlockOrigin/uAssets/issues/8032
quora.com##.u-margin-top--lg+div[class="UnifiedAnswerPagedList PagedListFoo unified"][id$="_paged_list"]
quora.com##.pagedlist_item > div[id$="_paged_list"]
quora.com##.answer_auto_expanded_comments + div > div.feed_expand
quora.com##.feedback_wrapper.hidden:not(.negative_action) + .FeedStory.HyperLinkFeedStory.feed_item
quora.com##div[class="question_main_col"] > div:nth-child(3) > div[class="UnifiedAnswerPagedList PagedListFoo unified"]
quora.com##div[class="pagedlist_item"] div[id*="paged_list"]
quora.com##.q-box.qu-borderAll>.q-box>div>div[class^="Box-sc-"]>div:not([class])
quora.com##.q-box.qu-borderTop>[class^="Box-sc-"]>div:not([class])
quora.com##div > [class^="Box-"] > div > .q-box.qu-pb--tiny.qu-pt--medium.qu-px--medium
quora.com##.qu-bg--white>[class^="Box-"] .qu-pt--medium
quora.com##.q-box.qu-borderTop>[class^="Box-"] .q-box.qu-pt--medium.qu-pb--tiny
quora.com##.q-box.qu-borderAll>.q-box>div:not([class="q-box"])>[class^="Box-"]
quora.com##.q-box.qu-borderAll.qu-bg--white>.q-box>div>[class="q-box "]>[class="q-box"]
quora.com##[class="q-box qu-borderTop"]>[class="q-box "]
quora.com##[class="q-box qu-bg--white"]>[class="q-box "]>[class="q-box"]
quora.com##.dom_annotate_multifeed_bundle_AdBundle
!www.quora.com##.q-box.qu-bg--white > span[data-nosnippet="true"] > .q-box
!www.quora.com##.qu-mb--small.qu-bg--white > .q-box > div > span[data-nosnippet="true"] > .q-box
!www.quora.com##.q-box.qu-borderTop > span[data-nosnippet="true"] > .q-box
!www.quora.com##span[data-nosnippet="true"] .q-box.qu-pb--tiny.qu-pt--medium
quora.com##div[class^="q-box dom_annotate_question_answer_item_"] .q-box.qu-borderTop:has(.dom_annotate_google_ad)
! https://www.reddit.com/r/uBlockOrigin/comments/8stv3y
! https://github.com/uBlockOrigin/uAssets/issues/2667
! https://github.com/uBlockOrigin/uAssets/issues/7220
eurogamer.net,rockpapershotgun.com,vg247.com##+js(aopw, yafaIt)
eurogamer.de,eurogamer.es,eurogamer.it,eurogamer.net,eurogamer.pt,rockpapershotgun.com,vg247.com##+js(aopr, _sp_.mms.startMsg)
||bit.ly^$popup,domain=eurogamer.net
eurogamer.net,rockpapershotgun.com##.leaderboards
eurogamer.*##.advert
! https://forums.lanik.us/viewtopic.php?p=101913#p101913
auto-motor-und-sport.de,caravaning.de,womenshealth.de##+js(aopw, adblockActive)
! https://github.com/uBlockOrigin/uAssets/issues/299
! https://github.com/uBlockOrigin/uAssets/issues/846
gamestorrents.*,gogoanimes.*,limetorrents.*,piratebayz.*##+js(aopr, LieDetector)
mediafire.com##+js(aeld, click, ClickHandler)
mediafire.com##+js(aeld, load, IsAdblockRequest)
mediafire.com##+js(nostif, InfMediafireMobileFunc, 1000)
gamestorrents.*,gogoanimes.*,limetorrents.*,piratebayz.*##^script:has-text(AaDetector)
mediafire.com##.errorExtraContent
mediafire.com##.center:style(margin-top:50px !important)
! https://github.com/uBlockOrigin/uAssets/issues/3826
||rule34.us/ad.html$frame
! https://github.com/uBlockOrigin/uAssets/issues/1081
! https://www.reddit.com/r/uBlockOrigin/comments/8sbjjk
! https://github.com/uBlockOrigin/uAssets/issues/8307
rule34.xxx##+js(aopr, newcontent)
rule34.xxx##[src^="https://rule34.xxx/aa/"]
rule34.xxx###right-col > div > #lbot1.a_list
rule34.xxx##body > a > div[id]:style(background: var(--c-bg, #aae5a3) !important)
rule34.xxx###halloween
! https://github.com/uBlockOrigin/uAssets/issues/16970#issuecomment-1803126533
rule34.xxx##.dp
||rule34.xxx/static/fp/$image,1p
||rule34.xxx/images/clicker.png
realbooru.com##+js(aopr, ExoLoader.serve)
realbooru.com##.adzoneTest
realbooru.com##.flex_content_main > div[style$="min-height: 125px;"]
! https://github.com/uBlockOrigin/uAssets/issues/16970
||rule34.xxx/*/nutaku/
! rule34.top etc. popups
||topxxxlist.net/eroclick.js
/pop.js$domain=booru.*|erotic-beauties.com|hardsex.cc|rule34.top|sex-movies.biz|tube18.sexy|xvideos.name
||rule34.top^$csp=sandbox allow-forms allow-same-origin allow-scripts allow-modals allow-orientation-lock allow-pointer-lock allow-presentation allow-top-navigation
||rule34.top/eroclick.js$script,1p
! https://github.com/uBlockOrigin/uAssets/issues/1080
xbooru.com##a[href^="https://xbooru.com/c.html"]
||xbooru.com^$frame,1p
! https://github.com/uBlockOrigin/uAssets/issues/17987
@@||kbb.com^$ghide
kbb.com##[id^="kbbAds"], [id^="kbbAds"] + p
! Fingerprint2 popups
dfiles.eu,downsub.com,j.gs,macserial.com,microify.com,minecraft-forum.net,onmovies.*,pirateproxy.*,psarips.*,solidfiles.com,thepiratebay.org,uptobox.com##+js(aopw, Fingerprint2)
solidfiles.com##.remove
thepiratebay.org##[href^="http://www.coiwqe.site/"]
! https://github.com/uBlockOrigin/uAssets/issues/4086
! https://github.com/uBlockOrigin/uAssets/issues/12524
! https://github.com/uBlockOrigin/uAssets/issues/12740
watchcartoononline.*,wcostream.*##+js(nofab)
watchcartoononline.*,wcostream.*##+js(noeval)
watchcartoononline.*,watchcartoonsonline.*,wcostream.*##+js(acs, document.createElement, jsc.mgid.com)
wcostream.*##+js(nowoif)
watchcartoononline.bz##.BorderColorChangeElement
! https://www.reddit.com/r/uBlockOrigin/comments/eslovb/seriously_well_now_watchcartoononline_has_their/
@@||wcoanimedub.tv^$ghide
@@||wcoanimesub.tv^$ghide
@@||wco.tv^$ghide
wco.tv##iframe.hide-ads:upward(div[style])
watchanimesub.net,wco.tv,wcoanimesub.tv,wcoforever.net##+js(set, isAdBlockActive, false)
wcoanimedub.tv,wcoforever.net##+js(nostif, google_jobrunner)
m.wcostream.org##center
||bloxplay.com^
wcoforever.net##.anti-ad
wcoforever.net###sidebar_r1
@@||embed.watchanimesub.net^$script,1p
! https://github.com/uBlockOrigin/uAssets/issues/331
! https://github.com/uBlockOrigin/uAssets/issues/10133
handelsblatt.com##+js(no-xhr-if, request=adb)
@@||handelsblatt.com^$ghide
||handelsblatt.com/*/empty.js$script,1p
||wiwo.de/preparesite/empty.js$script,1p
wiwo.de##+js(set, AdController, noopFunc)
@@||wiwo.de^$ghide
! https://github.com/uBlockOrigin/uAssets/issues/347
transfermarkt.*##+js(acs, document.querySelector, popupBlocked)
transfermarkt.*##+js(acs, Math, /\}\s*\(.*?\b(self|this|window)\b.*?\)/)
transfermarkt.*##body > div[id]:has(a[href^="/intern/adblock"])
||s0.2mdn.net/instream/video/client.js$script,redirect=noopjs,domain=player.performgroup.com
||sascdn.com^$important,script,domain=transfermarkt.de
transfermarkt.*###werbung_superbanner
transfermarkt.*##.werbung
transfermarkt.*##[id^="home-rectangle-"]
! kissasian .sh, .li, .sk
! https://www.reddit.com/r/uBlockOrigin/comments/u8f1c6/blocked_video/
kissasian.*##+js(aeld, /^(?:click|mousedown)$/, _0x)
keephealth.info,kissasian.*##+js(aopr, mm)
keephealth.info,kissasian.*##+js(nostif, (), 45000)
kissasian.*##+js(set, check_adblock, true)
kissasian.*##+js(nowoif)
@@||kissasian.*^$ghide
kissasian.*##.ksAds
kissasian.*##[id*="ScriptRoot"]
kissasian.*###videoAd
kissasian.*###hideAds
kissasian.*##div[style$="width: 610px;"]:has(.adsbyvli)
kissasian.*##div[style$="height: 90px;"]:has(.adsbyvli)
kissasian.*###overplay
||kissasian.*/Ads/$frame
! https://github.com/uBlockOrigin/uAssets/issues/4864
*expires$media,redirect=noopmp3-0.1s,domain=sat1.de|wetter.com
||vidapi.expepp.de/files/*$media,domain=moviepilot.de
! https://github.com/uBlockOrigin/uAssets/issues/14619
moviepilot.de##+js(nano-stb, _0x, *)
moviepilot.de##+js(no-xhr-if, doubleclick)
! https://github.com/uBlockOrigin/uAssets/issues/20985
moviepilot.de##+js(rmnt, script, Promise)
! https://github.com/uBlockOrigin/uAssets/issues/3209
*$image,redirect-rule=32x32.png,domain=afreesms.com
afreesms.com##+js(aeld, error)
afreesms.com##+js(nowoif)
afreesms.com##+js(nostif, 0x)
afreesms.com###smspage:style(display: block !important;)
afreesms.com##[href^="https://freemining.co/"]
! https://forums.lanik.us/viewtopic.php?f=64&t=29322
mma-core.*##+js(nostif, displayAdBlockedVideo)
mma-core.*##+js(acs, $, undefined)
mma-core.*###tlbrd
mma-core.*##.rsky
mma-core.*##.outVidAd
mma-core.*##.banr
||webpartners.co^$3p
! https://forums.lanik.us/viewtopic.php?f=62&t=36750
! https://github.com/uBlockOrigin/uAssets/issues/406
! https://github.com/NanoAdblocker/NanoFilters/issues/100
! https://github.com/uBlockOrigin/uAssets/issues/2509
! https://github.com/NanoMeow/QuickReports/issues/253
@@||poststar.com^$ghide
poststar.com##.dfp-ad
grubstreet.com,twitchy.com##+js(aopr, stop)
||em0n.com^$domain=grubstreet.com|twitchy.com
popculture.com##div.modernInContent
! https://github.com/uBlockOrigin/uAssets/issues/2904
||static.tvtropes.org/design/js/google-adblock.js$script
! https://popculture.com/celebrity/news/austin-butler-tears-up-remembering-lisa-marie-presley/ video breakage
||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima.js,domain=popculture.com,important
! https://www.reddit.com/r/uBlockOrigin/comments/17w81gw/remove_whitespace_at_the_top_and_move_everything/
popculture.com##body:not(.skybox-loaded) > header:style(top: 0 !important;)
popculture.com##body.pcm-public:not(.skybox-loaded):style(margin-top: 90px !important;)
! Prevent popunders + redirections on multiple websites
||go.oclasrv.com/apu.php$script,redirect=noopjs
||go.onclasrv.com/apu.php$script,redirect=noopjs
||onclkds.com/apu.php$script,redirect=noopjs
||xxlargepop.com/apu.php$script,redirect=noopjs
! https://github.com/gorhill/uBlock/issues/3176
rule34hentai.net##+js(aopr, open)
||rule34hentai.net/*.php$script,1p
@@||fluidplayer.com^$script,domain=rule34hentai.net
rule34hentai.net##[href^="https://syndication.dynsrvtbg.com/splash.php"]
rule34hentai.net###commentlistimage ~ section[id$="main"]
rule34hentai.net###imagelist ~ section[id$="main"]
rule34hentai.net##section[id$="left"]:has(> .blockbody > script[type])
rule34hentai.net##section[id$="main"]:has(> .blockbody > .adsbyexoclick)
! https://github.com/uBlockOrigin/uAssets/issues/444
kingofdown.com##+js(aeld, load, onload)
! https://github.com/uBlockOrigin/uAssets/issues/446
mind42.com###sidebar
mind42.com###content.sidebar2:style(margin-right: 0 !important;)
! https://twitter.com/v_josel/status/877137961615273985
elmundo.es##.Bloque-anuncios-shadow
elmundo.es##.Bloque-anuncios
elmundo.es##.disabled-vscroll:style(overflow: auto !important; position: initial !important;)
! https://github.com/uBlockOrigin/uAssets/issues/492
||andreas-unterberger.at/includes/js/helperFunctions.js$script,1p
! https://github.com/uBlockOrigin/uAssets/issues/498
receive-sms-online.info##+js(aopr, ga.length)
! https://github.com/uBlockOrigin/uAssets/issues/500
! https://github.com/uBlockOrigin/uAssets/issues/828
||gainskins.com^$frame,domain=hltv.org
||hltv.org/img/newwidgets/$image
||hltv.org/img/static/featured_bet_bg.png$image
||hltv.org/*.gif?ixlib=$image
hltv.org##+js(nowoif)
hltv.org##.leftCol > aside:first-child:has(> .ggbe-firstcol-box > a[href] > img[src*="/ggbet/"])
hltv.org##body, body::before:style(background-image: unset !important;)
hltv.org##:is(div, aside):has(> a[href^="/"][data-link-tracking-page="Widget"])
hltv.org##.leftCol > div [data-link-tracking-page="Widget"]:upward(.leftCol > div)
hltv.org##.presented-by
hltv.org##.thunderpick-firstcol-box
hltv.org##a:matches-attr(href=/[a-zA-Z0-9]{100,}/)
! https://github.com/uBlockOrigin/uAssets/issues/516
! https://github.com/uBlockOrigin/uAssets/issues/18549
thepiratebay.*,theproxyproxy.com,tpbay.*##+js(aopr, _wm)
! https://github.com/uBlockOrigin/uAssets/issues/518
wallpapershome.com##+js(nostif, .adsbygoogle)
! https://github.com/uBlockOrigin/uAssets/issues/7802
! primewire.mn ads
primewire.*##+js(set, console.clear, noopFunc)
primewire.*##:xpath('//*[contains(text(),"Sponsored")]'):upward(2)
||primewire.*/sw$script,1p
||primewire.*/addons/*.gif$image
primewire.*##.ico.close
! https://github.com/uBlockOrigin/uAssets/issues/7113
! https://github.com/uBlockOrigin/uAssets/issues/9118
!broken video ign.com##+js(aopr, __eiPb)
ign.com##^script:has-text(iframeTestTimeMS)
ign.com##.preShell:style(height: 0 !important;)
ign.com###king
ignboards.com,ign.com##^script:has-text(g02.)
!#if env_chromium
||au.ign.com^$inline-script
! https://github.com/abp-filters/abp-filters-anti-cv/pull/455
ignboards.com##+js(acs, JSON.stringify)
!#endif
*$xhr,redirect-rule=1x1.gif,domain=ign.com
*$script,redirect-rule=noopjs,domain=ignboards.com
! https://github.com/uBlockOrigin/uAssets/issues/905
||fux.com/*banner$image
fux.com##.autonextAd
.com/external/*?width=300&height=250$frame,1p
.com/nativeexternal/$frame,1p
! https://github.com/uBlockOrigin/uAssets/issues/549
! https://forums.lanik.us/viewtopic.php?f=64&t=40089
steamplay.*##+js(aopr, btoa)
steamplay.*,streamp1ay.*##+js(aopw, Fingerprint2)
streamp1ay.*##+js(aopw, Fingerprent2)
steamplay.*,streamp1ay.*##+js(aopr, console.clear)
steamplay.*,streamp1ay.*##+js(aopw, adcashMacros)
slreamplay.*##+js(nano-stb, grecaptcha.ready, *)
@@player*.html$frame,1p,domain=slreamplay.*
*$frame,denyallow=google.com,domain=slreamplay.*|streampiay.*
ext=$script,1p,domain=slreamplay.*
||*ontent.steamplay.*^$all
||steamplay.*^$csp=worker-src 'none';
@@||streamp1ay.*^$ghide
*$xhr,frame,3p,domain=streamp1ay.cc,denyallow=spcdn.cc
! https://github.com/uBlockOrigin/uAssets/issues/8244
slreamplay.*,steamplay.*,steanplay.*,stemplay.*,streamp1ay.*,streanplay.*,streampiay.*##+js(nowoif)
streanplay.*##+js(set, console.log, noopFunc)
streanplay.*##+js(set, console.clear, noopFunc)
streanplay.*,steanplay.*##+js(aeld, , BACK)
streanplay.*##+js(nowebrtc)
steamplay.*,steanplay.*,stemplay.*,streamp1ay.*,streanplay.*##+js(aopr, jwplayer.utils.Timer)
steamplay.*,steanplay.*,streamp1ay.*,streanplay.*##.ad