-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilters.txt
23672 lines (19038 loc) · 956 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
! Expires: 4 days
! Description: Filters optimized for uBlock, to be used along EasyList
! Homepage: https://github.com/uBlockOrigin/uAssets
! Licence: 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/chrisaljoudi/uBlock/issues/57
! https://github.com/chrisaljoudi/uBlock/issues/98
! New filter class: entity filters, where entity = domain minus public suffix
! The following filters were taken out of EasyList and given an entity name,
! which makes them candidates to be injected early in the page.
! Last imported: 2020-07-08
google.*###atvcap + #tvcap > .mnr-c > .commercial-unit-mobile-top
google.*###center_col > #\5f Emc
google.*###center_col > #main > .dfrd > .mnr-c > .c._oc._zs
google.*###center_col > #res > #topstuff + #search > div > #ires > #rso > #flun
google.*###center_col > #resultStats + #tads
google.*###center_col > #resultStats + #tads + #res + #tads
google.*###center_col > #resultStats + div + #res + #tads
google.*###center_col > #resultStats + div[style="border:1px solid #dedede;margin-bottom:11px;padding:5px 7px 5px 6px"]
google.*###center_col > #taw > #tvcap > .commercial-unit-desktop-top
google.*###center_col > #taw > #tvcap > .cu-container > .commercial-unit-desktop-top
google.*###center_col > #taw > #tvcap > .rscontainer
google.*###center_col > div[style="font-size:14px;margin-right:0;min-height:5px"] > div[style="font-size:14px;margin:0 4px;padding:1px 5px;background:#fff8e7"]
google.*###cnt #center_col > #res > #topstuff > .ts
google.*###cnt #center_col > #taw > #tvcap > .c._oc._Lp
google.*###main_col > #center_col div[style="font-size:14px;margin:0 4px;padding:1px 5px;background:#fff7ed"]
google.*###mbEnd[cellspacing="0"][cellpadding="0"]
google.*###mclip_container:last-child
google.*###mn #center_col > div > h2.spon:first-child
google.*###mn #center_col > div > h2.spon:first-child + ol:last-child
google.*###mn div[style="position:relative"] > #center_col > ._Ak
google.*###mn div[style="position:relative"] > #center_col > div > ._dPg
google.*###resultspanel > #topads
google.*###rhs_block .mod > .gws-local-hotels__booking-module
google.*###rhs_block .mod > .luhb-div > div[data-async-type="updateHotelBookingModule"]
google.*###rhs_block .xpdopen > ._OKe > div > .mod > ._yYf
google.*###rhs_block > #mbEnd
google.*###rhs_block > .ts[cellspacing="0"][cellpadding="0"][style="padding:0"]
google.*###rhs_block > ol > .rhsvw > .kp-blk > .xpdopen > ._OKe > ol > ._DJe > .luhb-div
google.*###rhs_block > script + .c._oc._Ve.rhsvw
google.*###rhswrapper > #rhssection[border="0"][bgcolor="#ffffff"]
google.*###ssmiwdiv[jsdisplay]
google.*###tads + div + .c
google.*###tads.c
google.*###tadsb.c
google.*###tadsto.c
google.*###taw > .med + div > #tvcap > .mnr-c:not(.qs-ic) > .commercial-unit-mobile-top
google.*###topstuff > #tads
google.*##.GB3L-QEDGY .GB3L-QEDF- > .GB3L-QEDE-
google.*##.GFYY1SVD2 > .GFYY1SVC2 > .GFYY1SVF5
google.*##.GFYY1SVE2 > .GFYY1SVD2 > .GFYY1SVG5
google.*##.GHOFUQ5BG2 > .GHOFUQ5BF2 > .GHOFUQ5BG5
google.*##.GJJKPX2N1 > .GJJKPX2M1 > .GJJKPX2P4
google.*##.GKJYXHBF2 > .GKJYXHBE2 > .GKJYXHBH5
google.*##.GPMV2XEDA2 > .GPMV2XEDP1 > .GPMV2XEDJBB
google.*##.ch[onclick="ga(this,event)"]
google.*##.commercial-unit-desktop-rhs > .iKidV > .Ee92ae + .P2mpm + .hp3sk
google.*##.commercial-unit-desktop-rhs:not(.mnr-c)
google.*##.commercial-unit-mobile-bottom
google.*##.commercial-unit-mobile-top .jackpot-main-content-container > .UpgKEd + .nZZLFc > .vci
google.*##.commercial-unit-mobile-top .jackpot-main-content-container > .UpgKEd + .nZZLFc > div > .vci
google.*##.commercial-unit-tiles-immersive
google.*##.gws-flights-book__ads-wrapper
google.*##.lads[width="100%"][style="background:#FFF8DD"]
google.*##.mod > ._jH + .rscontainer
google.*##.mod > .gws-local-promotions__border
google.*##.mw > #rcnt > #center_col > #taw > #tvcap > .c
google.*##.mw > #rcnt > #center_col > #taw > .c
google.*##.ra[align="left"][width="30%"]
google.*##.ra[align="right"][width="30%"]
google.*##.ra[width="30%"][align="right"] + table[width="70%"][cellpadding="0"]
google.*##.rhsvw[style="background-color:#fff;margin:0 0 14px;padding-bottom:1px;padding-top:1px;"]
google.*##.rscontainer > .ellip
google.*##.section-result[data-result-ad-type]
google.*##.widget-pane-section-result[data-result-ad-type]
google.*##c-wiz[jsrenderer="YnuqN"] > div > div > .Rn1jbe
google.*##div[data-crl="true"][data-id^="CarouselPLA-"]
google.*###atvcap > div:has(h3[role="heading"] > span:has-text(/^Ads/))
! https://github.com/uBlockOrigin/uAssets/issues/7761
google.*##div[data-ismultirow="true"][data-id^="CarouselPLA-"]
google.*##div[data-flt-ve="sponsored_search_ads"]
google.*##div[jscontroller="U835zd"] + c-wiz[jsrenderer="YnuqN"]
google.*##div[role="navigation"] + c-wiz > div > .kxhcC
google.*##div[role="navigation"] + c-wiz > script + div > .kxhcC
! https://www.reddit.com/r/uBlockOrigin/comments/8xg7p0/ublock_origin_is_not_blocking_google_sponsored/
google.*##.ads-ad
! https://github.com/chrisaljoudi/uBlock/issues/381
google.*###sqh
! https://github.com/uBlockOrigin/uAssets/issues/3482
google.*##a[href*="/aclk?"][data-al]:upward(2)
! https://github.com/NanoMeow/QuickReports/issues/1375#issuecomment-503802350
www.google.*##div.ellip > span:has-text(/^Ads?$/):upward(2)
! http://www.wilderssecurity.com/threads/ublock-a-lean-and-fast-blocker.365273/page-25#post-2461804
! Specific cosmetic filters for Youtube home page
youtube.com##.masthead-ad-control,.ad-div,.pyv-afc-ads-container
! https://github.com/uBlockOrigin/uAssets/issues/644#issuecomment-324214893
youtube.com###promotion-shelf
! https://github.com/uBlockOrigin/uAssets/issues/1408
*_ad_$media,domain=youtube.com,3p
! https://redd.it/fg424w
youtube.com##ytd-video-masthead-ad-advertiser-info-renderer,ytm-promoted-sparkles-web-renderer
! https://github.com/easylist/easylist/issues/5112
! @@||youtube.com/get_video_info?*timedtext_editor$xhr,1p
! https://redd.it/ggcmkp https://redd.it/gx03e0
youtube.com,youtube-nocookie.com##+js(json-prune, [].playerResponse.adPlacements [].playerResponse.playerAds playerResponse.adPlacements playerResponse.playerAds adPlacements playerAds)
youtube.com,youtube-nocookie.com##+js(set, ytInitialPlayerResponse.adPlacements, undefined)
youtube.com,youtube-nocookie.com##+js(set, playerResponse.adPlacements, undefined)
! https://www.reddit.com/r/uBlockOrigin/comments/kg7224/
youtube.com#@#ytd-rich-item-renderer:-abp-has(ytd-display-ad-renderer)
youtube.com##ytd-display-ad-renderer:upward(ytd-rich-item-renderer)
! https://github.com/gorhill/uBlock/issues/1100
! https://github.com/uBlockOrigin/uAssets/issues/588
! https://adblockplus.org/forum/viewtopic.php?f=1&t=54986
! https://github.com/uBlockOrigin/uAssets/issues/3033
! https://github.com/uBlockOrigin/uAssets/issues/3166
! https://github.com/uBlockOrigin/uAssets/issues/5332
! https://github.com/uBlockOrigin/uAssets/issues/5546
! https://github.com/uBlockOrigin/uAssets/issues/5644
! https://github.com/uBlockOrigin/uAssets/issues/6535
! https://github.com/uBlockOrigin/uAssets/issues/7767
! AdDefend
!#if env_chromium
n-tv.de##+js(aopr, embedAddefend)
haus-garten-test.de##+js(set, Object.keys, trueFunc)
bafoeg-aktuell.de,bikerszene.de,deine-tierwelt.de,dhd24.com,donnerwetter.de,e-hausaufgaben.de,fremdwort.de,gartendialog.de,gartenlexikon.de,gewinnspiele.tv,gut-erklaert.de,haus-garten-test.de,iban-rechner.de,kindergeld.org,ksta.de,messen.de,moviejones.de,mz-web.de,naumburger-tageblatt.de,newsbreak24.de,nickles.de,oeffentlicher-dienst.info,rheinische-anzeigenblaetter.de,rundschau-online.de,torgranate.de,truckscout24.*,unsere-helden.com,weser-kurier.de,wieistmeineip.*##+js(nostif, .call(null), 10)
computerbild.de##+js(aopr, Date.prototype.toUTCString)
computerbild.de##+js(nostif, ())return)
lablue.*##+js(nostif, push, 500)
||doubleclick.net^$script,important,domain=auto-motor-und-sport.de
!#endif
freenet.de,hifi-forum.de,kicker.de,musiker-board.de,quoka.de,recording.de,transfermarkt.*##+js(nostif, .call(null), 10)
airliners.de,auszeit.bio,autorevue.at,berliner-kurier.de,berliner-zeitung.de,boersennews.de,clever-tanken.de,dasgelbeblatt.de,deichstube.de,der-betze-brennt.de,desired.de,digitalfernsehen.de,express.de,fanfiktion.de,fehmarn24.de,finya.de,frankfurter-wochenblatt.de,frustfrei-lernen.de,funandnews.de,fussballdaten.de,gameswelt.*,giessener-allgemeine.de,giga.de,heidelberg24.de,kino.de,gesund-vital.de,gruenderlexikon.de,kreisbote.de,kurierverlag.de,leinetal24.de,liga3-online.de,lokalo24.de,lz.de,meine-anzeigenzeitung.de,mt.de,news.de,nordbayern.de,nw.de,prad.de,psychic.de,reviersport.de,rimondo.com,sozialversicherung-kompetent.de,spielen.de,spieletipps.de,tichyseinblick.de,tvinfo.de,unicum.de,weltfussball.at,weristdeinfreund.de,ze.tt##+js(nostif, .call(null), 10)
airliners.de,auszeit.bio,autorevue.at,bafoeg-aktuell.de,berliner-kurier.de,berliner-zeitung.de,bikerszene.de,boersennews.de,bonedo.de,chefkoch.de,clever-tanken.de,computerbild.de,deine-tierwelt.de,dhd24.com,digitalfernsehen.de,donnerwetter.de,e-hausaufgaben.de,express.de,fanfiktion.de,finya.de,formel1.de,freenet.de,fremdwort.de,frustfrei-lernen.de,gameswelt.*,gartendialog.de,gartenlexikon.de,gewinnspiele.tv,gut-erklaert.de,haus-garten-test.de,iban-rechner.de,inside-handy.de,kicker.de,kindergeld.org,kino.de,ksta.de,liga3-online.de,lz.de,messen.de,moviejones.de,mt.de,musiker-board.de,mz-web.de,naumburger-tageblatt.de,news.de,nickles.de,nordbayern.de,nw.de,oeffentlicher-dienst.info,onlinemarketing.de,prad.de,psychic.de,quoka.de,rennrad-news.de,rheinische-anzeigenblaetter.de,rimondo.com,rundschau-online.de,spielen.de,spieletipps.de,spielfilm.de,tichyseinblick.de,torgranate.de,transfermarkt.*,truckscout24.*,tvinfo.de,unicum.de,unsere-helden.com,webfail.com,weltfussball.at,weristdeinfreund.de,weser-kurier.de,wieistmeineip.*,wize.life##^script:has-text(===):has-text(/[\w\W]{16000}/)
4-liga.com,4fansites.de,4players.de,9monate.de,abendblatt.de,abendzeitung-muenchen.de,abseits-ka.de,ajaxshowtime.com,allgemeine-zeitung.de,allaboutphones.nl,antenne.de,arcor.de,areadvd.de,areamobile.de,ariva.de,astronews.com,aussenwirtschaftslupe.de,auto-motor-und-sport.de,auto-service.de,autobild.de,autoextrem.de,autopixx.de,baby-vornamen.de,bigfm.de,bildderfrau.de,blackd.de,boerse-online.de,boerse.de,manager-magazin.de,braunschweiger-zeitung.de,brieffreunde.de,buerstaedter-zeitung.de,buffed.de,caravaning.de,cavallo.de,cinema.de,computerbild.de,computerhilfen.de,computerworld.nl,comunio.*,comunio-cl.com,connect.de,dbna.de,derwesten.de,dieblaue24.com,dnn.de,eatsmarter.de,echo-online.de,einfachschoen.me,elektrobike-online.com,e-mountainbike.com,epochtimes.de,extratipp.com,f1maximaal.nl,fettspielen.de,fid-gesundheitswissen.de,finanztreff.de,fitforfun.de,focus.de,football365.fr,fr.de,futurezone.de,gala.de,gamersglobal.de,gamesaktuell.de,gamestar.de,gameswelt.at,gameswelt.de,gamezone.de,geissblog.koeln,gelnhaeuser-tageblatt.de,general-anzeiger-bonn.de,genialetricks.de,geniale-tricks.com,gesundheit.de,gevestor.de,giessener-anzeiger.de,gifhorner-rundschau.de,gipfelbuch.ch,gmuender-tagespost.de,golem.de,gusto.at,gutfuerdich.co,hallo-muenchen.de,hamburg.de,hardwareluxx.de,hartziv.org,harzkurier.de,hausgarten.net,haz.de,heftig.*,helmstedter-nachrichten.de,heilpraxisnet.de,heise.de,hftg.co,hochheimer-zeitung.de,hofheimer-zeitung.de,hoerzu.de,ikz-online.de,immobilienscout24.de,ingame.de,investor-verlag.de,jpgames.de,kabeleins.de,kamelle.de,kindergeld.info,klettern.de,klettern-magazin.de,kochbar.de,kreis-anzeiger.de,lachainemeteo.com,lampertheimer-zeitung.de,landwirt.com,laut.de,lauterbacher-anzeiger.de,leckerschmecker.me,lesfoodies.com,levif.be,lifeline.de,likemag.com,linux-community.de,linux-magazin.de,ln-online.de,lustaufsleben.at,lustich.de,lvz.de,main-spitze.de,mathepower.com,maz-online.de,medisite.fr,mehr-tanken.de,mein-kummerkasten.de,mein-mmo.de,mein-wahres-ich.de,menshealth.de,mercato365.com,metal-hammer.de,metalflirt.de,minecraft-serverlist.net,mittelbayerische.de,modhoster.de,mopo.de,morgenpost.de,motor-talk.de,motorbasar.de,motorradonline.de,motorsport-total.com,motortests.de,mountainbike-magazin.de,moviepilot.de,mtb-news.de,musikexpress.de,musikradar.de,n-tv.de,netzwelt.de,neuepresse.de,neueroeffnung.info,news.at,news38.de,nicknight.de,nnn.de,notebookchat.com,notebookcheck.*,notebookcheck-ru.com,notebookcheck-tr.com,noz.de,noz-cdn.de,nrz.de,nwzonline.de,oberhessische-zeitung.de,onlinekosten.de,onvista.de,op-marburg.de,outdoor-magazin.com,outdoorchannel.de,paradisi.de,pc-magazin.de,pcgames.de,pcgameshardware.de,peiner-nachrichten.de,pferde.de,pietsmiet.de,pixelio.de,pkw-forum.de,planetsnow.de,playboy.de,playfront.de,pnn.de,pons.com,prignitzer.de,profil.at,promipool.de,promobil.de,prosiebenmaxx.de,ran.de,readmore.de,rechtslupe.de,rennrad-news.de,reuters.com,rhein-main-presse.de,roadbike.de,roemische-zahlen.net,rollingstone.de,rot-blau.com,rp-online.de,rtl.de,rtv.de,rugby365.fr,runnersworld.de,safelist.eu,salzgitter-zeitung.de,sat1.de,sat1gold.de,schwaebische-post.de,serienjunkies.de,shz.de,sixx.de,skodacommunity.de,smart-wohnen.net,sn.at,spiegel.de,spielfilm.de,sport.de,sportal.de,sport365.fr,spox.com,svz.de,szene1.at,szene38.de,tagesspiegel.de,taschenhirn.de,techstage.de,tele5.de,testedich.*,the-voice-of-germany.de,thueringen24.de,tierfreund.co,tiervermittlung.de,trend.at,tv-media.at,tvdigital.de,tvspielfilm.de,tvtoday.de,tvtv.de,unterhalt.net,usinger-anzeiger.de,usp-forum.de,videogameszone.de,vienna.at,vip.de,virtualnights.com,vox.de,wallstreet-online.de,waz.de,web.de,webfail.com,webwereld.nl,welt.de,weristdeinfreund.de,werkzeug-news.de,werra-rundschau.de,wetter.*,wetterauer-zeitung.de,wetteronline.*,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wintotal.de,winboard.org,windows-7-forum.net,winfuture.de,wn.de,wlz-online.de,wohngeld.org,wolfenbuetteler-zeitung.de,wolfsburger-nachrichten.de,woman.at,womenshealth.de,wormser-zeitung.de,woxikon.de,wp.de,wr.de,yachtrevue.at##+js(nosiif, text/css, 10)
4-liga.com,4fansites.de,4players.de,9monate.de,abendblatt.de,abendzeitung-muenchen.de,abseits-ka.de,ajaxshowtime.com,allgemeine-zeitung.de,allaboutphones.nl,antenne.de,arcor.de,areadvd.de,areamobile.de,ariva.de,astronews.com,aussenwirtschaftslupe.de,auto-motor-und-sport.de,auto-service.de,autobild.de,autoextrem.de,autopixx.de,az-online.de,baby-vornamen.de,bigfm.de,bildderfrau.de,blackd.de,boerse-online.de,boerse.de,manager-magazin.de,braunschweiger-zeitung.de,brieffreunde.de,buerstaedter-zeitung.de,buffed.de,businessinsider.de,caravaning.de,cavallo.de,cinema.de,computerbild.de,computerhilfen.de,computerworld.nl,comunio.*,comunio-cl.com,connect.de,dbna.de,dbna.com,derwesten.de,dieblaue24.com,dnn.de,eatsmarter.de,echo-online.de,einfachschoen.me,elektrobike-online.com,e-mountainbike.com,epochtimes.de,extratipp.com,f1maximaal.nl,fettspielen.de,fid-gesundheitswissen.de,finanztreff.de,fitforfun.de,focus.de,football365.fr,fr.de,fuldaerzeitung.de,futurezone.de,gala.de,gamersglobal.de,gamesaktuell.de,gamestar.de,gamezone.de,geissblog.koeln,gelnhaeuser-tageblatt.de,general-anzeiger-bonn.de,genialetricks.de,geniale-tricks.com,gesundheit.de,gevestor.de,giessener-anzeiger.de,gifhorner-rundschau.de,gipfelbuch.ch,gmuender-tagespost.de,golem.de,gusto.at,gutfuerdich.co,hallo-muenchen.de,hamburg.de,hanauer.de,hardwareluxx.de,hartziv.org,harzkurier.de,hausgarten.net,haz.de,heftig.*,helmstedter-nachrichten.de,heilpraxisnet.de,heise.de,hersfelder-zeitung.de,hftg.co,hochheimer-zeitung.de,hofheimer-zeitung.de,hoerzu.de,ikz-online.de,immobilienscout24.de,ingame.de,investor-verlag.de,jpgames.de,kabeleins.de,kamelle.de,kindergeld.info,klettern.de,klettern-magazin.de,kochbar.de,kreis-anzeiger.de,kreiszeitung.de,lachainemeteo.com,lampertheimer-zeitung.de,landwirt.com,laut.de,lauterbacher-anzeiger.de,leckerschmecker.me,lesfoodies.com,levif.be,lifeline.de,likemag.com,linux-community.de,linux-magazin.de,ln-online.de,lustaufsleben.at,lustich.de,lvz.de,main-spitze.de,mathebibel.de,mathepower.com,maz-online.de,medisite.fr,mehr-tanken.de,mein-kummerkasten.de,mein-mmo.de,mein-wahres-ich.de,meinestadt.de,menshealth.de,mercato365.com,metal-hammer.de,metalflirt.de,minecraft-serverlist.net,mittelbayerische.de,modhoster.de,mopo.de,morgenpost.de,motor-talk.de,motorbasar.de,motorradonline.de,motorsport-total.com,motortests.de,mountainbike-magazin.de,moviepilot.de,mtb-news.de,musikexpress.de,musikradar.de,n-tv.de,netzwelt.de,neuepresse.de,neueroeffnung.info,news.at,news38.de,nicknight.de,nl.hardware.info,nnn.de,notebookchat.com,notebookcheck.*,notebookcheck-ru.com,notebookcheck-tr.com,noz.de,noz-cdn.de,nrz.de,nwzonline.de,oberhessische-zeitung.de,onlinekosten.de,onvista.de,op-marburg.de,outdoor-magazin.com,outdoorchannel.de,paradisi.de,pc-magazin.de,pcgames.de,pcgameshardware.de,peiner-nachrichten.de,pferde.de,pietsmiet.de,pixelio.de,pkw-forum.de,planetsnow.de,playboy.de,playfront.de,pnn.de,pons.com,prignitzer.de,profil.at,promipool.de,promobil.de,prosiebenmaxx.de,ran.de,readmore.de,rechtslupe.de,rennrad-news.de,reuters.com,rhein-main-presse.de,roadbike.de,roemische-zahlen.net,rollingstone.de,rot-blau.com,rp-online.de,rtl.de,rtv.de,rugby365.fr,runnersworld.de,safelist.eu,salzgitter-zeitung.de,sat1.de,sat1gold.de,schwaebische-post.de,serienjunkies.de,shz.de,sixx.de,skodacommunity.de,smart-wohnen.net,sn.at,spiegel.de,spielfilm.de,sport.de,sportal.de,sport365.fr,spox.com,svz.de,szene1.at,szene38.de,tagesspiegel.de,taschenhirn.de,techadvisor.co.uk,techstage.de,tele5.de,testedich.*,the-voice-of-germany.de,thueringen24.de,tierfreund.co,tiervermittlung.de,trend.at,tv-media.at,tvdigital.de,tvspielfilm.de,tvtoday.de,tvtv.de,tweakers.net,unterhalt.net,usinger-anzeiger.de,usp-forum.de,videogameszone.de,vienna.at,vip.de,virtualnights.com,vox.de,wallstreet-online.de,waz.de,webfail.com,webwereld.nl,welt.de,werkzeug-news.de,werra-rundschau.de,wetter.*,wetterauer-zeitung.de,wetteronline.*,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wintotal.de,winboard.org,windows-7-forum.net,winfuture.de,wn.de,wlz-online.de,wohngeld.org,wolfenbuetteler-zeitung.de,wolfsburger-nachrichten.de,woman.at,womenshealth.de,wormser-zeitung.de,woxikon.de,wp.de,wr.de,yachtrevue.at##+js(nostif, .call(null), 10)
4-liga.com,4fansites.de,4players.de,9monate.de,abendblatt.de,abendzeitung-muenchen.de,abseits-ka.de,ajaxshowtime.com,allgemeine-zeitung.de,allaboutphones.nl,antenne.de,arcor.de,areadvd.de,areamobile.de,ariva.de,astronews.com,aussenwirtschaftslupe.de,auto-motor-und-sport.de,auto-service.de,autobild.de,autoextrem.de,autopixx.de,az-online.de,baby-vornamen.de,bigfm.de,bildderfrau.de,blackd.de,boerse-online.de,boerse.de,manager-magazin.de,braunschweiger-zeitung.de,brieffreunde.de,buerstaedter-zeitung.de,buffed.de,businessinsider.de,caravaning.de,cavallo.de,cinema.de,computerbild.de,computerhilfen.de,computerworld.nl,comunio.*,comunio-cl.com,connect.de,dbna.de,dbna.com,der-betze-brennt.de,derwesten.de,desired.de,dieblaue24.com,dnn.de,eatsmarter.de,echo-online.de,einfachschoen.me,elektrobike-online.com,e-mountainbike.com,epochtimes.de,extratipp.com,f1maximaal.nl,fettspielen.de,fid-gesundheitswissen.de,finanztreff.de,fitforfun.de,focus.de,football365.fr,fr.de,fuldaerzeitung.de,fussballdaten.de,futurezone.de,gala.de,gamersglobal.de,gamesaktuell.de,gamestar.de,gameswelt.at,gameswelt.de,gamezone.de,geissblog.koeln,gelnhaeuser-tageblatt.de,general-anzeiger-bonn.de,genialetricks.de,geniale-tricks.com,gesund-vital.de,gesundheit.de,gevestor.de,giessener-anzeiger.de,gifhorner-rundschau.de,giga.de,gipfelbuch.ch,gmuender-tagespost.de,golem.de,gusto.at,gutfuerdich.co,hallo-muenchen.de,hamburg.de,hanauer.de,hardwareluxx.de,hartziv.org,harzkurier.de,hausgarten.net,haz.de,heftig.*,heidelberg24.de,helmstedter-nachrichten.de,heilpraxisnet.de,heise.de,hersfelder-zeitung.de,hftg.co,hochheimer-zeitung.de,hofheimer-zeitung.de,hoerzu.de,ikz-online.de,immobilienscout24.de,ingame.de,inside-digital.de,inside-handy.de,investor-verlag.de,jpgames.de,kabeleins.de,kamelle.de,kindergeld.info,klettern.de,klettern-magazin.de,kochbar.de,kreis-anzeiger.de,lablue.*,lachainemeteo.com,lampertheimer-zeitung.de,landwirt.com,laut.de,lauterbacher-anzeiger.de,leckerschmecker.me,lesfoodies.com,levif.be,lifeline.de,likemag.com,linux-community.de,linux-magazin.de,ln-online.de,lustaufsleben.at,lustich.de,lvz.de,main-spitze.de,mathepower.com,maz-online.de,medisite.fr,mehr-tanken.de,mein-kummerkasten.de,mein-mmo.de,mein-wahres-ich.de,meinestadt.de,menshealth.de,mercato365.com,metal-hammer.de,metalflirt.de,minecraft-serverlist.net,mittelbayerische.de,modhoster.de,mopo.de,morgenpost.de,motor-talk.de,motorbasar.de,motorradonline.de,motorsport-total.com,motortests.de,mountainbike-magazin.de,moviepilot.de,mtb-news.de,musikexpress.de,musikradar.de,n-tv.de,netzwelt.de,neuepresse.de,neueroeffnung.info,news.at,news38.de,nicknight.de,nl.hardware.info,nnn.de,nordbayern.de,notebookchat.com,notebookcheck.*,notebookcheck-ru.com,notebookcheck-tr.com,noz.de,noz-cdn.de,nrz.de,nwzonline.de,oberhessische-zeitung.de,onlinekosten.de,onvista.de,op-marburg.de,outdoor-magazin.com,outdoorchannel.de,paradisi.de,pc-magazin.de,pcgames.de,pcgameshardware.de,peiner-nachrichten.de,pferde.de,pietsmiet.de,pixelio.de,pkw-forum.de,planetsnow.de,playboy.de,playfront.de,pnn.de,pons.com,prignitzer.de,profil.at,promipool.de,promobil.de,prosiebenmaxx.de,ran.de,readmore.de,rechtslupe.de,rennrad-news.de,reviersport.de,rhein-main-presse.de,roadbike.de,roemische-zahlen.net,rollingstone.de,rot-blau.com,rp-online.de,rtl.de,rtv.de,rugby365.fr,runnersworld.de,safelist.eu,salzgitter-zeitung.de,sat1.de,sat1gold.de,schwaebische-post.de,serienjunkies.de,shz.de,sixx.de,skodacommunity.de,smart-wohnen.net,sn.at,sozialversicherung-kompetent.de,spiegel.de,spielfilm.de,sport.de,sportal.de,sport365.fr,spox.com,svz.de,szene1.at,szene38.de,tagesspiegel.de,taschenhirn.de,techstage.de,tele5.de,testedich.*,the-voice-of-germany.de,thueringen24.de,tierfreund.co,tiervermittlung.de,trend.at,tv-media.at,tvdigital.de,tvspielfilm.de,tvtoday.de,tvtv.de,unterhalt.net,usinger-anzeiger.de,usp-forum.de,videogameszone.de,vienna.at,vip.de,virtualnights.com,vox.de,waz.de,web.de,webfail.com,webwereld.nl,welt.de,weristdeinfreund.de,werkzeug-news.de,werra-rundschau.de,wetter.*,wetterauer-zeitung.de,wetteronline.*,wiesbadener-kurier.de,wiesbadener-tagblatt.de,wintotal.de,winboard.org,windows-7-forum.net,winfuture.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,yachtrevue.at##^script:has-text(Inject=!)
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)
desired.de##.sad_banner
frustfrei-lernen.de##.noContentBannerArea
reuters.com###spacerElement
! https://www.reddit.com/r/uBlockOrigin/comments/a5g4uu/wallstreetonline_likewise_for_many_german_pages/
wallstreet-online.de##+js(nostif, userHasAdblocker)
modhoster.de,quotenmeter.de##+js(nostif, ())return)
modhoster.de,quotenmeter.de##+js(nostif, )&&)
modhoster.de,quotenmeter.de##+js(nostif, 0&&)
aachener-nachrichten.de,aachener-zeitung.de,ecomento.de,inside-digital.de,inside-handy.de##+js(nostif, .call(null), 10)
bonedo.de##.banner
mtb-news.de##.mtbnews-forum__banner
newsbreak24.de##.aw-track-click
newsbreak24.de###adup1
transfermarkt.*##.noscript
! To counter unnecessary exception filters
||focus.de^$ghide,important
||pcwelt.de^$ghide,important
||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
@@/gujAd.$domain=11freunde.de|brigitte.de|eltern.de|gala.de|geo.de|kochbar.de|n-tv.de|stern.de|vip.de|wetter.de,badfilter
@@||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|guterhut.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/$subdocument
mathebibel.de###banner-bottom
! Yavli ads
*.jpg$script,domain=activistpost.com|addictinginfo.com|addictinginfo.org|allthingsvegas.com|americasfreedomfighters.com|appleeats.com|aupetitparieur.com|bestfunnyjokes4u.com|bighealthreport.com|breakingfirst.com|bugout.news|bulletsfirst.net|canadafreepress.com|cheapism.com|cheatsheet.com|chicksonright.com|clashdaily.com|conservativefiringline.com|constitution.com|craigjames.com|dailyheadlines.net|dailysurge.com|deneenborelli.com|designbump.com|enstarz.com|evil.news|faithit.com|firstinfreedomdaily.com|foreverymom.com|freedom.news|godfatherpolitics.com|grammarist.com|greatamericanrepublic.com|hackspirit.com|latinpost.com|madworldnews.com|moneyversed.com|musictimes.com|naturalblaze.com|newser.com|opednews.com|patriotoutdoornews.com|politicaloutcast.com|realmomsrealreviews.com|realtytoday.com|redmaryland.com|reviveusa.com|rightwingtribune.com|rollingout.com|sciencetimes.com|shark-tank.com|sonsoflibertymedia.com|stupid.news|survivalnation.com|telexplorer.com.ar|thealternativedaily.com|theblacksphere.net|thedesigninspiration.com|thefreethoughtproject.com|thegatewaypundit.com|thehayride.com|thelastlineofdefense.org|thelibertydaily.com|themattwalshblog.com|thepoke.co.uk|thepolitistick.com|therealside.com|threepercenternation.com|tiebreaker.com|tosavealife.com|twisted.news|universityherald.com|vcpost.com|videogamesblogger.com|viralnova.com|wakingtimes.com|westernjournalism.com|worldlifestyle.com|youthhealthmag.com
*$script,redirect-rule=noopjs,domain=activistpost.com|addictinginfo.com|addictinginfo.org|allthingsvegas.com|americasfreedomfighters.com|appleeats.com|aupetitparieur.com|beforeitsnews.com|bestfunnyjokes4u.com|bighealthreport.com|breakingfirst.com|bugout.news|bulletsfirst.net|canadafreepress.com|cancan.ro|cheapism.com|cheatsheet.com|chicksonright.com|clashdaily.com|concomber.com|conservativefiringline.com|constitution.com|craigjames.com|dailyheadlines.net|dailysurge.com|deneenborelli.com|designbump.com|enstarz.com|evil.news|faithit.com|firstinfreedomdaily.com|foreverymom.com|freedom.news|gamersheroes.com|godfatherpolitics.com|grammarist.com|greatamericanrepublic.com|hackspirit.com|independentminute.com|latinpost.com|letocard.fr|madworldnews.com|meilleurpronostic.fr|moneyversed.com|musictimes.com|naturalblaze.com|newser.com|opednews.com|patriotoutdoornews.com|politicaloutcast.com|realmomsrealreviews.com|realtytoday.com|redmaryland.com|reviveusa.com|rightwingtribune.com|rollingout.com|sciencetimes.com|shark-tank.com|sonsoflibertymedia.com|stupid.news|survivalnation.com|telexplorer.com.ar|thealternativedaily.com|theblacksphere.net|thedesigninspiration.com|thefreethoughtproject.com|thegatewaypundit.com|thehayride.com|thelastlineofdefense.org|thelibertydaily.com|themattwalshblog.com|thepoke.co.uk|thepolitistick.com|therealside.com|threepercenternation.com|tiebreaker.com|tosavealife.com|twisted.news|universityherald.com|vcpost.com|videogamesblogger.com|viralnova.com|wakingtimes.com|westernjournalism.com|worldlifestyle.com|youthhealthmag.com|ciao.ro|newsweek.ro|prosport.ro
@@*$image,3p,domain=aupetitparieur.com|beforeitsnews.com|canadafreepress.com|cancan.ro|concomber.com|designbump.com|foreverymom.com|gamersheroes.com|independentminute.com|letocard.fr|meilleurpronostic.fr|telexplorer.com.ar|thedesigninspiration.com|wakingtimes.com|ciao.ro|newsweek.ro|prosport.ro
@@||rddywd.com^$script
*$script,3p,denyallow=enetscores.com|jsdelivr.net|jwpcdn.com|fbcdn.net|facebook.net|fastly.net|fastlylb.net|jquery.com|hwcdn.net|hcaptcha.com|recaptcha.net|cloudflare.com|cloudflare.net|google.com|googleapis.com|gstatic.com|consensu.org|agorahtag.tech|aghtag.tech|etop.ro,domain=ziare.com|cancan.ro|ciao.ro|gandul.ro|prosport.ro|descopera.ro
*$script,3p,denyallow=sirdata.fr|anycast.me|mrf.io|priice.net|consentframework.com|twitter.com|jsdelivr.net|jwpcdn.com|fbcdn.net|facebook.net|fastly.net|fastlylb.net|jquery.com|hwcdn.net|hcaptcha.com|recaptcha.net|cloudflare.com|cloudflare.net|google.com|googleapis.com|gstatic.com|consensu.org,domain=lebigdata.fr|montjeuturf.net|objetconnecte.net
*$script,3p,domain=fabricatinromania.info,denyallow=consensu.org
||embesognassent.xyz^
whatfinger.com##+js(set, oeo, noopFunc)
@@*$ghide,domain=100percentfedup.com|activistpost.com|allthingsvegas.com|americasfreedomfighters.com|appleeats.com|bestfunnyjokes4u.com|bighealthreport.com|breakingfirst.com|bugout.news|bulletsfirst.net|canadafreepress.com|cheapism.com|cheatsheet.com|chicksonright.com|clashdaily.com|constitution.com|craigjames.com|dailyheadlines.net|dailysurge.com|deneenborelli.com|designbump.com|enstarz.com|evil.news|faithit.com|firstinfreedomdaily.com|foreverymom.com|freedom.news|godfatherpolitics.com|grammarist.com|greatamericanrepublic.com|hackspirit.com|latinpost.com|madworldnews.com|moneyversed.com|musictimes.com|naturalblaze.com|opednews.com|patriotoutdoornews.com|politicaloutcast.com|realmomsrealreviews.com|realtytoday.com|redmaryland.com|reviveusa.com|rightwingtribune.com|rollingout.com|sciencetimes.com|shark-tank.com|sonsoflibertymedia.com|stupid.news|survivalnation.com|telexplorer.com.ar|thealternativedaily.com|theblacksphere.net|thedesigninspiration.com|thefreethoughtproject.com|thegatewaypundit.com|thehayride.com|thelastlineofdefense.org|thelibertydaily.com|themattwalshblog.com|thepoke.co.uk|thepolitistick.com|therealside.com|threepercenternation.com|tiebreaker.com|tosavealife.com|twisted.news|universityherald.com|vcpost.com|videogamesblogger.com|viralnova.com|wakingtimes.com|westernjournalism.com|worldlifestyle.com|youthhealthmag.com
@@||addictinginfo.*^$ghide
100percentfedup.com,activistpost.com,addictinginfo.*,allthingsvegas.com,americasfreedomfighters.com,appleeats.com,bestfunnyjokes4u.com,bighealthreport.com,breakingfirst.com,bugout.news,bulletsfirst.net,canadafreepress.com,cheapism.com,cheatsheet.com,chicksonright.com,clashdaily.com,constitution.com,craigjames.com,dailyheadlines.net,dailysurge.com,deneenborelli.com,designbump.com,enstarz.com,evil.news,faithit.com,firstinfreedomdaily.com,foreverymom.com,freedom.news,godfatherpolitics.com,grammarist.com,greatamericanrepublic.com,hackspirit.com,latinpost.com,madworldnews.com,moneyversed.com,musictimes.com,naturalblaze.com,newser.com,opednews.com,patriotoutdoornews.com,politicaloutcast.com,realmomsrealreviews.com,realtytoday.com,redmaryland.com,reviveusa.com,rightwingtribune.com,rollingout.com,sciencetimes.com,shark-tank.com,sonsoflibertymedia.com,stupid.news,survivalnation.com,telexplorer.com.ar,thealternativedaily.com,theblacksphere.net,thedesigninspiration.com,thefreethoughtproject.com,thegatewaypundit.com,thehayride.com,thelastlineofdefense.org,thelibertydaily.com,themattwalshblog.com,thepoke.co.uk,thepolitistick.com,therealside.com,threepercenternation.com,tiebreaker.com,tosavealife.com,twisted.news,universityherald.com,vcpost.com,videogamesblogger.com,viralnova.com,wakingtimes.com,westernjournalism.com,worldlifestyle.com,youthhealthmag.com##.adsbygoogle
100percentfedup.com,activistpost.com,addictinginfo.*,allthingsvegas.com,americasfreedomfighters.com,appleeats.com,bestfunnyjokes4u.com,bighealthreport.com,breakingfirst.com,bugout.news,bulletsfirst.net,canadafreepress.com,cheapism.com,cheatsheet.com,chicksonright.com,clashdaily.com,constitution.com,craigjames.com,dailyheadlines.net,dailysurge.com,deneenborelli.com,designbump.com,enstarz.com,evil.news,faithit.com,firstinfreedomdaily.com,foreverymom.com,freedom.news,godfatherpolitics.com,grammarist.com,greatamericanrepublic.com,hackspirit.com,latinpost.com,madworldnews.com,moneyversed.com,musictimes.com,naturalblaze.com,newser.com,opednews.com,patriotoutdoornews.com,politicaloutcast.com,realmomsrealreviews.com,realtytoday.com,redmaryland.com,reviveusa.com,rightwingtribune.com,rollingout.com,sciencetimes.com,shark-tank.com,sonsoflibertymedia.com,stupid.news,survivalnation.com,telexplorer.com.ar,thealternativedaily.com,theblacksphere.net,thedesigninspiration.com,thefreethoughtproject.com,thegatewaypundit.com,thehayride.com,thelastlineofdefense.org,thelibertydaily.com,themattwalshblog.com,thepoke.co.uk,thepolitistick.com,therealside.com,threepercenternation.com,tiebreaker.com,tosavealife.com,twisted.news,universityherald.com,vcpost.com,videogamesblogger.com,viralnova.com,wakingtimes.com,westernjournalism.com,worldlifestyle.com,youthhealthmag.com##[id*="box-ad"]
newser.com###divNSS
! https://github.com/NanoMeow/QuickReports/issues/2493
naturalblaze.com##[id^="div-gpt-ad"]
threepercenternation.com##[id*="ScriptRoot"]
newser.com##+js(aeld, load, Object)
cheatsheet.com##.has-ad
cheatsheet.com##.ad-loaded
cheatsheet.com##.top-ad
funnyand.com##.ad-unit-desktop
worldlifestyle.com##.adtext
westernjournal.com##.sponsor
sonsoflibertymedia.com##.z-ad-display
thedesigninspiration.com##.ad-unit
designbump.com##.disclaimer
clashdaily.com##[class*="-ad-"]
independentminute.com##.inf-onclickvideo-container
! 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
*/fuckadblock.$script,redirect=fuckadblock.js-3.2.0
! 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
*/blockadblock-$script,redirect=fuckadblock.js-3.2.0
! https://github.com/uBlockOrigin/uAssets/issues/1551
! https://github.com/uBlockOrigin/uAssets/issues/1554
*/wp-adblock-$script,redirect=fuckadblock.js-3.2.0
! https://github.com/gorhill/uBlock/issues/949
||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
||computerbild.de/assets/homad/*$xhr,redirect=nooptext,domain=computerbild.de
||i.auto-bild.de/assets/modules/homad/*$xhr,redirect=nooptext,domain=autobild.de
@@||tvspielfilm.de^$ghide
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/1841
||filestorage.chip.de/videoplayer^$1p
chip.de##+js(damoh-defuser)
chip.de##.video-wrapper > div.video-js
chip.de##.video-wrapper > video[style]:style(display:block!important;padding-top:0!important;)
! https://github.com/uBlockOrigin/uAssets/issues/6587
||chip.de/*&$script,1p
! https://github.com/uBlockOrigin/uAssets/issues/7589
chip.de##+js(json-prune, enabled, force_disabled)
##[href*="/afu.php"]
! https://github.com/uBlockOrigin/uAssets/issues/2840
kisscartoon.*##+js(aeld, mousedown, clientX)
kisscartoon.*##+js(nosiif, (), 500)
kisscartoon.*###upgrade_pop
! https://forums.lanik.us/viewtopic.php?f=64&t=27908
! https://github.com/gorhill/uBlock/issues/1354
freetimelearning.com,futeboltv.*,lustich.de,pixelexperience.org,readheroacademia.com,reqlinks.net,streamlord.com,studylecturenotes.com,superyachtfan.com,teachertube.com,videoadept.com##+js(nobab)
readheroacademia.com##strong:has-text(Adv)
! https://github.com/uBlockOrigin/uAssets/issues/7079
blackmod.net##.js-notices.notices--bottom_fixer.notices
! https://github.com/gorhill/uBlock/issues/1428
onrpg.com##a[href*="mmo-it.com/"]
! https://github.com/gorhill/uBlock/issues/1340#issuecomment-191082824
||gamingaffiliation.com^$3p
! https://github.com/uBlockOrigin/uAssets/issues/5156
sport1.de##+js(acis, addEventListener, adBlock)
||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
sport1.de##.s1-ad
sport1.de##strong:has-text(/anzeige/i)
! https://adblockplus.org/forum/viewtopic.php?f=10&t=44887
vaughn.live##+js(aopr, FAdB)
vaughn.live##.MvnAbvsLowerThirdWrapper
vaughn.live##.MvnHlsPlayerOverlayFixed
vaughn.live##.abvsDynamic
! https://github.com/uBlockOrigin/uAssets/issues/15
file-upload.net##+js(aopw, Fingerprint2)
||file-upload.net^$frame
file-upload.net##iframe
! https://github.com/uBlockOrigin/uAssets/issues/35
||g9g.eu^*fa.js$script,redirect=fuckadblock.js-3.2.0
||im9.eu^*fa.js$script,redirect=fuckadblock.js-3.2.0
||8s8.eu^*fa.js$script,redirect=fuckadblock.js-3.2.0
g9g.eu##+js(aopr, adBlockDetected)
! 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://forums.lanik.us/viewtopic.php?f=91&t=27188
||ligatus.com/*/angular-tag.js$script,redirect=ligatus.com/*/angular-tag.js
! https://forums.lanik.us/viewtopic.php?f=91&t=29609
||ligatus.com/*/angular-tag-https.js$script,redirect=ligatus.com/*/angular-tag.js
! https://github.com/uBlockOrigin/uAssets/issues/362
allmusic.com##.advertising
! Spotted on routine testing of opensubtitles.org
||104.198.198.188^$all
! https://forums.lanik.us/viewtopic.php?f=62&t=32144
||104.197.199.227^$all
! https://github.com/uBlockOrigin/uAssets/issues/699
opensubtitles.org##+js(acis, atob)
opensubtitles.org###loginBoxSubs
opensubtitles.org###network
! https://forums.lanik.us/viewtopic.php?f=62&t=31389
@@||livenewschat.eu^$ghide
livenewschat.eu##.adsbygoogle
livenewschat.eu##.widget_taboola
livenewschat.eu##aside:has([id^="div-gpt-ad"])
! https://github.com/NanoMeow/QuickReports/issues/144
redtube.com,redtube.net###ab_banner
redtube.com,redtube.net###browse_section > div:has(:scope > div > a.ad-link)
redtube.net###pb_block
||fotzenparty.eu^$important
://192.168.*/images/$important,domain=pornhub.*|pornhubthbh7ap3u.onion|xtube.com
!pornhub.*,pornhubthbh7ap3u.onion,xtube.com##+js(aopw, AdDelivery)
pornhub.*,pornhubthbh7ap3u.onion##.sectionWrapper > div[class]:has(:scope > div > .ad-link)
! https://github.com/uBlockOrigin/uAssets/issues/39#issuecomment-269403620
/fp.eng?id=$popunder
! https://github.com/uBlockOrigin/uAssets/issues/2913
pornhub.*,pornhubthbh7ap3u.onion##sads
! https://github.com/uBlockOrigin/uAssets/issues/7164
rt.pornhub.*,rt.pornhubthbh7ap3u.onion##div[id^="customSkin"]
rt.pornhub.*,rt.pornhubthbh7ap3u.onion##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(aopw, nb)
youjizz.com##+js(noeval)
youjizz.com###desktopFooterPr
! https://forums.lanik.us/viewtopic.php?f=62&t=35109
! https://github.com/uBlockOrigin/uAssets/issues/1144
! https://github.com/uBlockOrigin/uAssets/issues/4288
||ad2up.com^$frame,redirect=noopframe,domain=al.ly|ally.sh
||clksite.com^$frame,redirect=noopframe,domain=al.ly|ally.sh
al.ly##+js(aeld, click, popunder)
al.ly,ally.sh##+js(noeval)
al.ly,ally.sh##+js(popads.net)
||marketing.al.ly^$script
||adservice.google.com^$script,important,domain=al.ly|ally.sh
@@||al.ly^$ghide
@@||ally.sh^$ghide
@@||ally.sh/static/*$script,domain=al.ly
@@||googlesyndication.com/pagead/$script,domain=ally.sh|al.ly
al.ly,ally.sh##[id^="aswift"]
@@||dausel.co/static/js/jquery.min.js$script,domain=ally.sh
ally.sh##.ads
! 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
mumbaimirror.indiatimes.com##body:style(overflow: auto !important;)
mumbaimirror.indiatimes.com###container:style(opacity: 1 !important;)
mumbaimirror.indiatimes.com###blcontent
mumbaimirror.indiatimes.com###blwrapper
timesofindia.indiatimes.com##:xpath(//p[contains(text(),"Ad ")]/../..)
economictimes.indiatimes.com##.active > ul > li:has-text(Ad:)
timesofindia.indiatimes.com##.hm_adlist
timesofindia.indiatimes.com##.esi_container:has([onclick] P:matches-css-before(content:/Ad/))
timesofindia.indiatimes.com##[onclick] .btxt:matches-css-before(content:/Ad/):xpath(../../..)
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/)
||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(../..)
@@||s0.2mdn.net/instream/html5/ima3.js$script,domain=indiatimes.com
@@||videoplayer.indiatimes.com/*/comscore.streaming.js$script,domain=indiatimes.com|samayam.com
m.timesofindia.com##.asAffiliate
indiatimes.com,m.timesofindia.com,seithy.com##.slick-track
timesofindia.indiatimes.com##.asAffiliate
##[href^="https://timesofindia.indiatimes.com/affiliate_amazon.cms"]
##[href^="https://m.timesofindia.com/affiliate_amazon.cms"]
! https://github.com/uBlockOrigin/uAssets/issues/4056
economictimes.indiatimes.com##+js(nostif, objSubPromo)
economictimes.indiatimes.com###aroundweb
economictimes.indiatimes.com##:xpath(//span[contains(text(),"More from ")]/../preceding-sibling::div)
economictimes.indiatimes.com##:xpath(//span[contains(text(),"Around The")])
economictimes.indiatimes.com##div h2:has(span:matches-css-before(content:/Sponsored/))
economictimes.indiatimes.com##:xpath(//p[contains(text(),"Ad:")]/../..)
||indiatimes.com/*/columbia_logo.png$image
@@||jsm.etimg.com/js_etsub/*.cms$script,domain=m.economictimes.com
m.economictimes.com###appBanner,#stickyBanner
indiatimes.com###pollBudgetWidget
||malayalam.samayam.com/*/amazon_widget.cms?type=amazondeal$frame
navbharattimes.indiatimes.com##.parallaxDiv.ad1
navbharattimes.indiatimes.com##.colombia
! https://github.com/uBlockOrigin/uAssets/issues/168#issuecomment-726134068
maharashtratimes.com##.float-amz.btn_openinapp
maharashtratimes.com##.ad1
maharashtratimes.com##.colombia
##[href^="https://trk.clmbtrck.in/click"]
maharashtratimes.com##[href^="https://maharashtratimes.com/pwafeeds/affiliate_amazon.cms"]
navbharattimes.indiatimes.com##[href^="https://navbharattimes.indiatimes.com/pwafeeds/affiliate_amazon.cms"]
indiatimes.com##[href^="https://indiatimes.com/pwafeeds/affiliate_amazon.cms"]
*/pwafeeds/amazon
maharashtratimes.com##.ads-open-close
navbharattimes.indiatimes.com##.ads-open-close
! 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
kicker.de,myspass.de,spielaffe.de,tele5.de##+js(golem.de)
! https://adblockplus.org/forum/viewtopic.php?f=10&t=45273&start=15#p156427
dailycaller.com##.ad
! https://github.com/uBlockOrigin/uAssets/issues/70
! https://forums.lanik.us/viewtopic.php?p=99583#p99583
aranzulla.it##+js(aopr, navigator.userAgent)
! 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##.banner
uol.com.br##.bg-banner
uol.com.br##[id^="banner-300x250"]:remove()
! https://news.ycombinator.com/edit?id=12281229
quora.com##body:style(overflow: auto !important)
! https://github.com/NanoAdblocker/NanoFilters/issues/42
quora.com##.signup_wall_prevent_scroll .SiteHeader,.signup_wall_prevent_scroll .LoggedOutFooter,.signup_wall_prevent_scroll .ContentWrapper:style(filter: none !important;)
! 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://forums.lanik.us/viewtopic.php?f=62&t=32109
ndtv.com###ndtv-message-users
ndtv.com###ins_videodetail:style(display: block !important;)
! https://github.com/uBlockOrigin/uAssets/issues/98
facebook.com,facebookcorewwwi.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,facebookcorewwwi.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,touch.facebookcorewwwi.onion,mtouch.facebookcorewwwi.onion,x.facebookcorewwwi.onion,iphone.facebookcorewwwi.onion,touch.beta.facebookcorewwwi.onion,m.facebook.com,m.facebookcorewwwi.onion,b-m.facebook.com,b-m.facebookcorewwwi.onion,mobile.facebook.com,mobile.facebookcorewwwi.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,facebookcorewwwi.onion##.ego_section:has(a.adsCategoryTitleLink)
! https://github.com/uBlockOrigin/uAssets/issues/507
facebook.com,facebookcorewwwi.onion###stream_pagelet [id^="hyperfeed_story_id_"]:has(span._4dcu)
! https://github.com/uBlockOrigin/uAssets/issues/722
facebook.com,facebookcorewwwi.onion##.ego_column:if(a[href^="/campaign/landing"])
! https://forums.lanik.us/viewtopic.php?p=128997#p128997
!facebook.com,facebookcorewwwi.onion##[id^="hyperfeed_story_id_"]:if([id^="feed_subtitle_"] a[href]:matches-css-after(content:/Gesponsert|Sponsored|Sponsrad/))
!facebook.com,facebookcorewwwi.onion##div[data-testid="fbfeed_story"]:if(a[href*="[is_sponsored]"])
facebook.com,facebookcorewwwi.onion##.ego_section:if(a[href^="/ad_campaign"])
facebook.com,facebookcorewwwi.onion##.userContentWrapper:has(a[href*="/ads/"]):not(:has(a[href*="/ads/preferences"]))
! https://github.com/uBlockOrigin/uAssets/issues/3367
!facebook.com,facebookcorewwwi.onion##[id^="hyperfeed_story_id_"]:has(a[href*="client_token"])
facebook.com,facebookcorewwwi.onion#@#div[id^="hyperfeed_story_id_"]:has(a[href*="utm_campaign"])
facebook.com,facebookcorewwwi.onion##.userContentWrapper>div div>span>span:has-text(/^Suggested Post$/)
facebook.com,facebookcorewwwi.onion##div[id^="hyperfeed_story_id_"]:has(div > span:has(abbr .timestampContent):matches-css(display: none))
facebook.com,facebookcorewwwi.onion##.ego_section:has(a[href*="campaign_id"])
facebook.com,facebookcorewwwi.onion##div[id^=hyperfeed_story_id_]:has(span[data-ft="{\"tn\":\"j\"}"])
facebook.com,facebookcorewwwi.onion##.pagelet-group .pagelet:has(a:has-text(/Sponsored|Create ad|Crear un anuncio|Publicidad/))
! This removes blank space the right-hand side
mail.yahoo.com###shellcontent:style(right: 0px !important;)
! 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/NanoMeow/QuickReports/issues/3488
@@||nmac.to^$ghide
nmac.to##+js(aopr, open)
nmac.to##.adsbygoogle
! https://forums.lanik.us/viewtopic.php?f=64&t=24179
||googlesyndication.com^$script,redirect=noopjs,important,domain=sc2casts.com
! https://github.com/uBlockOrigin/uAssets/issues/2106
! https://github.com/uBlockOrigin/uAssets/issues/3573
userscloud.com##+js(acis, Math, XMLHttpRequest)
userscloud.com##+js(aopr, parcelRequire)
userscloud.com##+js(aopw, Fingerprint2)
userscloud.com##+js(aopw, open)
userscloud.com##+js(ra, onclick, .btn-icon-stacked)
userscloud.com##A[href$=".html"][rel="nofollow norefferer noopener"]
||userscloud.com^$csp=script-src 'self' 'unsafe-inline' *.google-analytics.com *.cloudflare.com *.gstatic.com *.google.com *.solvemedia.com *.recaptcha.net
||userscloud.com/sw.js$script
@@||userscloud.com^$ghide
||pix.sr/images/banner
! 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://adblockplus.org/forum/viewtopic.php?f=10&t=48156
trafictube.ro##.smecher
trafictube.ro##.widget-smecher
! https://github.com/uBlockOrigin/uAssets/issues/104
m.timesofindia.com,m.photos.timesofindia.com##.ad1
@@||imasdk.googleapis.com/js/sdkloader/ima3.js$script,domain=m.timesofindia.com
! 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(nostif, adBlockDetectionStart)
! 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)
! https://github.com/uBlockOrigin/uAssets/issues/110
! https://github.com/uBlockOrigin/uAssets/issues/4705
finanzen.*##+js(nosiif, nrWrapper)
finanzen.*##+js(nosiif, text/css, 10)
finanzen.*##+js(nostif, .call(null), 10)
finanzen.*##+js(nostif, nrWrapper)
finanzen.*###adup1
finanzen.*##^script:has-text(Inject=!)
finanzen.*###bs_abstand
finanzen.*##[id^="sas_"]:style(height: 1px !important)
||images.finanzen.net/*banner$image
finanzen.net##.pull-right.img-responsive
finanzen.net##:xpath(//*[contains(text(),"Werbung")]) + [class]
! https://github.com/reek/anti-adblock-killer/issues/2000
! https://github.com/NanoMeow/QuickReports/issues/1068
360haven.com##+js(nobab)
@@||360haven.com^$script,xhr,1p
||googlesyndication.com^$script,important,domain=360haven.com
360haven.com###pageWrapper:style(display: initial !important;)
360haven.com###notices
360haven.com###ad_global_above_footer
! https://github.com/uBlockOrigin/uAssets/issues/127
gadgets.ndtv.com##.adblockerContent:style(display: initial !important;)
gadgets.ndtv.com###ndtv-message-userss
! https://forums.lanik.us/viewtopic.php?p=102620#p102620
amazon.*###s-results-list-atf > .s-result-item:has(:scope > .s-item-container h5.s-sponsored-list-header)
! https://github.com/uBlockOrigin/uAssets/issues/1278
amazon.*###s-results-list-atf > .s-result-item:has(:scope > .s-item-container h5.s-sponsored-header)
! https://github.com/uBlockOrigin/uAssets/issues/399
amazon.*##.s-result-item:has(:scope > .s-item-container > h5 .s-sponsored-info-icon)
! https://github.com/uBlockOrigin/uAssets/issues/150
||googletagservices.com/tag/js/gpt.js$script,important,domain=theinquirer.net
! https://forums.lanik.us/viewtopic.php?p=131942#p131942
imagefap.com##+js(aopr, Buu.serve)
imagefap.com##+js(aeld, click, [native code])
imagefap.com##+js(acis, $, open)
imagefap.com##iframe[src="about:blank"]
*$popunder,domain=imagefap.com,3p
! https://github.com/uBlockOrigin/uAssets/issues/1347
motherless.com##+js(set, _ml_ads_ns, null)
motherless.com##+js(acis, jQuery, cookie)
! https://forums.lanik.us/viewtopic.php?f=62&t=33080
! https://twitter.com/southro_p/status/932863110011961344
twitter.com##.stream .tweet[data-card2-type="promo_website"]
! https://forums.lanik.us/viewtopic.php?f=62&t=33194
/?*&callback=callback_json_adblade*$script
! https://forums.lanik.us/viewtopic.php?f=62&t=32878
freethesaurus.com,thefreedictionary.com##div:has(:scope > a:not([href*="/"]) > img:not([src*="/"]))
freethesaurus.com,thefreedictionary.com##+js(nostif, warn)
! https://github.com/uBlockOrigin/uAssets/issues/1896
freethesaurus.com,thefreedictionary.com##+js(aopr, adc)
freethesaurus.com,thefreedictionary.com##div[class][id]:not(.logo):if-not(*):has-text(/^$/)
freethesaurus.com,thefreedictionary.com###sidebar > .widget:not([id]):has(>.holder > a[href])
! To counter exception filters
||googlesyndication.com^$script,important,domain=thefreedictionary.com
! https://github.com/uBlockOrigin/uAssets/issues/157
||npttech.com/advertising.js$important,script,redirect=fuckadblock.js-3.2.0
! https://news.ycombinator.com/item?id=12677179
||x.shopsavvy.com^$3p
! https://twitter.com/Scarbir/status/785551814460571648
||static.chartbeat.com/js/chartbeat.js$script,redirect=static.chartbeat.com/chartbeat.js,domain=gamer.nl
! http://www.neogaf.com/forum/showthread.php?t=1229205&page=27
||adnety.com^
||adnety.com^$popup
! https://github.com/uBlockOrigin/uAssets/issues/160
cnn.com##.OUTBRAIN
! https://github.com/NanoMeow/QuickReports/issues/3179
money.cnn.com##section.column:has(:scope > #moneySponsors)
! https://github.com/uBlockOrigin/uAssets/issues/163
! https://github.com/uBlockOrigin/uAssets/issues/534
! https://github.com/uBlockOrigin/uAssets/issues/1286
! https://github.com/uBlockOrigin/uAssets/commit/ebbef70dba69e38946329793dc00d988d1cbb85e#commitcomment-34299631
1337x.*##.download-links-dontblock > LI:has-text(Anon)
1337x.*##.download-links-dontblock > LI:has-text(Stream)
1337x.*##a[href^="/redirectmusic.php"]
1337x.*##a[href^="/spyoff"]
1337x.*##a[href*="//steepto.com/"]
! https://github.com/uBlockOrigin/uAssets/issues/635
! https://www.reddit.com/r/uBlockOrigin/comments/81hcu5/1337xto_annoying_popup/
! https://www.reddit.com/r/uBlockOrigin/comments/bpm1l9/trying_to_download_something_from_13377x_and_keep/
13377x.*##+js(acis, decodeURI, decodeURIComponent)
1337x.*,x1337x.*##+js(nowebrtc)
||x1337x.ws/sw.js$script,1p
x1337x.eu##.mgbox
! https://github.com/uBlockOrigin/uAssets/issues/6606
1337x.*##+js(aopr, AaDetector)
@@||torrage.info/torrent.php$popup,domain=1337x.to
||1337x.*/sw.js$script,1p
! https://discourse.mozilla-community.org/t/support-ublock-origin/6746/224
! https://github.com/uBlockOrigin/uAssets/issues/1915
! https://github.com/uBlockOrigin/uAssets/issues/3142
! https://github.com/NanoMeow/QuickReports/issues/6
! https://github.com/NanoMeow/QuickReports/issues/2216
linkneverdie.com##+js(nostif, _$_, 7000)
linkneverdie.com##+js(nostif, remove, 4000)
linkneverdie.com###adsqc
! https://github.com/uBlockOrigin/uAssets/issues/161
||uim.tifbs.net/js/*.js$script,redirect=noopjs,domain=gmx.at|gmx.ch|gmx.net|web.de
! https://github.com/uBlockOrigin/uAssets/issues/6834
web.de##.main [data-ac]:empty
gmx.*##.main [data-ac]:empty
! https://adblockplus.org/forum/viewtopic.php?f=1&t=49326
||ditwrite.com^$document
! https://github.com/uBlockOrigin/uAssets/issues/3907
mio.to##+js(acis, document.getElementById, abmsg)
! https://github.com/uBlockOrigin/uAssets/issues/195
techsupportpk.com##+js(nobab)
! https://twitter.com/deHaller/status/799610859093983232
||smartwall.swisspay.ch^$xhr,domain=letemps.ch
! https://github.com/uBlockOrigin/uAssets/issues/200
criminalcasetools.com##+js(nobab)
! 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(acis, showAds)
golem.de##+js(no-fetch-if, damoh.golem.de)
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/"]
tweaktown.com##[id^="div-gpt-ad"]
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"))
! https://github.com/uBlockOrigin/uAssets/issues/206
geektime.co.il##+js(nostif, adObjects)
! https://forums.lanik.us/viewtopic.php?f=62&t=34324
carbuyer.co.uk##+js(aopr, _sp_.mms.startMsg)
! https://github.com/uBlockOrigin/uAssets/issues/3560
! https://github.com/uBlockOrigin/uAssets/issues/7753
@@||asadcdn.com/adlib/$css,domain=bild.de
@@||asadcdn.com/adlib/pages/bild.js$script,domain=bild.de
@@||ioam.de/iam.js$script,domain=bild.de
@@||bild.de^$ghide
!@@||tags.tiqcdn.com^$script,domain=bild.de
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
! 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)
bild.de##+js(json-prune, adBlockWallEnabled)
bild.de##+js(set, __NUXT__.state.curation.page.config.ADBLOCKWALL, false)
! https://github.com/uBlockOrigin/uAssets/issues/8360
gamesarkadium.bild.de##+js(nano-sib)
@@||arkadiumhosted.com^$script,domain=gamesarkadium.bild.de
@@||imasdk.googleapis.com/js/sdkloader/ima3.js$script,domain=gamesarkadium.bild.de
! 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://forums.warframe.com/topic/737248-adblock-now-banned-on-wikia-including-warframe-wiki/
wikia.com##+js(aopw, _sp_)
! 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
123movies.net,2ddl.*,allitebooks.*,bfstrms.xyz,bonstreams.net,buzzfil.net,convertinmp4.com,cric1.com,crictime.com,ddlvalley.me,dramamate.*,eztv.*,filmvf.cc,fluvore.com,fullmatchesandshows.com,go4up.com,icefilms.info,igg-games.com,kiss-anime.*,letmewatchthis.*,liveflashplayer.org,mac-torrents.com,mkvcage.*,movie4k.org,nflstream.io,oceanoffgames.com,pastehere.xyz,pdf-giant.com,playoffsstream.live,radiofly.ws,readmanga.today,sawlive.tv,skidrowcrack.com,sportshd.me,strdef.world,streamfilmzzz.com,streamzzz.online,subswiki.com,toros.co,uptobox.com,weakspell.com,webcric.com,yts.*,zooqle.*,zunoxhd.stream##+js(nowebrtc)
123movies.la##a[href*="bit.ly"]
##[href^="https://adsrv4k.com/"]
! https://github.com/uBlockOrigin/uAssets/issues/245
gamer.com.tw##img[onload="AntiAd.check(this)"]
gamer.com.tw##+js(aopr, AntiAd.check)
! To counter unnecessary exception filters
||googlesyndication.com^$script,important,domain=champion.gg|gsmarena.com
! https://github.com/uBlockOrigin/uAssets/issues/244
skidrowreloaded.com##+js(acis, decodeURI, _POP)
skidrowreloaded.com##+js(aopw, _pop)
skidrowreloaded.com##+js(acis, open)
skidrowreloaded.com##+js(no-fetch-if, /^/)
||luntablesta.fun^
! skidrowcodexgames.com ads
skidrowcodexgames.com##+js(aopr, _pop)
||skidrowcodexgames.com/sw.js$script,1p
skidrowcodexgames.com##[class^="aligncenter wp-image-"]
*$script,3p,denyallow=addtoany.com|cdn77.org|googleapis.com|google.com|gstatic.com|wp.com,domain=skidrowcodexgames.com
! https://github.com/uBlockOrigin/uAssets/issues/261
javadecompilers.com##+js(nobab)
javadecompilers.com##+js(aopr, bioEp)
! Sourcepoint
! https://forums.lanik.us/viewtopic.php?f=62&t=34570
! https://github.com/uBlockOrigin/uAssets/issues/266
autobytel.com,cesoirtv.com,gamesradar.com,huffingtonpost.co.uk,huffingtonpost.com,moviefone.com,playboy.de##+js(aopw, _sp_)
faz.net##+js(acis, $, _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,autofrage.net,bikeradar.com,blick.ch,chefkoch.de,computerfrage.net,cyclingnews.com,digitalspy.com,democratandchronicle.com,denofgeek.com,esgentside.com,evo.co.uk,exclusivomen.com,finanzfrage.net,ft.com,gala.de,gala.fr,gesundheitsfrage.net,gutefrage.net,heatworld.com,itpro.co.uk,livingathome.de,masslive.com,maxisciences.com,metabomb.net,mlive.com,motherandbaby.co.uk,motorcyclenews.com,motorradfrage.net,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,sportlerfrage.net,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)
speedtest.net##+js(aopr, _sp_)
! https://github.com/NanoMeow/QuickReports/issues/928
usatoday.com##+js(aopr, _sp_._networkListenerData)
usatoday.com##[aria-label="advertisement"]
usatoday.com##[data-gl-method="initTaboola"]
! https://old.reddit.com/r/uBlockOrigin/comments/e6zd3g/is_it_possible_to_alter_an_element_rather_than/
usatoday.com##.gnt_n:style(top: 0 !important; margin-top: 0 !important;)
! https://github.com/uBlockOrigin/uAssets/issues/273
cwtv.com##+js(noeval)
! https://github.com/uBlockOrigin/uAssets/issues/280
! https://github.com/jspenguin2017/uBlockProtector/issues/1070
download.mokeedev.com##+js(set, adVerified, false)
download.mokeedev.com##+js(nostif, adsbygoogle, 5000)
download.mokeedev.com##+js(nostif, alert-danger-enabled)
||download.mokeedev.com/js/jquery-common.js.*$1p,script,redirect=fuckadblock.js-3.2.0
||googlesyndication.com^$script,redirect=noopjs,domain=download.mokeedev.com
! 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
||amazonaws.com/homad-global-configs.schneevonmorgen.com$xhr,domain=spiegel.de
||svonm.com/hd-main.j$xhr,domain=spiegel.de
spiegel.de##+js(json-prune, enabled, config)
! 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
quora.com##.spacing_log_question_page_ad
!#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
www.quora.com##.u-margin-top--lg+div[class="UnifiedAnswerPagedList PagedListFoo unified"][id$="_paged_list"]
www.quora.com##.pagedlist_item > div[id$="_paged_list"]
www.quora.com##.answer_auto_expanded_comments + div > div.feed_expand
www.quora.com##.feedback_wrapper.hidden:not(.negative_action) + .FeedStory.HyperLinkFeedStory.feed_item
www.quora.com##div[class="question_main_col"] > div:nth-child(3) > div[class="UnifiedAnswerPagedList PagedListFoo unified"]
www.quora.com##div[class="pagedlist_item"] div[id*="paged_list"]
www.quora.com##.q-box.qu-borderAll>.q-box>div>div[class^="Box-sc-"]>div:not([class])
www.quora.com##.q-box.qu-borderTop>[class^="Box-sc-"]>div:not([class])
www.quora.com##div > [class^="Box-"] > div > .q-box.qu-pb--tiny.qu-pt--medium.qu-px--medium
www.quora.com##.qu-bg--white>[class^="Box-"] .qu-pt--medium
www.quora.com##.q-box.qu-borderTop>[class^="Box-"] .q-box.qu-pt--medium.qu-pb--tiny
www.quora.com##.q-box.qu-borderAll>.q-box>div:not([class="q-box"])>[class^="Box-"]
www.quora.com##.q-box.qu-borderAll.qu-bg--white>.q-box>div>[class="q-box "]>[class="q-box"]
www.quora.com##[class="q-box qu-borderTop"]>[class="q-box "]
www.quora.com##[class="q-box qu-bg--white"]>[class="q-box "]>[class="q-box"]
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
! https://github.com/uBlockOrigin/uAssets/issues/1835
||woahizouty.com^
world4freeu.*##+js(acis, String.fromCharCode, /btoa|break/)
##[onclick*="window.open('http://deloplen.com/"]
! 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://www.reddit.com/r/uBlockOrigin/comments/5w0phj/massive_amount_of_popup_not_getting_blocked_since/
! https://github.com/uBlockOrigin/uAssets/issues/299
! https://github.com/uBlockOrigin/uAssets/issues/846
! https://www.reddit.com/r/uBlockOrigin/comments/94c6rr/im_a_bit_of_a_noob_and_need_some_help_blocking/
zippyshare.com##+js(noeval)
rarbg.unblockall.org,rarbgtor.org##+js(aopr, __htapop)
rarbgmirrored.org,rarbgproxy.org##+js(nowoif)
proxyrarbg.*,rarbg.is,rarbg.to,rarbgget.org,rarbgenter.org,rarbgprx.org,rarbgp2p.org,rarbgto.org,rarbgtorrents.org,rarbg2018.org,rarbg2019.org,rarbg2020.org,rarbg.unblockall.org,rarbg.unblocked.kim,rarbgaccess.org,rarbgcore.org,rarbgdata.org,rarbggo.org,rarbgmirror.*,rarbgproxied.*,rarbgproxy.*,rarbgtor.org,rarbgunblock.*,rarbgunblocked.org,rarbgweb.org,unblockedrarbg.org##+js(aopr, LieDetector)
proxyrarbg.*,rarbg.is,rarbg.to,rarbgget.org,rarbgenter.org,rarbgprx.org,rarbgp2p.org,rarbgto.org,rarbgtor.org,rarbgtorrents.org,rarbg2018.org,rarbg2019.org,rarbg2020.org,rarbg.unblockall.org,rarbg.unblocked.kim,rarbgaccess.org,rarbgcore.org,rarbgdata.org,rarbggo.org,rarbgmirror.*,rarbgmirrored.org,rarbgproxied.*,rarbgproxy.*,rarbgunblock.*,rarbgunblocked.org,rarbgweb.org,unblockedrarbg.org##.lista > tbody > tr:has-text(/v\s{0,}p\s{0,}n/i)
||ladsup.com^$all
mediafire.com##+js(aeld, click, ClickHandler)
mediafire.com##.errorExtraContent
! https://adblockplus.org/forum/viewtopic.php?f=1&t=48423
! https://www.reddit.com/r/uBlockOrigin/comments/6o9hax/ublockorigin_no_longer_works_on_gelbooru_as_of/
! https://github.com/uBlockOrigin/uAssets/issues/603
! https://forums.lanik.us/viewtopic.php?f=64&t=31945
! https://github.com/uBlockOrigin/uAssets/issues/3826
gelbooru.com##+js(acis, BPJS)
gelbooru.com##+js(acis, ExoDetector)
gelbooru.com##+js(aopr, adtoniq)
gelbooru.com##+js(popads-dummy)
||exosrv.com^$script,redirect=noopjs,domain=gelbooru.com
||rule34.us/ad.html$frame
! https://github.com/uBlockOrigin/uAssets/issues/1081
! https://www.reddit.com/r/uBlockOrigin/comments/8sbjjk
rule34.xxx##+js(aopr, newcontent)
rule34.xxx##a[href*=".html"]
rule34.xxx##[src^="https://rule34.xxx/aa/"]
rule34.xxx###right-col > div > #lbot1.a_list
||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/1080
xbooru.com##a[href^="https://xbooru.com/c.html"]
||xbooru.com^$frame,1p
! kbb .com anti adb ads
kbb.com##+js(aopr, KBB.DetectBlockerExtensions)
@@||kbb.com^$ghide
kbb.com##.spotlight__ad
kbb.com##.ads__disclaimer
kbb.com##[id^="kbbAds"]
! https://github.com/uBlockOrigin/uAssets/issues/305
||ads.pro-market.net/ads/scripts/site-120903.js$script,redirect=silent-noeval.js,domain=destructoid.com
! https://github.com/uBlockOrigin/uAssets/issues/308
! https://forums.lanik.us/viewtopic.php?p=145682#p145682
movie-blog.*##+js(acis, decodeURI, decodeURIComponent)
movie-blog.*##+js(acis, puShown, /doOpen|popundr/)
movie-blog.*##+js(popads-dummy)
movie-blog.*##+js(set, String.prototype.charCodeAt, trueFunc)
! Fingerprint2 popups
adf.ly,ay.gy,crackingpatching.com,dfiles.eu,downsub.com,easyview.eu,freegamesdl.net,hulkload.com,j.gs,karanpc.com,macserial.com,microify.com,minecraft-forum.net,moviemaniac.org,onmovies.*,opensubtitles.org,pirateproxy.*,pleermp3.net,psarips.*,q.gs,security-links.com,snowfiles.com,solidfiles.com,suprafiles.org,thepiratebay.org,uploadrocket.net,uptobox.com,zippyshare.com##+js(aopw, Fingerprint2)
||crackingpatching.com/sw.js$script,1p
||livewidget.net^
solidfiles.com##.remove
thepiratebay.org##[href^="http://www.coiwqe.site/"]
! https://github.com/AdguardTeam/AdguardFilters/issues/62689
filessharing.net##+js(nosiif, visibility, 1000)
||filessharing.net/sw.js$script,1p
filessharing.net##[href*="advertisement"]
filessharing.net##[href^="https://xexpertxsoftwarex.com/"]