-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
annoyance_list.txt
1277 lines (1223 loc) · 85 KB
/
annoyance_list.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Adblock Plus 2.0]
! Title: 🛠️ yokoffing's Annoyance List
! Description: Hide annoyances and extraneous page elements ("related articles", "read more", etc.) not covered by other lists
! Homepage: https://github.com/yokoffing/filterlists
! Expires: 4 days (update frequency)
! Version: 8 November 2024
! Syntax: AdBlock
geeksforgeeks.org##.widget-area, .article--recommended
wccftech.com##.related-story, .related-stories.aside
mspoweruser.com##.left-sidebar
search.brave.com##.download-cta
infinite.tcgplayer.com##.subscribe-drawer
techradar.com##.hawk-deal-widget-container
psypost.org##em > strong, .jnews_related_post_container
cloudflare.com##.ph3.items-center.flex-l, .bottom-0.fixed
dev.to##.popover-billboard.crayons-sponsorship, .crayons-sponsorship
pymnts.com##.adContainer, .pymnt_ads, .recommended-articles
tcgplayer.com##.promo-banner.delay-wrapper
ign.com##.article-page > section.jsx-537794787
spirehealthcare.com##.call-to-action--floatingButton
blocknews.com##.theiaStickySidebar, .jnews_related_post_container
whatsoftware.com##.commentlist, .comment-respond, .yarpp-related-website.yarpp-related.yarpp
vocabulary.com##.vocab-trainer-background
washingtonpost.com##.hide-for-print
returnbyte.com##.clearfix.sidebar.widget-area, .post-navigation, .featured-related-posts, .widget-title, .comments-area
wired.com##.callout--has-top-border
whonix.org###fly-in-notification-panel
emojipedia.org##.mt-6.gap-6.flex-col.flex
pcwrt.com##[href="https://shop.pcwrt.com/"]
portswigger.net##.sidebar-content, .footer
robokiller.com##.blog-cta-1, .blog-cta-2, .w-richtext-align-fullwidth.w-richtext-figure-type-image
skyscanner.com##.UnpricedBrandInline_link__YmFhN > .BpkTicket_bpk-ticket__NzNiO, .PriceAlertsBanner_banner__M2E0M.BpkCard_bpk-card--padded__OTI5O.BpkCard_bpk-card--atomic-button__YWFjM.BpkCard_bpk-card__NTJiY, .InlineHotelsBanner_inlineHotelsBannerContainer__Nzc5Z
jetblue.com##.jtpcars-list
tmz.com##.media-list, .sidebar, .js-track-link.image-block__link.media-link
pressplay.top##.btn-block
apnews.com##.Enhancement
adweek.com##.widget-popular, .section--teaser_partners--horizontal.section--teaser_partners.section--teaser.section
jamiesawyer336.com##.social-links, .subscribe-form
pureinfotech.com##.top-share-buttons
techtarget.com##.cluster-branding-container, .cluster-download, .cluster-callout-right, .show.download-button, .desktop-resources-bar.resources-bar
tomsguide.com##.hawk-main-editorial-container
forbes.com##.link-embed.color-body-border.color-body.embed-base
citationmachine.net###--ucf-upload-widget-modal-container
grammarist.com##.inside-right-sidebar, div.wp-block-column-is-layout-flow.is-layout-flow.wp-block-column
tomshardware.com##.hawk-main-editorial-container
macrumors.com##.noskim
infoworld.com##h4, .end-note
techreviewteam.com##.wp-widget-group__inner-blocks
medium.com##.adm.adl.abi.m, .bg.adn.abg.adp
innotechtoday.com##.elementor-element-aff5945.elementor-element.elementor-top-column.elementor-col-100.elementor-column.has_eae_slider > .elementor-element-populated.elementor-widget-wrap, .sticky-column, .elementor-widget-heading.elementor-widget.elementor-element-e95e952.elementor-element > .elementor-widget-container
androidauthority.com##.-___sc
thenextweb.com##.sidebarRelated
unherd.com##div.ref-ar:nth-of-type(even), div.ref-ar:nth-of-type(odd)
thecrimson.com##.css-rfa55z
howfix.net##.widget-recent
datajournalismtoday.com##.lnKYSq.bVF0DD
intheknow.com##.rr, #see-also, #exclusive-offers
hipaajournal.com###sidebar, .spu-clickable, .wppopups-whole, .featured-action
myip.ms##.float_panel
circleid.com##.newsletterSignUpBox
foodandwine.com##.recirc-section.comp, .share-item, .related-link.comp
gearpatrol.com##.embed-editorial-links, .transporter, .end-of-content-playlist
nbcchicago.com##.recirc-module, .wp-block-embed__wrapper, .featured-text, .most-popular__container
ghacks.net##.the_related_part
thehackernews.com##div.cf.gg-1, .badbox, .share-open-modal
builtin.com##.active.wrap-share-social-fixed
smartdnsproxy.com##.col-sm-4
dictionary.com##.fa-facebook
techradar.com##.page-widget-area-17, .more-about__container
soeren-hentzschel.at###sidebar
yofreesamples.com##.share-link
gizmodo.com##.js_more-below-post
medium.com##.abs.abr.yu.m
aeon.co##.cioYkv
sourceforge.net##.m-sidebar-widget
advocate.com##.recirculation__placeholder--hot-stories, .recirculation__placeholder--latest
howtogeek.com##.related-single, .sidebar-tabs, .sidebar-sticky, .article-footer-newsletter, .bottom.sharing
realnewsmichiana.com##.td_spot_img_all, .wpb_column.tdi_31.vc_column > .wpb_wrapper, .td-more-articles-box, .tdb-single-related-posts
1010wcsi.com###secondary
9anime.se##.header-group > .socials-group
9to5google.com,9to5mac.com,9to5toys.com##.top-comment, .featured-items, .amp-notbuilt.i-amphtml-notbuilt.i-amphtml-element.i-amphtml-layout-size-defined.i-amphtml-layout-intrinsic.amp-wp-enforced-sizes, .amp-wp-7023da7, .bg-wht-alt.comments-area, .related-guides-container, .show-promo.visitor-promo, .google-news-link, .post-meta > .icon-twitter
aa.com.tr##.detay-benzerHaberler.row, .donotprint.sticky-top
abc7.com##.inner.headlines-list.top-stories
abcnews.go.com##.Article__Column--sidebar.Article__Column, .Inline__Headline__Stack.InlineElement--desktop.InlineElement--content-width.InlineElement, .CalloutLink
abine.com##.widgetable
abqjournal.com###secondary > .widget-area, .abq_pw_container
accuweather.com##.full-mobile-width.content-module.article-newsfeed
additudemag.com##.sidebar-wrapper, .blockcontainer.related-more-articles-recommended-footer.recommended-articles
adidas.*##.glass-modal___1JNyq.gl-modal--full-mobile.gl-modal--active.gl-modal--mobile-full.gl-modal
aeon.co##.dylzaW.TenYearDriveBannerHeaderAlternate__Wrapper-sc-oqupvg-0, .klluhk.TenYearDriveBannerHeader__Wrapper-sc-onblf0-0, .fjpBon.styled__Wrapper-sc-cmz19t-3 > .jBQMtt.styled__Container-sc-19sp5ho-0, .cLaMGV.SupportBar__Wrapper-sc-lwimlo-0, .bEtSlf.styled__SocialLinks-sc-k4zh5d-7, .ihknSh.article__SocialShareBar-sc-br4ey4-14.fjpBon.styled__Wrapper-sc-cmz19t-3, .bEpMPq.styled__SocialLinks-sc-k4zh5d-7, .jmTZwK.Modal__Container-sc-14qp01n-0, .dhvMwm.article__SocialShareBar-sc-br4ey4-14.fjpBon.styled__Wrapper-sc-cmz19t-3
aeon.co##.NLFormInsertFromCMS
agar.io###mainui-promo, agar-io_300x250
aidsmap.com##.region-sidebar.region
aljazeera.com##.archipelago.article-pre-footer.article-more-from-author, .article-most-read, .archipelago.article-pre-footer.article-more-from-topic, .article-related-list__hr.article-related-list
allsides.com##.alert-message
allsides.com##.block-width-100.fundraising-block-flex, .even.last.block-block.block
allsides.com##.region-highlighted.region
allthatsinteresting.com###coral_talk_stream, .post-nav
allthings.how##.sidebar.widget-area.posts-sidebar
alphr.com##.js-also-like.sidebar__widget
altcoinbuzz.io##.td-ss-main-sidebar, .comments
alternative.me##.container > div.block
amazon.com##.payment-plan-02.payment-options-financing-option.payment-options-option.a-padding-small.a-spacing-small.a-section
android.com##.devsite-badger-award, devsite-snackbar
androidpolice.com###secondary, .next-btn.sentinel-article-nextArticle, .w-article-related
apa.org##.rtcol
apewisdom.io##.close-ad
apnews.com##.Component-block-0-2-358.relatedStory-0-2-362
apnews.com##.hubPeekContainerWide-0-2-378
apnews.com##.hubPeekMainArticle.compressedEmbed-0-2-146.noBorderBottom-0-2-145.HubPeek.Component-hubPeekEmbed-0-2-361
app.sushi.com##.slide.transform.duration-1000.ease-in-out.transition-all.text-5xl.justify-center.items-center.flex.inset-0.absolute.h-\[96px\].block
appleinsider.com##.article-comments.row, .col-lg-3 > div.hidden-xs, .hidden-xs.article-comments.row, .primis-ad-wrap
appleinsider.com##.deals-widget, .deal-highlight
arkansasonline.com##.fa-facebook-f.fab, .fa-twitter.fab, .fa-instagram.fab
arstechnica.com###promoted-comments, #article-footer-wrap
arstechnica.com###social-footer, social-footer > .icon-comment-bubble-down.comment-count, .story-sidebar-part
artificialintelligence-news.com##.cell.large-3.medium-5.small-12.sidebar
asianews.it##.box-content_blocchi, .wrap > .box_up
askvg.com##.sidebar
asos.com##.UKYji
averagelinuxuser.com###comment-section
barrons.com##.article__inset--wrap.article__inset--type-InsetNewsletterSignup
bbc.com##.e3eyuya5.ssrcss-msolhr-LinksWrapper
bbc.com##.e5tfeyi0.ssrcss-1o5f7ft-BulletListContainer > ul
bbc.com##aside
bbc.com##aside.e1ia0oo95.ssrcss-1kczfdm-AsideWrapper:nth-of-type(1), aside.e1ia0oo95.ssrcss-1kczfdm-AsideWrapper:nth-of-type(2), aside.e1ia0oo95.ssrcss-1kczfdm-AsideWrapper:nth-of-type(3), aside.e1ia0oo95.ssrcss-1kczfdm-AsideWrapper:nth-of-type(4)
beebom.com##.popular-posts-section
bestbuy.com##.shopping-assistant-accordion.c-accordion
biblegateway.com##.sys-announce-content, .flex-1.resources
bigtechbank.com###sidebar > .LinkList.widget, .PopularPosts.widget, .post-footer, .comments-system-blogger.litespot-pro-blog-post-comments
billboard.com##.trending-stories-widget, .injected-related-story
biography.com##.l-person--header.m-person--header.l-wrap > .m-person--social-links.m-social, .mm-component-stack--is-body-item.h-isolated-styles.m-detail--in-content-recommendation.m-in-content-recommendation, .l-person--social.m-person--social
bitcoinist.com##div.related-reading-shortcode > strong, div.related-reading-shortcode:nth-of-type(2), div.related-reading-shortcode:nth-of-type(5)
bitcoinist.com##em > strong
bitcoinist.com##p strong:has-text(/^Related Reading/):upward(p)
bitcoinmagazine.com##.mm-component-stack--has-footer.mm-component-stack--has-header.mm-component-stack--is-stacked.m-component-stack.m-tile-hub
bitdefender.com##.mt-4.mt-lg-0.col-lg-4, .mb-5.row
bitly.com##.sitebanner--container
bleepingcomputer.com##.articleBody > .cz-related-article-wrapp, .bc_downloads, .cz-newz-comment-wrapp, .cz-story-navigation, .cz-post-comment-wrapp, .cz-main-left-section > .cz-related-article-wrapp, #pop_stories, .twitter.fa-twitter.fa
blockchain.news###recommendarea, .hidden-sm-down.sbl.col-md-12.col-lg-3, .footer-hyperlink
blocmates.com###comments
blog.checkpoint.com##.col-lg-12
blog.cloudflare.com##.center.mw7.flex-wrap.flex-row.flex.ph0-l.ph3.pv4
blog.hubspot.com##.blog-post-sticky-cta-button, .blog-post-sticky-cta-complementary-text,.blog-post-sticky-cta
blog.internxt.com##figure.kg-image-card.kg-card:nth-of-type(odd), figure.kg-image-card.kg-card:nth-of-type(even)
blog.mozilla.org###related-posts, #comments, .nav-paging.section
blog.reedsy.com##.content-upgrade, .panel-grey.panel-thin.panel
blog.torproject.org##.comments
blog.youtube##.js-yt-gtm-related-tags.yt-article-rel-tags, .yt-article-rel-article.js-yt-gtm-related-articles
bloomberg.com##.container-width.dvz-recirculator, #plug-banner-outlet, .bottom-left-rail-touts, .art_done.body-copy-v2 > .postr-recirc--opinion.postr-recirc, .fence-body.body-copy-v2 > .postr-recirc--opinion.postr-recirc
bloomberg.com##.fence-body.body-copy-v2 > .paywall.postr-recirc--hyperdrive.postr-recirc, .art_done.body-copy-v2 > .paywall.postr-recirc--hyperdrive.postr-recirc, .video-player, .paywall.postr-recirc--opinion.postr-recirc, .paywall.postr-recirc--equality.postr-recirc, .postr-recirc--equality.postr-recirc, .paywall.news-wallet__wrapper, figure.paywall
bluebellpwm.com##.dce-wrapper-grid.dce-posts-wrapper
boldgrid.com###sidebar
bossip.com##.widget_bossip_tmz_feed_widget.widget
britannica.com##.mb-30.m-sm-50.border.d-block.p-5.quiz-module.info-module, .marketing-content.marketing-INLINE_SUBSCRIPTION
britannica.com##.read-more-module
browserhow.com##.blog-sidebar
bsc.news##.desktop-top-banner-div-block, .ad-block-3-side-page, .latest-list-news, div.article-div-block:nth-of-type(3)
builtin.com##.brand-boost-banner, .recent-articles, p.bix-embed-read-more:nth-of-type(odd), p.bix-embed-read-more:nth-of-type(even), div.jobs-embed-cta:nth-of-type(odd), div.jobs-embed-cta:nth-of-type(even)
businessinsider.com##.col-xs-12.col-md-4, .content-recommendations-in-post-module-1, .content-recommendations-in-post-module-2, .content-recommendations-in-post-module-3, .content-recommendations-in-post-module-4, .content-recommendations-in-post-module-fixed, .post-content-more
buzzfeed.com##.post_content__1ww4g > div > .recirclist_recircList__39Njb, .reactions_section__1tQc6, #commentsWrapper, .bottomrecirclist_bottomRecircList__DPezI.recirclist_recircList__39Njb, .commentCtaBtn__1Lf-n
buzzfeednews.com##.bfp-related-links, .js-comments__buzzfeed-container, .bottom-recirc-lists, .js-teaser__link.teaser__link, .list-unstyled.news-bottom-feed
caranddriver.com##.embed-left.embed-editorial-links.embed, div.embed-center.embed-editorial-links.embed:nth-of-type(2), div.embed-center.embed-editorial-links.embed:nth-of-type(8)
carscoops.com###secondary > .theiaStickySidebar, .post-navigation.navigation
cartoonbrew.com##.callout-box.cb-advert.PicoSignal, .cb-rec-container, .more-category-posts, .tag-list.cb-taxonomy-lists, .related-post-list, footer > .hidden-xs > .sd-sharing-enabled.sharedaddy > .sd-sharing.sd-social-icon.sd-social.sd-block.robots-nocontent > .sd-content > ul
catchpoint.com##.newsletter.sidebar-block
cbr.com###secondary, .related-single, .next-single, .w-article-related, .i-arrow-2.icon.next-btn.sentinel-article-nextArticle, .btn22.i-arrow-2.icon.next-btn
ccn.com##.ampforwp-inline-related-post
cex.io##.cookie-notifier-section.cex-ui-section
chadd.org##.fl-node-601c2996ce495.fl-row-bg-none.fl-row-full-width.fl-row
character-ai.us.auth0.com##.c9ce1fa93.ce0052778
chromeunboxed.com##.widget-area.sidebar-primary.sidebar, .jp-relatedposts
circleid.com##.colB > .colPad
citethisforme.com##.ucf-upload-widget-modal-root.bzQanw.sc-1ia47o9-0, .htPnDG.styled__ModalWrapper-sc-1b4zkf-0
citycoins.co##.banner_container.banner
citylimits.org###sidebar > .widget-area, #comments, .footer-skyline
cjr.org###perspective-top, #perspective-bottom, .hidden-print.trending-stories.col-md-offset-0.col-md-4.col-sm-offset-2.nocontent
cnbc.com##.ArticleBody-blockquote
cnbc.com##.ExclusiveContentBucket-exclusiveContentBucket, .ReadMore-container-cnbc.group, .InlineVideo-wrapper
cnbc.com##.SectionWrapper-container, .SidebarArticle-sticky, .WatchLiveRightRail-container.WatchLiveRightRail-inline, .RelatedContent-container
cnet.com##.c-quizbanner_form.c-quizbanner, .myFinance-iframe
cnet.com##.related-links
cnil.fr##li.picto > [href="http://twitter.com/CNIL_en"] > .logo_mini_menu_titre_twitter
cnn.com##.el__special--embed.el__storyelement--standard, .ticker-ribbon, #breaking-news-wrapper, #partner-zone, .RelatedArticle__component, .factbox_inline-small__standard.factbox_inline-small, .related-content--article.related-content, div.related-content_without-image
cnn.com##.terms-of-service, .user-msg-flexbox.headerless.user-msg
coindesk.com##.fFpIEz.newsletter-ctastyles__Wrapper-sc-1a47sbx-0
coindesk.com##.fyPdeu.newsletter-ctastyles__Wrapper-sc-18e7dvj-0
coingecko.com##div.p-4:nth-of-type(3), .tw-mb-16
coinmarketcap.com##.jiWaSe.ii1g3i-0
cointelegraph.com##.post-content__accent_big.post-content__accent
cointelegraph.com###article-72206 > .post__content-wrapper > .post-content > .post-content__disclaimer, .c-2H4MkO3QiqFhqPIp8qO.container, .post__block_tags.post__block.tags-list, .post-content__disclaimer, .post-page__youtube-block, .related-list, .sidebar, .stretch-banner-youtube
collider.com###secondary, .related-single, .next-single, .next-btn.sentinel-article-nextArticle, .w-article-related
comedyshow.to##+js(acis, JSON.parse, break;case $.)
comicbook.com##.js-activateComments.mid-content-comment, .related-stories
commondreams.org##.d-print-none.position-relative, .d-print-none.py-5.bg-white, .embedded-entity, .headline--full.headline.node > div > .d-print-none, .py-5.bg-light.block
computerverge.com##.is-alreay-loaded.is-fixed.is-sticky.normal-side.tie-col-xs-12.tie-col-md-4.sidebar > .theiaStickySidebar
connectthewatts.com##.is-resized.size-large.aligncenter, .is-resized.size-full.aligncenter
consumerreports.org##.related-links-multiple.crux-background-gray-bg.rel-article, #SFContainer-wrapper, .crux-background-gray-bg, .guardian-cta, .cda-ratings__wrapper, .recent-recommended, .cda-facebook-comments__container
cosmopolitan.com##.embed-left.embed-editorial-links.embed, .embed-product-small.embed-product-left.embed-product.embed, div.embed-center.embed-editorial-links.embed:nth-of-type(even), .gallery-module.embed, .watch-next-in-body.end-of-content-playlist, div.embed-center.embed-editorial-links.embed:nth-of-type(odd)
cosmopolitan.com##.transporter
counsellingresource.com##[href="https://counsellingresource.com/therapy/service/live-online-therapy/#bh"]
creativebloq.com##.exit-intent__wrapper, #sidebar, .masthead-item.buttons-social
creativemarket.com##[href="https://creativemarket.com/membership"]
creditwise.capitalone.com##cw-offers-tile.ng-star-inserted, cw-disclaimer-text.ng-star-inserted
crypto-economy.com##.td-fix-index.tdb-block-inner.td_block_inner
crypto-news-flash.com###bunyad-latest-posts-widget-4, .main-content.col-9 > .related-posts
cryptobriefing.com##.ad-container, .article-content-wrapper > .article-content > .recommended-posts, .article-sidebar > .article-sidebar-items
cryptoevents.global##.sidebar-widgets, .custom-banners-cycle-slideshow-default_style
cryptonews.net##.right-side.col-sm-4.col-xs-12 > .download_the_app, .right-side.col-sm-4.col-xs-12 > .subscribe, .side.vert, .exchange, .col-lg-3.offset-lg-1.col-12, .top.vert, .in_list.e-.vert-public, .footer.vert, [href^="https://bitsgap.com/"], [href^="https://www.bestchange.com/"], [href^="https://www.cryptohopper.com/"]
csoonline.com###fsb-4201 > strong, .blxC51120.blox4_html.blxM2004.blxParticleendnote.blx > aside, #editorialfakesidebardiv, aside.fakesidebar, .fakesidebar-sponsored.fakesidebar-auto.fakesidebar, .article-intercept
ctrl.blog###related
ctvnews.ca##.sidebar, div.graybox.list.element > .linklist, .related
curbed.com##.multi-children.spacer, .latest-news, .coral-talk, .comments-link, .related-count-2.multi.related, .related-count-1.related, .non-subscriber-copy, .package-list, .single-related-story, .short-article.sticky-list, .is-on-article-page.curated-feed
cybereason.com##.cr-ml-sidebar--group
cybernews.com##.cells__item_width_3.cells__item_width.cells__item
cybernews.com##.compliance-note_with-spacing.compliance-note
dailycaller.com##strong
dailydot.com##.side-panel.col.widget-area, .text-center.t-top-newsletter.featured-article
dailyhodl.com##.col-md-4.jeg_sticky_sidebar.jeg_sidebar > .jegStickyHolder > .theiaStickySidebar, .wpb_content_element.wpb_widgetised_column
dailymail.co.uk##.beta, .related-replace-desktop-xwide.ccox.mol-fe-related-replace, .embed-manager-on, .rc-content, .home.comments-count, .mol-fe-related-replace, .floating-buttons-bar, .article-reader-comments
dailystar.co.uk##section.related-articles-bg:nth-of-type(odd), section.related-articles-bg:nth-of-type(even)
daniel.haxx.se##.widget-area.content-sidebar
darkreader.org##.page-grid-inside
davescomputertips.com##.comments-area, .sidebar-main
deadline.com##.trending-now, .a-space-children--2.a-space-children-vertical.pmc-a-grid-item.article-sidebar, .pmc-u-text-align-center.subscribe-to
decider.com##.alignleft.wp-caption.in-line-column, .article-footer, .sidebar--primary.sidebar
decrypt.co##.adbutler-inline-ad.bOSA.sc-17hoiz4-1, .jcayOL.sc-155ftbs-3 > .vsGFO.sc-18vyx5u-0 > .preview-container.eVdklY.sc-i2xq1s-3.dqSSAG.sc-1kjt2eu-0, div.jpxtSH.eAya-DO.sc-155ftbs-1.sc-155ftbs-0:nth-of-type(2), div.jpxtSH.eAya-DO.sc-155ftbs-1.sc-155ftbs-0:nth-of-type(3)
developer-tech.com##.sidebar
deviantart.com##a[href="https://www.deviantart.com/core-membership"]
dextools.io##app-banner
dictionaryblog.cambridge.org##.comments-area
digest.bps.org.uk##.post-navigation.navigation, .widget-area, .comments-area
digitaltrends.com##.b-single__grid.b-grid
digitbin.com##.s1.sidebar
dignited.com##.sidebar-latest
dirt.com##.lrv-u-margin-lr-auto\@desktop.u-width-300\@desktop.lrv-u-margin-b-2\@mobile-max.lrv-a-space-children--2.lrv-a-space-children-vertical.lrv-a-grid-item.a-article-grid__aside > .\/\/.related-article, .lrv-u-background-color-grey-brand.lrv-u-padding-tb-2.\/\/.newswire, .lrv-u-margin-tb-2.\/\/.related-article > .lrv-a-wrapper, #comments-loaded
discordpackage.com###popup__1
discuss.privacyguides.org##.alert-info.alert.signup-cta, .alert-global-notice.alert-info.alert
dispatch.techlore.tech##.show-subscribe.subscription-widget
dividendsandincome.com###text-13 > .textwidget, .c12 > .row, #posts-pagination
dotesports.com##.wp-block-dotesports-affiliate-button
dotesports.com##.wp-block-dotesports-highlight-block
dotesports.com###nonsticky-sidebar
driveteslacanada.ca##.mh-sidebar.mh-widget-col-1, .mh-related-content, .clearfix.mh-row.mh-post-nav
eastbaytimes.com##.left.related
eater.com##.c-related-list, .c-toaster
eater.com##div.u-desktop-only:nth-of-type(2)
economist.com##.related-articles
educba.com##.code-block-21.code-block, .code-block-17.code-block, .container-wp-inner
electrek.co##.article__youtube-video, #comments, .related-guides, .author-gear-items, .featured-items
electrek.co##.related-guides-container
electrek.co###after_disclaimer_placement
entrepreneur.com##div.mb-16:nth-of-type(7), div.mb-16:nth-of-type(5), #lazy-load-container, .center.m4.s12.col
ericom.com###cookie
etcanada.com##.wells, .related
euobserver.com##.show.membership-upsell.wide.v2
eurweb.com##p > strong
extremetech.com##.widget_recentpostswidget.widget
eyerys.com##.region-sidebar-second.region
f2movies.to###gift-top, .mb-3.alert, .file_realted-list.film_related
fastcompany.com##.article__insert, .recirc
fayobserver.com##.gnt_em_vp__tavp.gnt_em, .gnt_m_fs.gnt_m, .gnt_n_sm__ne_a.gnt_n_sm_a, .gnt_n_sm_a
fedscoop.com##.articles--noborder.articles
fiercebiotech.com##.embedded-entity
finance.yahoo.com###Overlay-2-Rmp-Proxy, .caas-non-sticky-sda, .Mb\(\$gridMargin\).wafer-rapid-module, .Pt\(25px\).W\(300px\).Pos\(r\)
finbold.com##[src="https://finbold.com/ba200ba7ef5e1__1633745723/"], .wp-related.wp-block-quote, .mid-include, #content > .row > .col-lg-12, .mid-include, .py-3.col-xl-3.col-lg-4.col-sm-12 > .d-block, #main > .card-purple.mt-2.card, .py-2.card-body, #main > .pt-4, .card-purple.mb-4.card, .px-lg-0.px-3.py-2.bg-footer > .wrapper
fivethirtyeight.com##.sidebar-feature
fmovies.cab##.alert-special, .feedback-icon, .popover
fonedog.com##.text-center.articleSideProduct.bg-gradient-white.articleSideItem, .articleSideRecommend.articleSideItem, .text-center.articleRateColumn.articleSideItem, .reviewColumn, .text-center.relatedProducts
foodnetwork.com##.section.capsule.referencePromo
fool.com##.related-content
forbes.com##.color-body-border.color-body.link-embed--no-thumbnail.embed-6.link-embed.embed-base, .shopping.recirc-module, .color-body-border.color-body.link-embed--no-thumbnail.embed-2.link-embed.embed-base, .color-body-border.color-body.link-embed--no-thumbnail.embed-4.link-embed.embed-base, .seo.recirc-module, .marketPlace.recirc-module, #article-container-1 > .main-content--body
forbes.com##.open-web-anchor-standard-topline.open-web_anchor--desktop.open-web_anchor
fortune.com##.most-popular-rr
fossbytes.com##.elementor-section-height-default.elementor-section-full_width.elementor-element-53b539f1.elementor-element.elementor-top-section.elementor-section, .elementor-hidden-mobile.elementor-hidden-tablet.elementor-element-73e7ee5c.elementor-element.elementor-top-column.elementor-col-33.elementor-column
foundation.mozilla.org##.d-print-none.container
foxnews.com##.sticky-region
freecodecamp.org##.alert-dismissable.alert-success.alert.flash-message
freecodecamp.org##.alert-info.alert.annual-donation-alert
ft.com##.n-content-recommended--single-story
futurepedia.io##div.css-12y6uts.MuiGrid-grid-lg-4.MuiGrid-grid-md-4.MuiGrid-grid-sm-6.MuiGrid-grid-xs-12.MuiGrid-item.MuiGrid-root:nth-of-type(even)
futurism.com##.space-y-5.sticky, .sm\:p-6.sm\:space-y-6.space-y-4.p-3
gadgets.ndtv.com##.rhs_section, .story_nextprv, .margin_b30.row.story_list, ._ftrwrp, .hd.innerContainer
gamerant.com###secondary, .next-single, .next-btn.sentinel-article-nextArticle, .w-article-related, .related-single, .w-article-related
gamerbraves.com##.col-md-4.jeg_sticky_sidebar.jeg_sidebar > .jegStickyHolder > .theiaStickySidebar, .jnews_inline_related_post, .jnews_prev_next_container, .jnews_related_post_container, .section.comment-wrapper
gamepressure.com##aside
gatherer.wizards.com###TopBannerAdvertisement
gcn.com###ph_pcontent3_0_divListBox
geckoandfly.com###custom_html-4 > .custom-html-widget.textwidget, .yarpp-related, .comments-area
genius.com##comments
getpocket.com##.right-aside
ghacks.net##.ghacks-sidebar
giantfreakinrobot.com##.col-xs-12.col-lg-4.d-md-block, .related-article.no-gutters.row
gizchina.com##.vw-content-sidebar
gizmodo.com##.sidebar-sticky, .js_related-stories-inset, .js_newsletter-form-inline
gizmodo.com###js_moreFromNetwork
godaddy.com##.theiaStickySidebar
goldin.io##.mb-16.mx-auto.max-w-2xl.w-full.justify-center.items-start.flex-col.flex > .mt-8
goodrx.com##.re-flex.bfDpzR
greengeeks.com##.widget_custom_html.widget.widget_text, .widget_recent_entries.widget, .widget_categories.widget
greenpeace.org##.donate-embed.has-image.constrained.gptp-content
ground.news##.sticky.top-0.z-1000
grubstreet.com##.multi-children.spacer, .latest-news, .coral-talk, .comments-link, .related-count-2.multi.related, .related-count-1.related, .non-subscriber-copy, .package-list, .single-related-story, .short-article.sticky-list, .is-on-article-page.curated-feed
gtricks.com##.collapsed.s1.sidebar
gwhatchet.com##.widgetizedArea
hackaday.com##.sidebar-widget-wrapper
hbr.org##.promo--half.article-promo
hbr.org##li.sponsored.stream-entry:nth-of-type(2), li.sponsored.stream-entry:nth-of-type(9), li.sponsored.stream-entry:nth-of-type(14), li.sponsored.stream-entry:nth-of-type(19)
hindustantimes.com##.darkBg.moreFrom, .relatedStory > .widget-impression-candidate.htSlider
history-computer.com##.hello-bar-container
hitc.com##.related-sidebar.sidebar
hollywoodlife.com##.inline-trending-stories.entry-navigation, .inline-related-link, .inline-related-articles
hostingadvice.com###sidebar-main
howtogeek.com##.e-content.entry-content > .product-share-links, .nextup, .readmore_table, .lazyloaddiv.sidebar-glossary, p > strong, strong > em, div.relatedside
huffpost.com###rightRailTrending, .below-entry-content, .cli-related-articles__content-wrapper, .js-right-rail-trending.yr-trending, .yr-related-articles.related-articles--recirc.related-articles.js-related-articles
hypebeast.com###post-feed, .col-shopping-break, .primary-sidebar
icdsoft.com##.dialog-lightbox-message.dialog-message
imyfone.com##.base-footer-banner
indeed.com###AdblockDetectionBanner
independent.co.uk###indy-top-container-wrapper, .gdwXeb.sc-cxFVwQ.kTNFdA.sc-gqdwHF, .nativeVideoWrapper, .related.JbffK.sc-jVKKMF, .sidebar.iMvmnF.sc-jEUCxR, div.related.JbffK.sc-jVKKMF:nth-of-type(5), div.related.JbffK.sc-jVKKMF:nth-of-type(9)
independent.co.uk##div.related:nth-of-type(6), .sidebar, .related, .heKRRp.sc-13lex7x-0
indianexpress.com##.theiaStickySidebar, .custom_read_button, .h-text-widget, .next-story-wrap, .comments, pdsc-related-modify
infinite.tcgplayer.com###app > .subscribe-drawer--container, .article-side-rail, .article-spotlight, .related-articles__grid > .related-content
infoblox.com##.carousel-desktop.carouselwrapper, .widget-area.sidebar-primary.sidebar
infoq.com##.f_article_rightbar.article__more.column, .contribute_wrap, .cta_write_infoq
ign.com##.jsx-4023299490.bordered-box, .three-column.jsx-628408132, .commerce-disclosure, .compact-box, .video-container, .background-image.premium-content-block, .global-alert
inquirer.com##.block.responsive-embed, .component-in-recommender.grid-recommender
insideevs.com##.ie_transform.sidebar, .relatedContent-new
insider.com##.multi-newsletter-signup, .post-content-more, .right-rail.commerce-coupons-module
investopedia.com##.grid-pre-footer.loc, .related-articles,
investorplace.com##.bg-darkblue.wide.special-reports, .countdown-banner, .countdown-homepage, .related-articles.related-posts, .wide.newsletters, aside
ipaddressguide.org##.recent-posts-extended.rpwe_widget.widget, .img-pos-top.related-grid.entry-related.entry--item, .comments-area, .post-navigation.navigation
itsfoss.com##.jp-relatedposts-i2, .q2w3-fixed-widget-container.widget-area.sidebar-primary.sidebar, .thrive-comments-content, .ugb-df91fcd-content-wrapper.ugb-columns__item, .ugb-main-block.ugb-container--design-plain.ugb-container--v2.ugb-ea90ed6.ugb-container.wp-block-ugb-container.alignwide > .ugb-inner-block, .widget-area
jezebel.com##.sidebar-sticky-children
kirupa.com###rightContents, #sigNewsletter
knowtechie.com##.relative.mvp-post-content-out > .relative, .relative.left.mvp-sec-pad > .relative.left, #mvp-content-main > ul, #h-editors-recommendations
koaa.com##.TrackedSidebarPromo.AsidePromo
kotaku.com##.comments-area, .sticky-item, .posts-list, .entry-author, .logged-out-box
kotaku.com###sidebar_wrapper > .cySkyK.ynugv2-0, .branded-item--kinja.branded-item.inset--story.jfFNjl.sc-1rh3ayr-6, .js_comments-iframe.bGtOjR.sc-73739c-0
latimes.com##.rail, div.enhancement > .promo-small.promo-position-small.promo, .listicle-menu.list-menu, .list-spacer-bottom.list-d.list
lenovo.com###confirmit-feedback, #lena-bot-window, .cookie-remind-warpper
lifehacker.com###js_moreFromNetwork, #secondScroll
lifehacker.com##aside.branded-item
lifewire.com##.mntl-block.prefooter.comp
liliputing.com##.widget-area, .widget.below-content, .comments-area, .post-navigation.navigation
livelaw.in##.theiaStickySidebar, .h-anchor-color.h-sidebar-left.h-share-top-parent, .social_icons
livemint.com##.eventFired.lmWidgetTracking.widget-impression-candidate.moreNews.mainArea
livemint.com##.lmWidgetTracking.impression-candidate.moreNews
livemint.com##.lmWidgetTracking.impression-candidate.widget-impression-candidate.story6.rightBlock
livemint.com##.lmWidgetTracking.rhsPos_1.story4.rhsWidgetNotAdFree.rightBlock
livemint.com##.lmWidgetTracking.rhsPos_2.story4.rhsWidgetNotAdFree.rightBlock
livemint.com##.lmWidgetTracking.rhsPos_3.story3.rhsWidgetNotAdFree.rightBlock
livemint.com##.lmWidgetTracking.rhsPos_3.story4.rhsWidgetNotAdFree.rightBlock
livemint.com##.lmWidgetTracking.rhsPos_4.story3.rhsWidgetNotAdFree.rightBlock
livemint.com##.lmWidgetTracking.rhsPos_4.story4.rhsWidgetNotAdFree.rightBlock
livemint.com##.lmWidgetTracking.rhsPos_5.story4.rhsWidgetNotAdFree.rightBlock
livemint.com##.lmWidgetTracking.rhsPos_6.story5.rightBlock
livemint.com##.lmWidgetTracking.story2.rhsWidgetNotAdFree.lastBlock.rightBlock
livemint.com###paywall_11665211098186 > .open.cardHolder
livemint.com###personalFinance
livemint.com###rhsWsjNotAdFree
livemint.com###sectionRHSFeed-companies
livescience.com##.fancy-box, .more-about__container, .popular-box
livescience.com##p > strong:has-text(/^Related:/):upward(p)
love2dev.com##.main > .py-2.justify-content-center.col-12.d-flex.cta-landscape
macrumors.com###comments, .nextarticle--3Zv4q93A.widget--3ewetJyi
maketecheasier.com##.sidebar-widget.sidebar-posts, .related-footer-grid
maketecheasier.com##.textwidget
makeuseof.com##.related-single, .article-footer-newsletter
makeuseof.com##.sidebar-trending, .sidebar-sticky, .w-article-related, .next-btn.sentinel-article-nextArticle
malaymail.com##.latest-news, .malaymail-article-details-just-in > div.row > .col-md-12, .malaymail-related-articles, .header-social-menu
marketbeat.com##.d-print-none, .open-video-modal-button
marketplace.org##.lazyloaded.c-simple-newsletter-subscribe, .mp-show-latest-episodes__body, .top-latest-stories, .jp-relatedposts, .original-content > .padded
marketwatch.com##.article__footer.column--full.column, .region--aside.region, .fixed.container--trending.container
marvelapp.com##.marginTop-l.paddingTop-xl.padding-l, .fixed-footer, .breakPointM-paddingTopBottom-s.bg-white.paddingLeftRight-m.display-inlineBlock.position-relative.breakPointM-inline
mashable.com##.bg-warmgray-100.items-end.md\:flex-row.flex-col.flex.overflow-hidden.relative.px-4.mx-auto.mt-12.max-w-9xl, .md\:mb-16.md\:mt-12.mb-12.mt-8.font-sans.text-primary-400.max-w-3xl.mx-auto.w-full, section.max-w-8xl.mx-auto:nth-of-type(1), div.lg\:flex.justify-between.items-stretch.mx-auto.px-4.max-w-8xl, .related-stories
medium.com##.ky.ku.u.ut.aj.kw.kp.df.mj, .z.cw.s, .ug.uf.s.ue, .s.qn.qm
mentalhelp.net##.articles-otp-cta-wrapper
metro.co.uk##.sidebar.col-c, .zone-post-strip
miamiherald.com##div.story-module.related-stories
motorious.com##.sidebar, .post-feed.row, .post-with-sidebar.post-access-public.content-wrap.tag-newsletter.tag-american.tag-classic.tag-features-3.post > .content > blockquote
moxfield.com##.py-3.floating-banner, .browse-ad, .d-lg-block.d-none.videobox-wrapper
msguides.com###kknbnpcv
msn.com##.clearleft.emsinline.section-layout.ec-module, .microsoftNewsCommentModule
msnbc.com##.dn-print.related
msnbc.com##.styles_hasItems__ho8PK.styles_msnbcDailyRecircBody__E_LND
mspoweruser.com##.widget-area.col-md-4, div.tcb-clear:nth-of-type(3)
myflixer.to##section.block_area_category.block_area:nth-of-type(1), #gift-middle, .mb-3.alert
mymove.com##.deals-hub-ad, .havenly-ad__marble, .freshome-related-articles
nami.org##.interstitialpromo
narendramodi.in##.nmapp-container, .refComment, .refMore
nationalgeographic.com##.ReadThisNext__Wrapper
nbcnews.com##.dn-print.related--single.ArticleRelated
nbcnews.com###embed-20190618-debates-promo-package, .nl-signup-inline
nbcnewyork.com##.recirc-module, .most-popular__container
ncbi.nlm.nih.gov##.pmc-labs-ad.ncbi-alerts
ndtv.com##.reltd-main, .lst_nws_cnt
neeva.com##.header-big-blue-button__active-C2yAM.header-big-blue-button__dismissibleContainer-2T54Z
nerdwallet.com##.nw-auth-stepper__body-inner
news.bitcoin.com##.bottom_article_widgets, .navigation
news.bitcoin.com###floating_sidebar, .full-grid.article > .article__body > .article__body__tags-related > .article__body__tags-related__related
news.coincu.com##.jnews_related_post_container, .col-md-4.jeg_sticky_sidebar.jeg_sidebar > .jegStickyHolder, .jnews_prev_next_container, .yarpp-template-list.yarpp-related-website.yarpp-related.yarpp > .jeg_posts
news.sky.com##.sdc-article-related-stories--thumbnails.sdc-article-related-stories.sdc-article-widget, p > strong, .sdc-article-tweet.sdc-article-widget
news.yahoo.com###stream-wrapper, .non-sticky-container, .Pt\(25px\).W\(300px\).Pos\(r\)
news.yahoo.com##p:nth-of-type(15)
news.yahoo.com##p:nth-of-type(23)
news.yahoo.com##p:nth-of-type(3)
news.yahoo.com##p:nth-of-type(5)
newsweek.com##.id.style2.related2, .relatedNews
newyorker.com##inline-embed
nintendolife.com##.trending-articles, .see-also
nintendolife.com###body > .optional, .related-content
npr.org##.img.bucket
npr.org###end-of-story-recommendations-mount
nurse.com##.awac-wrapper.widget_text, .fusion-sidebar-inner-content, .single-related-posts.related-posts
nymag.com##.multi-children.spacer, .latest-news, .coral-talk, .comments-link, .related-count-2.multi.related, .related-count-1.related, .non-subscriber-copy, .package-list, .single-related-story, .short-article.sticky-list, .is-on-article-page.curated-feed
nypost.com##.alignleft.single__inline-module, .inline-module--related-post.inline-module, .more-stories, .single__sidebar, .comments-inline-cta
nytimes.com##.css-1wspfld, .css-ew4tgv, .css-y1f5ai, .related-links-block, .css-17u79w7, .global-cob, .css-1jg868a, .css-le223v, .standard.shown.magnoliaDock, .css-1a1soaa.undefined
omgubuntu.co.uk###secondary, .widget_omg_related_posts.widget, .u--box.content-container.banner-slideshow
onetrust.com##.related-posts, .additional-resources
online.csp.edu##.tux-c-spotlight-cta
onmsft.com##.inside-right-sidebar, #post-nav
onthisveryspot.com##.col-md-4.jeg_sticky_sidebar.jeg_sidebar, .jnews_comment_container, .jeg_prevnext_post
opensource.com##.callout-float-right.embedded-callout-menu
ourcodeworld.com##.sidebar-inner, #we-stand-with-ukraine
outlookindia.com##.right-sticky.col-md-4.col-sm-12 > .theiaStickySidebar, .left-sticky.left_trending > .theiaStickySidebar, .__related_stories_thumbs
oxygen.com##.blog-post__aside, .blog-post__related-content, .blog-post__vertical_description
pagesix.com##.comments-inline-cta
pagesix.com##.right-column.sidebar
parade.com##.span4 > section, .tab_group.selected.articles.category, .entertainment.most_popular, .comments
partitionwizard.com##.article-recommend
partitionwizard.com##.main-menu-other
pastebin.com##.popup-container
pcgamer.com###affiliate-disclaimer, sidebar, .jump-to-comments, .read-more-container, .related-articles-wrap, .trending-wrapper, .recommended-content, .popular-box, .fancy-box
pcguide.com##.aawp
pcmag.com##.border-l-0.border, .container-xs, .mt-24.container.inline-block, .leading-tight.mb-4.-mt-4.p-4.w-full, div:nth-of-type(8), .flex.rich-text.leading-loose.mt-4.text-left, .mb-16.gap-4.container.text-white.md\:flex-row.flex-col.flex
pcmag.com###trust-badge, .relative.max-w-3xl
pcworld.com##.product-widget, .affiliate-disclaimer
penguinrandomhouse.com##.sgnup.fi_default
people.com##.auto-advance.component
people.com##.recirculation-wrapper, .editorialProgramMiniRecirc
phonerebel.com##.announcement--opening.announcement--closeable.announcement
playvalorant.com##.pin-spacer
politico.eu##.wp-block-cover, .article__sidebar.grid__column--sidebar.grid__column, .content-listing__with-title.you-may-like-content-listing.content-listing__columns--1.content-listing
polygon.com##.u-desktop-only, .c-comments, .c-compact-river, .c-related-list
pomcor.com##.comments-area, .nav-links
poocoin.app##.m-auto.text-small.text-light.mb-2.text-center
popsugar.com##.page-footer-sidebar, .page-footer-main, .infinite-scroll-section-wrapper, .clearfix.related-stories
portswigger.net##.dailyswig.maincontainer > .widget-tile, .rightcol.post-widgetcolumn
portswigger.net###icons-container
pressplay.top##.dvr-728
privacyinternational.org##.block-views-blockrelated-content4-items-block--block-2.block-views.block.views-element-container
propublica.org##.promo-newsletter-signup-2__max-width-wrapper, .wrap.wide-sm.out02.right.size04.story-promo-group.bb-promo-story
psyche.co##.cjpuuH.DriveBanner__Wrapper-sc-1vadswm-0, .NLFormInsertFromCMS.crmOSg.styled__InSituNewsletterSignup-sc-mut07i-2.jEUTlO.styled__Container-sc-11dqrr7-0, .kXTrTP.ideas__Sidebar-sc-ejg8ko-7 > .cFdQHZ.styled__Container-sc-1snt4ge-0
psychotreat.com##.widget-area
psypost.org##.col-md-4.jeg_sticky_sidebar.jeg_sidebar > .jegStickyHolder
purple.com##.scrolled.email-footer
quizlet.com##.SetPageTermsStickyBanner-container, .UIModal-box, .oxppdgq.ohebfrr.ReactModal__Overlay--after-open.ReactModal__Overlay
quizlet.com##.Toastify, .TextbookRecommendations
quizlet.com##+js(rc, has-adz|hasStickyAd, div[class^="SetPage"], stay)
qvc.com###footer_btm_module_3
qz.com##.js_qz_newsletter_signup_placeholder
raider.io##.text-white > .slds-m-bottom--large
realclearpolitics.com##.alpha > .recommended-newsletter
realclearpolitics.com##.comments-wrapper
realclearpolitics.com###comments-container
realmicentral.com##.jnews_inline_related_post, .jnews_related_post_container, .theiaStickySidebar
researchgate.net##.rg-us-cookie-banner
reuters.com##.desktop-latest-updates__container__3z03m
reuters.com##.StickyRail__container___keQm8R, .RegularArticleLayout__related___2MCEjD, .SpacingContainer__max-width___1aBoiA.SpacingContainer__tablet-mobile-only___1ilBOZ.SpacingContainer__t-spacing-single___3namO8.SpacingContainer__container___2kvuUN
reuters.com##.workspace-article-banner__banner-container__1qyxV
reuters.com##div.article-body__element__2p5pI.article-prompt__container__3uXJV:nth-of-type(even)
reuters.com##div.article-body__element__2p5pI.article-prompt__container__3uXJV:nth-of-type(even), div.article-body__element__2p5pI.article-prompt__container__3uXJV:nth-of-type(odd)
resources.pcb.cadence.com##.active.uf-reco-tiles-present.uf-reco-panel
reviewgeek.com##.related-articles
robots.net##.widget-area, .code-block
rollingstone.com##.c-related-links-wrapper, .l-section--no-separator.l-section, .l-blog__secondary
rollingstone.com##.lrv-u-padding-b-1.a-span1.trending-in-article, .newsletter, .brands-most-popular
rugdoc.io###main-leaderboard-box
salesforce.com##.helpButton
salon.com##.right-rail
scamadviser.com##.ezlazyloaded.banner-image
scientificamerican.com##.aside-block, .aside-block__body, .aside-product, .special--report, .spw__banner, .medium-down-hide.opinion-template--newsletter.flex-column--full-mobile.flex-column--25 > figure, .opinion-article--social-date.medium-down-hide.flex-column--25 > .opinion-template--headerBody-social-icons
scmp.com##.article-comment-bottom-widget, .others__more-on-this > .related-article, .content--h3.article-details-type--h3.generic-article__body
scotthelme.co.uk##.outer.read-next
screenrant.com##.related-single, .next-btn.sentinel-article-nextArticle, .w-article-related, #secondary, .next-single
searchenginejournal.com##.summita-wrapa_12, section.sej-sect.text-center.sej-bbb-section.sss2_sllo_o:nth-of-type(odd)
secureblink.com##.BodyTop_socialMediaIcons__2Wpnz, .RecentPosts_recentPosts__LypnQ
seekingalpha.com##.adsbygoogle, .sticky
securelist.com##.js-sticky-widget.c-widget-subscribe
sfexaminer.com##.visible.centered.in.promo-designer-modal.modal
showbiz411.com##.comments, .similar-articles.art-img-text-down, .td-page-wrap.container > .row > .span12 > .td-grid-wrap > .container-fluid > .row-fluid > .column_container.span4
sitecheck.sucuri.net##.chat-widget-wrapper
sitepoint.com##.sbBody, .top-12.sticky
sitepoint.com##div.custom-content > [href^="https://www.sitepoint.com/premium/pricing/"]
sitepoint.com##div.custom-content:nth-of-type(odd)
skyscanner.com##.DetailsPanelContent_right__MDI1M
slashgear.com##.gridify
slate.com##.in-article-recirc
slate.com##.share-sidebar.article__share-sidebar
smartframe.io##.newsletter-signup-shortcode-container
speedof.me##.test-ad-container
sports.yahoo.com###module-fanShop
sports.yahoo.com###wafer-trending-bar, .B\(a\)--maw1064.Pos\(s\)--maw1064.W\(300px\).aside-sticky, .wafer-loader-success.wafer-module-complete.Mstart\(-60px\)--maw1080.Maw\(557px\)--maw1080.Maw\(667px\).sportsmodule-device-desktop.wafer-rapid-module.wafer-module.sports-module, .wafer-rapid-tracked.wafer-rapid-module.monalixa, .wafer-sticky.stream, .caas-non-sticky-sda
sportskeeda.com###keeda-comments-container
star-history.com##.z-50
stereogum.com###comments, .article-comments
stern.de##.article__sidebar, .article__embedded-teasers, .article__end
stlouisfed.org##.callout
stuff.co.nz##.sics-component__section--most-popular.sics-component__section, .bigbyline, p.sics-component__story__paragraph.sics-component__html-injector:nth-of-type(odd)
surfshark.com##.active.js-timer-sales-component
swisscows.com##.animation-badges.popup.home-link-instruction, .popup.install-sw-block
swisscows.com##.tell-friends
tampabay.com##div.article__body-interstitial:nth-of-type(even), .article__body-interstitial
techcrunch.com##p > .wp-embedded-content
techcult.com##.sidebar.widget-area.posts-sidebar
techfunnel.com##body > .container > .row > .col-md-4
techguided.com##.inside-right-sidebar
technology.inquirer.net##div#totalpoll.is-screen-vote.is-ltr.totalpoll-uid-ba6c79a39c7e435f692e3e8bc44ba5c8.totalpoll-wrapper:nth-of-type(odd), #rn-lbl, #read-next-2018, #article_content > div > .sib-form, #article-tab-wrap, #article_social_trending > .sib-form
technologyreview.com##.alignleft.related__wrap, li.sidebar__widgetWrapper--PLzjV > div
technorms.com##.td-ss-main-sidebar
technospot.net##.td-ss-main-sidebar, .jp-relatedposts
techopedia.com###sidebar-content-wrapper
techpowerup.com##div.s--item:nth-of-type(even), div.s--item:nth-of-type(odd)
techradar.com##.fancy-box
techradar.com##.hawk-main-editorial-container, .hawk-multi-model-review-container
techradar.com##.read-more-container, #expanding-articles, .hawk-main-editorialised
techradar.com###sidebar
techspot.com##.sidebarContent, section.related-stories.related-products:nth-of-type(2), .related-query, section.related-stories.related-products:nth-of-type(3), #comments
techtimes.com##.s2.section-middle, .sidebar.col-md-4, .ArticleRelatedContentModule_root__1MN9q, .NonMeteredNudge_root__3MU5l, .ArticleRelatedContentMagazine_root__96lNS
techuntold.com##.inside-right-sidebar
techwiser.com###sidebar > .theiaStickySidebar
techworm.net##.td-ss-main-sidebar
techzine.eu###secondary > .fixed-vertical, related, mailsignup
tenforums.com##.chill
testwise.com##gl-manage-cookies-modal
the-sun.com##.css-hqkphk.rail--classic
theatlantic.com##.SubOnlyPromo_fullwidth__2RRL1.SubOnlyPromo_root__3GK_8, .ArticleMostPopular_root__3nSRk, .BreakingNewsBarDisplay_gray__2djef.BreakingNewsBarDisplay_root__3f-wR, .c-recirc-content, .l-recirc, .SubOnlyPromo_fullwidth__eFxfa.SubOnlyPromo_root__ZC4ri
theblockcrypto.com##.article-feed, .d-print-none.py-5.color-outer-space.bg-grey-lightest.articles, .justify-content-center.flex-column.d-print-none.d-flex, .stickyRail
thecut.com##.multi-children.spacer, .latest-news, .coral-talk, .comments-link, .related-count-2.multi.related, .related-count-1.related, .non-subscriber-copy, .package-list, .single-related-story, .short-article.sticky-list, .is-on-article-page.curated-feed
theepochtimes.com##.recommendations
thefirsthundredthousand.com##.sqs-gallery-design-autocolumns.summary-block-setting-show-read-more-link.summary-block-setting-show-excerpt.summary-block-setting-show-price.summary-block-setting-show-title.summary-block-setting-show-thumbnail.summary-block-setting-secondary-metadata-none.summary-block-setting-primary-metadata-date.summary-block-setting-metadata-position-below-content.summary-block-setting-design-list-thumbnail-left.summary-block-setting-design-autocolumns.summary-block-setting-text-align-left.summary-block-setting-text-size-medium.summary-block-collection-type-blog.summary-block-wrapper
thegamer.com###secondary, .next-btn.sentinel-article-nextArticle, .next-single, .related-single, .w-article-related
thegeeksclub.com##.sidebar
theguardian.com###e4675c50-1165-4a45-b442-b960d1590dd7, most-viewed-right, .dcr-1aq0rzi, [href^="https://support.theguardian.com/uk/subscribe/digital"], aside.dcr-1xlf9q > .dcr-ipj0ot, aside.dcr-1xlf9q:nth-of-type(2)
thehackernews.com##.right-box, .cf.below-post-box, .sharebelow-comment > .show-comments, .note-b
thehill.com##.sidebar.column.region-sidebar-second.region, .es_recommended_content.incontent_widgets
thehill.com##.thehill-promo-link
thelineofbestfit.com##.related-section > .gutter-wrapper, .reviews-section > .layout-wrap, .feature-signup, .signup-sidebar.sidebar-section
them.us##.callout--has-top-border
themarkup.org##.article-card--right.article-card--has-image.article-card, .article-footer-titles, .print-hidden.article-footer__latest
themuse.com##.mfe-jobs-banner, .jobs-sidebar.js-jobs-sidebar
thenation.com##.related-multi.related-newarticle.indents.indent.left
thencbeat.com##.g1-newsletter-vertical.g1-newsletter.g1-box-tpl-frame.g1-box
thepennyhoarder.com##.hidden-sm.hidden-xs.single-post-social-top-sticky.col-md-2 > div > .single-social
therecord.media##.sidebar__widget--articles.sidebar__widget, .navigation, .sidebar__widget--newsletter.sidebar__widget
theregister.com##.listinks
theregister.com##.promo_article, #story-bot-col
thestar.com.my##.col-xs-12.col-md-4, .slider-story, .story--featured, #related-stories-links
thestar.com##.c-related-articles
thestranger.com##.article-contribution-footer, .related-content.component
thestreet.com##.mm-component-stack--has-footer.mm-component-stack--has-header.mm-component-stack--is-stacked.m-component-stack.m-tile-hub
theverge.com##.c-comments, .c-read-more, .c-recirc-module, .has-content.p-comment-notification, .c-related-list
theverge.com##.mb-40.duet--recirculation--related-list, .top-90.bg-white.lg\:mb-40.lg\:mt-0.rounded-\[4px\].w-mobile-breaker.my-50.m-auto.p-20.sticky.duet--recirculation--list-breaker-standard
theverge.com##div.flex-auto:nth-of-type(even)
thewindowsclub.com##.widget-area.sidebar-primary.sidebar, .related-posts
thewrap.com##.tpd-live-banner
thewrap.com##div.tpd-read-more-container:nth-of-type(3), div.tpd-read-more-container:nth-of-type(5), div.tpd-read-more-container:nth-of-type(7), div.tpd-read-more-container:nth-of-type(10), .social-button
thoughtco.com##.mntl-block.prefooter.comp
threatpost.com##.c-fixed-sidebar-layout--336\@md.o-row > .c-sidebar.o-col, .slick-track, .c-comment-reply
threatpost.com##[href^="https://threatpost.com/infosec-insider-subscription-page/"]
time.com##.bottom-recirc.feed.component, .inline-article-recirc.component, .right-rail.right-rail-recirc.clearfix.feed.component, .video-jw.component
time.com##.right-rail.right-rail-recirc.feed.crx-recirc.component
tokenex.com##p:nth-of-type(7)
tomforb.es##.navbar-end
tomsguide.com##.exit-intent__background.exit-intent, .hawk-grid-items-container, .popular-box
tomsguide.com##.newsletter-form__container
tomshardware.com###sidebar
toofab.com##.sidebar-section--sticky, .article-block
torrentfreak.com##.page__sidebar
tp-link.com##.widget-sticker-right-middle, .decowifi-sticker
truity.com##.views-field-field-pt-mailing-list
tuko.co.ke##div.c-article-read-also.post__read-also:nth-of-type(odd), div.c-article-read-also.post__read-also:nth-of-type(even)
tvline.com##.inline-floating-gallery, .c-related
tweakers.net##.fallback, .nextPreviousArticleContainer, .relatedContent, .reacties-inner
twitch.tv##.tw-callout-message
typing.com##.bg.card--xs.card.header-callout, .js-guest-banner
typing.com###tooltip_k5ksmxfdjr
typinggames.zone###ads, #topDivForAd2, .left-ad-container, .typing-games
upworthy.com##.col.sidebar-col
us.norton.com##.panel
usa.kaspersky.com##.js-sticky-sidebar-visible, .c-block--divider.c-block--spacing-b-small\@sm.c-block--spacing-t-small\@sm.c-block > .o-container-fluid
usmagazine.com###media_image-5 > [href], #module-more-news, .content-card-footer
usnews.com##.jEcXDU.right-rail__Container-zt2tbq-0
usnews.com###sailthru-recommendations-widget, .fpMrom.LoadMoreWrapper__Container-zwyk5c-0, .kRfYFr.Hide-kg09cx-0.eUNfJO.Article__RightColumn-sc-1a6pffr-4
usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0 > .jwEFKD.PlBer.MediaObjectBox__AnchorWrap-sc-7ytr6b-4.Anchor-byh49a-0
usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(30)
usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(40)
usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(53)
usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(63)
usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(8)
usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(82)
vectordiary.com##.td_block_template_1.td-pb-border-top.td_with_ajax_pagination.tdi_61_168.td_block_related_posts.td_block_wrap, .comments, .td-ss-main-sidebar
venturebeat.com##.sticky-briefings-cta
verywellmind.com##.mntl-block.mntl-sc-block-featuredlink.mntl-sc-block.related-link.therapy-doc.comp
vibe.com##.trending-stories-widget, .injected-related-story
vice.com##.abc__article_embed, .topic-callout
vice.com##.recirc-footer, .main-content > div > .observer > .observer__content > .short-form > .short-form__body > .short-form__body__right-rail > .sticky-wrapper--auto-fit.sticky-wrapper.related-sidebar > .sticky-wrapper--m-b-40.sticky-wrapper--pad-bottom-10 > div > .related__sidebar.sidebar
vocabulary.com##.promo, .sign-up-area
vox.com##.c-related-list, .c-rock-list--trending.c-rock-list--image.c-rock-list, div.l-segment.l-sidebar-fixed:nth-of-type(5), div.u-desktop-only:nth-of-type(1), .c-toaster-stuck.c-toaster-active.c-toaster
vulture.com##.multi-children.spacer, .latest-news, .coral-talk, .comments-link, .related-count-2.multi.related, .related-count-1.related, .non-subscriber-copy, .package-list, .single-related-story, .short-article.sticky-list, .is-on-article-page.curated-feed
w3schools.com##.sidesection
washingtonpost.com##.bt.b.mb-lg-mod.pb-sm.bc-black.w-100.hide-for-print.headline-list, .col-4-lg.flex.flex-l.dn.dn-m.mt-md-l.flex-1.right-rail.flex-column.hide-for-print, .mb-lg-mod.relative.w-100.pt-xs.bc-secondary.bt.b.flex-column.flex, .mt-md.mb-lg.mt-md-l.w-100.flex-column.flex, .overlay-background.overflow-hidden.duration-400.ease-out.transition-height.relative > .w-100.absolute, .c-toaster-stuck.c-toaster-active.c-toaster, .col-4-lg.flex.mt-md-l.flex-1.right-rail.flex-column.hide-for-print
washingtonpost.com##.h-100.hide-for-print.flex-column.flex, .wpds-c-dhlPjo-iblNTCR-css.wpds-c-dhlPjo
washingtonpost.com##.hide-for-print.mb-md
washingtonpost.com##.interstitial.italic
washingtontimes.com##.aside-inner
watchcartoononline.bz##.scrolling.right.sidebar
watcher.guru##.cs-sidebar__inner
wbal.com##.tertiary-content
wccftech.com##.clearfix.aside-deals.aside, .clearfix.widget-analytics.related-posts, .sidebar, [href="https://tidd.ly/3tyom7k"], p.wccf_related_post:nth-of-type(3), p.wccf_related_post:nth-of-type(9)
wcofun.com##.alert, .anti-ad, .episode-descp
wcofun.net##.alert
wearethepit.com##.related-article--container
weather.com##.FullViewportLargeScreen--regionSidebar--5j64w.regionSidebar.region-sidebar
webmd.com##.main-container-3.main-container, .dfp-native.top-picks, .dfp-native.module-lln-toppks.module-top-picks.module, .module-f-idc.module, .left.ia-video.ia-module-container
weforum.org##div.sidebar-tout:nth-of-type(3), .sidebar-tout--impact-stories.sidebar-tout, div.sidebar-tout:nth-of-type(5), .list-group.st__content-block--searchable-list-default.st__content-block--searchable-list.st__content-block, .highlights-section--featured.highlights-section
wellandgood.com##.related-content
whyy.org##.block--top-stories.block, .flexible-content-container > .block--related-content.block, .detail-footer
wikihow.com###sidebar
wikiwand.com##.footer_wrapper__zGJI_
wikiwand.com##.navbar_install__Hg9Gg
wired.com##.newsletter-subscribe-form
wired.com##.paywall-bar--expanded.paywall-bar-failsafe, .paywall-bar__expanded, .show-social-box.persistent-aside--align-left.persistent-aside, .sticky-box
wired.com##.persistent-bottom
wjcl.com##.article-sidelist-wrapper, .newsletter-signup, .article-content--body-text > ul > li, .related-embed
wololo.net##.sidebar-content, #comments
womenshealthmag.com##.watch-next-in-body.end-of-content-playlist, .embed-product-small.embed-product-left.embed-product.embed, .transporter
word-spinner.com##.altumcode-email-collector-wrapper
wsj.com##.login-section-container, .aside-container
www1.cbn.com##.cat-block
www1.cbn.com##.cbn_next_article_container
www1.cbn.com##.prayer-forms.clearfix.cbn-devotion-forms
www1.cbn.com##.section-region-sidebar
xd.adobe.com##.column-4
yahoo.com###wafer-trending-bar, .wafer-sticky.stream, .caas-non-sticky-sda
ygoprodeck.com##.clearfix.related-posts, .comments-area
ygorganization.com###custom_html-2 > .custom-html-widget.textwidget
zdnet.com##.c-shortcodePinbox, .c-shortcodePinbox-carousel, .c-shortcodePinbox-textList, .g-outer-spacing-bottom-large.c-globalBreakingNews, .c-listingVertical, .related-stories.module, .alignRight.relatedContent, .breaking-news-container, .alignNone.relatedContent
zoosk.com##.article__related, .newsletter
||www.web-hosting.net.my/banner$image
! General
-push-notifications/$script
||cdn.carrotquest.app^$3p
||cdn.pn.vg^$3p
||hlsmedia.gannett-cdn.com^$3p
! ||interactive.guim.co.uk
##[class*="sponsorlink"]
||gizmodo.com/embed/comments$subdocument
||pomcor.com/wp-content/uploads/2015/05/stars_background.jpg$image
||www.rugfreecoins.com/img/*4.gif$image
||aeon.co/_next/static/chunks/NewsletterPopup.
||aeon.co/_next/static/chunks/SupportBannerHeader.
||www.fedscoop.com/advertising/$subdocument
||www.playwidget.stuff.co.nz$subdocument
||hodgef.com/static/sponsor.html$subdocument
||garry.windscribe.com^
||circleid.com/images/industry/sponsor$image
||crypto.games/banners$image
||fmoviesz.to/assets/_bnx$image
! SOCIAL BUTTONS
##a[href^="https://twitter.com/intent/tweet"]
##a[href^="https://www.facebook.com/login.php"]
! ##a[href^="mailto:"]
##.subscribe-widget
##.facebook-icon
##.flipboard-icon
||*icon-fb.png$image
||*icon-tw.png$image
##.icon-twitter
! https://github.com/yokoffing/filterlists/issues/100
! ##.follow
adguard.com##.content-social
! https://github.com/easylist/easylist/issues/16243
livescience.com##.buttons-social
kellegram.xyz##.socials
! AUDIO/VIDEO PLAYERS
! ||remixd.com^$3p
! https://www.gq.com/story/jason-belmonte-bowling-profile
||player.cnevids.com^
! https://www.ghacks.net/2023/07/04/firefox-115-new-esr-base-and-some-add-ons-may-be-blocked-from-running-on-certain-sites
||readaloud.googleapis.com^$script
! Block players that usually play content not directly related to the page
||elements.video^$3p
||redvideo.io^$domain=~redvideo.io
!||cnevids.com^$3p,domain=~gq.com
||kaltura.com^$3p,domain=~financialaidtv.com
! https://github.com/yokoffing/filterlists/issues/117
@@||cdnapi-legacy.kaltura.com^$xhr,domain=yle.fi
! https://www.appdate.lk/technology/2023-browser-showdown/
||beyondwords.io^
||code.responsivevoice.org^
! https://www.wyff4.com/article/videocast-morning-storms/44780778
! ||htvapps.com^
||hearst.io^
@@||htv-streaming-otfp.hearst.io
@@||nitehawk.hearst.io
||hearstapps.com^
||htvtools.us^
! https://www.delish.com/food-news/a44120266/mcdonalds-grimace-shake/
||hearstgames.com^
@@||hips.hearstapps.com^$image
! ||hearstapps.com^
! ||oply.hearstapps.com^
! ||assets.hearstapps.com^
delish.com##.video-player, .journey-unblur-content
! Brightcove
||brightcove.net^$3p
@@||brightcove.^$xhr
@@||media.brightcove.com^$image
@@||media.brightcove.com^$media,domain=players.brightcove.net
@@||players.brightcove.net^$script
! JW Player
||entitlements.jwplayer.com^$important
!||jwpsrv.com^$3p
!||jwplayer.com^$3p,domain=~menshealth.com
@@||cdn.jwplayer.com^$xhr
@@||content.jwplatform.com^$xhr,script
@@||jwpcdn.com/player/plugins/vast/$script
@@||jwpcdn.com^$font
!!! @@||jwpltx.com^$image
@@||jwpsrv.com^$subdocument
! https://www.news24.com
! paywalled audio player
||oovvuu.io^$3p
||oovvuu.media^$3p
! https://github.com/brave/adblock-lists/blob/master/brave-lists/brave-ios-specific.txt
! Invideo ads
||api.fw.tv^
||avantisvideo.com/avm/js/video-loader.js$script,3p
||c.jsrdn.com^$script,domain=muscleandfitness.com
||channelexco.com/player/$3p
||connatix.com^$script,3p
||delivery.vidible.tv/jsonp/
||dywolfer.de^
||embed.sendtonews.com^$3p
||fqtag.com^$3p
||fwcdn1.com/js/fwn.js
||fwcdn1.com/js/storyblock.js
||fwcdn2.com^$3p
||go.trvdp.com^
||jwpcdn.com^$script,domain=bgr.com|dexerto.com|zimbio.com
||jwplayer.com/players/$script,domain=ginx.tv
||live.primis.tech^$3p
||play.anyclip.com^$script,3p
||play.springboardplatform.com^
||playbuzz.com/embed/$script,3p
||playbuzz.com/player/$script,3p
||player.anyclip.com/anyclip-widget/$script,3p
||player.avplayer.com^$3p
||player.ex.co^$script,3p
||player.sendtonews.com^$3p
||players.brightcove.net^$script,domain=businessinsider.com.au|gizmodo.com.au|kotaku.com.au|lifehacker.com.au|pedestrian.tv
||playwire.com/bolt/js/$script,3p
||rumble.com^$domain=tiphero.com
||services.brid.tv^$script,domain=spin.com
||sportrecs.com/redirect/embed/
||ultimedia.com/js/common/smart.js$script,3p
||vidazoo.com/basev/$script,3p
||video-api.yql.yahoo.com^*/wf-channel=related-videos?
||vidora.com^$3p
||viewdeos.com^$script,3p
||vms-players.minutemediaservices.com^$script,3p
||voqally.com/hub/app/
||vplayer.newseveryday.com^
||widgets.outbrain.com^$domain=cnn.com
! Comments not covered by other annoyances lists
||championat.com^$3p
||yotpo.com^$3p
@@||staticw2.yotpo.com/assets/yotpo-widget-font
||lifehacker.com/embed/comments^$subdocument
||jetpack.wordpress.com/jetpack-comment/$subdocument
||cdn.commento.io^$3p
! ||comment.youmaker.com^
||youmaker.com^$3p
||giscus.app^$3p
||talk.hyvor.com^$3p
! Annoying anti-adblock
||images.cointelegraph.com/images/*_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy9hNGFkNDk1ZmMwNGJkOTdmNzE2NDlhNDhkNjAwM2QwMC5wbmc=.png$image
! Chat modules
||apexchat.net^$3p
||crisp.chat^$3p
||customerly.io^$3p
! ||chat.customerly.io^$3p
! ||messenger.customerly.io^$3p
||eesysoft.com^$3p
||forum.kirupa.com/embed/comments$subdocument
||livechatinc.com^$3p
||pcsupport.lenovo.com/esv*/plugins/contactus/livefloatchat
||pico.tools^$3p
||salesforceliveagent.com
||widget.intercom.io^$3p
||yappaapp.com^$3p
! Block requests to unused images
||bgr.com^$all,domain=dirt.com
||goldderby.com^$all,domain=dirt.com
||rollingstone.com^$all,important,domain=dirt.com
||spy.com^$all,domain=dirt.com
||tvline.com^$all,domain=dirt.com
! from https://github.com/DandelionSprout/adfilt/blob/master/AnnoyancesList
! AAB prompts
/^https://[a-z]{8,25}\.com/v2[a-zA-Z0-9_-]{70,}$/$xmlhttprequest,ping,3p,important
! from https://github.com/uBlock-user/uBO-Personal-Filters/blob/master/uPF.txt
! Be sure to add scriplets https://github.com/uBlock-user/uBO-Personal-Filters#requirements
9anime.*##.popover, #tags, .hd-buttons.row, #comment, .comment.widget > .widget-title, .comment.widget > .widget-body, .socials, #social, .twitter-follow-button, .sticky, .share, .text-center.crop.widget, .text-center.widget, .azlist, .mb20, [href*="twitter.com"], .alert, #fb-root, [href*="dynamicadx.com/"], [href*="popmonetizer.com/redirect"], .textlinks:remove()
anime8.ru##.text-center.alert.ann-home, #btnShowComments:remove()
animehub.ac##.footer-follow, .sb-subs.goblock > .clearfix, .comments, .detail-anime.goblock > .go-full.goblock-content > .goblock-bottom, .gc-share.gc-icon, .gc-comments.gc-icon, .dialog-ovelay, #sidebar > .clearfix\, #discordapp, #info_player > p, #info_player > div > div:remove()
animenewsnetwork.com###cover_image,.floating-image,.box.alert,#infinite-scroll-outlet,.spaceRow,#prompt-message,.social-button,.ezoic-ad,div[style$="overflow: hidden;"], .youtube:remove()
app.slack.com##^meta[http-equiv="Content-Security-Policy"]
app.slack.com##+js(set, console.info, noopFunc)
app.slack.com##.p-client__banners,.c-fullscreen_modal__content:remove()
dnsleaktest.com##p[style="padding-bottom: 100px"]:remove()
duckduckgo.com##.onboarding-ed, .tag-home__wrapper, .footer, .ia-modules, .badge-link
fandom.com###WikiaBar, #WikiaRailWrapper, .banner-notifications-placeholder, .aff-unit__disclaimer-message, .mw-notification-area:remove()
fmovies.*,ffmovies.*##.text, .widget:nth-of-type(5), #tags, .hidden-sm.widget, .hd-buttons.row, .col-right, .widget:nth-of-type(4), [href*="twitter.com"], div[data-go="#comment"], .socials, .twitter-follow-button, [href*="/redirect"], .streamhd, .stream4k, .home-socials, .addthis_native_toolbox, #fb-root, .alert, [href^="https://dynamicadx.com/"], #comment:remove()
ghacks.net###comments, [href*="/#comments"], .tag-sponsored, [id^="snhb-snhb_ghacks_bottom-"], .widget_stackcommerce_widget:remove()
github.com##.survey-container, .js-notice-dismiss, .mb-4.bg-white, .code-navigation-banner, .js-notice:remove()
www.google.*###prm-pt, .b2hzT, .exp-outline, [id^="ed_"], [id^="eob_"], [title*="Share"], #gws-output-pages-elements-homepage_additional_languages__als, #wmxmsg, #prm, .uU7dJb,[class$="middle-slot-promo"]:remove()
hollywoodreporter.com##.autoload-spinner, .blog-post-thr-newsletter-section, .speedbump-carousel:remove()
kimcartoon.to,kimcartoon.li##.w-right, #hideAds, .videoAdClose, .kcAds, .alert-info.alert, .mb15.full, #btnShowComments, #videoAd, #divComments, #disqus_thread, .twitter-follow-button, [id*="ScriptRoot"], #adbWarnContainer, #msg, div[style*="width: 300px; height: 250px"], #myContainer > .kcAds1, .top_page_alert, .kcAds1:remove()
kissanime.nz##.dialog-ovelay,#upgrade_pop,#divComments,.related_news,.full:nth-child(14),.footer_watching_link,.tab-head,#popular_animes:remove()
kisscartoon.nz###divComments:remove()
myanimelist.net##.btn-mal-service,.banner-header-anime-straming,.footer-link-icon-block,.clearfix.index-watch-description,.anime-detail-header-affiliate,.amazon, .anime_discussions.widget,.video-providers,.js-sns-icon-container,.icon-block-small.js-sns-icon-container,.promotional-video,.anime-detail-header-video,.mb4.di-ib,.fb-page,.root,[id^="div-gpt-ad"],.watch-description,.text-ad-links,.right_top_ad,.mal-ad-unit,.gdpr-modal-ad,.ad-skin-side-bg,.mal-side-ad--l,.mal-side-ad--r,.mal-live-pop-up,.free-manga-pop-up,[href^="https://mallive.myanimelist.net"], [href^="https://otsukai.com/"], [src*="/banner/"],.banner-footer-anime-streaming,.btn-affiliate,.left-info-block-manga-store-button,.btn-forum-manga-store,.mb24.mt24.pb24.pt24,.footer-app,div[style="overflow: hidden; padding: 10px 0; border-bottom: solid #cdcdcd 1px"],div[style="padding:16px 0px 0px 0px;"],.amazon-ads,.border_top:remove()
mega.nz##.ads-left-block, .ads-right-block, .active.top-login-warning, .red.download-button.button, .checkbox-bl.download:remove()
!reddit.com##.promotedlink, [id^="ad_"], #redesign-beta-optin-btn, [href="/premium"], .comment-visits-box, .premium-banner-outer, .share, #adblock-test, .giftgold, .snoovatar-link, .give-gold-button, .bottom > .spacer, .happening-now-wrap, .hohoho-header, .hohoho, #gtm-jail:remove()
speedtest.net##.high-placeholder.pure-u-1, .u-c.pure-u-custom-ad-rectangle, .u-c.pure-u-custom-ad-skyscraper, .top-placeholder.pure-u-1, .eot-dd-content, .u-c.pure-u-1-4:nth-of-type(1) > ul.menu-footer:nth-of-type(2), .lowerboard-content:remove()
speed.cloudflare.com##.mapboxgl-map:upward(1):remove()
thewrap.com##style:has-text(wallkit-paywall-block):remove()
thewrap.com##+js(ra, style, .wrappro-paywall, stay)
thewrap.com##.wallkit-paywall-block
thewrap.com##.wrappro-paywall-member-link-for-reader
torrentfreak.com##.widget_text, .o-widget--rotated.o-widget, .comments, .footer__widget--stats, .preview-article__comments, .hero__comments, .socials:remove()
translate.google.com##.notification-area,.gt-cc:remove()
!!! REDDIT
! Hide AutoModerator comments
! https://www.reddit.com/r/uBlockOrigin/comments/1erm6mn/comment/li3nd3p/?context=3
new.reddit.com##[data-testid="comment_author_link"][href="/user/AutoModerator/"]:upward(.Comment)
old.reddit.com##.comment .author[href="https://old.reddit.com/user/AutoModerator"]:upward(.comment)
www.reddit.com,sh.reddit.com##[data-id="user-hover-card"] a[href="/user/AutoModerator/"]:upward(shreddit-comment)
reddit.com##[href="/user/AutoModerator/"]:upward(shreddit-comment)
! credit for most: https://www.reddit.com/r/uBlockOrigin/comments/vyb5an/got_tired_of_reddit_shoving_crap_in_the_header/
! Clean up the Reddit header bar:
! Advertise
www.reddit.com,www.reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##header [aria-label="Advertise"]
! r/Popular
www.reddit.com,www.reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##header [href="/r/Popular/"]
www.reddit.com##.icon-popular.icon
! r/all
www.reddit.com##header [href="/r/all/"]
! Reddit Live
www.reddit.com##header [href="/rpan/"]
! Shop Avatars
!www.reddit.com##header svg+svg+svg>[d^="M6.47.828a.5.5"]:upward(2)
www.reddit.com##header button:has-text(/Shop Avatars/):upward(1)
! https://www.reddit.com/r/firefox/comments/wzvufu/comment/im92ywy/
www.reddit.com##:xpath(//button[contains(text(),'Shop Avatars')])
! Coin Icon
www.reddit.com###COIN_PURCHASE_DROPDOWN_ID
www.reddit.com##.icon-coins
! Hide Related sidebar in the new-new reddit
www.reddit.com##.block.xs\:pt-md.pdp
! Reddit premium banner 2023
reddit.com##._1b1Jalg2nxA_Z-BjKXRfAV
! Block AutoModerator messages
reddit.com##._1YCqQVO-9r-Up6QPB9H6_4 > div > div:has-text(AutoModerator)
! hide icons
www.reddit.com##._23q1waDr4n_2fR5A7zcZzb.x0hiXHicn7r3BG9m1FJH4
! hide Moderators (sometimes)
! https://www.reddit.com/r/uBlockOrigin/comments/yfgxaw/in_new_reddit_how_do_i_remove_the_moderators_box/
reddit.com##div._2vEf-C2keJaBMY9qk_BxVn:nth-of-type(4)
! hide online status in menu
! https://www.reddit.com/r/uBlockOrigin/comments/wor4ov/anyone_know_how_to_block_the_online_status_menu/
www.reddit.com##[role="menu"] button:has-text(Online Status)
! TWITCH
! from https://mypdns.org/my-external-stuff/ublockorigin-rules/-/tree/master/rules/blockrules.txt
twitch.tv##.prime-offers
twitch.tv##.extension-view__iframe
twitch.tv##.headliner-ad
twitch.tv##.front-page-carousel
!twitch.tv##.channel-panels-container
! Animated Emotes; can be disabled in settings
twitch.tv##.chat-input.bGyiZe.Layout-sc-1xcs6mc-0 > .Layout-sc-1xcs6mc-0
! Top gifters
twitch.tv##.chat-room__content.jmUA-dj.Layout-sc-1xcs6mc-0 > div.Layout-sc-1xcs6mc-0:nth-of-type(1)
! Drops, hype train
twitch.tv##.chat-room__content.jmUA-dj.Layout-sc-1xcs6mc-0 > div:nth-of-type(2)
! Chat message: user subscribed with prime!
twitch.tv##.user-notice-line--highlighted.user-notice-line.ekipGw.InjectLayout-sc-1i43xsx-0
! FACEBOOK
! FB Sponsored posts / 3 structures-matching filter / TEST version / Remove the `:style()` ending if no false positives found.
! https://www.reddit.com/r/uBlockOrigin/comments/pjk3x3/getting_ads_on_fb_anyone_knows_how_to_block_this/
! facebook.com##[role="feed"] span[id] a[href="#"]>span>span, [role="feed"] span[id] a[href="#"]>span>b:not(:has-text(/(\s|\d|^$)/)):upward([role="feed"]>div)
! "Suggested for you"
! https://www.reddit.com/r/uBlockOrigin/comments/pjmtma/facebook_suggested_for_you_old_code_doesnt_seem/
! facebook.com##[role="feed"]>div:has-text(/^(Suggested|Recommended)/)
! from https://www.reddit.com/r/uBlockOrigin/wiki/solutions
! Why are these not included by default?
! FACEBOOK
! Ads in right column
! facebook.com##div[data-pagelet="RightRail"] > div:not([data-visualcompletion]) > div > div[class]:has(> div[class] > div[class] div[class] > a[aria-label][href^="https://l.facebook.com/l.php?u="][target="_blank"])
! Feb 2021 solution
! facebook.com##div[role="complementary"] > div > div > div > div > div > span
! https://www.reddit.com/r/uBlockOrigin/wiki/solutions/#wiki_facebook
! Suggested for you
www.facebook.com##[aria-posinset] div:not(:only-child)>div:only-child>div:only-child>div:first-child[class=""]>div:not([data-0]):has-text(/^Suggested/):upward([aria-posinset])
! People You May Know
www.facebook.com##[aria-posinset] [aria-label="See all"][href="/friends/"]:upward([aria-posinset])
! Suggested groups
www.facebook.com##[aria-posinset] [aria-label="See more groups"][href="/groups/discover/"]:upward([aria-posinset])
! Reels and short videos
www.facebook.com##[aria-posinset] [aria-label="See more"][href="/reel/?s=ifu_see_more"]:upward([aria-posinset])
! Marketplace
facebook.com##[aria-label*="Marketplace"] object > a[href^="/ads/"] > span:not(:empty):upward(11)
! GOOGLE
! Google consent dialog, "before you continue"
www.google.*##^script:has-text(consentCookiePayload)
www.google.*##+js(acis, document.cookie, YES+)
google.*##+js(aeld, DOMContentLoaded, CONSENT)
! block subdomain request can generate breakage - disable network filter if you have any breakage
||consent.google.com^
! Google "People also searched for"
google.*##[id^="eob_"]
! Annoying "Sign-in with Google" pop-ups
! https://www.reddit.com/r/brave_browser/comments/uzzmp7/is_it_possible_block_the_sign_in_with_google/iaeqazb/
! https://www.bleepingcomputer.com/news/security/duckduckgo-now-blocks-google-sign-in-pop-ups-on-all-sites/
! https://github.com/yokoffing/filterlists/issues/75
!||accounts.google.com/gsi/client$script,3p
||accounts.google.com/gsi/$xhr,script,3p,domain=~auth.23andme.com
! REDDIT
! Hide Reddit 'Top Broadcast Now' & 'Top livestream'
reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##a[href^="/rpan/"] > h3:has-text(/Top (livestream|broadcast)/):upward(7)
! Block downloading
!||redd.it/*.m3u8^$xhr,domain=reddit.com|reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion
||strapi.reddit.com^$xhr,domain=reddit.com|reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion
! https://github.com/yokoffing/filterlists/issues/38
@@||v.redd.it^$xhr,domain=reddit.com|reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion
! YOUTUBE
! YT consent
! youtube.com##+js(set, ytInitialData.topbar.desktopTopbarRenderer.interstitial.consentBumpRenderer.forceConsent, false)
! youtube.com##+js(json-prune, [].response.topbar.desktopTopbarRenderer.interstitial.consentBumpRenderer)
! youtube.com##+js(json-prune, topbar.desktopTopbarRenderer.interstitial.consentBumpRenderer)
! YT login
! youtube.com##+js(set, ytInitialPlayerResponse.auxiliaryUi.messageRenderers.upsellDialogRenderer.isVisible, false)
! youtube.com##+js(set, ytInitialData.overlay.upsellDialogRenderer.isVisible, false)
! youtube.com##+js(json-prune, [].playerResponse.auxiliaryUi.messageRenderers.upsellDialogRenderer)
! YouTube delay on Firefox
! https://www.ghacks.net/2023/11/20/youtube-video-loading-delayed-fix-inside/
!#if env_firefox
! www.youtube.com##+js(nano-stb, resolve(1), 5000, 0.001)
!#endif
! TWITTER
! [July 2024] from https://www.reddit.com/r/uBlockOrigin/wiki/solutions/#wiki_twitter
! Follow/Recommended Topic | "[Name of Topic] See more"
twitter.com,x.com##article [aria-label^="Follow Topic"], article [aria-label^="Recommended Topic"]:upward(article)
! You might like (Suggested tweet)
twitter.com,x.com##article [d$="2.66 6 1H5z"]:upward(article)
! My Timeline - no inserted sections (Who to follow/Topics to follow, etc.)
twitter.com,x.com##[aria-label="Timeline: Your Home Timeline"] div[style^="transform: translateY"][style*="position: absolute;"]:not(:first-child:has-text(/^Show \d\d? Tweets?$/)):not(:has(article, [href^="/i/status/"], [role="progressbar"]))
! Other Timelines - no inserted sections (Who to follow/Topics to follow, etc.)
twitter.com,x.com##[aria-label$="’s posts"] div[style^="transform: translateY"][style*="position: absolute;"]:not(:has(article, [href^="/i/status/"], [role="progressbar"]))
! Analytics/Views button on tweets