├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug-report-1.md │ ├── bug_report.yml │ └── feature_request.md ├── README.md ├── adult_annoyance_list.txt ├── annoyance_list.txt ├── antipaywall_filters_without_element_hiding.txt ├── block_third_party_fonts.txt ├── clean_reading_experience.txt ├── click2load.txt ├── combined_annoyances_without_element_hiding ├── enhanced_site_protection.txt ├── personal.txt ├── privacy_essentials.txt └── youtube_clear_view.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: yokoffing 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: yokoffing 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: yokoffing 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-1.md: -------------------------------------------------------------------------------- 1 | ### List the website(s) you're having issues: 2 | ``` 3 | 4 | 5 | ``` 6 | ### What happens? 7 | 8 | 9 | 10 | ### List Subscriptions you're using: 11 | 12 | 13 | 14 | ### Your settings 15 | 16 | 19 | 20 | - OS/version: 21 | - Browser/version: 22 | - Adblock Extension/version: 23 | 24 | ### Other details: 25 | 26 | 28 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: File a bug report 3 | body: 4 | - type: markdown 5 | attributes: 6 | value: | 7 | :warning: **Issues will be marked as invalid if they do not come with profiling data and analysis to support the claim.** 8 | - type: checkboxes 9 | attributes: 10 | label: Prerequisites 11 | description: | 12 | - If [disabling uBlock Origin](https://github.com/gorhill/uBlock/wiki/Quick-guide:-popup-user-interface#the-large-power-button) (uBO) makes the issue go away, then it is probably a filter issue. 13 | - However, if the issue is still present *after* disabling uBO, then the issue is unrelated to a filter. 14 | - See what the [logger reports](https://github.com/gorhill/uBlock/wiki/The-logger) when you reproduce the issue. This will help you determine whether this is a filter issue. 15 | - To rule out invalid issues, confirm each one of the checkboxes: 16 | options: 17 | - label: I am not using any other content blockers alongside uBO (Privacy Badger, AdGuard, Ghostery, Adblock Plus, etc.) 18 | required: true 19 | - label: I verified that this is not a [known filter issue](https://github.com/yokoffing/filterlists/issues) 20 | required: true 21 | - label: This is not a [support issue or a question](https://old.reddit.com/r/uBlockOrigin/) 22 | required: true 23 | - label: I performed a [cursory search of the uBO issue tracker](https://github.com/uBlockOrigin/uBlock-issues/issues?q=is%3Aissue) to avoid opening a duplicate issue 24 | required: true 25 | - label: The issue is not present after wholly disabling uBO in the browser 26 | required: true 27 | 28 | - type: checkboxes 29 | attributes: 30 | label: I tried to reproduce the issue when... 31 | options: 32 | - label: uBO is the only extension 33 | required: true 34 | - label: uBO with default lists/settings 35 | required: true 36 | - label: using a new, unmodified browser profile 37 | required: true 38 | 39 | - type: textarea 40 | attributes: 41 | label: Specific URL(s) where the issue occurs 42 | description: A specific URL is MANDATORY for issue happening on a web page, even if it happens "everywhere" 43 | render: bash 44 | validations: 45 | required: true 46 | 47 | - type: textarea 48 | attributes: 49 | label: Description 50 | description: Description of the bug or feature 51 | validations: 52 | required: true 53 | 54 | - type: textarea 55 | attributes: 56 | label: Steps to Reproduce 57 | description: How do we reproduce the issue? 58 | placeholder: | 59 | 1. [First Step] 60 | 2. [Second Step] 61 | 3. [and so on...] 62 | validations: 63 | required: false 64 | 65 | - type: textarea 66 | attributes: 67 | label: Logger Output 68 | description: Open [the logger](https://github.com/gorhill/uBlock/wiki/The-logger). Refresh the affected page. [Export](https://github.com/gorhill/uBlock/wiki/The-logger#export-dialog) the output by clicking the clipboard icon. Select `Table` and `Markdown`, then `Copy to clipboard`. Paste output below. 69 | render: shell 70 | validations: 71 | required: true 72 | 73 | - type: textarea 74 | attributes: 75 | label: Expected behavior 76 | description: What you wanted to happen 77 | validations: 78 | required: true 79 | 80 | - type: textarea 81 | attributes: 82 | label: Actual behavior 83 | description: What happened instead 84 | validations: 85 | required: true 86 | 87 | - type: input 88 | attributes: 89 | label: uBlock Origin version 90 | validations: 91 | required: false 92 | 93 | - type: input 94 | attributes: 95 | label: Browser name and version 96 | validations: 97 | required: false 98 | 99 | - type: input 100 | attributes: 101 | label: Operating System and version 102 | validations: 103 | required: false 104 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![GitHub last commit](https://img.shields.io/github/last-commit/yokoffing/filterlists) 2 | ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/yokoffing/filterlists) 3 | ![GitHub Maintained](https://img.shields.io/badge/Open%20Source-Yes-orange) 4 | ![GitHub Maintained](https://img.shields.io/badge/maintained-yes-yellow) 5 | [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fyokoffing%2Ffilterlists&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false)](https://hits.seeyoufarm.com) 6 | 7 | *** 8 | 9 | # Guidelines 10 | 1) Prevent overblocking by applying the law of [diminishing returns](https://pmctraining.com/site/wp-content/uploads/2018/04/Law-of-Diminishing-Returns-CHART.png) (always blocking more ≠ better blocking experience). 11 | 2) Aim for [efficiency](https://brave.com/the-mounting-cost-of-stale-ad-blocking-rules/) without sacrificing quality (use sane, quality resources). 12 | 3) Implement the [minimum](https://reddit.com/r/uBlockOrigin/wiki/index#wiki_which_filter_lists_should_i_select.3F) number of useful lists (avoid redundancy and bloat when possible). 13 | 14 | *** 15 | 16 | # Recommended Filters for uBlock Origin 17 | 18 | ![ubo_lists_Oct_2023](https://github.com/yokoffing/filterlists/assets/11689349/62809606-61e1-48b7-a697-58eb6e397af2) 19 | 20 | *** 21 | 22 | ### Content 23 | 1) [How To Add Custom Filters](https://github.com/yokoffing/filterlists?tab=readme-ov-file#how-to-add-custom-filters) 24 | 1) [Privacy](https://github.com/yokoffing/filterlists?tab=readme-ov-file#privacy) 25 | 2) [Annoyances](https://github.com/yokoffing/filterlists?tab=readme-ov-file#annoyances) 26 | 3) [Security](https://github.com/yokoffing/filterlists?tab=readme-ov-file#security) 27 | 4) [All-Purpose](https://github.com/yokoffing/filterlists?tab=readme-ov-file#all-purpose) 28 | 2) [Setup Examples](https://github.com/yokoffing/filterlists?tab=readme-ov-file#setup-examples) 29 | 1) [Enhanced](https://github.com/yokoffing/filterlists?tab=readme-ov-file#enhanced) 30 | 2) [Pro](https://github.com/yokoffing/filterlists?tab=readme-ov-file#pro) 31 | 3) [Optimized](https://github.com/yokoffing/filterlists?tab=readme-ov-file#optimized) 32 | 3) [Block Content with Fewer Rules](https://github.com/yokoffing/filterlists?tab=readme-ov-file#block-content-with-fewer-rules) 33 | 1) [Selectively Disable Cosmetic Filters](https://github.com/yokoffing/filterlists?tab=readme-ov-file#selectively-disable-cosmetic-filters) 34 | 2) [Optimized Lists](https://github.com/yokoffing/filterlists?tab=readme-ov-file#optimized-lists) 35 | 4) [Advanced Settings](https://github.com/yokoffing/filterlists?tab=readme-ov-file#advanced-settings) 36 | 5) [FAQ](https://github.com/yokoffing/filterlists?tab=readme-ov-file#faq) 37 | 6) [Additional Reading](https://github.com/yokoffing/filterlists?tab=readme-ov-file#reading) 38 | 7) [Mentions](https://github.com/yokoffing/filterlists?tab=readme-ov-file#mentions) 39 | 40 | *** 41 | 42 | # How To Add Custom Filters 43 | 44 | ### uBlock Origin 45 | [Get](https://ublockorigin.com/) uBlock Origin (uBO), if you don't have it already. 46 | 47 | To import custom filters into uBlock Origin: 48 | 49 | 1. Click the **subscribe** link by one of the entries below. 50 | 2. In the new tab that opens, click on **Subscribe** in the top right corner. 51 | 3. Close tab, then repeat for other lists you want to add to uBO. 52 | 53 | :warning: This repo is tailored to uBlock Origin specifically. I cannot guarantee filters will work in other ad blockers. Do not open issues for other ad blockers. 54 | 55 | ### AdGuard 56 | To import custom filters into AdGuard: 57 | 58 | 1. Click the **subscribe** link by one of the entries below. 59 | 2. In the new tab that opens, click on **Next**. 60 | 3. Toggle the box that says **Trusted**, then click **Subscribe**. 61 | 62 | ### AdBlock Plus 63 | To import custom filters into Adblock Plus: 64 | 65 | 1. Click the **subscribe** link by one of the entries below. 66 | 2. In the new tab that opens, select **Yes, Add This Filter List**. 67 | 68 | ### AdBlock 69 | To import custom filters into AdBlock: 70 | 1. Click the **subscribe** link by one of the entries below. 71 | 2. In the dialog box that pops up, press **OK**. 72 | 73 | ### Other ad blockers 74 | **Do not use the subscribe link.** Instead, do the following: 75 | 76 | 1. Click on the title of the list from the selections below. 77 | 2. In GitHub, click `Raw` on the right-hand side of the page. 78 | 3. Copy+paste the URL to your preferred ad blocker. 79 | 4. Follow your ad blocker's instructions for adding custom lists. 80 | 81 | *** 82 | 83 | ## Privacy 84 | 85 | 1) :star: [**Privacy Essentials**](https://github.com/yokoffing/filterlists/blob/main/privacy_essentials.txt) (1k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/yokoffing/filterlists/main/privacy_essentials.txt&title=privacy%20essentials) 86 |
A curated list for advanced hardening. Includes [click2load](https://raw.githubusercontent.com/yokoffing/filterlists/main/click2load.txt) filters*[^what is this?](https://twitter.com/gorhill/status/1377613392559636486)* and blocks requests like `connect.facebook.com` and more that are [not covered](https://github.com/gorhill/uBlock/wiki/uBlock-and-others:-Blocking-ads,-trackers,-malwares#observations) by uBO's default settings or in Annoyance lists. :warning: This list may break third-party logins. 87 | 88 | 2) [**yokoffing's click2load filters**](https://github.com/yokoffing/filterlists/blob/main/click2load.txt) (47 rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/yokoffing/filterlists/main/click2load.txt&title=yokoffing%20click2load%20filters) 89 |
(**optional** if using `Privacy Essentials`) Turns many third-party audio and video players into [click-to-load](https://twitter.com/gorhill/status/1377613404794421258) placeholders which only load once a user clicks on it. This list speeds up page load, uses less bandwidth and browser resources, and reduces privacy exposure (by contacting fewer domains during page load). The player will load by clicking on the placeholder. 90 | 91 | 3) :star: [**Hagezi's Pro++ Mini List**](https://github.com/hagezi/dns-blocklists/blob/main/adblock/pro.plus.mini.txt) (88k domains) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/pro.plus.mini.txt&title=Hagezi%20Pro%20Plus%20Mini) 92 |
Hagezi's [Pro++ DNS List](https://github.com/hagezi/dns-blocklists?tab=readme-ov-file#proplus) inspired the creation of a mini version optimized for web browsers. This streamlined list omits rules unrelated to web surfing, such as those blocking IoT tracking and device telemetry. Although derived from an all-purpose DNS blocklist, the mini version focuses exclusively on blocking domains associated with ads, tracking, analytics, and badware. [read more](https://github.com/hagezi/dns-blocklists/issues/2346) 93 | 94 | 4) [**Hagezi's Light DNS Blocklist**](https://github.com/hagezi/dns-blocklists/blob/main/adblock/light.txt) (56k domains) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/light.txt&title=Hagezi%20Light%20DNS%20Blocklist) 95 |
Hagezi's blocklist includes ad and tracker domains seen on the top website lists (Umbrella, Cloudflare, Tranco, Majestic, etc.) and extracted domains from DNS wildcard rules. This is the core of Hagezi’s other primary DNS blocklists, which are much larger and more appropriate for DNS-level blocking. 96 | 97 | ### URL Tracking Parameters 98 | 99 | Add the functionality of [ClearURLs](https://github.com/ClearURLs/Addon#-clearurls-) to uBO. If you find websites with tracking parameters or experience breakage, you can submit those [here](https://github.com/DandelionSprout/adfilt/discussions/163?sort=new). 100 | 101 | 1) :star: **[Actually Legitimate URL Shortener Tool](https://github.com/DandelionSprout/adfilt/blob/master/LegitimateURLShortener.txt)** (2k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/DandelionSprout/adfilt/master/LegitimateURLShortener.txt&title=URL%20Shortener%20Tool) 102 |
This list also [includes](https://github.com/DandelionSprout/adfilt/discussions/163?sort=old#discussioncomment-3956776) all entries from `AdGuard's URL Tracking Protection` as of October 2022. 103 | 104 | 2) **[ClearURLs for uBO](https://github.com/DandelionSprout/adfilt/tree/master/ClearURLs%20for%20uBo)** (700 rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/DandelionSprout/adfilt/master/ClearURLs%20for%20uBo/clear_urls_uboified.txt&title=ClearURLS%20for%20URLs) 105 |
(**optional:** This list may break websites and may contain problematic rules. There is not much the maintainers can do, as this list is just the ClearURLs rules converted into a filterlist.) 106 | 107 | ### Fonts 108 | 109 | 1) [**Block third-party fonts**](https://github.com/yokoffing/filterlists/blob/main/block_third_party_fonts.txt) (70 rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/yokoffing/filterlists/main/block_third_party_fonts.txt&title=Block%20third-party%20fonts) 110 |
(**optional:** This will break the "look and feel" of some sites.) A successor to [Fanboy's Anti-thirdparty Fonts](https://github.com/ryanbr/fanboy-adblock/blob/master/fanboy-antifonts.txt), this option blocks all web fonts from third-party providers but allows the browser to download fonts from first-party domains. I prefer this method because it avoids third-party domains (speed and privacy benefit), and I trust the first-party site to download a font from them.[1](https://collinmbarrett.com/block-web-fonts/) 111 | 112 | ## Annoyances 113 | 114 | 1) :star: [**yokoffing's Annoyance List**](https://github.com/yokoffing/filterlists/blob/main/annoyance_list.txt) (1k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/yokoffing/filterlists/main/annoyance_list.txt&title=yokoffing%20Annoyance%20List) 115 |
A curated list that captures nuisances missed by other maintainers. It also cleans up the clutter around many sites (e.g., related articles, "read more", etc.). 116 | 117 | 2) **[Browse websites without logging in](https://github.com/DandelionSprout/adfilt/blob/master/BrowseWebsitesWithoutLoggingIn.txt)** (370 rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/DandelionSprout/adfilt/master/BrowseWebsitesWithoutLoggingIn.txt&title=Browse%20websites%20without%20logging%20in) 118 |
This list attempts to bypass forced logins on sites. 119 | 120 | 3) [**YouTube Clear View**](https://github.com/yokoffing/filterlists/blob/main/youtube_clear_view.txt) (17 rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/yokoffing/filterlists/main/youtube_clear_view.txt&title=YouTube%20Clear%20View) 121 |
Cleans up some of the clutter on YouTube. 122 | 123 | ### Paywalls 124 | :warning: To bypass paywalls effectively, you should use the **Bypass Paywalls Clean** extenstion for [Chrome](https://gitlab.com/magnolia1234/bypass-paywalls-chrome-clean) or [Firefox](https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean). These lists are [limited](https://gitlab.com/magnolia1234/bypass-paywalls-clean-filters#bypass-paywalls-clean-filters) in what they can do and are therefore **optional**: 125 | 126 | 1) **[Bypass Paywalls Clean filter](https://gitlab.com/magnolia1234/bypass-paywalls-clean-filters/-/blob/main/bpc-paywall-filter.txt)** (960 rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://gitlab.com/magnolia1234/bypass-paywalls-clean-filters/-/raw/main/bpc-paywall-filter.txt&title=Bypass%20Paywalls%20Clean) 127 |
The Bypass Paywalls Clean (BPC) filter is from the same [developer](https://gitlab.com/magnolia1234) as the [add-on](https://addons.mozilla.org/en-US/firefox/addon/bypass-paywalls-clean/) implementation. You do not need this filterlist if you use the extension. 128 | 129 | 2) **[Anti-paywall filters](https://github.com/liamengland1/miscfilters/blob/master/antipaywall.txt)** (2k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/liamengland1/miscfilters/master/antipaywall.txt&title=Anti-paywall%20filters) 130 |
This list blocks additional third-party requests and annoyances that are not covered in the `Bypass Paywalls Clean` filterlist. 131 | 132 | ## Security 133 | 134 | High-risk sites can expose your device to threats. These lists can prevent that by warning you before navigation or limiting what you can access. 135 | 136 | 1) [**Most Abused TLDs**](https://github.com/hagezi/dns-blocklists/blob/main/adblock/spam-tlds-ublock.txt) (213 rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/hagezi/dns-blocklists/main/adblock/spam-tlds-ublock.txt&title=Most%20Abused%20TLDs) 137 |
Displays a warning before navigating to a site with an abused [TLD](https://en.wikipedia.org/wiki/Top-level_domain). Allows exceptions for legitimate sites. Merged from my own [Enhanced website protection](https://raw.githubusercontent.com/yokoffing/filterlists/main/enhanced_site_protection.txt) list, Dandelion Sprout's `Anti-Malware List`, LennyFox's `Block non-Latin TLDs` [list](https://github.com/LennyFox/Blocklists/blob/master/Block_non_latin_TLDs.txt), and [Spamhaus](https://www.spamhaus.org/statistics/tlds/) statistics. 138 | 139 | 2) **[Dandelion Sprout's Anti-Malware List](https://github.com/DandelionSprout/adfilt/blob/master/Dandelion%20Sprout's%20Anti-Malware%20List.txt)** (88k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/DandelionSprout/adfilt/master/Dandelion%20Sprout's%20Anti-Malware%20List.txt&title=Dandelion%20Sprout%20Anti-Malware&20List) 140 |
This list blocks domains with high abuse rates and their search results. It also blocks domains involved in malware redirects, domain parking, and Windows [PUP](https://en.wikipedia.org/wiki/Potentially_unwanted_program) ads. It has many other subcategories that distinguish it from similar lists. 141 | 142 | 3) **[The malicious website blocklist](https://github.com/iam-py-test/my_filters_001/blob/main/antimalware.txt)** (38k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/iam-py-test/my_filters_001/main/antimalware.txt&title=The%20malicious%20website%20blocklist) 143 |
This version includes author comments, [vxvault.net's list](https://github.com/iam-py-test/vxvault_filter), the [anti-PUP list](https://github.com/iam-py-test/my_filters_001/blob/main/antipup.txt), and [additional rules](https://github.com/iam-py-test/my_filters_001/blob/main/special_lists/anti-malware-ubo-extension.txt) for uBO. 144 | 145 | ## All-Purpose 146 | 147 | 1) [**uBlock combo list**](https://github.com/iam-py-test/uBlock-combo/blob/main/list.txt) (81k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://raw.githubusercontent.com/iam-py-test/uBlock-combo/main/list.txt&title=uBlock%20combo%20list) 148 |
(**optional:** You may not want all these sub-filters, or you may prefer to use the separate lists) This list filters URL tracking [parameters](https://github.com/DandelionSprout/adfilt/discussions/163?sort=new) as well as malware, scams, and phishing. It combines the following lists: [Dandelion Sprout's Anti-Malware List](https://github.com/yokoffing/filterlists#security), [Actually Legitimate URL Shortener Tool](https://github.com/yokoffing/filterlists#url-tracking-parameters), [The malicious website blocklist](https://github.com/yokoffing/filterlists#security), and the [anti-typo list](https://github.com/iam-py-test/my_filters_001/blob/main/antitypo.txt). 149 | 150 | *** 151 | 152 | # Setup Examples 153 | 154 | I've provided three setup guides: **Enhanced**, **Pro**, and **Optimized**. 155 | 156 | ## Enhanced 157 | 158 | #### Features 159 | * Demonstrates the power of uBO 160 | * Blocks most cookie pop-ups, site notifications, and anti-adblock notices 161 | * Adds additional privacy protections against URL tracking and third-party domains 162 | * Adds security protections from known badware domains 163 | * You have a low threshold for site breakage 164 | 165 | #### Built-in lists 166 | In addition to the default lists, you should also enable: 167 | 1. EasyList - Cookie Notices 168 | 2. EasyList - Notifications (if you don't already have these disabled in your browser) 169 | 3. EasyList - Social Widgets (if they bother you) 170 | 4. uBlock filters - Annoyances (anti-adblock messages) 171 | 172 | #### Custom lists 173 | 1. Hagezi's Light DNS Blocklist 174 | 2. yokoffing's click2load filters 175 | 3. Actually Legitimate URL Shortener Tool 176 | 4. The [Security lists](https://github.com/yokoffing/filterlists?tab=readme-ov-file#security) (if you browse high-risk categories like torrents, piracy, and third-party streaming sites, or want more peace of mind, etc.) 177 | 178 | *** 179 | 180 | ## Pro 181 | 182 | #### Features 183 | * Get the most value from customizing uBO 184 | * Blocks more annoyances 185 | * Adds significant privacy protection 186 | * Adds security protection against abused [TLDs](https://en.wikipedia.org/wiki/Top-level_domain) 187 | * You should be comfortable troubleshooting issues and reporting site breakage, though it should be rare 188 | 189 | #### Built-in lists 190 | In addition to the default lists, you should also enable: 191 | 1. AdGuard Tracking Protection (which is [purposed for uBO](https://filters.adtidy.org/extension/ublock/filters/3.txt)) 192 | 2. Block Outsider Instrusion into LAN (optional) 193 | 3. AdGuard – Popup Overlays (newsletter pop-ups) 194 | 4. EasyList - Annoyances (all lists) 195 | 5. uBlock filters - Annoyances 196 | 197 | #### Custom lists 198 | 1. Privacy Essentials 199 | 2. Hagezi's Pro++ Mini List 200 | 3. Actually Legitimate URL Shortener Tool 201 | 4. yokoffing's Annoyance List (+ any of the other [Annoyance lists](https://github.com/yokoffing/filterlists?tab=readme-ov-file#annoyances)) 202 | 5. Most Abused TLDs (optional) 203 | 204 | *** 205 | 206 | ## Optimized 207 | 208 | * Ideal for mobile or older devices, or users who really enjoy efficiency 209 | * Thorough blocking with reduced rule count 210 | 211 | Replace one-for-one with [Optimized Lists](https://github.com/yokoffing/filterlists#optimized-lists). 212 | 213 | *** 214 | 215 | # Block Content with Fewer Rules 216 | 217 | ## Selectively Disable Cosmetic Filters 218 | 219 | One way to improve performance without compromising security or privacy is to [disable cosmetic filtering](https://github.com/gorhill/uBlock/wiki/Per-site-switches#no-cosmetic-filtering). Cosmetic filtering (aka element hiding) stops ads and other nuisances on the page; it only affects how the website looks. Toggling it off when you don't need it will **reduce the [workload on your device](https://github.com/gorhill/uBlock/wiki/Doesn't-uBlock-Origin-add-overhead-to-page-load%3F) while still blocking unwanted network requests**. 220 | 221 | For sites where uBO seems unnecessary (e.g., pages with no ads), [turn off](https://github.com/gorhill/uBlock/wiki/Per-site-switches#no-cosmetic-filtering) cosmetic filtering for the site. This will still protect you from security and privacy risks (network requests) but reduce overhead to page load. 222 | 223 | ## Optimized Lists 224 | 225 | :warning: These lists sacrifice comprehensiveness for speed and efficiency, so expect occasional gaps in coverage over the regular versions. Just something to keep in mind if you run into less blocking than anticipated; it's worth remembering for when you're trying to debug a site. 226 | 227 | uBO can handle 300k+ filters, but you might not need that many rules to block unwanted content effectively. You can use some alternative lists that have fewer rules than the built-in ones if you want to save CPU and memory on your device. 228 | 229 | [AdGuard](https://github.com/AdguardTeam) provides filters that are [optimized](https://github.com/AdguardTeam/FiltersRegistry#filters-optimization) by removing rules that are rarely used. These lists are designed to be lighter and faster but still maintain high standards for content blocking. The optimization process relies on the [statistics](https://adguard.com/kb/general/ad-filtering/tracking-filter-statistics) of how often AdGuard users apply different rules, which they opt-in to share. 230 | 231 | *The rule counts shown below are when compared to their original list in uBO. I've also supplied the link to the iOS versions for reference, but you won't need them running the AdGuard extension for Safari.* 232 | 233 | ### Ads 234 | 235 | 1) **[Easylist (Optimized)](https://filters.adtidy.org/extension/ublock/filters/101_optimized.txt)** (45k optimized vs. 82k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://filters.adtidy.org/extension/ublock/filters/101_optimized.txt&title=Easylist%20(Optimized)) 236 |
EasyList is the primary filter list that removes most adverts from web pages, including unwanted frames, images, and objects. This filter is the most popular list used by many ad blockers. [iOS version](https://filters.adtidy.org/ios/filters/101_optimized.txt) (28k rules) 237 | 238 | 2) **[EasyList + AdGuard Base filter (Optimized)](https://filters.adtidy.org/extension/ublock/filters/2_optimized.txt)** (73k optimized vs. 153k rules combined) | [subscribe](https://subscribe.adblockplus.org/?location=https://filters.adtidy.org/extension/ublock/filters/2_optimized.txt&title=AdGuard%20Base%20filter%20%2B%20EasyList%20(Optimized)) 239 |
If Easylist (Optimized) is missing too many ads, then use this list, or stick with the built-in Easylist filter. [iOS version](https://filters.adtidy.org/ios/filters/2_optimized.txt) (34k rules) 240 | 241 | 3) **[AdGuard Mobile Ads filter](https://filters.adtidy.org/extension/ublock/filters/11.txt)** (9k rules optimized) | [subscribe](https://subscribe.adblockplus.org/?location=https://filters.adtidy.org/extension/ublock/filters/11.txt&title=AdGuard%20Mobile%20Ads%20) 242 |
(**optional:** This filter is enabled by default when using uBO on Firefox for Android. It's an option in uBO under the category of **Ads**.) [iOS version](https://filters.adtidy.org/ios/filters/11_optimized.txt) (6k rules) 243 | 244 | ### Privacy 245 | 246 | 1. **[AdGuard Tracking Protection (Optimized)](https://filters.adtidy.org/extension/ublock/filters/3_optimized.txt)** (both use 100k rules; optimized removes comment lines `!`) | [subscribe](https://subscribe.adblockplus.org/?location=https://filters.adtidy.org/extension/ublock/filters/3_optimized.txt&title=AdGuard%20Tracking%20Protection%20(Optimized)%20) 247 |
A comprehensive list of various online counters and web analytics tools. [iOS version](https://filters.adtidy.org/ios/filters/3_optimized.txt) (44k rules) 248 | 249 | 3. **[EasyPrivacy (Optimized)](https://filters.adtidy.org/extension/ublock/filters/118_optimized.txt)** (14k optimized vs. 50k rules) 250 |
EasyPrivacy is a filter list to comprehensively block tracking on web pages, including tracking scripts and information collectors. EasyPrivacy protects personal data by stopping these trackers. This filter is the second most popular list used by many ad blockers. [iOS version](https://filters.adtidy.org/ios/filters/118_optimized.txt) (14k rules) 251 | 252 | ### Annoyances 253 | 254 | 1) **[Fanboy Annoyances (Optimized)](https://filters.adtidy.org/extension/ublock/filters/122_optimized.txt)** (56k optimized vs. 81k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://filters.adtidy.org/extension/ublock/filters/122_optimized.txt&title=Fanboy%20Annoyances%20(Optimized)) 255 |
Hides website notifications, social media widgets, cookie notices, chat widgets, and some newsletters, thereby substantially decreasing web page loading times and uncluttering them. Includes `EasyList - Cookie Notices` and `EasyList - Social Widgets`. [iOS version](https://filters.adtidy.org/ios/filters/122_optimized.txt) (11k rules) 256 | 257 | 2) **[AdGuard Annoyances (Optimized)](https://filters.adtidy.org/extension/ublock/filters/14_optimized.txt)** (44k optimized vs. 61k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://filters.adtidy.org/extension/ublock/filters/14_optimized.txt&title=AdGuard%20Annoyances%20(Optimized)) 258 |
Blocks irritating elements on webpages including cookie notices, third-party widgets, and in-page popups. AdGuard claims that this list doesn't duplicate `Fanboy Annoyances`, so you can use them both together. (AFAIK, it is still the case that, unlike Fanboy's version, this list doesn’t include social media widgets and buttons. To block them, you can use `AdGuard Social Media filter` separately.) [iOS version](https://filters.adtidy.org/ios/filters/14_optimized.txt) (24k rules) 259 | 260 | 3) **[AdGuard Social Media filter (Optimized)](https://filters.adtidy.org/extension/ublock/filters/4_optimized.txt)** (16k optimized vs. 21k rules) | [subscribe](https://subscribe.adblockplus.org/?location=https://filters.adtidy.org/extension/ublock/filters/4_optimized.txt&title=AdGuard%20Social%20Media%20filter%20(Optimized)) 261 |
(**optional:** Redundant with `Fanboy Annoyances` / `EasyList - Social Widgets`, in my opinion) If you do not like numerous `Like` and `Tweet` buttons on all the popular websites on the Internet, then subscribe to this filter and you will not see them anymore. [iOS version](https://filters.adtidy.org/ios/filters/4_optimized.txt) (7k rules) 262 | 263 | *** 264 | 265 | # Advanced Settings 266 | 267 | Toggle on [advanced settings](https://github.com/gorhill/uBlock/wiki/Advanced-user-features). 268 | 269 | ![advanced user](https://github.com/yokoffing/filterlists/assets/11689349/80c650dc-3f4f-4291-ab5f-53db3c42b7fc) 270 | 271 | :warning: Do not change these values blindly. Read the [description](https://github.com/gorhill/uBlock/wiki/Advanced-settings) for each preference. 272 | 273 | | **Setting** | **Value** | **Description** | 274 | |-------------------------------|-----------|--------------------------------------------------------------------------------------| 275 | | `autoUpdateAssetFetchPeriod` | `10` | auto-updater waits `x` seconds before fetching the next filterlist | 276 | | `autoUpdateDelayAfterLaunch` | `5` | update out-of-date filter lists `x` seconds after browser startup | 277 | | `autoUpdatePeriod` | `1` | uBO checks for [filter lists updates](https://www.reddit.com/r/uBlockOrigin/comments/174o7b6/comment/k4fpi4o/?context=3) every `x` hours | 278 | | `cnameMaxTTL` | `720` | cache CNAME aliases for `x` minutes | 279 | | `filterAuthorMode` | `true` | enable [Dynamic Filtering](https://github.com/gorhill/uBlock/wiki/Dynamic-filtering:-quick-guide) | 280 | | `updateAssetBypassBrowserCache` | `true` | bypass cache when manually fetching a filter list more often than every hour | 281 | 282 | *** 283 | 284 | # FAQ 285 | 286 | ### Which browser works best with uBO? 287 | [uBlock Origin](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) works [best](https://github.com/gorhill/uBlock/wiki/uBlock-Origin-works-best-on-Firefox) in Mozilla Firefox. The features supported only on [Firefox](https://www.mozilla.org/en-US/firefox/new/) include preventing unwanted [DNS requests](https://github.com/gorhill/uBlock/wiki/Dashboard:-Settings#disable-prefetching) and CNAME [uncloaking](https://github.com/gorhill/uBlock/wiki/Dashboard:-Settings#uncloak-canonical-names). 288 | 289 | ### Should I use a content blocker if I have Pihole, NextDNS, ControlD, etc.? 290 | uBlock Origin can [do more](https://github.com/gorhill/uBlock/wiki/About-%22Why-uBlock-Origin-works-so-much-better-than-Pi%E2%80%91hole-does%3F%22) compared to when only blocking requests at the DNS-level, like using [cosmetic filters](https://github.com/gorhill/uBlock/wiki/Does-uBlock-Origin-block-ads-or-just-hide-them%3F#cosmetic-filters) to hide first-party ads (e.g., [YouTube ads](https://discourse.pi-hole.net/t/how-do-i-block-ads-on-youtube/253)), [ad-placeholders](https://www.dslreports.com/forum/r33005057-How-to-block-the-spaces-taken-up-by-blocked-ads), web [annoyances]((https://reddit.com/r/nextdns/comments/t8qn8c/comment/hzqrrfa/?context=3)), etc.[1](https://help.nextdns.io/t/x2hzbps/using-nextdns-why-is-ublock-origin-still-catching-lots-of-ads) 291 | 292 | ### Why should I use these lists? 293 | Check out [How I Experience the Web Today](https://how-i-experience-web-today.com/). 294 | 295 | ### Why did you include AdGuard's Optimize lists but not AdBlock Plus' Minified lists? 296 | The Minified lists are part of an Adblock Plus-hosted unofficial project that was hardforked from their source lists in August 2019. They are smaller than AdGuard's Optimized lists but lack quality blocking. Because EL and EP are your primary defenses with content blocking, I wouldn't use the Minified lists. 297 | 298 | *** 299 | 300 | # Reading 301 | 302 | #### uBO-specific 303 | * [How to test filters](https://www.reddit.com/r/uBlockOrigin/wiki/solutions/#wiki_how_to_test_filters) 304 | * gorhill's [note](https://www.reddit.com/r/uBlockOrigin/comments/xwlw7p/ubo_makes_my_ad_block_test_produce_a_worse_score/) on adblock test sites 305 | * Toggle on [advanced settings](https://github.com/gorhill/uBlock/wiki/Advanced-user-features) 306 | * [Dynamic filtering](https://github.com/gorhill/uBlock/wiki/Dynamic-filtering:-quick-guide) | [video](https://www.youtube.com/watch?v=2lisQQmWQkY) 307 | * [Medium Mode](https://github.com/gorhill/uBlock/wiki/Blocking-mode:-medium-mode) | [video](https://youtu.be/2lisQQmWQkY?t=804) | [warning](https://reddit.com/r/firefox/comments/y0oce5/comment/irvpvrn/?context=1) 308 | * [Overview of uBlock's network filtering engine](https://github.com/gorhill/uBlock/wiki/Overview-of-uBlock's-network-filtering-engine) (graph) 309 | * [Resources Library](https://github.com/gorhill/uBlock/wiki/Resources-Library#defuser-scriptlets) 310 | * [Empty redirect resources](https://github.com/gorhill/uBlock/wiki/Resources-Library#empty-redirect-resources) (clicktoload.html) 311 | 312 | #### Filter Creation 313 | * [filterAuthorMode](https://github.com/gorhill/uBlock/wiki/Advanced-settings#filterauthormode) 314 | * [Introduction to basic filtering syntax](https://github.com/gorhill/uBlock/wiki/Introduction-to-basic-filtering-syntax) 315 | * [Static filter syntax](https://github.com/gorhill/uBlock/wiki/Static-filter-syntax) 316 | * [!#if !](https://github.com/gorhill/uBlock/wiki/Static-filter-syntax#if-condition) 317 | * [$redirect](https://github.com/gorhill/uBlock/wiki/Static-filter-syntax#redirect) 318 | * [$denyallow,domain=](https://github.com/DandelionSprout/adfilt/blob/master/Wiki/SyntaxMeaningsThatAreActuallyHumanReadable.md#blocking-1) | [2](https://github.com/gorhill/uBlock/wiki/Static-filter-syntax#denyallow) | [AdGuard](https://github.com/AdguardTeam/AdGuardHome/wiki/Hosts-Blocklists#denyallow) 319 | * [Syntax Meanings That Are Actually Human Readable](https://github.com/DandelionSprout/adfilt/blob/master/Wiki/SyntaxMeaningsThatAreActuallyHumanReadable.md) 320 | * How to block [div:nth-of-type](https://stackoverflow.com/questions/44664907/how-can-i-use-a-wildcard-in-ublock-origin) 321 | 322 | #### Security 323 | * [What's Your Cyberscore?](https://cybersecurity.ncsu.edu/home/whats-your-cyberscore/) 324 | 325 | *** 326 | 327 | # Mentions 328 | 329 | **User comments:** 330 | [1](https://reddit.com/r/uBlockOrigin/comments/t5ipte/deleted_by_user/hz5edjk/?context=2) 331 | [2](https://reddit.com/r/dataisbeautiful/comments/t52qxa/oc_i_updated_our_famous_password_table_for_2022/hz4bcq8/?context=2) 332 | [3](https://reddit.com/r/firefox/comments/z5auzi/firefox_not_properly_usingrecognizing_gpu_poor/iy0kru3) 333 | [4](https://reddit.com/r/PFSENSE/comments/zu51od/a_better_pihole_with_pfsense_setup/j1x42mx/?context=2) 334 | [5](https://reddit.com/r/chrome/comments/11frszq/new_to_chrome_from_firefox_any_musthave/jalic90/?context=2) 335 | [6](https://www.reddit.com/r/uBlockOrigin/comments/13jlu7p/comment/jokreju/?context=3) 336 | 337 | #### Guides 338 | * [FMHY: uBlock Filters](https://github.com/nbats/FMHYedit/blob/main/STORAGE.md#ublock-filters) → yokoffing/filterlists 339 | * [knapah/uBlockOrigin-Filterlist](https://github.com/knapah/uBlockOrigin-Filterlist) 340 | * [hagezi/dns-blocklists](https://github.com/hagezi/dns-blocklists#recommendation-) → Recommendation 341 | 342 | #### Contributions 343 | * [Easylist](https://github.com/easylist/easylist/issues?q=author%3Ayokoffing) 344 | * [AdGuard](https://github.com/AdguardTeam/AdguardFilters/issues?q=author%3Ayokoffing) 345 | * [DandelionSprout](https://github.com/DandelionSprout/adfilt/issues?q=author%3Ayokoffing) / [Legitimate URL Shortener](https://github.com/DandelionSprout/adfilt/discussions/163?sort=new) 346 | * [uBlock Origin](https://github.com/uBlockOrigin/uAssets/issues?q=author%3Ayokoffing) 347 | * [Hagezi DNS Blocklists](https://github.com/hagezi/dns-blocklists/issues?q=author%3Ayokoffing) | [Mentions](https://github.com/hagezi/dns-blocklists/issues?q=mentions%3Ayokoffing) | [Analysis](https://github.com/hagezi/dns-blocklists/discussions/1093) 348 | * [1Hosts](https://github.com/badmojr/1Hosts/issues?q=author%3Ayokoffing) 349 | * [Ghostery extension](https://github.com/ghostery/ghostery-extension/issues?q=author%3Ayokoffing) 350 | * [DDG Tracker Radar (Blokada)](https://community.blokada.org/t/introducing-duckduckgo-tracker-radar-to-blokada/469) 351 | 352 |
Free Website Counter
353 |
23 July 2022
354 | -------------------------------------------------------------------------------- /adult_annoyance_list.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: ❌ Adult Annoyances List 3 | ! Description: Block annoyances on adult sites 4 | ! Updated: 25 March 2024 5 | ! License: https://creativecommons.org/licenses/by/3.0/ 6 | ! Homepage: https://github.com/yokoffing/filterlists 7 | ! Expires: 4 days (update frequency) 8 | 9 | ! Network Requests 10 | ||yeswegays.com^$badfilter 11 | @@/contents/images-banners/*$domain=yeswegays.com 12 | ||bonertraffic.mobi^$3p 13 | ||cc.boyfriendtv.com/bftv/*.jpg$image 14 | ||cc.boyfriendtv.com/bftv/b/img/*.jpg$image 15 | ||cc.boyfriendtv.com/bftv/www/js/RTABlur-js.min.js$script,domain=www.boyfriendtv.com,important 16 | ||cc.boyfriendtv.com/bftv/paysite$image 17 | ||ejaculationnation.com^ 18 | ||go.xhamster.com^ 19 | ||masturbaseinvegas.com^$3p 20 | ||porntop.com^$3p 21 | ||vxxx.com^$3p 22 | ||chaturbate.com^$3p 23 | ||ggg.xhamster.com^ 24 | ||howcantheydidit.xyz^$3p 25 | ||yoxepo.uno^ 26 | ||faxifa.xyz^ 27 | ||nutaku.com^ 28 | ||xhamsterlive.com$subdocument 29 | 30 | ! Generic cosmetic filters 31 | ##.b-thumb-col 32 | ##.tabs-related.tabs 33 | ##.related.thumb-list 34 | ##.js-related.related.b-thumb-list 35 | ##.js-recommended-wrapper.recomend.b-thumb-list 36 | ##.js-recommended-wrapper.b-related 37 | ##.b-thumb-col 38 | ##.b-related 39 | ##.js-recommended-wrapper 40 | ##.b-secondary-column__aside 41 | ##.b-links-cloud 42 | ###relatedVideos 43 | ###spot_video_underplayer_livecams 44 | ##.video-page__related 45 | ##.livecams 46 | ###list_videos_related_videos 47 | ##.related-content 48 | ! Easylist rule causes video player to be too large 49 | manporn.xxx#@#.adv-sidebar 50 | 51 | ! Cosmetic filters 52 | starwank.com##.zblurb 53 | urgayporn.com##.card-section-model.card-section, .show-more-btn 54 | promo/banners$domain=www.nuvid.com,image 55 | xvideos.com##.premium-results-line 56 | gaytxxx.com##.undp--karp.undp 57 | youporn.com##.buttonsList.pornstarRow 58 | xhamster.com##.horizontal.as-width-wrap.no-update.yld-pccams-wgt 59 | deegx.com##.related-sec 60 | pornhub.com##.underplayer-thumbs 61 | aebn.com##.dts-clip-boxcover-cta-container 62 | xhamster.com##.yld-pccams-wgt 63 | boyfriendtv.com##.amateurs-block, .tab-videos-commented.adblock 64 | fetishshrine.com##.related-aside 65 | drtuber.com##.aside_panel_video, .inner_recent.recent_box 66 | boyfriendtv.com##.news-line-item 67 | pornone.com##div.w-full.grid-full-col:nth-of-type(2) 68 | 4wank.com##.xpot-horizontal, #list_videos_related_videos 69 | 2bgay.com##.ribbonban 70 | homo.xxx##.btn-dvd.btn 71 | me-gay.com##.random-td 72 | urgayporn.com###list_videos_related_videos_items, .ribbonban 73 | gayvids.tv##[href^="https://landing.mennetwork.com/"] 74 | localxh2.com##.yxd-jsp-a 75 | pornoxo.com##.js-toggle-content-wrapper 76 | aznude.com##.aznlive-banner 77 | xxxshake.com###list_videos_custom_related_sphinx_tab, .flexible-container.content > .box 78 | musclegayclips.com##.clearfix.b-videos 79 | zzztube.com##.toplist 80 | boy18tube.com##.random-td 81 | gaysearch.com###list_videos_related_videos 82 | boyfriendtv.com##.tab-videos-commented.adblock > .paddingfix.videos 83 | manporn.xxx##.block-related.video.thumbset, #list_videos_related_videos_container 84 | gayporno.fm##.b-thumb-col, .js-recommended-wrapper.b-recommended 85 | fetishshrine.com##.block-categories.thumbs.categories-list, .content-aside, .related-videos.block-videos.thumbs, .user-comments 86 | xvideos.com##.related-content 87 | xhamster.com##.wio-p.wio-pplayer 88 | cockmeter.com##.inner-col.related-inner-col 89 | !drtuber.com##.aside_panel_video, .section_frame_tools.section, .inner_recent.recent_box 90 | 429men.com###list_videos_related_videos 91 | 7vids.com##.media-spot 92 | allboner.com###commentView, .more-videos 93 | allboner.com###list_videos_related_videos 94 | boyfriendtv.com##.tac.adblock 95 | boyfriendtv.com##.vtab.js-toggle-content-menu.no-popup 96 | boyfriendtv.com##[href="https://www.cams.boyfriendtv.com"], .top-tags-box, div.js-toggle-content-wrapper:nth-of-type(7), .js-toggle-content.adblock, div.related-content:nth-of-type(1), .related-content-wrapper 97 | boyfriendtv.com###cookie-wrapper 98 | boyfriendtv.com##td 99 | en.vidmo.pro###afrb > div 100 | eporner.com###commentdiv, #relateddiv 101 | eporner.com###pbwuvp, commentdiv, relateddiv 102 | gay4porn.com##.pignr.I632b9-im-container 103 | gay4porn.com##.player-right, .performblk 104 | gay4porn.com###list_videos_related_videos 105 | gayck.com###list_videos_related_videos 106 | gaydudesfucking.com##.playerban, .side-banner 107 | gayfuckporn.com##.clearfix.b-videos 108 | gaygo.tv##.chat-bar, .flirt-block 109 | gaygo.tv##.thumbs-container.list-view, #relatedBlock, div > .replaceBlock 110 | gaymenring.com##.b-thumb-col 111 | gaymenring.com##.js-recommended-wrapper.b-related 112 | gaysearch.com###commentView, .footer, .more-videos 113 | gaysimple.com##.aside 114 | gettubetv.com##.table 115 | gotgayporn.com##.more-videos, .footer, #video_comments_video_comments 116 | gotgayporn.com###list_videos_related_videos 117 | gotporn.com##.clearfix.video-items-feed > li.live-video-item.video-item > .gravity-push.video-item-link, .sidebar 118 | hd21.com##.advertisment_block 119 | hentaiplay.net###footbar:remove() 120 | hentaiplay.net###video_overlays 121 | hotmovs.com##.video-page__related 122 | icegay.tv##.b-secondary-column__randoms > .b-head--underline.b-head 123 | jizzberry.com###list_videos_custom_related_sphinx_tab, .flexible-container.content > .box 124 | mengem.com###list_videos_related_videos 125 | monstercock.info##.reltated-sec, .col.comments-col 126 | mrgay.com##.video-info > section, article, div.wrapper > section, .video-page__related 127 | mrgay.tube##.video-page__related, div.wrapper > .seo, seo.wrapper, .comments 128 | needgayporn.com##.table, center 129 | needgayporn.com###list_videos_related_videos 130 | onlygayvideo.com##.table 131 | onlygayvideo.com###list_videos_related_videos 132 | onlygayvideo.com##center 133 | pornhub.com###hd-rightColVideoPage, .cmtPrelaodContainer.js-commentReplacement.video-wrapper, .video-wrapper.hd-videos_wrapper.hd-smallerWidth.sectionWrapper 134 | pornmd.com##.suggestions-container 135 | pornone.com##.container.main > .container.content.video_wrapper > .videos.thumblist 136 | pornxs.com##.squares 137 | privatehomeclips.com##.video-page__comments, .footer 138 | reddxxx.com##.outline-th-border2.hover\:outline-th-borderHighlight2.outline-1.m-1.relative.hover\:cursor-pointer.hover\:bg-th-postHover.rounded-lg.outline.bg-th-post 139 | redtube.com###below_footer_ad_content 140 | redtube.com###video_related_videos_one, #trending_searches 141 | sexytubetop.xyz##.with-sidebar-right.widget-area, .site-footer, .under-video-block 142 | sinparty.com##.hideonmobile.sidebar.video-page__sidebar, .video-page__actions-wrap.hideonmobile, .dropdown-block--no-desc.hideonmobile.dropdown-block, .video-page__related, div.hideondesktop > .video-page__actions 143 | str8ongay.com##.aside-itempage-col 144 | thegay.tube##.video-page__content > .right, section, .video-page__comments, .footer, #ablock-notify 145 | thegay.tube##.video-page__related 146 | thisvid.com##.column-right, #video_comments_video_comments, #list_videos_related_videos2_items, .container > .more-link, div.thumbs-items:nth-of-type(6) 147 | tubeon.com##.livecams, #spot_video_underplayer_livecams 148 | twinkvideos.com##.more-videos, .aside > div, #commentView 149 | txxx.com##.video-ad-videos, .video-comments.comments, .video-comments.comments, .video-ad-videos, .video-videos-slider, .suggestion 150 | upornia.com##.video-related 151 | vikiporn.com##.bottom-banners, .categories-list.block-cats, .content-aside 152 | viptube.com##.main > div.stem_related.stem 153 | viptube.com###spot_video_underplayer_livecams, .comments-form.form_field, #spot_video_partner_banner, .partner_text_link 154 | vivatube.com###spot_video_underplayer_livecams 155 | xhamster.com##.width-wrap.related-container 156 | xhamster.com##.wio-xspot-container.wio-xplayer, .wio-xspa.wio-xspb, .clearfix.comments-container.comments-section, footer > .width-wrap 157 | xvideos.com###tabComments_bottom_page 158 | yeptube.com###spot_video_underplayer_livecams, div.mt10.container:nth-of-type(6), .tr-download, .tr-sponsor 159 | yeswegays.com###list_videos_related_videos_ajax > .related-videos.box, .categories-list.categories.box 160 | yeswegays.com##div.box:nth-of-type(3), .video-comment.comments.box, .wrapper-holder > div.container, .footer, .thumb_spots 161 | youporngay.com###relatedVideos 162 | youporngay.com###videoComments, .inlineTooltipCntr 163 | 164 | ! Sniffies website 165 | sniffies.com##.ng-star-inserted > .ng-star-inserted.chatholder-row-item 166 | sniffies.com##.ng-star-inserted.ng-tns-c191-10.house.sidebar.overset-container 167 | ||site.sniffiesassets.com/upgrade-ads/images/s*.jpg$image 168 | sniffies.com##.ng-tns-c192-9.overset > .ng-tns-c192-9 169 | sniffies.com##.ng-tns-c192-10.overset > .ng-tns-c192-10 170 | sniffies.com##.map-main-content > .ng-star-inserted.ng-tns-c192-12 171 | ||site.sniffiesassets.com/upgrade-ads^ 172 | ||media.twiliocdn.com^$3p 173 | 174 | ! URL Tracking 175 | ! https://mrgay.com/video/10166063/arabian-strokes/?autostart=1 176 | ! $removeparam=autostart,domain=mrgay.com 177 | -------------------------------------------------------------------------------- /annoyance_list.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: 🛠️ yokoffing's Annoyance List 3 | ! Description: Hide annoyances and extraneous page elements ("related articles", "read more", etc.) not covered by other lists 4 | ! Homepage: https://github.com/yokoffing/filterlists 5 | ! Expires: 4 days (update frequency) 6 | ! Version: 25 March 2024 7 | ! Syntax: AdBlock 8 | 9 | freedium.cfd##.notification-container 10 | psypost.org##em > strong, .jnews_related_post_container 11 | cloudflare.com##.ph3.items-center.flex-l, .bottom-0.fixed 12 | dev.to##.popover-billboard.crayons-sponsorship, .crayons-sponsorship 13 | pymnts.com##.adContainer, .pymnt_ads, .recommended-articles 14 | tcgplayer.com##.promo-banner.delay-wrapper 15 | ign.com##.article-page > section.jsx-537794787 16 | spirehealthcare.com##.call-to-action--floatingButton 17 | blocknews.com##.theiaStickySidebar, .jnews_related_post_container 18 | whatsoftware.com##.commentlist, .comment-respond, .yarpp-related-website.yarpp-related.yarpp 19 | vocabulary.com##.vocab-trainer-background 20 | washingtonpost.com##.hide-for-print 21 | returnbyte.com##.clearfix.sidebar.widget-area, .post-navigation, .featured-related-posts, .widget-title, .comments-area 22 | wired.com##.callout--has-top-border 23 | whonix.org###fly-in-notification-panel 24 | emojipedia.org##.mt-6.gap-6.flex-col.flex 25 | pcwrt.com##[href="https://shop.pcwrt.com/"] 26 | portswigger.net##.sidebar-content, .footer 27 | robokiller.com##.blog-cta-1, .blog-cta-2, .w-richtext-align-fullwidth.w-richtext-figure-type-image 28 | 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 29 | jetblue.com##.jtpcars-list 30 | tmz.com##.media-list, .sidebar, .js-track-link.image-block__link.media-link 31 | pressplay.top##.btn-block 32 | apnews.com##.Enhancement 33 | adweek.com##.widget-popular, .section--teaser_partners--horizontal.section--teaser_partners.section--teaser.section 34 | jamiesawyer336.com##.social-links, .subscribe-form 35 | pureinfotech.com##.top-share-buttons 36 | techtarget.com##.cluster-branding-container, .cluster-download, .cluster-callout-right, .show.download-button, .desktop-resources-bar.resources-bar 37 | tomsguide.com##.hawk-main-editorial-container 38 | forbes.com##.link-embed.color-body-border.color-body.embed-base 39 | citationmachine.net###--ucf-upload-widget-modal-container 40 | grammarist.com##.inside-right-sidebar, div.wp-block-column-is-layout-flow.is-layout-flow.wp-block-column 41 | tomshardware.com##.hawk-main-editorial-container 42 | macrumors.com##.noskim 43 | infoworld.com##h4, .end-note 44 | techreviewteam.com##.wp-widget-group__inner-blocks 45 | medium.com##.adm.adl.abi.m, .bg.adn.abg.adp 46 | 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 47 | androidauthority.com##.-___sc 48 | thenextweb.com##.sidebarRelated 49 | unherd.com##div.ref-ar:nth-of-type(even), div.ref-ar:nth-of-type(odd) 50 | thecrimson.com##.css-rfa55z 51 | howfix.net##.widget-recent 52 | datajournalismtoday.com##.lnKYSq.bVF0DD 53 | intheknow.com##.rr, #see-also, #exclusive-offers 54 | hipaajournal.com###sidebar, .spu-clickable, .wppopups-whole, .featured-action 55 | myip.ms##.float_panel 56 | circleid.com##.newsletterSignUpBox 57 | foodandwine.com##.recirc-section.comp, .share-item, .related-link.comp 58 | gearpatrol.com##.embed-editorial-links, .transporter, .end-of-content-playlist 59 | nbcchicago.com##.recirc-module, .wp-block-embed__wrapper, .featured-text, .most-popular__container 60 | ghacks.net##.the_related_part 61 | thehackernews.com##div.cf.gg-1, .badbox, .share-open-modal 62 | builtin.com##.active.wrap-share-social-fixed 63 | smartdnsproxy.com##.col-sm-4 64 | dictionary.com##.fa-facebook 65 | techradar.com##.page-widget-area-17, .more-about__container 66 | soeren-hentzschel.at###sidebar 67 | yofreesamples.com##.share-link 68 | gizmodo.com##.js_more-below-post 69 | medium.com##.abs.abr.yu.m 70 | aeon.co##.cioYkv 71 | sourceforge.net##.m-sidebar-widget 72 | advocate.com##.recirculation__placeholder--hot-stories, .recirculation__placeholder--latest 73 | howtogeek.com##.related-single, .sidebar-tabs, .sidebar-sticky, .article-footer-newsletter, .bottom.sharing 74 | realnewsmichiana.com##.td_spot_img_all, .wpb_column.tdi_31.vc_column > .wpb_wrapper, .td-more-articles-box, .tdb-single-related-posts 75 | 1010wcsi.com###secondary 76 | 9anime.se##.header-group > .socials-group 77 | 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, .post-content.med.container > ul, .post-body > ul, .xs.container.sidebar 78 | aa.com.tr##.detay-benzerHaberler.row, .donotprint.sticky-top 79 | abc7.com##.inner.headlines-list.top-stories 80 | abcnews.go.com##.Article__Column--sidebar.Article__Column, .Inline__Headline__Stack.InlineElement--desktop.InlineElement--content-width.InlineElement, .CalloutLink 81 | abine.com##.widgetable 82 | abqjournal.com###secondary > .widget-area, .abq_pw_container 83 | accuweather.com##.full-mobile-width.content-module.article-newsfeed 84 | additudemag.com##.sidebar-wrapper, .blockcontainer.related-more-articles-recommended-footer.recommended-articles 85 | adidas.*##.glass-modal___1JNyq.gl-modal--full-mobile.gl-modal--active.gl-modal--mobile-full.gl-modal 86 | 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 87 | aeon.co##.NLFormInsertFromCMS 88 | agar.io###mainui-promo, agar-io_300x250 89 | aidsmap.com##.region-sidebar.region 90 | 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 91 | allsides.com##.alert-message 92 | allsides.com##.block-width-100.fundraising-block-flex, .even.last.block-block.block 93 | allsides.com##.region-highlighted.region 94 | allthatsinteresting.com###coral_talk_stream, .post-nav 95 | allthings.how##.sidebar.widget-area.posts-sidebar 96 | alphr.com##.js-also-like.sidebar__widget 97 | altcoinbuzz.io##.td-ss-main-sidebar, .comments 98 | alternative.me##.container > div.block 99 | amazon.com##.payment-plan-02.payment-options-financing-option.payment-options-option.a-padding-small.a-spacing-small.a-section 100 | android.com##.devsite-badger-award, devsite-snackbar 101 | androidpolice.com###secondary, .next-btn.sentinel-article-nextArticle, .w-article-related 102 | apa.org##.rtcol 103 | apewisdom.io##.close-ad 104 | apnews.com##.Component-block-0-2-358.relatedStory-0-2-362 105 | apnews.com##.hubPeekContainerWide-0-2-378 106 | apnews.com##.hubPeekMainArticle.compressedEmbed-0-2-146.noBorderBottom-0-2-145.HubPeek.Component-hubPeekEmbed-0-2-361 107 | 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 108 | appleinsider.com##.article-comments.row, .col-lg-3 > div.hidden-xs, .hidden-xs.article-comments.row, .primis-ad-wrap 109 | appleinsider.com##.deals-widget, .deal-highlight 110 | arkansasonline.com##.fa-facebook-f.fab, .fa-twitter.fab, .fa-instagram.fab 111 | arstechnica.com###promoted-comments, #article-footer-wrap 112 | arstechnica.com###social-footer, social-footer > .icon-comment-bubble-down.comment-count, .story-sidebar-part 113 | artificialintelligence-news.com##.cell.large-3.medium-5.small-12.sidebar 114 | asianews.it##.box-content_blocchi, .wrap > .box_up 115 | askvg.com##.sidebar 116 | asos.com##.UKYji 117 | averagelinuxuser.com###comment-section 118 | barrons.com##.article__inset--wrap.article__inset--type-InsetNewsletterSignup 119 | bbc.com##.e3eyuya5.ssrcss-msolhr-LinksWrapper 120 | bbc.com##.e5tfeyi0.ssrcss-1o5f7ft-BulletListContainer > ul 121 | bbc.com##aside 122 | 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) 123 | beebom.com##.popular-posts-section 124 | bestbuy.com##.shopping-assistant-accordion.c-accordion 125 | biblegateway.com##.sys-announce-content, .flex-1.resources 126 | bigtechbank.com###sidebar > .LinkList.widget, .PopularPosts.widget, .post-footer, .comments-system-blogger.litespot-pro-blog-post-comments 127 | billboard.com##.trending-stories-widget, .injected-related-story 128 | 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 129 | bitcoinist.com##div.related-reading-shortcode > strong, div.related-reading-shortcode:nth-of-type(2), div.related-reading-shortcode:nth-of-type(5) 130 | bitcoinist.com##em > strong 131 | bitcoinist.com##p strong:has-text(/^Related Reading/):upward(p) 132 | bitcoinmagazine.com##.mm-component-stack--has-footer.mm-component-stack--has-header.mm-component-stack--is-stacked.m-component-stack.m-tile-hub 133 | bitdefender.com##.mt-4.mt-lg-0.col-lg-4, .mb-5.row 134 | bitly.com##.sitebanner--container 135 | 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 136 | blockchain.news###recommendarea, .hidden-sm-down.sbl.col-md-12.col-lg-3, .footer-hyperlink 137 | blocmates.com###comments 138 | blog.checkpoint.com##.col-lg-12 139 | blog.cloudflare.com##.center.mw7.flex-wrap.flex-row.flex.ph0-l.ph3.pv4 140 | blog.hubspot.com##.blog-post-sticky-cta-button, .blog-post-sticky-cta-complementary-text,.blog-post-sticky-cta 141 | blog.internxt.com##figure.kg-image-card.kg-card:nth-of-type(odd), figure.kg-image-card.kg-card:nth-of-type(even) 142 | blog.mozilla.org###related-posts, #comments, .nav-paging.section 143 | blog.reedsy.com##.content-upgrade, .panel-grey.panel-thin.panel 144 | blog.torproject.org##.comments 145 | blog.youtube##.js-yt-gtm-related-tags.yt-article-rel-tags, .yt-article-rel-article.js-yt-gtm-related-articles 146 | 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 147 | 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 148 | bluebellpwm.com##.dce-wrapper-grid.dce-posts-wrapper 149 | boldgrid.com###sidebar 150 | bossip.com##.widget_bossip_tmz_feed_widget.widget 151 | britannica.com##.mb-30.m-sm-50.border.d-block.p-5.quiz-module.info-module, .marketing-content.marketing-INLINE_SUBSCRIPTION 152 | britannica.com##.read-more-module 153 | browserhow.com##.blog-sidebar 154 | bsc.news##.desktop-top-banner-div-block, .ad-block-3-side-page, .latest-list-news, div.article-div-block:nth-of-type(3) 155 | 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) 156 | 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 157 | buzzfeed.com##.post_content__1ww4g > div > .recirclist_recircList__39Njb, .reactions_section__1tQc6, #commentsWrapper, .bottomrecirclist_bottomRecircList__DPezI.recirclist_recircList__39Njb, .commentCtaBtn__1Lf-n 158 | buzzfeednews.com##.bfp-related-links, .js-comments__buzzfeed-container, .bottom-recirc-lists, .js-teaser__link.teaser__link, .list-unstyled.news-bottom-feed 159 | 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) 160 | carscoops.com###secondary > .theiaStickySidebar, .post-navigation.navigation 161 | 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 162 | catchpoint.com##.newsletter.sidebar-block 163 | 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 164 | ccn.com##.ampforwp-inline-related-post 165 | cex.io##.cookie-notifier-section.cex-ui-section 166 | chadd.org##.fl-node-601c2996ce495.fl-row-bg-none.fl-row-full-width.fl-row 167 | character-ai.us.auth0.com##.c9ce1fa93.ce0052778 168 | chromeunboxed.com##.widget-area.sidebar-primary.sidebar, .jp-relatedposts 169 | circleid.com##.colB > .colPad 170 | citethisforme.com##.ucf-upload-widget-modal-root.bzQanw.sc-1ia47o9-0, .htPnDG.styled__ModalWrapper-sc-1b4zkf-0 171 | citycoins.co##.banner_container.banner 172 | citylimits.org###sidebar > .widget-area, #comments, .footer-skyline 173 | cjr.org###perspective-top, #perspective-bottom, .hidden-print.trending-stories.col-md-offset-0.col-md-4.col-sm-offset-2.nocontent 174 | cnbc.com##.ArticleBody-blockquote 175 | cnbc.com##.ExclusiveContentBucket-exclusiveContentBucket, .ReadMore-container-cnbc.group, .InlineVideo-wrapper 176 | cnbc.com##.SectionWrapper-container, .SidebarArticle-sticky, .WatchLiveRightRail-container.WatchLiveRightRail-inline, .RelatedContent-container 177 | cnet.com##.c-quizbanner_form.c-quizbanner, .myFinance-iframe 178 | cnet.com##.related-links 179 | cnil.fr##li.picto > [href="http://twitter.com/CNIL_en"] > .logo_mini_menu_titre_twitter 180 | 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 181 | cnn.com##.terms-of-service, .user-msg-flexbox.headerless.user-msg 182 | coindesk.com##.fFpIEz.newsletter-ctastyles__Wrapper-sc-1a47sbx-0 183 | coindesk.com##.fyPdeu.newsletter-ctastyles__Wrapper-sc-18e7dvj-0 184 | coingecko.com##div.p-4:nth-of-type(3), .tw-mb-16 185 | coinmarketcap.com##.jiWaSe.ii1g3i-0 186 | cointelegraph.com##.post-content__accent_big.post-content__accent 187 | 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 188 | collider.com###secondary, .related-single, .next-single, .next-btn.sentinel-article-nextArticle, .w-article-related 189 | comedyshow.to##+js(acis, JSON.parse, break;case $.) 190 | comicbook.com##.js-activateComments.mid-content-comment, .related-stories 191 | 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 192 | computerverge.com##.is-alreay-loaded.is-fixed.is-sticky.normal-side.tie-col-xs-12.tie-col-md-4.sidebar > .theiaStickySidebar 193 | connectthewatts.com##.is-resized.size-large.aligncenter, .is-resized.size-full.aligncenter 194 | 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 195 | 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) 196 | cosmopolitan.com##.transporter 197 | counsellingresource.com##[href="https://counsellingresource.com/therapy/service/live-online-therapy/#bh"] 198 | creativebloq.com##.exit-intent__wrapper, #sidebar, .masthead-item.buttons-social 199 | creativemarket.com##[href="https://creativemarket.com/membership"] 200 | creditwise.capitalone.com##cw-offers-tile.ng-star-inserted, cw-disclaimer-text.ng-star-inserted 201 | crypto-economy.com##.td-fix-index.tdb-block-inner.td_block_inner 202 | crypto-news-flash.com###bunyad-latest-posts-widget-4, .main-content.col-9 > .related-posts 203 | cryptobriefing.com##.ad-container, .article-content-wrapper > .article-content > .recommended-posts, .article-sidebar > .article-sidebar-items 204 | cryptoevents.global##.sidebar-widgets, .custom-banners-cycle-slideshow-default_style 205 | 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/"] 206 | csoonline.com###fsb-4201 > strong, .blxC51120.blox4_html.blxM2004.blxParticleendnote.blx > aside, #editorialfakesidebardiv, aside.fakesidebar, .fakesidebar-sponsored.fakesidebar-auto.fakesidebar, .article-intercept 207 | ctrl.blog###related 208 | ctvnews.ca##.sidebar, div.graybox.list.element > .linklist, .related 209 | 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 210 | cybereason.com##.cr-ml-sidebar--group 211 | cybernews.com##.cells__item_width_3.cells__item_width.cells__item 212 | cybernews.com##.compliance-note_with-spacing.compliance-note 213 | dailycaller.com##strong 214 | dailydot.com##.side-panel.col.widget-area, .text-center.t-top-newsletter.featured-article 215 | dailyhodl.com##.col-md-4.jeg_sticky_sidebar.jeg_sidebar > .jegStickyHolder > .theiaStickySidebar, .wpb_content_element.wpb_widgetised_column 216 | 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 217 | dailystar.co.uk##section.related-articles-bg:nth-of-type(odd), section.related-articles-bg:nth-of-type(even) 218 | daniel.haxx.se##.widget-area.content-sidebar 219 | darkreader.org##.page-grid-inside 220 | davescomputertips.com##.comments-area, .sidebar-main 221 | 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 222 | decider.com##.alignleft.wp-caption.in-line-column, .article-footer, .sidebar--primary.sidebar 223 | 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) 224 | developer-tech.com##.sidebar 225 | deviantart.com##a[href="https://www.deviantart.com/core-membership"] 226 | dextools.io##app-banner 227 | dictionaryblog.cambridge.org##.comments-area 228 | digest.bps.org.uk##.post-navigation.navigation, .widget-area, .comments-area 229 | digitaltrends.com##.b-single__grid.b-grid 230 | digitbin.com##.s1.sidebar 231 | dignited.com##.sidebar-latest 232 | 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 233 | discordpackage.com###popup__1 234 | discuss.privacyguides.org##.alert-info.alert.signup-cta, .alert-global-notice.alert-info.alert 235 | dispatch.techlore.tech##.show-subscribe.subscription-widget 236 | dividendsandincome.com###text-13 > .textwidget, .c12 > .row, #posts-pagination 237 | dotesports.com##.wp-block-dotesports-affiliate-button 238 | dotesports.com##.wp-block-dotesports-highlight-block 239 | dotesports.com###nonsticky-sidebar 240 | driveteslacanada.ca##.mh-sidebar.mh-widget-col-1, .mh-related-content, .clearfix.mh-row.mh-post-nav 241 | eastbaytimes.com##.left.related 242 | eater.com##.c-related-list, .c-toaster 243 | eater.com##div.u-desktop-only:nth-of-type(2) 244 | economist.com##.related-articles 245 | educba.com##.code-block-21.code-block, .code-block-17.code-block, .container-wp-inner 246 | electrek.co##.article__youtube-video, #comments, .related-guides, .author-gear-items, .featured-items 247 | electrek.co##.related-guides-container 248 | electrek.co###after_disclaimer_placement 249 | entrepreneur.com##div.mb-16:nth-of-type(7), div.mb-16:nth-of-type(5), #lazy-load-container, .center.m4.s12.col 250 | ericom.com###cookie 251 | etcanada.com##.wells, .related 252 | euobserver.com##.show.membership-upsell.wide.v2 253 | eurweb.com##p > strong 254 | extremetech.com##.widget_recentpostswidget.widget 255 | eyerys.com##.region-sidebar-second.region 256 | f2movies.to###gift-top, .mb-3.alert, .file_realted-list.film_related 257 | fastcompany.com##.article__insert, .recirc 258 | 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 259 | fedscoop.com##.articles--noborder.articles 260 | fiercebiotech.com##.embedded-entity 261 | finance.yahoo.com###Overlay-2-Rmp-Proxy, .caas-non-sticky-sda, .Mb\(\$gridMargin\).wafer-rapid-module, .Pt\(25px\).W\(300px\).Pos\(r\) 262 | 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 263 | fivethirtyeight.com##.sidebar-feature 264 | fmovies.cab##.alert-special, .feedback-icon, .popover 265 | fonedog.com##.text-center.articleSideProduct.bg-gradient-white.articleSideItem, .articleSideRecommend.articleSideItem, .text-center.articleRateColumn.articleSideItem, .reviewColumn, .text-center.relatedProducts 266 | foodnetwork.com##.section.capsule.referencePromo 267 | fool.com##.related-content 268 | 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 269 | forbes.com##.open-web-anchor-standard-topline.open-web_anchor--desktop.open-web_anchor 270 | fortune.com##.most-popular-rr 271 | 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 272 | foundation.mozilla.org##.d-print-none.container 273 | foxnews.com##.sticky-region 274 | freecodecamp.org##.alert-dismissable.alert-success.alert.flash-message 275 | freecodecamp.org##.alert-info.alert.annual-donation-alert 276 | ft.com##.n-content-recommended--single-story 277 | 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) 278 | futurism.com##.space-y-5.sticky, .sm\:p-6.sm\:space-y-6.space-y-4.p-3 279 | gadgets.ndtv.com##.rhs_section, .story_nextprv, .margin_b30.row.story_list, ._ftrwrp, .hd.innerContainer 280 | gamerant.com###secondary, .next-single, .next-btn.sentinel-article-nextArticle, .w-article-related, .related-single, .w-article-related 281 | 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 282 | gamepressure.com##aside 283 | gatherer.wizards.com###TopBannerAdvertisement 284 | gcn.com###ph_pcontent3_0_divListBox 285 | geckoandfly.com###custom_html-4 > .custom-html-widget.textwidget, .yarpp-related, .comments-area 286 | genius.com##comments 287 | getpocket.com##.right-aside 288 | ghacks.net##.ghacks-sidebar 289 | giantfreakinrobot.com##.col-xs-12.col-lg-4.d-md-block, .related-article.no-gutters.row 290 | gizchina.com##.vw-content-sidebar 291 | gizmodo.com##.sidebar-sticky, .js_related-stories-inset, .js_newsletter-form-inline 292 | gizmodo.com###js_moreFromNetwork 293 | godaddy.com##.theiaStickySidebar 294 | goldin.io##.mb-16.mx-auto.max-w-2xl.w-full.justify-center.items-start.flex-col.flex > .mt-8 295 | goodrx.com##.re-flex.bfDpzR 296 | greengeeks.com##.widget_custom_html.widget.widget_text, .widget_recent_entries.widget, .widget_categories.widget 297 | greenpeace.org##.donate-embed.has-image.constrained.gptp-content 298 | ground.news##.sticky.top-0.z-1000 299 | 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 300 | gtricks.com##.collapsed.s1.sidebar 301 | gwhatchet.com##.widgetizedArea 302 | hackaday.com##.sidebar-widget-wrapper 303 | hbr.org##.promo--half.article-promo 304 | 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) 305 | hindustantimes.com##.darkBg.moreFrom, .relatedStory > .widget-impression-candidate.htSlider 306 | history-computer.com##.hello-bar-container 307 | hitc.com##.related-sidebar.sidebar 308 | hollywoodlife.com##.inline-trending-stories.entry-navigation, .inline-related-link, .inline-related-articles 309 | hostingadvice.com###sidebar-main 310 | howtogeek.com##.e-content.entry-content > .product-share-links, .nextup, .readmore_table, .lazyloaddiv.sidebar-glossary, p > strong, strong > em, div.relatedside 311 | 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 312 | hypebeast.com###post-feed, .col-shopping-break, .primary-sidebar 313 | icdsoft.com##.dialog-lightbox-message.dialog-message 314 | imyfone.com##.base-footer-banner 315 | indeed.com###AdblockDetectionBanner 316 | 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) 317 | independent.co.uk##div.related:nth-of-type(6), .sidebar, .related, .heKRRp.sc-13lex7x-0 318 | indianexpress.com##.theiaStickySidebar, .custom_read_button, .h-text-widget, .next-story-wrap, .comments, pdsc-related-modify 319 | infinite.tcgplayer.com###app > .subscribe-drawer--container, .article-side-rail, .article-spotlight, .related-articles__grid > .related-content 320 | infoblox.com##.carousel-desktop.carouselwrapper, .widget-area.sidebar-primary.sidebar 321 | infoq.com##.f_article_rightbar.article__more.column, .contribute_wrap, .cta_write_infoq 322 | ign.com##.jsx-4023299490.bordered-box, .three-column.jsx-628408132, .commerce-disclosure, .compact-box, .video-container, .background-image.premium-content-block, .global-alert 323 | inquirer.com##.block.responsive-embed, .component-in-recommender.grid-recommender 324 | insideevs.com##.ie_transform.sidebar, .relatedContent-new 325 | insider.com##.multi-newsletter-signup, .post-content-more, .right-rail.commerce-coupons-module 326 | investopedia.com##.grid-pre-footer.loc, .related-articles, 327 | investorplace.com##.bg-darkblue.wide.special-reports, .countdown-banner, .countdown-homepage, .related-articles.related-posts, .wide.newsletters, aside 328 | ipaddressguide.org##.recent-posts-extended.rpwe_widget.widget, .img-pos-top.related-grid.entry-related.entry--item, .comments-area, .post-navigation.navigation 329 | 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 330 | jezebel.com##.sidebar-sticky-children 331 | kirupa.com###rightContents, #sigNewsletter 332 | knowtechie.com##.relative.mvp-post-content-out > .relative, .relative.left.mvp-sec-pad > .relative.left, #mvp-content-main > ul, #h-editors-recommendations 333 | koaa.com##.TrackedSidebarPromo.AsidePromo 334 | kotaku.com##.comments-area, .sticky-item, .posts-list, .entry-author, .logged-out-box 335 | 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 336 | latimes.com##.rail, div.enhancement > .promo-small.promo-position-small.promo, .listicle-menu.list-menu, .list-spacer-bottom.list-d.list 337 | lenovo.com###confirmit-feedback, #lena-bot-window, .cookie-remind-warpper 338 | lifehacker.com###js_moreFromNetwork, #secondScroll 339 | lifehacker.com##aside.branded-item 340 | lifewire.com##.mntl-block.prefooter.comp 341 | liliputing.com##.widget-area, .widget.below-content, .comments-area, .post-navigation.navigation 342 | livelaw.in##.theiaStickySidebar, .h-anchor-color.h-sidebar-left.h-share-top-parent, .social_icons 343 | livemint.com##.eventFired.lmWidgetTracking.widget-impression-candidate.moreNews.mainArea 344 | livemint.com##.lmWidgetTracking.impression-candidate.moreNews 345 | livemint.com##.lmWidgetTracking.impression-candidate.widget-impression-candidate.story6.rightBlock 346 | livemint.com##.lmWidgetTracking.rhsPos_1.story4.rhsWidgetNotAdFree.rightBlock 347 | livemint.com##.lmWidgetTracking.rhsPos_2.story4.rhsWidgetNotAdFree.rightBlock 348 | livemint.com##.lmWidgetTracking.rhsPos_3.story3.rhsWidgetNotAdFree.rightBlock 349 | livemint.com##.lmWidgetTracking.rhsPos_3.story4.rhsWidgetNotAdFree.rightBlock 350 | livemint.com##.lmWidgetTracking.rhsPos_4.story3.rhsWidgetNotAdFree.rightBlock 351 | livemint.com##.lmWidgetTracking.rhsPos_4.story4.rhsWidgetNotAdFree.rightBlock 352 | livemint.com##.lmWidgetTracking.rhsPos_5.story4.rhsWidgetNotAdFree.rightBlock 353 | livemint.com##.lmWidgetTracking.rhsPos_6.story5.rightBlock 354 | livemint.com##.lmWidgetTracking.story2.rhsWidgetNotAdFree.lastBlock.rightBlock 355 | livemint.com###paywall_11665211098186 > .open.cardHolder 356 | livemint.com###personalFinance 357 | livemint.com###rhsWsjNotAdFree 358 | livemint.com###sectionRHSFeed-companies 359 | livescience.com##.fancy-box, .more-about__container, .popular-box 360 | livescience.com##p > strong:has-text(/^Related:/):upward(p) 361 | love2dev.com##.main > .py-2.justify-content-center.col-12.d-flex.cta-landscape 362 | macrumors.com###comments, .nextarticle--3Zv4q93A.widget--3ewetJyi 363 | maketecheasier.com##.sidebar-widget.sidebar-posts, .related-footer-grid 364 | maketecheasier.com##.textwidget 365 | makeuseof.com##.related-single, .article-footer-newsletter 366 | makeuseof.com##.sidebar-trending, .sidebar-sticky, .w-article-related, .next-btn.sentinel-article-nextArticle 367 | malaymail.com##.latest-news, .malaymail-article-details-just-in > div.row > .col-md-12, .malaymail-related-articles, .header-social-menu 368 | marketbeat.com##.d-print-none, .open-video-modal-button 369 | marketplace.org##.lazyloaded.c-simple-newsletter-subscribe, .mp-show-latest-episodes__body, .top-latest-stories, .jp-relatedposts, .original-content > .padded 370 | marketwatch.com##.article__footer.column--full.column, .region--aside.region, .fixed.container--trending.container 371 | marvelapp.com##.marginTop-l.paddingTop-xl.padding-l, .fixed-footer, .breakPointM-paddingTopBottom-s.bg-white.paddingLeftRight-m.display-inlineBlock.position-relative.breakPointM-inline 372 | 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 373 | medium.com##.ky.ku.u.ut.aj.kw.kp.df.mj, .z.cw.s, .ug.uf.s.ue, .s.qn.qm 374 | mentalhelp.net##.articles-otp-cta-wrapper 375 | metro.co.uk##.sidebar.col-c, .zone-post-strip 376 | miamiherald.com##div.story-module.related-stories 377 | 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 378 | moxfield.com##.py-3.floating-banner, .browse-ad, .d-lg-block.d-none.videobox-wrapper 379 | msguides.com###kknbnpcv 380 | msn.com##.clearleft.emsinline.section-layout.ec-module, .microsoftNewsCommentModule 381 | msnbc.com##.dn-print.related 382 | msnbc.com##.styles_hasItems__ho8PK.styles_msnbcDailyRecircBody__E_LND 383 | mspoweruser.com##.widget-area.col-md-4, div.tcb-clear:nth-of-type(3) 384 | myflixer.to##section.block_area_category.block_area:nth-of-type(1), #gift-middle, .mb-3.alert 385 | mymove.com##.deals-hub-ad, .havenly-ad__marble, .freshome-related-articles 386 | nami.org##.interstitialpromo 387 | narendramodi.in##.nmapp-container, .refComment, .refMore 388 | nationalgeographic.com##.ReadThisNext__Wrapper 389 | nbcnews.com##.dn-print.related--single.ArticleRelated 390 | nbcnews.com###embed-20190618-debates-promo-package, .nl-signup-inline 391 | nbcnewyork.com##.recirc-module, .most-popular__container 392 | ncbi.nlm.nih.gov##.pmc-labs-ad.ncbi-alerts 393 | ndtv.com##.reltd-main, .lst_nws_cnt 394 | neeva.com##.header-big-blue-button__active-C2yAM.header-big-blue-button__dismissibleContainer-2T54Z 395 | nerdwallet.com##.nw-auth-stepper__body-inner 396 | news.bitcoin.com##.bottom_article_widgets, .navigation 397 | news.bitcoin.com###floating_sidebar, .full-grid.article > .article__body > .article__body__tags-related > .article__body__tags-related__related 398 | 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 399 | news.sky.com##.sdc-article-related-stories--thumbnails.sdc-article-related-stories.sdc-article-widget, p > strong, .sdc-article-tweet.sdc-article-widget 400 | news.yahoo.com###stream-wrapper, .non-sticky-container, .Pt\(25px\).W\(300px\).Pos\(r\) 401 | news.yahoo.com##p:nth-of-type(15) 402 | news.yahoo.com##p:nth-of-type(23) 403 | news.yahoo.com##p:nth-of-type(3) 404 | news.yahoo.com##p:nth-of-type(5) 405 | newsweek.com##.id.style2.related2, .relatedNews 406 | newyorker.com##inline-embed 407 | nintendolife.com##.trending-articles, .see-also 408 | nintendolife.com###body > .optional, .related-content 409 | npr.org##.img.bucket 410 | npr.org###end-of-story-recommendations-mount 411 | nurse.com##.awac-wrapper.widget_text, .fusion-sidebar-inner-content, .single-related-posts.related-posts 412 | 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 413 | nypost.com##.alignleft.single__inline-module, .inline-module--related-post.inline-module, .more-stories, .single__sidebar, .comments-inline-cta 414 | 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 415 | omgubuntu.co.uk###secondary, .widget_omg_related_posts.widget, .u--box.content-container.banner-slideshow 416 | onetrust.com##.related-posts, .additional-resources 417 | online.csp.edu##.tux-c-spotlight-cta 418 | onmsft.com##.inside-right-sidebar, #post-nav 419 | onthisveryspot.com##.col-md-4.jeg_sticky_sidebar.jeg_sidebar, .jnews_comment_container, .jeg_prevnext_post 420 | opensource.com##.callout-float-right.embedded-callout-menu 421 | ourcodeworld.com##.sidebar-inner, #we-stand-with-ukraine 422 | outlookindia.com##.right-sticky.col-md-4.col-sm-12 > .theiaStickySidebar, .left-sticky.left_trending > .theiaStickySidebar, .__related_stories_thumbs 423 | oxygen.com##.blog-post__aside, .blog-post__related-content, .blog-post__vertical_description 424 | pagesix.com##.comments-inline-cta 425 | pagesix.com##.right-column.sidebar 426 | parade.com##.span4 > section, .tab_group.selected.articles.category, .entertainment.most_popular, .comments 427 | partitionwizard.com##.article-recommend 428 | partitionwizard.com##.main-menu-other 429 | pastebin.com##.popup-container 430 | pcgamer.com###affiliate-disclaimer, sidebar, .jump-to-comments, .read-more-container, .related-articles-wrap, .trending-wrapper, .recommended-content, .popular-box, .fancy-box 431 | pcguide.com##.aawp 432 | 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 433 | pcmag.com###trust-badge, .relative.max-w-3xl 434 | pcworld.com##.product-widget, .affiliate-disclaimer 435 | penguinrandomhouse.com##.sgnup.fi_default 436 | people.com##.auto-advance.component 437 | people.com##.recirculation-wrapper, .editorialProgramMiniRecirc 438 | phonerebel.com##.announcement--opening.announcement--closeable.announcement 439 | playvalorant.com##.pin-spacer 440 | 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 441 | polygon.com##.u-desktop-only, .c-comments, .c-compact-river, .c-related-list 442 | pomcor.com##.comments-area, .nav-links 443 | poocoin.app##.m-auto.text-small.text-light.mb-2.text-center 444 | popsugar.com##.page-footer-sidebar, .page-footer-main, .infinite-scroll-section-wrapper, .clearfix.related-stories 445 | portswigger.net##.dailyswig.maincontainer > .widget-tile, .rightcol.post-widgetcolumn 446 | portswigger.net###icons-container 447 | pressplay.top##.dvr-728 448 | privacyinternational.org##.block-views-blockrelated-content4-items-block--block-2.block-views.block.views-element-container 449 | propublica.org##.promo-newsletter-signup-2__max-width-wrapper, .wrap.wide-sm.out02.right.size04.story-promo-group.bb-promo-story 450 | 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 451 | psychotreat.com##.widget-area 452 | psypost.org##.col-md-4.jeg_sticky_sidebar.jeg_sidebar > .jegStickyHolder 453 | purple.com##.scrolled.email-footer 454 | quizlet.com##.SetPageTermsStickyBanner-container, .UIModal-box, .oxppdgq.ohebfrr.ReactModal__Overlay--after-open.ReactModal__Overlay 455 | quizlet.com##.Toastify, .TextbookRecommendations 456 | quizlet.com##+js(rc, has-adz|hasStickyAd, div[class^="SetPage"], stay) 457 | qvc.com###footer_btm_module_3 458 | qz.com##.js_qz_newsletter_signup_placeholder 459 | raider.io##.text-white > .slds-m-bottom--large 460 | realclearpolitics.com##.alpha > .recommended-newsletter 461 | realclearpolitics.com##.comments-wrapper 462 | realclearpolitics.com###comments-container 463 | realmicentral.com##.jnews_inline_related_post, .jnews_related_post_container, .theiaStickySidebar 464 | researchgate.net##.rg-us-cookie-banner 465 | reuters.com##.desktop-latest-updates__container__3z03m 466 | 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 467 | reuters.com##.workspace-article-banner__banner-container__1qyxV 468 | reuters.com##div.article-body__element__2p5pI.article-prompt__container__3uXJV:nth-of-type(even) 469 | 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) 470 | resources.pcb.cadence.com##.active.uf-reco-tiles-present.uf-reco-panel 471 | reviewgeek.com##.related-articles 472 | robots.net##.widget-area, .code-block 473 | rollingstone.com##.c-related-links-wrapper, .l-section--no-separator.l-section, .l-blog__secondary 474 | rollingstone.com##.lrv-u-padding-b-1.a-span1.trending-in-article, .newsletter, .brands-most-popular 475 | rugdoc.io###main-leaderboard-box 476 | salesforce.com##.helpButton 477 | salon.com##.right-rail 478 | scamadviser.com##.ezlazyloaded.banner-image 479 | 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 480 | scmp.com##.article-comment-bottom-widget, .others__more-on-this > .related-article, .content--h3.article-details-type--h3.generic-article__body 481 | scotthelme.co.uk##.outer.read-next 482 | screenrant.com##.related-single, .next-btn.sentinel-article-nextArticle, .w-article-related, #secondary, .next-single 483 | searchenginejournal.com##.summita-wrapa_12, section.sej-sect.text-center.sej-bbb-section.sss2_sllo_o:nth-of-type(odd) 484 | secureblink.com##.BodyTop_socialMediaIcons__2Wpnz, .RecentPosts_recentPosts__LypnQ 485 | seekingalpha.com##.adsbygoogle 486 | seekingalpha.com##.dK-o.ai-fH.dD-ps, .et-r7 > section.ah-b8.dD-b8.ai-fH.dD-ps.ai-dp.dD-o.ai-cm.dD-pz, .bN-lr.uH-o, .cS-os, .bd-kd, .inline-banner-placeholder, .ag-b2.ag-bL.mN-o 487 | seekingalpha.com##.kfDX.kfB8 > div > section.dyA.hkQ.yF8.hkC.yCC.hkA.yN.hkJ.hkB.yEU.yDP.fbA.xR.xK.xA.psA > .xN.xA.hkO > .hkM > .paywall-full-content, .ykB > .yF8.hkC.yCC.hkA.yN.hkJ.hkB.yEU.yDP.fbA.xR.xK.xA.psA 488 | securelist.com##.js-sticky-widget.c-widget-subscribe 489 | sfexaminer.com##.visible.centered.in.promo-designer-modal.modal 490 | 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 491 | sitecheck.sucuri.net##.chat-widget-wrapper 492 | sitepoint.com##.sbBody, .top-12.sticky 493 | sitepoint.com##div.custom-content > [href^="https://www.sitepoint.com/premium/pricing/"] 494 | sitepoint.com##div.custom-content:nth-of-type(odd) 495 | skyscanner.com##.DetailsPanelContent_right__MDI1M 496 | slashgear.com##.gridify 497 | slate.com##.in-article-recirc 498 | slate.com##.share-sidebar.article__share-sidebar 499 | smartframe.io##.newsletter-signup-shortcode-container 500 | speedof.me##.test-ad-container 501 | sports.yahoo.com###module-fanShop 502 | 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 503 | sportskeeda.com###keeda-comments-container 504 | star-history.com##.z-50 505 | stereogum.com###comments, .article-comments 506 | stern.de##.article__sidebar, .article__embedded-teasers, .article__end 507 | stlouisfed.org##.callout 508 | 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) 509 | surfshark.com##.active.js-timer-sales-component 510 | swisscows.com##.animation-badges.popup.home-link-instruction, .popup.install-sw-block 511 | swisscows.com##.tell-friends 512 | tampabay.com##div.article__body-interstitial:nth-of-type(even), .article__body-interstitial 513 | techcrunch.com##p > .wp-embedded-content 514 | techcult.com##.sidebar.widget-area.posts-sidebar 515 | techfunnel.com##body > .container > .row > .col-md-4 516 | techguided.com##.inside-right-sidebar 517 | 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 518 | technologyreview.com##.alignleft.related__wrap, li.sidebar__widgetWrapper--PLzjV > div 519 | technorms.com##.td-ss-main-sidebar 520 | technospot.net##.td-ss-main-sidebar, .jp-relatedposts 521 | techopedia.com###sidebar-content-wrapper 522 | techpowerup.com##div.s--item:nth-of-type(even), div.s--item:nth-of-type(odd) 523 | techradar.com##.fancy-box 524 | techradar.com##.hawk-main-editorial-container, .hawk-multi-model-review-container 525 | techradar.com##.read-more-container, #expanding-articles, .hawk-main-editorialised 526 | techradar.com###sidebar 527 | techspot.com##.sidebarContent, section.related-stories.related-products:nth-of-type(2), .related-query, section.related-stories.related-products:nth-of-type(3), #comments 528 | techtimes.com##.s2.section-middle, .sidebar.col-md-4, .ArticleRelatedContentModule_root__1MN9q, .NonMeteredNudge_root__3MU5l, .ArticleRelatedContentMagazine_root__96lNS 529 | techuntold.com##.inside-right-sidebar 530 | techwiser.com###sidebar > .theiaStickySidebar 531 | techworm.net##.td-ss-main-sidebar 532 | techzine.eu###secondary > .fixed-vertical, related, mailsignup 533 | tenforums.com##.chill 534 | testwise.com##gl-manage-cookies-modal 535 | the-sun.com##.css-hqkphk.rail--classic 536 | 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 537 | 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 538 | 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 539 | theepochtimes.com##.recommendations 540 | 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 541 | thegamer.com###secondary, .next-btn.sentinel-article-nextArticle, .next-single, .related-single, .w-article-related 542 | thegeeksclub.com##.sidebar 543 | 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) 544 | thehackernews.com##.right-box, .cf.below-post-box, .sharebelow-comment > .show-comments, .note-b 545 | thehill.com##.sidebar.column.region-sidebar-second.region, .es_recommended_content.incontent_widgets 546 | thehill.com##.thehill-promo-link 547 | thelineofbestfit.com##.related-section > .gutter-wrapper, .reviews-section > .layout-wrap, .feature-signup, .signup-sidebar.sidebar-section 548 | them.us##.callout--has-top-border 549 | themarkup.org##.article-card--right.article-card--has-image.article-card, .article-footer-titles, .print-hidden.article-footer__latest 550 | themuse.com##.mfe-jobs-banner, .jobs-sidebar.js-jobs-sidebar 551 | thenation.com##.related-multi.related-newarticle.indents.indent.left 552 | thencbeat.com##.g1-newsletter-vertical.g1-newsletter.g1-box-tpl-frame.g1-box 553 | thepennyhoarder.com##.hidden-sm.hidden-xs.single-post-social-top-sticky.col-md-2 > div > .single-social 554 | therecord.media##.sidebar__widget--articles.sidebar__widget, .navigation, .sidebar__widget--newsletter.sidebar__widget 555 | theregister.com##.listinks 556 | theregister.com##.promo_article, #story-bot-col 557 | thestar.com.my##.col-xs-12.col-md-4, .slider-story, .story--featured, #related-stories-links 558 | thestar.com##.c-related-articles 559 | thestranger.com##.article-contribution-footer, .related-content.component 560 | thestreet.com##.mm-component-stack--has-footer.mm-component-stack--has-header.mm-component-stack--is-stacked.m-component-stack.m-tile-hub 561 | theverge.com##.c-comments, .c-read-more, .c-recirc-module, .has-content.p-comment-notification, .c-related-list 562 | 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 563 | theverge.com##div.flex-auto:nth-of-type(even) 564 | thewindowsclub.com##.widget-area.sidebar-primary.sidebar, .related-posts 565 | thewrap.com##.tpd-live-banner 566 | 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 567 | thoughtco.com##.mntl-block.prefooter.comp 568 | threatpost.com##.c-fixed-sidebar-layout--336\@md.o-row > .c-sidebar.o-col, .slick-track, .c-comment-reply 569 | threatpost.com##[href^="https://threatpost.com/infosec-insider-subscription-page/"] 570 | time.com##.bottom-recirc.feed.component, .inline-article-recirc.component, .right-rail.right-rail-recirc.clearfix.feed.component, .video-jw.component 571 | time.com##.right-rail.right-rail-recirc.feed.crx-recirc.component 572 | tokenex.com##p:nth-of-type(7) 573 | tomforb.es##.navbar-end 574 | tomsguide.com##.exit-intent__background.exit-intent, .hawk-grid-items-container, .popular-box 575 | tomsguide.com##.newsletter-form__container 576 | tomshardware.com###sidebar 577 | toofab.com##.sidebar-section--sticky, .article-block 578 | torrentfreak.com##.page__sidebar 579 | tp-link.com##.widget-sticker-right-middle, .decowifi-sticker 580 | truity.com##.views-field-field-pt-mailing-list 581 | 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) 582 | tvline.com##.inline-floating-gallery, .c-related 583 | tweakers.net##.fallback, .nextPreviousArticleContainer, .relatedContent, .reacties-inner 584 | twitch.tv##.tw-callout-message 585 | typing.com##.bg.card--xs.card.header-callout, .js-guest-banner 586 | typing.com###tooltip_k5ksmxfdjr 587 | typinggames.zone###ads, #topDivForAd2, .left-ad-container, .typing-games 588 | upworthy.com##.col.sidebar-col 589 | us.norton.com##.panel 590 | 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 591 | usmagazine.com###media_image-5 > [href], #module-more-news, .content-card-footer 592 | usnews.com##.jEcXDU.right-rail__Container-zt2tbq-0 593 | usnews.com###sailthru-recommendations-widget, .fpMrom.LoadMoreWrapper__Container-zwyk5c-0, .kRfYFr.Hide-kg09cx-0.eUNfJO.Article__RightColumn-sc-1a6pffr-4 594 | usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0 > .jwEFKD.PlBer.MediaObjectBox__AnchorWrap-sc-7ytr6b-4.Anchor-byh49a-0 595 | usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(30) 596 | usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(40) 597 | usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(53) 598 | usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(63) 599 | usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(8) 600 | usnews.com##div.jdkxeQ.MediaObjectBox__Container-sc-7ytr6b-0:nth-of-type(82) 601 | 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 602 | venturebeat.com##.sticky-briefings-cta 603 | verywellmind.com##.mntl-block.mntl-sc-block-featuredlink.mntl-sc-block.related-link.therapy-doc.comp 604 | vibe.com##.trending-stories-widget, .injected-related-story 605 | vice.com##.abc__article_embed, .topic-callout 606 | 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 607 | vocabulary.com##.promo, .sign-up-area 608 | 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 609 | 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 610 | w3schools.com##.sidesection 611 | 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 612 | washingtonpost.com##.h-100.hide-for-print.flex-column.flex, .wpds-c-dhlPjo-iblNTCR-css.wpds-c-dhlPjo 613 | washingtonpost.com##.hide-for-print.mb-md 614 | washingtonpost.com##.interstitial.italic 615 | washingtontimes.com##.aside-inner 616 | watchcartoononline.bz##.scrolling.right.sidebar 617 | watcher.guru##.cs-sidebar__inner 618 | wbal.com##.tertiary-content 619 | 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) 620 | wcofun.com##.alert, .anti-ad, .episode-descp 621 | wcofun.net##.alert 622 | wearethepit.com##.related-article--container 623 | weather.com##.FullViewportLargeScreen--regionSidebar--5j64w.regionSidebar.region-sidebar 624 | 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 625 | 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 626 | wellandgood.com##.related-content 627 | whyy.org##.block--top-stories.block, .flexible-content-container > .block--related-content.block, .detail-footer 628 | wikihow.com###sidebar 629 | wikiwand.com##.footer_wrapper__zGJI_ 630 | wikiwand.com##.navbar_install__Hg9Gg 631 | wired.com##.newsletter-subscribe-form 632 | wired.com##.paywall-bar--expanded.paywall-bar-failsafe, .paywall-bar__expanded, .show-social-box.persistent-aside--align-left.persistent-aside, .sticky-box 633 | wired.com##.persistent-bottom 634 | wjcl.com##.article-sidelist-wrapper, .newsletter-signup, .article-content--body-text > ul > li, .related-embed 635 | wololo.net##.sidebar-content, #comments 636 | womenshealthmag.com##.watch-next-in-body.end-of-content-playlist, .embed-product-small.embed-product-left.embed-product.embed, .transporter 637 | word-spinner.com##.altumcode-email-collector-wrapper 638 | wsj.com##.login-section-container, .aside-container 639 | www1.cbn.com##.cat-block 640 | www1.cbn.com##.cbn_next_article_container 641 | www1.cbn.com##.prayer-forms.clearfix.cbn-devotion-forms 642 | www1.cbn.com##.section-region-sidebar 643 | xd.adobe.com##.column-4 644 | yahoo.com###wafer-trending-bar, .wafer-sticky.stream, .caas-non-sticky-sda 645 | ygoprodeck.com##.clearfix.related-posts, .comments-area 646 | ygorganization.com###custom_html-2 > .custom-html-widget.textwidget 647 | 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 648 | zoosk.com##.article__related, .newsletter 649 | ||www.web-hosting.net.my/banner$image 650 | 651 | ! General 652 | -push-notifications/$script 653 | ||cdn.carrotquest.app^$3p 654 | ||cdn.pn.vg^$3p 655 | ||hlsmedia.gannett-cdn.com^$3p 656 | ||interactive.guim.co.uk 657 | ##[class*="sponsorlink"] 658 | ||gizmodo.com/embed/comments$subdocument 659 | ||pomcor.com/wp-content/uploads/2015/05/stars_background.jpg$image 660 | ||www.rugfreecoins.com/img/*4.gif$image 661 | ||aeon.co/_next/static/chunks/NewsletterPopup. 662 | ||aeon.co/_next/static/chunks/SupportBannerHeader. 663 | ||www.fedscoop.com/advertising/$subdocument 664 | ||www.playwidget.stuff.co.nz$subdocument 665 | ||hodgef.com/static/sponsor.html$subdocument 666 | ||garry.windscribe.com^ 667 | ||circleid.com/images/industry/sponsor$image 668 | ||crypto.games/banners$image 669 | ||fmoviesz.to/assets/_bnx$image 670 | 671 | ! SOCIAL BUTTONS 672 | ##a[href^="https://twitter.com/intent/tweet"] 673 | ##a[href^="https://www.facebook.com/login.php"] 674 | ! ##a[href^="mailto:"] 675 | ##.subscribe-widget 676 | ##.facebook-icon 677 | ##.flipboard-icon 678 | ||*icon-fb.png$image 679 | ||*icon-tw.png$image 680 | ##.icon-twitter 681 | ! https://github.com/yokoffing/filterlists/issues/100 682 | ! ##.follow 683 | adguard.com##.content-social 684 | ! https://github.com/easylist/easylist/issues/16243 685 | livescience.com##.buttons-social 686 | kellegram.xyz##.socials 687 | 688 | ! AUDIO/VIDEO PLAYERS 689 | ! ||remixd.com^$3p 690 | ! https://www.gq.com/story/jason-belmonte-bowling-profile 691 | ||player.cnevids.com^ 692 | ! https://www.ghacks.net/2023/07/04/firefox-115-new-esr-base-and-some-add-ons-may-be-blocked-from-running-on-certain-sites 693 | ||readaloud.googleapis.com^$script 694 | ! Block players that usually play content not directly related to the page 695 | ||redvideo.io^$domain=~redvideo.io 696 | !||cnevids.com^$3p,domain=~gq.com 697 | ||kaltura.com^$3p,domain=~financialaidtv.com 698 | ! https://github.com/yokoffing/filterlists/issues/117 699 | @@||cdnapi-legacy.kaltura.com^$xhr,domain=yle.fi 700 | ! https://www.appdate.lk/technology/2023-browser-showdown/ 701 | ||beyondwords.io^ 702 | ||code.responsivevoice.org^ 703 | ! https://www.wyff4.com/article/videocast-morning-storms/44780778 704 | ! ||htvapps.com^ 705 | ||hearst.io^ 706 | @@||htv-streaming-otfp.hearst.io 707 | @@||nitehawk.hearst.io 708 | ||hearstapps.com^ 709 | ||htvtools.us^ 710 | ! https://www.delish.com/food-news/a44120266/mcdonalds-grimace-shake/ 711 | ||hearstgames.com^ 712 | @@||hips.hearstapps.com^$image 713 | ! ||hearstapps.com^ 714 | ! ||oply.hearstapps.com^ 715 | ! ||assets.hearstapps.com^ 716 | delish.com##.video-player, .journey-unblur-content 717 | ! Brightcove 718 | ||brightcove.net^$3p 719 | @@||brightcove.^$xhr 720 | @@||media.brightcove.com^$image 721 | @@||media.brightcove.com^$media,domain=players.brightcove.net 722 | @@||players.brightcove.net^$script 723 | ! JW Player 724 | ||entitlements.jwplayer.com^$important 725 | ||jwpsrv.com^$3p 726 | !||jwplayer.com^$3p,domain=~menshealth.com 727 | @@||cdn.jwplayer.com^$xhr 728 | @@||content.jwplatform.com^$xhr,script 729 | @@||jwpcdn.com/player/plugins/vast/$script 730 | @@||jwpcdn.com^$font 731 | !!! @@||jwpltx.com^$image 732 | @@||jwpsrv.com^$subdocument 733 | ! https://www.news24.com 734 | ! paywalled audio player 735 | ||oovvuu.io^$3p 736 | ||oovvuu.media^$3p 737 | 738 | ! https://github.com/brave/adblock-lists/blob/master/brave-lists/brave-ios-specific.txt 739 | ! Invideo ads 740 | ||api.fw.tv^ 741 | ||avantisvideo.com/avm/js/video-loader.js$script,3p 742 | ||c.jsrdn.com^$script,domain=muscleandfitness.com 743 | ||channelexco.com/player/$3p 744 | ||connatix.com^$script,3p 745 | ||delivery.vidible.tv/jsonp/ 746 | ||dywolfer.de^ 747 | ||embed.sendtonews.com^$3p 748 | ||fqtag.com^$3p 749 | ||fwcdn1.com/js/fwn.js 750 | ||fwcdn1.com/js/storyblock.js 751 | ||fwcdn2.com^$3p 752 | ||go.trvdp.com^ 753 | ||jwpcdn.com^$script,domain=bgr.com|dexerto.com|zimbio.com 754 | ||jwplayer.com/players/$script,domain=ginx.tv 755 | ||live.primis.tech^$3p 756 | ||play.anyclip.com^$script,3p 757 | ||play.springboardplatform.com^ 758 | ||playbuzz.com/embed/$script,3p 759 | ||playbuzz.com/player/$script,3p 760 | ||player.anyclip.com/anyclip-widget/$script,3p 761 | ||player.avplayer.com^$3p 762 | ||player.ex.co^$script,3p 763 | ||player.sendtonews.com^$3p 764 | ||players.brightcove.net^$script,domain=businessinsider.com.au|gizmodo.com.au|kotaku.com.au|lifehacker.com.au|pedestrian.tv 765 | ||playwire.com/bolt/js/$script,3p 766 | ||rumble.com^$domain=tiphero.com 767 | ||services.brid.tv^$script,domain=spin.com 768 | ||sportrecs.com/redirect/embed/ 769 | ||ultimedia.com/js/common/smart.js$script,3p 770 | ||vidazoo.com/basev/$script,3p 771 | ||video-api.yql.yahoo.com^*/wf-channel=related-videos? 772 | ||vidora.com^$3p 773 | ||viewdeos.com^$script,3p 774 | ||vms-players.minutemediaservices.com^$script,3p 775 | ||voqally.com/hub/app/ 776 | ||vplayer.newseveryday.com^ 777 | ||widgets.outbrain.com^$domain=cnn.com 778 | 779 | ! Comments not covered by other annoyances lists 780 | ||championat.com^$3p 781 | ||yotpo.com^$3p 782 | @@||staticw2.yotpo.com/assets/yotpo-widget-font 783 | ||lifehacker.com/embed/comments^$subdocument 784 | ||jetpack.wordpress.com/jetpack-comment/$subdocument 785 | ||cdn.commento.io^$3p 786 | ! ||comment.youmaker.com^ 787 | ||youmaker.com^$3p 788 | ||giscus.app^$3p 789 | 790 | ! Annoying anti-adblock 791 | ||images.cointelegraph.com/images/*_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy9hNGFkNDk1ZmMwNGJkOTdmNzE2NDlhNDhkNjAwM2QwMC5wbmc=.png$image 792 | 793 | ! Chat modules 794 | ||apexchat.net^$3p 795 | ||crisp.chat^$3p 796 | ||customerly.io^$3p 797 | ! ||chat.customerly.io^$3p 798 | ! ||messenger.customerly.io^$3p 799 | ||eesysoft.com^$3p 800 | ||forum.kirupa.com/embed/comments$subdocument 801 | ||livechatinc.com^$3p 802 | ||pcsupport.lenovo.com/esv*/plugins/contactus/livefloatchat 803 | ||pico.tools^$3p 804 | ||salesforceliveagent.com 805 | ||widget.intercom.io^$3p 806 | ||yappaapp.com^$3p 807 | 808 | ! Block requests to unused images 809 | ||bgr.com^$all,domain=dirt.com 810 | ||goldderby.com^$all,domain=dirt.com 811 | ||rollingstone.com^$all,important,domain=dirt.com 812 | ||spy.com^$all,domain=dirt.com 813 | ||tvline.com^$all,domain=dirt.com 814 | 815 | ! from https://github.com/DandelionSprout/adfilt/blob/master/AnnoyancesList 816 | ! AAB prompts 817 | /^https://[a-z]{8,25}\.com/v2[a-zA-Z0-9_-]{70,}$/$xmlhttprequest,ping,3p,important 818 | 819 | ! from https://github.com/uBlock-user/uBO-Personal-Filters/blob/master/uPF.txt 820 | ! Be sure to add scriplets https://github.com/uBlock-user/uBO-Personal-Filters#requirements 821 | 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() 822 | anime8.ru##.text-center.alert.ann-home, #btnShowComments:remove() 823 | 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() 824 | animenewsnetwork.com###cover_image,.floating-image,.box.alert,#infinite-scroll-outlet,.spaceRow,#prompt-message,.social-button,.ezoic-ad,div[style$="overflow: hidden;"], .youtube:remove() 825 | app.slack.com##^meta[http-equiv="Content-Security-Policy"] 826 | app.slack.com##+js(set, console.info, noopFunc) 827 | app.slack.com##.p-client__banners,.c-fullscreen_modal__content:remove() 828 | dnsleaktest.com##p[style="padding-bottom: 100px"]:remove() 829 | duckduckgo.com##.onboarding-ed, .tag-home__wrapper, .footer, .ia-modules, .badge-link 830 | fandom.com###WikiaBar, #WikiaRailWrapper, .banner-notifications-placeholder, .aff-unit__disclaimer-message, .mw-notification-area:remove() 831 | 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() 832 | ghacks.net###comments, [href*="/#comments"], .tag-sponsored, [id^="snhb-snhb_ghacks_bottom-"], .widget_stackcommerce_widget:remove() 833 | github.com##.survey-container, .js-notice-dismiss, .mb-4.bg-white, .code-navigation-banner, .js-notice:remove() 834 | 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() 835 | hollywoodreporter.com##.autoload-spinner, .blog-post-thr-newsletter-section, .speedbump-carousel:remove() 836 | 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() 837 | kissanime.nz##.dialog-ovelay,#upgrade_pop,#divComments,.related_news,.full:nth-child(14),.footer_watching_link,.tab-head,#popular_animes:remove() 838 | kisscartoon.nz###divComments:remove() 839 | myanimelist.net##body:not(.ownlist):style(background:none !important) 840 | 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() 841 | mega.nz##.ads-left-block, .ads-right-block, .active.top-login-warning, .red.download-button.button, .checkbox-bl.download:remove() 842 | !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() 843 | 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() 844 | speed.cloudflare.com##.mapboxgl-map:upward(1):remove() 845 | thewrap.com##style:has-text(wallkit-paywall-block):remove() 846 | thewrap.com##+js(ra, style, .wrappro-paywall, stay) 847 | thewrap.com##.wallkit-paywall-block 848 | thewrap.com##.wrappro-paywall-member-link-for-reader 849 | torrentfreak.com##.widget_text, .o-widget--rotated.o-widget, .comments, .footer__widget--stats, .preview-article__comments, .hero__comments, .socials:remove() 850 | translate.google.com##.notification-area,.gt-cc:remove() 851 | 852 | !!! REDDIT 853 | ! Hide AutoModerator comments 854 | ! https://www.reddit.com/r/uBlockOrigin/comments/140lp15/any_way_to_hide_automoderator_comments_with_ublock/ 855 | reddit.com##[data-testid="comment_author_link"][href="/user/AutoModerator/"]:upward(.Comment) 856 | reddit.com##.comment .author[href="https://old.reddit.com/user/AutoModerator"]:upward(.comment) 857 | ! To hide AutoModerator, anyone who contains "mod" or "bot" 858 | old.reddit.com##.comment[data-author="AutoModerator"] 859 | ! old.reddit.com##.comment[data-author*="mod"] 860 | ! old.reddit.com##.comment[data-author*="bot"] 861 | ! To hide any mod 862 | ! old.reddit.com##.comment:has(.entry .tagline .moderator) 863 | 864 | ! credit for most: https://www.reddit.com/r/uBlockOrigin/comments/vyb5an/got_tired_of_reddit_shoving_crap_in_the_header/ 865 | ! Clean up the Reddit header bar: 866 | ! Advertise 867 | www.reddit.com,www.reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##header [aria-label="Advertise"] 868 | ! r/Popular 869 | www.reddit.com,www.reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##header [href="/r/Popular/"] 870 | www.reddit.com##.icon-popular.icon 871 | ! r/all 872 | www.reddit.com##header [href="/r/all/"] 873 | ! Reddit Live 874 | www.reddit.com##header [href="/rpan/"] 875 | ! Shop Avatars 876 | !www.reddit.com##header svg+svg+svg>[d^="M6.47.828a.5.5"]:upward(2) 877 | www.reddit.com##header button:has-text(/Shop Avatars/):upward(1) 878 | ! https://www.reddit.com/r/firefox/comments/wzvufu/comment/im92ywy/ 879 | www.reddit.com##:xpath(//button[contains(text(),'Shop Avatars')]) 880 | ! Coin Icon 881 | www.reddit.com###COIN_PURCHASE_DROPDOWN_ID 882 | www.reddit.com##.icon-coins 883 | ! Hide Related sidebar in the new-new reddit 884 | www.reddit.com##.block.xs\:pt-md.pdp 885 | ! Reddit premium banner 2023 886 | reddit.com##._1b1Jalg2nxA_Z-BjKXRfAV 887 | 888 | ! Block AutoModerator messages 889 | reddit.com##._1YCqQVO-9r-Up6QPB9H6_4 > div > div:has-text(AutoModerator) 890 | 891 | ! hide icons 892 | www.reddit.com##._23q1waDr4n_2fR5A7zcZzb.x0hiXHicn7r3BG9m1FJH4 893 | 894 | ! hide Moderators (sometimes) 895 | ! https://www.reddit.com/r/uBlockOrigin/comments/yfgxaw/in_new_reddit_how_do_i_remove_the_moderators_box/ 896 | reddit.com##div._2vEf-C2keJaBMY9qk_BxVn:nth-of-type(4) 897 | 898 | ! hide online status in menu 899 | ! https://www.reddit.com/r/uBlockOrigin/comments/wor4ov/anyone_know_how_to_block_the_online_status_menu/ 900 | www.reddit.com##[role="menu"] button:has-text(Online Status) 901 | 902 | ! TWITCH 903 | ! from https://mypdns.org/my-external-stuff/ublockorigin-rules/-/tree/master/rules/blockrules.txt 904 | twitch.tv##.prime-offers 905 | twitch.tv##.extension-view__iframe 906 | twitch.tv##.headliner-ad 907 | twitch.tv##.front-page-carousel 908 | !twitch.tv##.channel-panels-container 909 | ! Animated Emotes; can be disabled in settings 910 | twitch.tv##.chat-input.bGyiZe.Layout-sc-1xcs6mc-0 > .Layout-sc-1xcs6mc-0 911 | ! Top gifters 912 | twitch.tv##.chat-room__content.jmUA-dj.Layout-sc-1xcs6mc-0 > div.Layout-sc-1xcs6mc-0:nth-of-type(1) 913 | ! Drops, hype train 914 | twitch.tv##.chat-room__content.jmUA-dj.Layout-sc-1xcs6mc-0 > div:nth-of-type(2) 915 | ! Chat message: user subscribed with prime! 916 | twitch.tv##.user-notice-line--highlighted.user-notice-line.ekipGw.InjectLayout-sc-1i43xsx-0 917 | 918 | ! FACEBOOK 919 | ! FB Sponsored posts / 3 structures-matching filter / TEST version / Remove the `:style()` ending if no false positives found. 920 | ! https://www.reddit.com/r/uBlockOrigin/comments/pjk3x3/getting_ads_on_fb_anyone_knows_how_to_block_this/ 921 | ! 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) 922 | ! "Suggested for you" 923 | ! https://www.reddit.com/r/uBlockOrigin/comments/pjmtma/facebook_suggested_for_you_old_code_doesnt_seem/ 924 | ! facebook.com##[role="feed"]>div:has-text(/^(Suggested|Recommended)/) 925 | 926 | ! from https://www.reddit.com/r/uBlockOrigin/wiki/solutions 927 | ! Why are these not included by default? 928 | 929 | ! FACEBOOK 930 | ! Ads in right column 931 | ! 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"]) 932 | ! Feb 2021 solution 933 | ! facebook.com##div[role="complementary"] > div > div > div > div > div > span 934 | 935 | ! https://www.reddit.com/r/uBlockOrigin/wiki/solutions/#wiki_facebook 936 | ! Suggested for you 937 | 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]) 938 | ! People You May Know 939 | www.facebook.com##[aria-posinset] [aria-label="See all"][href="/friends/"]:upward([aria-posinset]) 940 | ! Suggested groups 941 | www.facebook.com##[aria-posinset] [aria-label="See more groups"][href="/groups/discover/"]:upward([aria-posinset]) 942 | ! Reels and short videos 943 | www.facebook.com##[aria-posinset] [aria-label="See more"][href="/reel/?s=ifu_see_more"]:upward([aria-posinset]) 944 | ! Marketplace 945 | facebook.com##[aria-label*="Marketplace"] object > a[href^="/ads/"] > span:not(:empty):upward(11) 946 | 947 | ! GOOGLE 948 | ! Google consent dialog, "before you continue" 949 | www.google.*##^script:has-text(consentCookiePayload) 950 | www.google.*##+js(acis, document.cookie, YES+) 951 | google.*##+js(aeld, DOMContentLoaded, CONSENT) 952 | ! block subdomain request can generate breakage - disable network filter if you have any breakage 953 | ||consent.google.com^ 954 | ! Google "People also searched for" 955 | google.*##[id^="eob_"] 956 | ! Annoying "Sign-in with Google" pop-ups 957 | ! https://www.troddit.com/r/brave_browser/comments/uzzmp7/is_it_possible_block_the_sign_in_with_google/iaeqazb/ 958 | ! https://www.bleepingcomputer.com/news/security/duckduckgo-now-blocks-google-sign-in-pop-ups-on-all-sites/ 959 | ! https://github.com/yokoffing/filterlists/issues/75 960 | !||accounts.google.com/gsi/client$script,3p 961 | ||accounts.google.com/gsi/$xhr,script,3p,domain=~auth.23andme.com 962 | 963 | ! REDDIT 964 | ! Hide Reddit 'Top Broadcast Now' & 'Top livestream' 965 | reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##a[href^="/rpan/"] > h3:has-text(/Top (livestream|broadcast)/):upward(7) 966 | ! Block downloading 967 | !||redd.it/*.m3u8^$xhr,domain=reddit.com|reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion 968 | ||strapi.reddit.com^$xhr,domain=reddit.com|reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion 969 | ! https://github.com/yokoffing/filterlists/issues/38 970 | @@||v.redd.it^$xhr,domain=reddit.com|reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion 971 | 972 | ! YOUTUBE 973 | ! YT consent 974 | youtube.com##+js(set, ytInitialData.topbar.desktopTopbarRenderer.interstitial.consentBumpRenderer.forceConsent, false) 975 | youtube.com##+js(json-prune, [].response.topbar.desktopTopbarRenderer.interstitial.consentBumpRenderer) 976 | youtube.com##+js(json-prune, topbar.desktopTopbarRenderer.interstitial.consentBumpRenderer) 977 | ! YT login 978 | youtube.com##+js(set, ytInitialPlayerResponse.auxiliaryUi.messageRenderers.upsellDialogRenderer.isVisible, false) 979 | youtube.com##+js(set, ytInitialData.overlay.upsellDialogRenderer.isVisible, false) 980 | youtube.com##+js(json-prune, [].playerResponse.auxiliaryUi.messageRenderers.upsellDialogRenderer) 981 | 982 | ! YouTube delay on Firefox 983 | ! https://www.ghacks.net/2023/11/20/youtube-video-loading-delayed-fix-inside/ 984 | !#if env_firefox 985 | www.youtube.com##+js(nano-stb, resolve(1), 5000, 0.001) 986 | !#endif 987 | 988 | ! TWITTER 989 | ! [Nov 2023] from https://www.reddit.com/r/uBlockOrigin/wiki/solutions/#wiki_twitter 990 | ! My Timeline - no inserted sections (Who to follow/Topics to follow, etc.) 991 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##[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"])) 992 | ! Other Timelines - no inserted sections (Who to follow/Topics to follow, etc.) 993 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##[aria-label$="’s posts"] div[style^="transform: translateY"][style*="position: absolute;"]:not(:has(article, [href^="/i/status/"], [role="progressbar"])) 994 | 995 | ! [User] follows 996 | ! https://github.com/yokoffing/filterlists/issues/122#issuecomment-1828512994 997 | ! twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##article div>svg>g>[d^="M17.863 13.44c1.477"]:upward(article) 998 | ! Follow/Recommended Topic | "[Name of Topic] See more" 999 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##article [aria-label^="Follow Topic"], article [aria-label^="Recommended Topic"]:upward(article) 1000 | ! More Tweets 1001 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##[aria-label="Timeline: Conversation"] h2>div>span:has-text(/^More Tweets$/):upward([style^="transform"]) 1002 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##[aria-label="Timeline: Conversation"] h2>div>span:has-text(/^More Tweets$/):upward([style^="transform"])~div 1003 | ! Sidebar - Topics to follow 1004 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##[data-testid="sidebarColumn"] [href="/i/topics/picker/home"]:upward(section) 1005 | ! Sidebar - Trending now/Trends for you 1006 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##[aria-label$="trending now" i] 1007 | ! Sidebar - Who to follow/You might like 1008 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##[aria-label="who to follow" i]:upward(1) 1009 | ! Sidebar - Relevant people 1010 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##[aria-label="relevant people" i]:upward(1) 1011 | ! Login popup 1012 | !twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##div#layers div[data-testid="sheetDialog"]:upward(div[role="group"][tabindex="0"]) 1013 | !twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##html:style(overflow: auto !important;) 1014 | ! from https://github.com/DandelionSprout/adfilt/blob/master/TwitterPureReadingExperience.txt 1015 | ! Removes login nags 1016 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion#?##layers > div[class*=" "]:first-of-type:has(a[href="/i/flow/signup"]) 1017 | !#if !adguard 1018 | ! https://mobile.twitter.com/nasuno_Posi 1019 | twitter.com,twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion##div[data-testid=sidebarColumn] section[aria-label][role=region] 1020 | !#endif 1021 | ! Promoted (Nov 2022) 1022 | ! https://www.reddit.com/r/uBlockOrigin/comments/z73yk9/twitter_promoted_tweets_showing_up/ 1023 | twitter.com##[data-testid="tweet"]:has-text(/Promoted$/) 1024 | 1025 | ! Source: https://github.com/DandelionSprout/adfilt/commit/1efdbabb361af4dd05a24cf766d1dafc723ab02f 1026 | !! Removes a "See What's Happening" prompt at the bottom of some tweet chains 1027 | twitter.com,x.com#?#div[data-testid=primaryColumn] div:has(> div > div > a[href="/login"]) 1028 | !! Removes a login prompt when visiting "/intent/follow"-type links in mobile environments 1029 | ! https://twitter.com/intent/follow?screen_name=mesitsu (13/04/2020) 1030 | mobile.twitter.com,mobile.twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion#?#a[href="/i/flow/signup"][dir=auto][role=link][data-focusable=true]:upward(7) 1031 | !#if env_mobile 1032 | twitter.com,x.com#?#a[href="/i/flow/signup"][dir=auto][role=link][data-focusable=true]:upward(7) 1033 | !#endif 1034 | !#if false 1035 | ! Removes the bottom login sticky banner about logging in, in the April 2020-ish redesign 1036 | twitter.com,x.com#?##layers > div[class*=" "]:first-of-type:has(a[href="/i/flow/signup"]) 1037 | ! https://twitter.com/hideo_kojima_en/status/319595772981166080 1038 | twitter.com,x.com###layers > div[class] > div[class] > div[class] > div[class]:has(> div[class] > div[class] > div[class] > div[class] > div[class] > a[href="/login"]) 1039 | !#endif 1040 | !#if !env_mobile 1041 | ! Fullpage uncloseable overlay on some pages 1042 | twitter.com,x.com#?#div[role=group]:has(div[data-testid*=apple_sign_in]:only-of-type) 1043 | !#endif 1044 | ! Removes the "Aren't you on Twitter??" prompt in the upper right of user timelines 1045 | ! https://twitter.com/nasuno_Posi 1046 | twitter.com,x.com##.js-signup-call-out 1047 | ! Twitter Mobile 1048 | !! Aims to remove the login overlay prompt when browsing down an account's timeline 1049 | mobile.twitter.com##.rn-13w96dm 1050 | mobile.twitter.com##.rn-1kihuf0.rn-1awozwy 1051 | !#if !adguard 1052 | ! https://mobile.twitter.com/nasuno_Posi 1053 | !! Removes the "Are you new on Twitter?" banner in the upper right of user timelines (Screen area has to be ≥~1400px wide) 1054 | mobile.twitter.com##div[data-testid=sidebarColumn] section[aria-label][role=region] 1055 | !#endif 1056 | 1057 | ! BING 1058 | ! Hide rebate 1059 | bing.com##.rebateGlobalDecoration 1060 | ! Hide lock icon near results 1061 | bing.com##.secure_icon 1062 | ! Was this response helpful? 1063 | bing.com##.survey-opt-in-wrapper 1064 | ! Search box: Microsoft Suggests, Try the new copilot 1065 | bing.com###sa_zis_Banner 1066 | ! Search box: Chat with Copilot popup 1067 | bing.com##.popup 1068 | ! Related search module 1069 | bing.com##.b_rrsr 1070 | bing.com###relatedSearchesLGWContainer 1071 | ! Images overtaking search results 1072 | bing.com##.b_imgsmall.b_imgans.b_mopb.b_mop.b_ans 1073 | ! Videos overtaking search results 1074 | bing.com##.b_vidAns.b_mop.b_ans 1075 | ! People also ask 1076 | bing.com##.df_alaskcarousel.rqnaContainerwithfeedback 1077 | ! Explore more from Wikipedia 1078 | bing.com##.b_remod 1079 | ! Related searches near page numbers 1080 | bing.com###brsv3 1081 | ! Explore beside Video result 1082 | bing.com##.slide-in 1083 | ! Chat with copilot, top right 1084 | bing.com###b_op_anch 1085 | ! Copilot chat box at bottom of page 1086 | bing.com##.wpt_bc_container 1087 | ! "Related news" in News module 1088 | bing.com##.rns_more 1089 | ! "Explore more news" in News module 1090 | bing.com##.nart_bak.nart_content 1091 | ! "Trending searches you might like" in search results 1092 | bing.com###b_mrs_DynamicMRS 1093 | ! Stories, AI generated slide shows 1094 | bing.com##.sto_slides 1095 | 1096 | ! Source: https://github.com/letsblockit/letsblockit/issues/642 1097 | ! "Copilot" in menu next to "All" and "News" 1098 | !bing.com###b-scopeListItem-conv 1099 | ! Deep search / Copilot icon next to the search box 1100 | bing.com##.b_phead_chat_link 1101 | ! Search box copilot 1102 | bing.com##.bordertop 1103 | ! "Chat" button near page numbers 1104 | bing.com##.b_pag_lets_chat 1105 | ! Hide related and recommended content 1106 | ! Most of "explore", "people also", "related search" sections and side panel 1107 | !bing.com###b_context 1108 | ! Hide most modules around search results 1109 | !bing.com##.b_ans 1110 | ! Recommended section in the search box. Requires style fix to prevent expanding of the search box 1111 | bing.com##.rs_drw 1112 | bing.com###sa_requery 1113 | ! Related to recent searches in the search box 1114 | bing.com###sa_zis_SSE 1115 | ! "Explore further" sublinks 1116 | bing.com##.scs_child_rpr 1117 | ! "Tags" 1118 | !bing.com##.batg 1119 | ! Side links widget 1120 | !bing.com###wikiWidgetContainer 1121 | ! Hide Jump to search icon 1122 | bing.com###mfa_root 1123 | ! Hide quick highlight (lightbulb) icons 1124 | bing.com##.scs_icn 1125 | ! "Rewards" alert 1126 | bing.com###id_mobbubpos 1127 | 1128 | ! Linkedin 1129 | ! Suggested Posts 1130 | ! https://www.reddit.com/r/uBlockOrigin/comments/17yr4s5/blocking_linkedin_suggested_posts/ 1131 | linkedin.com##.relative:has-text(Suggested) 1132 | 1133 | ! Github 1134 | ! Hide prompts to test copilot 1135 | github.com##react-app[app-name="react-code-view"] button[data-testid="copilot-popover-button"] 1136 | ! Hide the "Overwhelmed by notifications?" prompt 1137 | github.com##.js-unwatch-suggestions 1138 | 1139 | ! Aggressive Fandom Wiki 1140 | fandom.com##.wds-global-footer__main 1141 | ! https://www.reddit.com/r/uBlockOrigin/comments/z0i6qy/aggressive_fandom_wiki_filter_set/ 1142 | 1143 | !!! NYT 1144 | ! "To our Readers" note 1145 | ! https://www.reddit.com/r/uBlockOrigin/comments/wpwuqu/how_can_i_hide_this_on_nyt_page/ 1146 | nytimes.com##.css-brw7hw, div[aria-labelledby="editorial-sub-messaging-header"] 1147 | 1148 | !!! WCO Fun streaming 1149 | wcofun.net##.share-button 1150 | wcofun.net##.jcarousel-wrapper 1151 | wcofun.net##.episode-descp 1152 | ||www.wcostream.org/$image 1153 | 1154 | ! cig sites 1155 | ##.col.cmp-footer__warnings 1156 | 1157 | ! embedded widget chat service 1158 | ||cbox.ws^ 1159 | 1160 | ! Unsplash+ images 1161 | unsplash.com##img[src^="https://plus.unsplash.com/"]:upward(figure) 1162 | 1163 | ! Junk university sites 1164 | ||takemyproctoringexam.com^ 1165 | ||onlineclasshero.com^ 1166 | 1167 | ! Mangapill 1168 | ! closed without explaination: 1169 | ! https://github.com/easylist/easylist/issues/16124 1170 | mangapill.com##.mb-3.container > .justify-between.items-center.flex, div.container > .justify-between.items-center.flex 1171 | 1172 | ! from https://github.com/Yuki2718/adblock2/blob/main/japanese/jpfp-ub.txt 1173 | /^https:\/\/[a-z]{10,14}\.cam\/[%\*=\?_0-9a-zA-Z]{1000,}$/$xhr,3p 1174 | /^https:\/\/[a-z]{10,14}\.casa\/tsk\/[\*_0-9a-zA-Z]{600,}$/$image,3p 1175 | /^https:\/\/[a-z]{10,14}\.casa\/[%\*=\?_0-9a-zA-Z]{1000,}$/$xhr,3p 1176 | /^https:\/\/[a-z]{10,14}\.com\/(?=[%=\?_0-9a-zA-Z]*\*)(?=[%\*=\?_a-zA-Z]*\d)(?=[%\*=\?_0-9a-z]*[A-Z])[%\*=\?_0-9a-zA-Z]{1000,}$/$xhr,3p,domain=~edu|~gov|~jp 1177 | /^https:\/\/[a-z]{10,14}\.fun\/[%\*=\?_0-9a-zA-Z]{1000,}$/$xhr,3p 1178 | /^https:\/\/[a-z]{10,14}\.life\/tsk\/[\*_0-9a-zA-Z]{600,}$/$image,3p 1179 | /^https:\/\/[a-z]{10,14}\.life\/[%\*=\?_0-9a-zA-Z]{1000,}$/$xhr,3p 1180 | /^https:\/\/[a-z]{10,14}\.website\/tsk\/[\*_0-9a-zA-Z]{600,}$/$image,3p 1181 | /^https:\/\/[a-z]{8,15}\.com\/alpha\/\d{3,4}$/$xhr,3p 1182 | /^https:\/\/[a-z]{8,15}\.com\/beta\/\d{3,4}$/$xhr,3p 1183 | /^https:\/\/[a-z]{8,15}\.com\/gamma\/\d{3,4}$/$xhr,3p 1184 | /^https:\/\/[a-z]{8,15}\.com\/omega\/\d{3,4}$/$xhr,3p 1185 | /^https?:\/\/[a-z]{5,6}\.com\/script\/bootstrap\.js$/$script,3p,match-case,domain=~edu|~gov|~jp 1186 | /^https?:\/\/[a-z]{5,6}\.com\/script\/jquery\.js$/$script,3p,match-case,domain=~edu|~gov|~jp 1187 | /^https?:\/\/[a-z]{5,6}\.com\/script\/pattern\.js$/$script,3p,match-case,domain=~edu|~gov|~jp 1188 | 1189 | ! import Clean Reading Experience list 1190 | 9to5mac.com##p strong:has-text(/^Related/):upward(p) 1191 | aljazeera.com##.more-on 1192 | businessinsider.com##p > strong:has-text(/^Read More:/):upward(p) 1193 | carscoops.com##p strong:has-text(/^Also/):upward(p) 1194 | carscoops.com##p strong:has-text(/^Read/):upward(p) 1195 | carscoops.com##p strong:has-text(/^Related/):upward(p) 1196 | carscoops.com##p strong:has-text(/^See Also/):upward(p) 1197 | cnn.com##.el__leafmedia--standard.el__leafmedia--factbox.el__leafmedia 1198 | cnn.com##.zn-body__read-all > div.el__embedded--standard.el__embedded > .el__article--embed.el__storyelement--standard 1199 | cnn.com##.l-container > .el__embedded--standard.el__embedded 1200 | coindesk.com##i 1201 | cointelegraph.com##p strong:has-text(/^Related/):upward(p) 1202 | cointelegraph.com##p strong:has-text(/^Read/):upward(p) 1203 | cryptonews.net##p strong:has-text(/^Related/):upward(p) 1204 | crypto-news-flash.com##p strong:has-text(/^Related/):upward(p) 1205 | crypto-news-flash.com##p strong:has-text(/^Also Read/):upward(p) 1206 | entrepreneur.com##p strong:has-text(/^Related/):upward(p) 1207 | fayobserver.com##p strong:has-text(/^More/):upward(p) 1208 | fayobserver.com##p strong:has-text(/^Related/):upward(p) 1209 | finbold.com##p strong:has-text(/^Related/):upward(p) 1210 | ghacks.net##p strong:has-text(/^Now You/):upward(p) 1211 | ghacks.net##p strong:has-text(/^Tip/):upward(p) 1212 | hollywoodreporter.com##.u-margin-b-3\@desktop-xl.u-margin-t-4\@desktop-xl.u-margin-tb-250.\/\/.injected-related-story 1213 | hollywoodreporter.com##p strong:has-text(/^PHOTOS/):upward(p) 1214 | hollywoodreporter.com##p strong:has-text(/^STORY/):upward(p) 1215 | mashable.com##.md\:leading-7.md\:text-xl.leading-loose.text-lg.mt-8.font-sans.max-w-3xl.mx-auto.w-full 1216 | msnbc.com##.styles_hasItems__jrj_I.styles_msnbcDailyRecircBody__M8npG 1217 | nbcnews.com##.dn-print.related 1218 | nbcnews.com##p strong:has-text(/^Download the/):upward(p) 1219 | newyorker.com##.ticker-wrapper.ticker-row.grid-items-0.grid-margins.grid 1220 | people.com##p strong:has-text(/^RELATED/):upward(p) 1221 | people.com##p strong:has-text(/^Want/):upward(p) 1222 | people.com##p strong:has-text(/^Never/):upward(p) 1223 | portswigger.net##[href="*"] > .bold, p.text-center, .bold.text-center 1224 | time.com##p strong:has-text(/^Read more/):upward(p) 1225 | techtimes.com##p strong:has-text(/^Also Read/):upward(p) 1226 | techtimes.com##p strong:has-text(/^Read Also/):upward(p) 1227 | theatlantic.com###injected-recirculation-link-2, #injected-recirculation-link-1, #injected-recirculation-link-0, #injected-recirculation-link-3, #injected-recirculation-link-4, #injected-recirculation-link-5, .ArticleMostPopular_root__PvMRH, .ArticleRelatedContentModule_notchedModule__aMW7_, .ArticleRelatedContentMagazine_root__O1NAf, .NonMeteredNudge_root__mBW5s, .SubOnlyPromo_root__ZC4ri 1228 | theintercept.com##.InstreamPromo--promo.InstreamPromo 1229 | theintercept.com##div.PromoteRelatedPost-promo:nth-of-type(6) 1230 | theintercept.com##div.PromoteRelatedPost-promo:nth-of-type(12) 1231 | theintercept.com##.PromoteRelatedPost-promo 1232 | themuse.com##p strong:has-text(/^Read/):upward(p) 1233 | thestreet.com##p strong:has-text(/^Learn how/):upward(p) 1234 | theverge.com###kYgI66 > .c-read-more 1235 | vox.com##.c-read-more 1236 | vox.com##.c-article-footer 1237 | wired.com##.callout--has-top-border.gYlOfh.GenericCalloutWrapper-zksK 1238 | zdnet.com##p strong:has-text(/^SEE/):upward(p) 1239 | zdnet.com##p strong:has-text(/^Also/):upward(p) 1240 | 1241 | !#include adult_annoyance_list.txt 1242 | -------------------------------------------------------------------------------- /antipaywall_filters_without_element_hiding.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: ✋ Antipaywall filters (without element hiding) 3 | ! Description: Curated list of antipaywall requests 4 | ! Updated: 10 October 2023 5 | ! License: https://creativecommons.org/licenses/by/3.0 6 | ! Homepage: https://github.com/yokoffing/filterlists 7 | ! Expires: 7 days (update frequency) 8 | 9 | ! from https://github.com/liamengland1/miscfilters/blob/master/antipaywall.txt [April 2023] 10 | ||engage.ajc.com^ 11 | ||engage-fp.ajc.com^ 12 | ||engage-g2insights.ajc.com^ 13 | ||engage-connext.ajc.com^ 14 | ||arkadiumhosted.com/advertisement/ 15 | ||zephr.com^$3p 16 | ||mng-digisubs-prod.com^ 17 | ||quora.com/ajax/receive_POST 18 | ||sophi.io^$third-party 19 | !||latercera.com/arc/subs/p.min.js 20 | ||news.google.com/swg/$script,third-party 21 | ||accounts.google.com/gsi/$~script 22 | ||smartlock.google.com^ 23 | /amp-access-$script 24 | ||tinypass.com^$third-party 25 | ! @@||experience.tinypass.com/xbuilder/$script,3p 26 | ||mediapass.com^$third-party 27 | ||scroll.com^$third-party 28 | ||wallkit.net^$third-party 29 | ||evolok.com^$third-party 30 | ||evolok.net^$third-party 31 | ||piano.io^$third-party 32 | ||qiota.com^$third-party,important 33 | ||poool.fr^$third-party 34 | ||onecount.net^$third-party 35 | ||profitwell.com^$third-party 36 | ||pelcro.com^$third-party 37 | ||mppapi.io^$third-party 38 | ||mppglobal.com^$third-party 39 | ||batch.com^$third-party 40 | ||lightboxcdn.com^$third-party 41 | /coil-web-monetization/* 42 | ||taboola.com^$third-party 43 | ||washingtonpost.com/pwapiv2/ 44 | ||washingtonpost.com/wp-stat/pb/prod/pmbl.txt 45 | ||washingtonpost.com/pb/gr/c/default/*/identity-management-$script 46 | ||washingtonpost.com/pb/*/subscription-acquisition 47 | ||washingtonpost.com/tetro/ 48 | ||meter-svc.nytimes.com^ 49 | ||nytimes.com^*/metered_assets/ 50 | ||nyt.com^*/metered_assets$script 51 | ||nytimes.com/svc/nyt/data-layer 52 | ||myaccount.nytimes.com/auth/iframe/*&asset=RegiWall 53 | ||nytimes.com/unified_lire/ 54 | ||nytimes.com/lire_ui/ 55 | ||assets.bwbx.io^*/fence/$script 56 | ||assets.bwbx.io^*/pianola/$script 57 | ||smartwall.theglobeandmail.com^ 58 | ||cloudfront.net/prod/cloudfrontVideoTracker.png 59 | /arc/subs/p.min.js$~third-party 60 | ||bostonglobe.com/pf/resources/dist/third-party.js 61 | @@||meter.bostonglobe.com^$script,1p 62 | bostonglobe.com##+js(set, bg.page.exemptFromMeter, true) 63 | @@||bostonglobe.com/api/v1/setCookie$xhr,1p 64 | ||qz.com/api/site/behavior 65 | ||aw1.accuradio.com^ 66 | ||accuradio.tritondigital.com^ 67 | ||accuradio.com/sweeper/ 68 | ||accuradio.com/static/js/ltjs.js 69 | ||sendtonews.com^$3p 70 | ||accuradio.com/listener/track-adbreaks/ 71 | ||streamtheworld.com/ondemand/ars? 72 | ||streamtheworld.com^*/idsync.js 73 | ||tsbluebox.com^$third-party 74 | ||vidoplay.com^$third-party 75 | ||whichtalk.com^$third-party 76 | ||tags.creativille.co.uk^$third-party 77 | ||redcharger.co^$third-party 78 | ||redcharger.net^$third-party 79 | ||rcimages.xyz^$third-party 80 | ||newsmemory.com/*/ads/?rotator_all=$subdocument 81 | ||newsmemory.com/?prebid= 82 | ||vidazoo.com^$3p 83 | ||vidible.tv^$3p,domain=abqjournal.com 84 | ||nzherald.co.nz/arc/subs/p.js 85 | ||theladders.com/api/auth/is-logged-in 86 | ||harpers.org^*/pum/ 87 | ||harpers.org^*/leaky-paywall/ 88 | ||netdna-ssl.com^*/leaky-paywall/$domain=harpers.org 89 | ||gannett-cdn.com/dcjs/ 90 | ||gannett-cdn.com/dcc/ 91 | ||time.com/dist/authentication.js 92 | ||livemint.com/__js/lm_subscription_$script 93 | ||amp-access-svc.memb.ft.com/amp-pingback 94 | ||c950.chronicle.com^ 95 | ||assets.login.chronicle.com^ 96 | ||axios.com/api/v1/licenses 97 | ||czx5eyk0exbhwp43ya.biz^$third-party 98 | ||ayc0zsm69431gfebd.info^$third-party 99 | ||ayc0zsm69431gfebd.xyz^$third-party 100 | ||g2insights-cdn.azureedge.net^$third-party 101 | ||loader-cdn.azureedge.net^$third-party 102 | ||fp-cdn.azureedge.net^$third-party 103 | ||flittz-cdn.azureedge.net^$third-party 104 | ||wgchrrammzv.com^$third-party 105 | ||pranmcpkx.com^$third-party 106 | -proxy-connext.azurewebsites.net/api/$third-party 107 | ||mg2insights.com^$third-party 108 | ||prod-mng-proxy-connext.azurewebsites.net^$third-party 109 | ||connext-cdn.ec.azureedge.net^$third-party 110 | ||mg2connext.com^$third-party 111 | ||marketingg2.com^$third-party 112 | ||flittz.com^$third-party 113 | 114 | ! https://gitlab.com/magnolia1234/bypass-paywalls-clean-filters/-/blob/main/bpc-paywall-filter.txt [April 2023] 115 | ||axate.io$script,third-party 116 | ||blueconic.net^$third-party 117 | ||cdn.cxense.com^$script,third-party,important 118 | ||ensighten.com/*/Bootstrap.js$script,third-party 119 | ||paywall.fewcents.co/static/js/paywall.js 120 | ||hadrianpaywall.com^$third-party 121 | ||ippen.space^$third-party 122 | ||js.matheranalytics.com^$script,third-party 123 | ||newsmemory.com?meter$third-party 124 | ||olytics.omeda.com^$third-party 125 | @@||piano.io^$domain=asia.nikkei.com|japantimes.co.jp|kurier.at|onet.pl 126 | ||api.pico.tools/client/query/*$xmlhttprequest,~third-party 127 | ||api.pico.tools/popup/null/*$xmlhttprequest,~third-party 128 | gadget.pico.tools##+js(json-prune, locked) 129 | ||qiota.com^$xmlhttprequest,third-party 130 | ||steadyhq.com^$script,third-party 131 | ||tribdss.com^$third-party 132 | ||weborama.fr/js/$script,third-party 133 | ||zephr.com/zephr-browser/$third-party 134 | /c/assets/pigeon.js$script,~third-party 135 | /evolok/*/ev-widgets.min.js$script,~third-party 136 | /wp-content/*/ev-em.min.js$script,~third-party 137 | /zephr/feature$xmlhttprequest,~third-party 138 | @@/zephr/feature$xmlhttprequest,domain=nationalreview.com 139 | @@/wp-content/plugins/leaky-paywall/js/$script,~third-party 140 | @@/wp-content/plugins/leaky-paywall-$script,~third-party 141 | ||abqjournal.com/*/abq-pw-manager.js$script,~third-party 142 | ||abril.com.br/*/abril-paywall/$script,~third-party 143 | ||ajc.com/prod/ajc/loader.min.js$script,~third-party 144 | ||americanaffairsjournal.org/wp-content/mu-plugins/app/src/paywall/paywall.js$script,~third-party 145 | ||artnet.com/paywall-ajax.php$xmlhttprequest,~third-party 146 | ||assets.bizjournals.com/static/js/app/cxense.js$script,~third-party 147 | ||automobilwoche.de/s3fs-public/js/js_nCw*.js$script,~third-party 148 | ||assets.bwbx.io/s3/javelin/public/javelin/js/foundation/transporter/foundation_transporter-*.js$script,domain=bloomberg.com 149 | ||bloombergadria.com/*/news/$inline-script 150 | ||meter.bostonglobe.com/js/meter.js$script,~third-party 151 | ||chronicle.com/script.js$script,~third-party 152 | ||philanthropy.com/script.js$script,~third-party 153 | ||clarin.com/detail/auth0.js$script,~third-party 154 | ||commentary.org/*/js/dg-locker-public.js$script,~third-party 155 | ||connaissancedesarts.com/wp-content/cache/*.js$script,~third-party 156 | ||corriereobjects.it/*/js/_paywall.sjs$script,domain=corriere.it 157 | ||dn.se/check-paywall-v2.js,~third-party 158 | ||ndcmediagroep.nl/js/evolok/$script,domain=dvhn.nl|lc.nl 159 | ||editorialedomani.it/pelcro.js$script,~third-party 160 | ||acesso.estadao.com.br/paywall/$script,~third-party 161 | ||exame.com/*/js/pywll-dyn.js$script,~third-party 162 | ||financialexpress.com/*/min/premiumStoryContent.js$script,~third-party 163 | ||folha.uol.com.br/paywall/js/$script,~third-party 164 | ||paywall.folha.uol.com.br^$script,~third-party 165 | ||foreignaffairs.com/modules/custom/fa_paywall_js/js/paywall.js$script,~third-party 166 | ||ftm.nl/js/routing$script,~third-party 167 | ||harpers.org/wp-content/themes/timber/static/js/modal*.js 168 | ||hilltimes.com/*/js/loadingoverlay/loadingoverlay.min.js$script,~third-party 169 | ||indianexpress.com/*/indianexpress/js/evolok/*.js$script,~third-party 170 | ||indianexpress.com/*/indianexpress/min/premiumContent.js$script,~third-party 171 | ||jpost.com/js/js_article.min.js$script,~third-party 172 | ||internazionale.it/templates_js_ajax.inc.php$xmlhttprequest,~third-party 173 | ||la-croix.com/build/*/paywall*.js$script,~third-party 174 | ||glanacion.com/*/metering/*.js$script,domain=lanacion.com.ar 175 | ||lasegunda.com/assets/js/merPramV2.js$script,~third-party 176 | ||lasegunda.com/assets/js/vendor/modal.js$script,~third-party 177 | ||emol.cl/assets/js/merPramV2.js$script,domain=lasegunda.com 178 | ||emol.cl/assets/js/vendor/modal.js$script,domain=lasegunda.com 179 | ||californiatimes.com/meteringjs/$script,domain=latimes.com|sandiegouniontribune.com 180 | ||lavanguardia.com/js/godo-basex-$script,domain=lavanguardia.com|mundodeportivo.com 181 | ||scripts.repubblica.it/pw/pw.js$script,domain=lescienze.it|italian.tech 182 | ||lavoz.com.ar/sites/*/paywall/losandes/pw.js$script,domain=losandes.com.ar 183 | ||cdn.loeildelaphotographie.com/wp-content/*/hague-child/js/script-$script,~third-party 184 | ||medscapestatic.com/*/medscape-library.js$script,domain=medscape.com 185 | ||blink.net/*/blink-sdk.js$script,domain=newrepublic.com 186 | ||newstatesman.com/*/nsmg-evolok-paywall/*.js$script,~third-party 187 | ||nola.com/script.js$script,~third-party 188 | ||nrc.nl/paywall-api/api/zephr$xmlhttprequest,~third-party 189 | ||nybooks.com/wp-admin/admin-ajax.php$xmlhttprequest,~third-party 190 | ||nyteknik.se/*/static/js/site.min.js$script,~third-party 191 | ||mwcm.nyt.com/$script,domain=nytimes.com 192 | ||cooking.nytimes.com/api/*/access$xmlhttprequest,~third-party 193 | ||kinja-static.com/assets/*/regwalled-content.*.js$script,domain=qz.com 194 | ||reuters.com/pf/resources/dist/reuters/js/index.js$script,~third-party 195 | ||seattletimes.com/wp-content/*/st-advertising-bundle.js$script,~third-party 196 | ||seattletimes.com/wp-content/*/st-user-messaging-main-bundle.js$script,~third-party 197 | ||startribune.com/vendor/js/$script,~third-party 198 | ||suomensotilas.fi/wp-content/plugins/epflpw/js/pw.js$script,~third-party 199 | ||telegraph.co.uk/martech/js/$script,~third-party 200 | ||theadvocate.com/script.js$script,~third-party 201 | ||theartnewspaper.com/_next/static/chunks/pages/access-allowed-*\.js$script,~third-party 202 | ||theatlantic.com/_next/static/chunks/pages/*/archive/$script,~third-party 203 | ||thediplomat.com/*/js/angular-cookies.min.js$script,~third-party 204 | ||theintercept.com/api/tinypass.min.js$script,~third-party 205 | ||thenewatlantis.com/*/thenewatlantis/js/gate.js$script,~third-party 206 | ||thenewatlantis.com/*/thenewatlantis/js/donate.js$script,~third-party 207 | ||thesaturdaypaper.com.au/sites/all/modules/custom/node_meter/pw.js$script,~third-party 208 | ||time.com/dist/meter-wall-client-js.*.js$script,~third-party 209 | ||timeshighereducation.com/sites/default/files/*/js__*.js$script,~third-party 210 | ||account.winnipegfreepress.com/api/v*/auth/identify$xmlhttprequest,~third-party 211 | ||amazonaws.com/s3fs-public/js/js_$script,domain=genomeweb.com|360dx.com|precisiononcologynews.com 212 | ||flowerstreatment.com^$third-party 213 | ||substackcdn.com/min/main.bundle.js$script,domain=codebeautify.org|jsonformatter.org|html.onlineviewer.net 214 | .com/webfiles/*/js/metering.js$script,third-party,domain=hbook.com|libraryjournal.com|slj.com 215 | ||20minutes.fr/v-ajax/subscribe-modal$xmlhttprequest,~third-party 216 | ||account.brandonsun.com/api/v*/auth/identify$xmlhttprequest,~third-party 217 | ||paywall.correiodopovo.com.br$script,~third-party 218 | ||meter.in.bonhill.pbc.io/api/views$xmlhttprequest,domain=investmentnews.com 219 | ||irishexaminer.com/pu_examiner/scripts/engage/$script,~third-party 220 | ||newbostonpost.com/*/paywall/js/main.js$script,~third-party 221 | ||my.odt.co.nz/bwtw/scripts/tw.js$script,~third-party 222 | ||corprensa.com/la-prensa/evolok/$script,domain=prensa.com 223 | ||shrm.org/*/js/paywall*.js$script,~third-party 224 | ||accesstype.com/frontend/v2/accesstype.js$script,domain=swarajyamag.com 225 | ||thedriftmag.com/wp-content/plugins/drift-paywall-plugin/public/js/drift-paywall-plugin-public.js$script,~third-party 226 | ||subs.theepochtimes.com/lib/api.bundle.js$script,~third-party 227 | @@||tweakers.nl/json$xmlhttprequest,domain=tweakers.net 228 | 229 | ambito.com##+js(cookie-remover, TDNotesRead) 230 | artforum.com##+js(cookie-remover, /^/) 231 | bloomberg.com##+js(cookie-remover, gatehouse_id, stay) 232 | cen.acs.org##+js(cookie-remover, paywall-cookie) 233 | corrieredellosport.it##+js(cookie-remover, /paywall_articles/) 234 | groene.nl##+js(cookie-remover, rlist) 235 | harpers.org##+js(cookie-remover, hr_session) 236 | hbrtaiwan.com##+js(cookie-remover, guest) 237 | japantimes.co.jp##+js(cookie-remover, /xbc/) 238 | lanacion.com.ar##+js(cookie-remover, /^metering_arc/) 239 | ledevoir.com##+js(cookie-remover, pw6) 240 | labusinessjournal.com##+js(cookie-remover, /^/) 241 | loebclassics.com##+js(cookie-remover, /^/) 242 | mv-voice.com##+js(cookie-remover, /^/) 243 | nautil.us##+js(cookie-remover, /^(arc|sfa)$/) 244 | nknews.org##+js(cookie-remover, /^issuem_lp/) 245 | nrc.nl##+js(cookie-remover, counter) 246 | paloaltoonline.com##+js(cookie-remover, /^/) 247 | philosophynow.org##+js(cookie-remover, /^/) 248 | scientificamerican.com##+js(cookie-remover, /^/) 249 | sofrep.com##+js(cookie-remover, sofrep_news_ids) 250 | spectator.co.uk##+js(cookie-remover, /blaize_session/) 251 | tes.com##+js(cookie-remover, /tg_paywall/) 252 | theatlantic.com##+js(cookie-remover, articleViews) 253 | thediplomat.com##+js(cookie-remover, dpl-pw) 254 | thepointmag.com##+js(cookie-remover, monthly_history) 255 | thesaturdaypaper.com.au##+js(cookie-remover, /^/) 256 | onet.pl##+js(cookie-remover, /xbc/) 257 | psypost.org##+js(cookie-remover, issuem_lp) 258 | realmoney.thestreet.com##+js(cookie-remover, /^PWT/) 259 | 260 | ! New York Magazine 261 | curbed.com,grubstreet.com,nymag.com,thecut.com,vulture.com##+js(cookie-remover, /nymcid$/) 262 | 263 | ! General (amp) 264 | ||cdn.ampproject.org/*/amp-subscriptions-$script 265 | @@||cdn.ampproject.org/*/amp-access-$script,domain=cambridge.org 266 | @@||cdn.ampproject.org/*/amp-subscriptions-$script,domain=cmjornal.pt 267 | -------------------------------------------------------------------------------- /block_third_party_fonts.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: 🔍 Block third party fonts 3 | ! Description: Block most third-party fonts. Allows for Material Icons and WOFF fonts in order to not break sites. 4 | ! Homepage: https://github.com/yokoffing/filterlists 5 | ! Expires: 4 days (update frequency) 6 | ! Version: 24 March 2024 7 | ! Syntax: AdBlock 8 | 9 | !!! ALLOWLIST 10 | @@||ajax.googleapis.com/ajax/libs/webfont/$script,domain=bootsnipp.com|regexpal.com|typepad.com 11 | @@||googleapis.com/ajax/libs/webfont/$domain=typepad.com 12 | ! @@||cloudfront.net^$font,domain=noip.com|phabricator.services.mozilla.com|securelist.com|status.proton.me 13 | @@||fast.fonts.net/jsapi/$script 14 | @@||fonts.googleapis.com$domain=abc.xyz|google.com|blog.google|blogger.com|chromium.org|freetaxusa.com|fmoviesz.to|gaggle.fun|googlesource.com|grow.google|groq.com|myeducator.com|reedsy.com|reliaslearning.com|socialworkers.org|googleapps.com|vocabulary.com|web.dev|youtube.com 15 | @@||fonts.gstatic.com$domain=about.google|ai.google|bloble.io|blog.google|blogger.com|cenreader.com|chrome.com|chromium.org|dexscreener.com|google.com|domains.google|googlesource.com|grow.google|groq.com|material.io|myeducator.com|reedsy.com|reliaslearning.com|safety.google|socialworkers.org|toolbox.googleapps.com|vocabulary.com|web.dev|youtube.com 16 | @@||googleusercontent.com/static/fonts/$domain=tudocelular.com 17 | @@||myfonts.net$domain=myfonts.com 18 | @@||typekit.com$font 19 | @@||typekit.net$script,font 20 | 21 | ! Icon Packs 22 | @@/-icon 23 | @@/-icons 24 | @@/family=Material+Icons 25 | @@/glyphicons 26 | @@/icomoon 27 | @@/icon 28 | @@/icons 29 | @@/materialicons 30 | @@/materialsymbols 31 | @@/materialsymbolsoutlined 32 | @@/wp-content/themes$font 33 | @@/wp-content/uploads/fusion-icons 34 | @@family=Material+Icons 35 | @@family=Material+Symbols 36 | @@Material+Icons 37 | @@/font-awesome 38 | @@||fontawesome.com^ 39 | !@@||fonts.googleapis.com/css?family=Material+Icons 40 | !@@||fonts.googleapis.com/icon?family=Material+Icons 41 | !@@||fonts.gstatic.com/s/materialicons 42 | 43 | ! Privacy-friendly drop-in replacement for Google Fonts 44 | ! [1] https://fonts.coollabs.io/ 45 | @@||cdn.coollabs.io/fonts^ 46 | @@||api.fonts.coollabs.io^ 47 | 48 | !!! DENYLIST 49 | /cdn-cgi/pe/bag2?*googleapis.com*webfont.js 50 | /csp/fonts^$3p 51 | ||alluremedia.com.au^$font,3p 52 | ||amazonaws.com^$font,3p 53 | ||bootstrapcdn.com/bootstrap/$font,3p 54 | ||cloud.typography.com^$3p 55 | ||cloud.webtype.com^$font,3p 56 | ||disquscdn.com/next/assets/font/$3p 57 | ||edgefonts.net^$3p 58 | ||fast.fonts.com^$3p 59 | ||fast.fonts.net^$3p 60 | ||fontdeck.com^$3p 61 | ||fonts.advance.net^$3p 62 | ||fonts.bauernet.me^ 63 | ||fonts.cdnfonts.com^$3p 64 | ||fonts.condenast.com^$script,3p 65 | ||fonts.googleapis.com^ 66 | ||fonts.gotraffic.net^$script 67 | ||fonts.gstatic.com^$3p 68 | ||fonts.nymag.com^$script,3p 69 | ||fonts.shopifycdn.com^$3p 70 | ||fonts.smdg.ca^$3p 71 | ||fonts.staticworld.net^$3p 72 | ||fonts.timeinc.net^ 73 | ||fonts.ub-assets.com^$3p 74 | ||fonts.voxmedia.com^$3p 75 | ||gannett-cdn.com^*/fonts/$font,3p 76 | ||gannettdigital.com^*/fonts/$font,3p 77 | ||gfonts.jifo.co^ 78 | ||google.com/swg/$font,3p 79 | ||googleapis.com/ajax/libs/webfont/$3p 80 | ||googleusercontent.com/static/fonts/$3p 81 | ||gotraffic.net^$font 82 | ||kinja-static.com/assets/fonts/$font,3p 83 | ||myfontastic.com^$3p 84 | ||myfonts.net^$3p 85 | ||netdna-cdn.com^*/webfonts/ 86 | ||netdna.bootstrapcdn.com^*/fonts/$3p 87 | ||qmerce.com/assets/$font 88 | ||rackcdn.com/fonts/$font,3p 89 | ||typefront.com^$3p 90 | ||typesquare.com^$font,3p 91 | ||use.fonticons.com^$3p 92 | ||vidible.tv/prod/fonts/$font 93 | ||webfont.fontplus.jp^$3p 94 | ||webfonts.creativecloud.com^$3p 95 | ||webfonts.sakura.ne.jp^$font 96 | 97 | ! Privacy Essentials, anti-allowlist: 98 | @@||gstaticadssl.*.google.com^$font,badfilter 99 | ! @@||use.typekit.net^$font,badfilter 100 | 101 | !!! UNUSED 102 | ! Breaks too many sites: 103 | !||cloudfront.net^$font,3p 104 | !||fastly.net^$font,3p 105 | !$font,3p 106 | !/fonts/*.ttf$font,3p 107 | !||maxcdn.bootstrapcdn.com/font-awesome/$3p 108 | !||maxcdn.bootstrapcdn.com^*/fonts/ 109 | !/wp-$font,3p 110 | !||cdnjs.cloudflare.com/ajax/libs/font-awesome^$3p 111 | !||fontawesome.com^$3p 112 | !||wp.com^*/fonts/$3p 113 | -------------------------------------------------------------------------------- /clean_reading_experience.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: 📖 Clean Reading Experience 3 | ! Description: Hide RELATED, READ MORE, YOU MAY ALSO LIKE text that distracts from reading articles 4 | ! Updated: 8 March 2023 5 | ! License: https://creativecommons.org/licenses/by/3.0/ 6 | ! Homepage: https://github.com/yokoffing/filterlists 7 | ! Expires: 7 days (update frequency) 8 | 9 | 9to5mac.com##p strong:has-text(/^Related/):upward(p) 10 | aljazeera.com##.more-on 11 | businessinsider.com##p > strong:has-text(/^Read More:/):upward(p) 12 | carscoops.com##p strong:has-text(/^Also/):upward(p) 13 | carscoops.com##p strong:has-text(/^Read/):upward(p) 14 | carscoops.com##p strong:has-text(/^Related/):upward(p) 15 | carscoops.com##p strong:has-text(/^See Also/):upward(p) 16 | cnn.com##.el__leafmedia--standard.el__leafmedia--factbox.el__leafmedia 17 | cnn.com##.zn-body__read-all > div.el__embedded--standard.el__embedded > .el__article--embed.el__storyelement--standard 18 | cnn.com##.l-container > .el__embedded--standard.el__embedded 19 | coindesk.com##i 20 | cointelegraph.com##p strong:has-text(/^Related/):upward(p) 21 | cointelegraph.com##p strong:has-text(/^Read/):upward(p) 22 | cryptonews.net##p strong:has-text(/^Related/):upward(p) 23 | crypto-news-flash.com##p strong:has-text(/^Related/):upward(p) 24 | crypto-news-flash.com##p strong:has-text(/^Also Read/):upward(p) 25 | entrepreneur.com##p strong:has-text(/^Related/):upward(p) 26 | fayobserver.com##p strong:has-text(/^More/):upward(p) 27 | fayobserver.com##p strong:has-text(/^Related/):upward(p) 28 | finbold.com##p strong:has-text(/^Related/):upward(p) 29 | ghacks.net##p strong:has-text(/^Now You/):upward(p) 30 | ghacks.net##p strong:has-text(/^Tip/):upward(p) 31 | hollywoodreporter.com##.u-margin-b-3\@desktop-xl.u-margin-t-4\@desktop-xl.u-margin-tb-250.\/\/.injected-related-story 32 | hollywoodreporter.com##p strong:has-text(/^PHOTOS/):upward(p) 33 | hollywoodreporter.com##p strong:has-text(/^STORY/):upward(p) 34 | mashable.com##.md\:leading-7.md\:text-xl.leading-loose.text-lg.mt-8.font-sans.max-w-3xl.mx-auto.w-full 35 | msnbc.com##.styles_hasItems__jrj_I.styles_msnbcDailyRecircBody__M8npG 36 | nbcnews.com##.dn-print.related 37 | nbcnews.com##p strong:has-text(/^Download the/):upward(p) 38 | newyorker.com##.ticker-wrapper.ticker-row.grid-items-0.grid-margins.grid 39 | people.com##p strong:has-text(/^RELATED/):upward(p) 40 | people.com##p strong:has-text(/^Want/):upward(p) 41 | people.com##p strong:has-text(/^Never/):upward(p) 42 | portswigger.net##[href="*"] > .bold, p.text-center, .bold.text-center 43 | time.com##p strong:has-text(/^Read more/):upward(p) 44 | techtimes.com##p strong:has-text(/^Also Read/):upward(p) 45 | techtimes.com##p strong:has-text(/^Read Also/):upward(p) 46 | theatlantic.com###injected-recirculation-link-2, #injected-recirculation-link-1, #injected-recirculation-link-0, #injected-recirculation-link-3, #injected-recirculation-link-4, #injected-recirculation-link-5, .ArticleMostPopular_root__PvMRH, .ArticleRelatedContentModule_notchedModule__aMW7_, .ArticleRelatedContentMagazine_root__O1NAf, .NonMeteredNudge_root__mBW5s, .SubOnlyPromo_root__ZC4ri 47 | theintercept.com##.InstreamPromo--promo.InstreamPromo 48 | theintercept.com##div.PromoteRelatedPost-promo:nth-of-type(6) 49 | theintercept.com##div.PromoteRelatedPost-promo:nth-of-type(12) 50 | theintercept.com##.PromoteRelatedPost-promo 51 | themuse.com##p strong:has-text(/^Read/):upward(p) 52 | thestreet.com##p strong:has-text(/^Learn how/):upward(p) 53 | theverge.com###kYgI66 > .c-read-more 54 | vox.com##.c-read-more 55 | vox.com##.c-article-footer 56 | wired.com##.callout--has-top-border.gYlOfh.GenericCalloutWrapper-zksK 57 | zdnet.com##p strong:has-text(/^SEE/):upward(p) 58 | zdnet.com##p strong:has-text(/^Also/):upward(p) 59 | -------------------------------------------------------------------------------- /click2load.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: ⛔ yokoffing's click2load filters 3 | ! Description: To be used in uBlock Origin 4 | ! Homepage: https://github.com/yokoffing/filterlists 5 | ! Expires: 21 days (update frequency) 6 | ! Version: 24 August 2023 7 | ! Syntax: AdBlock 8 | 9 | !#if ext_ublock 10 | ||airtable.com/embed*$3p,frame,redirect=click2load.html 11 | ||art19.com/shows/$3p,frame,redirect=click2load.html 12 | ||bandcamp.com/EmbeddedPlayer/$3p,frame,redirect=click2load.html 13 | !||codepen.io/$3p,frame,redirect=click2load.html 14 | ||cdpn.io/$3p,frame,redirect=click2load.html 15 | ||checkout.shopify.com/$3p,frame,redirect=click2load.html 16 | ||codepen.io/hubspot/embed/$3p,frame,redirect=click2load.html,domain=~theodinproject.com 17 | ||dexscreener.com/$3p,frame,redirect=click2load.html 18 | ||discuss.privacyguides.net/embed/$3p,frame,redirect=click2load.html 19 | ||docs.google.com/$3p,frame,redirect=click2load.html 20 | ||docs.google.com/document/d/e/$3p,frame,redirect=click2load.html 21 | ||docs.google.com/forms/$3p,frame,redirect=click2load.html 22 | ||docs.google.com/presentation/d/e/$3p,frame,redirect=click2load.html 23 | ||docs.google.com/spreadsheets/$3p,frame,redirect=click2load.html 24 | ||docs.google.com/viewer*$3p,frame,redirect=click2load.html 25 | ||drive.google.com/file/$3p,frame,redirect=click2load.html 26 | ||embed.acast.com/$3p,frame,redirect=click2load.html 27 | ||embed.documentcloud.org/$3p,frame,redirect=click2load.html 28 | ||embed.music.apple.com/$3p,frame,redirect=click2load.html 29 | ||embed.podcasts.apple.com/$3p,frame,redirect=click2load.html 30 | ||embed.ted.com/$3p,frame,redirect=click2load.html 31 | ||glitch.com/embed/$3p,frame,redirect=click2load.html 32 | ||google.com/maps/embed$3p,frame,redirect=click2load.html 33 | ||html5-player.libsyn.com/embed/$3p,frame,redirect=click2load.html 34 | ||iframe.videodelivery.net/$3p,frame,redirect=click2load.html 35 | ||loom.com/embed/$3p,frame,redirect=click2load.html 36 | ||open.spotify.com/embed-podcast/$3p,frame,redirect=click2load.html 37 | ||open.spotify.com/embed/$3p,frame,redirect=click2load.html 38 | ||player.blubrry.com/$3p,frame,redirect=click2load.html 39 | ||player.captivate.fm^$3p,frame,redirect=click2load.html 40 | ||player.hotmart.com/$3p,frame,redirect=click2load.html 41 | ||player.megaphone.fm/$3p,frame,redirect=click2load.html 42 | ||player.simplecast.com^$3p,frame,redirect=click2load.html 43 | ||player.twitch.tv/$3p,frame,redirect=click2load.html 44 | ||player.vimeo.com/video^$3p,frame,redirect=click2load.html,domain=~bing.com|~google.com|~duckduckgo.com|~openai.com|~video.search.yahoo.com|~window-swap.com 45 | ||playlist.megaphone.fm/$3p,frame,redirect=click2load.html 46 | ||quizlet.com/$3p,frame,redirect=click2load.html 47 | ||reddit.com/mediaembed/$3p,frame,redirect=click2load.html 48 | ||s3.amazonaws.com/embed.animoto.com/$3p,frame,redirect=click2load.html 49 | ||scribd.com/embeds/$3p,frame,redirect=click2load.html 50 | ||stay22.com/embed/$3p,frame,redirect=click2load.html 51 | ||traderjoexyz.com/$3p,frame,redirect=click2load.html 52 | ||trinitymedia.ai/player/trinity-player.php*$3p,frame,redirect=click2load.html 53 | ||view.genial.ly$3p,frame,redirect=click2load.html 54 | ||volume.vox-cdn.com/embed/$3p,frame,redirect=click2load.html 55 | ||w.soundcloud.com/player/$3p,frame,redirect=click2load.html 56 | !||youtube-nocookie.com^$3p,frame,redirect=click2load.html,domain=~bing.com|~google.com|~duckduckgo.com|~video.search.yahoo.com 57 | ||youtube-nocookie.com/embed^$3p,frame,redirect=click2load.html,domain=~bing.com|~google.com|~duckduckgo.com|~video.search.yahoo.com 58 | ||youtube.com^$3p,frame,redirect=click2load.html,domain=~bing.com|~google.com|~duckduckgo.com|~video.search.yahoo.com 59 | !#endif 60 | 61 | !!! DO NOT BLOCK 62 | ! Tiktok embeds, GIFs 63 | !||cdn.embedly.com/widgets/$3p,frame,redirect=click2load.html 64 | !||cdn.embedly.com/widgets/media.html*$3p,frame,redirect=click2load.html 65 | ! GIFs 66 | !||gfycat.com/$3p,frame,redirect=click2load.html 67 | -------------------------------------------------------------------------------- /enhanced_site_protection.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: 🛑 Enhanced website protection 3 | ! Description: To be used in conjunction with Dandelion Sprout's Anti-Malware List, this filter will warn users before making top-site navigations that use the TLDs below. This list focuses on top-site navigations, not sub-requests. Please report exceptions to legitimate sites. Many exceptions come from bestplayerbot. 4 | ! Homepage: https://github.com/yokoffing/filterlists 5 | ! Expires: 4 days (update frequency) 6 | ! Version: 2 January 2024 7 | ! Syntax: AdBlock 8 | 9 | !!! Malicious TLDs 10 | ! Topical domains with wide use by bad actors and whose use for legitimate purposes is small 11 | ||buzz^$doc,from=~allthe.buzz|~awful.buzz|~cliq.buzz|~montpellier.buzz|~sideb.buzz|~williamsonday.buzz 12 | ||mov^$doc,from=~david.mov 13 | ||tk^$doc,from=~adistance.tk|~bloatcat.tk|~bonzibuddy.tk|~bryla.tk|~bstweaker.tk|~budterence.tk|~c-r-t.tk|~c0d3c.tk|~censurion.tk|~china996.tk|~cuso.tk|~devhonk.tk|~dlyang.tk|~google.tk|~goshujin.tk|~gotofap.tk|~graph.tk|~grazziecorp.tk|~handicapped.tk|~heggadrone.tk|~helene.tk|~kabi.tk|~lameni.tk|~leroymcqy.tk|~loveisgrief.tk|~msqtdn.tk|~pube.tk|~rainer-zufall.tk|~sironi.tk|~takiverse.tk|~tokelau-info.tk|~webdev189.tk|~xn--qubec-csa.tk|~zete.tk 14 | ||zip^$doc,from=~community.zip|~financialstatement.zip|~lemmy.zip|~redecanais.zip|~redecanaistv.zip|~url.zip 15 | 16 | !!! Likely abused TLDs 17 | ! https://w3techs.com/technologies/overview/top_level_domain 18 | ! https://www.spamhaus.org/statistics/tlds/ 19 | ||beauty^$doc,from=~homelab.beauty|~nic.beauty|~vipbj.beauty 20 | ||dad^$doc,from=~classic.dad|~daily.dad|~dear.dad|~rad.dad 21 | ||degree^$doc,from=~nic.degree|~opf.degree|~three60.degree 22 | ||esq^$doc,from=~erika.esq 23 | ||fit^$doc,from=~appetit.fit|~clubb.fit|~justget.fit|~nic.fit|~pridegym.fit|~thebene.fit|~tootally.fit|~union.fit 24 | ||foo^$doc,from=~helloworld.foo 25 | ||loans^$doc 26 | ||phd^$doc,from=~rafael.phd 27 | ||prof^$doc,from=~casey.prof 28 | ||quest^$doc,from=~0x00.quest|~amble.quest|~bookshelf.quest|~dice.quest|~dont-panic.quest|~epochal.quest|~federation.quest|~galaxy.quest|~mhn.quest|~mylegendary.quest|~nic.quest|~prometheus.quest|~squash.quest|~teacher.quest|~theculture.quest|~toot.quest 29 | ||surf^$doc,from=~bloom.surf|~fedi.surf|~glowing.surf|~kayaking.surf|~nic.surf|~quran.surf|~s-wings.surf|~surfstation.surf 30 | 31 | !!! Country-specific TLDs 32 | ! Contain malware domains that have nothing to do with the countries in question 33 | ! Mali 34 | ||ml^$doc,from=~aire.ml|~amap.ml|~beatbump.ml|~birdkey.ml|~debula.ml|~dmml.ml|~esparrec.ml|~exp0.ml|~fedi.ml|~fmhy.ml|~ghostcloud.ml|~google.ml|~guya.ml|~info-matin.ml|~kawauso.ml|~leam.ml|~lemmy.ml|~lemmygrad.ml|~lingva.ml|~loma.ml|~masto.ml|~mastodon.ml|~mastodonte.ml|~melody.ml|~nothingprivate.ml|~precure.ml|~prompt.ml|~stilic.ml|~sumanko.ml|~we-moon.ml 35 | 36 | ! Non-latin TLDs 37 | ! from https://github.com/hagezi/dns-blocklists/issues/143#issuecomment-1579896974 38 | /(://|^)[a-z0-9.-]{2,}\.xn--[a-z0-9]{4,}($|/)/ 39 | 40 | ! Punycode URLs 41 | ! Protect yourself from fake sites 42 | ! Equivalent to network.IDN_show_punycode = false in Firefox 43 | ! https://www.reddit.com/r/firefox/comments/17p68i7/set_networkidn_show_punycodetrue_to_protect/ 44 | ||xn--$doc,frame 45 | 46 | !!! from https://github.com/iam-py-test/my_filters_001/blob/main/enhanced_protection.txt 47 | /^https:\/\/[-0-9a-z]{12,19}\.(?:com|life)\/\?u=[0-9a-z]{7,}&o=[0-9a-z]{7,}&t=S1/$doc,domain=com|life 48 | 49 | ! very few legit things come in password-protected archives, and even fewer of them come in password protected archives with the password in the filename 50 | ! false positives: website scanning services, malware sharing sites (?) 51 | /\/Use_[a-zA-Z0-9]*_As_Passw0rdd\.rar$/$doc 52 | /\/Use_[a-zA-Z0-9]*_As_Password\.rar$/$doc 53 | /\/Passwords_2024_Setup_Full\.rar$/$doc 54 | 55 | ! test rule to detect possible malware hosted on MediaFire (i.e. https://app.any.run/tasks/d40fc871-4942-4acd-8d6a-d8f4baae1f32) 56 | ||mediafire.com/file/*/NewSetup_Use_2023_Password.rar/file^$doc 57 | 58 | ! https://www.virustotal.com/gui/url/4cbb55b62fe8bc2acdaa79d3c4fd3a6d33c0d5eed287bbe655fc117c6bdeb0a3/community 59 | .ltd/invoice/invoice.exe|$doc 60 | 61 | ! already blocked in MWB - discord nitro scam 62 | .xyz/nitrocodes/|$doc 63 | 64 | ! various URLHaus URLs 65 | ||transfer.sh/get/*/svchost.exe|$all 66 | ||cdn.discordapp.com/attachments/*/*/svchost.exe|$all 67 | 68 | ! https://www.virustotal.com/gui/url/51a5c613fa07f8301aa68fa16e7307dbf3bf0b0dcfa015632895d7ebf7ca36d3/community 69 | ! analysis: https://tria.ge/230918-nj1eqagh7x/behavioral1 70 | ||bookingcomdetails.$doc 71 | /lnvoice__1541436948.js$doc,domain=blogspot.com 72 | -------------------------------------------------------------------------------- /personal.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: yokoffing's personal filters 3 | ! Description: Filters I use myself but may cause unintended effects of other users. Mostly peculiar YouTube filters. 4 | ! Homepage: https://github.com/yokoffing/filterlists 5 | ! Expires: 7 days (update frequency) 6 | ! Version: 22 March 2024 7 | ! Syntax: AdBlock 8 | 9 | ! EDU 10 | ||login.microsoftonline.com^$subdocument,xhr,domain=~microsoftonline.com|~microsoft.com|~office365.com|~office.com|~bing.com|~live.com|~exlibrisgroup.com|~kanopy.com 11 | 12 | ! THIRD-PARTY PAYMENT / LOGIN 13 | !||paypal.com^$3p,domain=~ebay.com|~ticketmaster.com 14 | !||paypalobjects.com$domain=~ebay.com|~paypal.com|~ticketmaster.com 15 | /PaypalExpressCheckout 16 | 17 | ! X (FORMERLY TWITTER) 18 | ||t.co$domain=~twitter.com 19 | @@||t.co$doc 20 | 21 | ! REDDIT 22 | ! Hide AutoModerator comments 23 | ! https://www.reddit.com/r/uBlockOrigin/comments/140lp15/any_way_to_hide_automoderator_comments_with_ublock/ 24 | reddit.com##[data-testid="comment_author_link"][href="/user/AutoModerator/"]:upward(.Comment) 25 | reddit.com##.comment .author[href="https://old.reddit.com/user/AutoModerator"]:upward(.comment) 26 | ! To hide AutoModerator, anyone who contains "mod" or "bot" 27 | old.reddit.com##.comment[data-author="AutoModerator"] 28 | ! old.reddit.com##.comment[data-author*="mod"] 29 | old.reddit.com##.comment[data-author*="bot"] 30 | ! To hide any mod 31 | ! old.reddit.com##.comment:has(.entry .tagline .moderator) 32 | 33 | ! YOUTUBE 34 | ! Hide recommendation sidebar 35 | www.youtube.com##ytd-watch-next-secondary-results-renderer.ytd-watch-flexy.style-scope 36 | 37 | ! Filter out videos you already watched 38 | ! Only works with uBlock? 39 | !#if ext_ublock 40 | ! https://letsblock.it/filters/youtube-watched 41 | www.youtube.com##ytd-browse[page-subtype="home"] ytd-thumbnail-overlay-resume-playback-renderer:upward(ytd-grid-video-renderer,ytd-rich-item-renderer) 42 | www.youtube.com##ytd-browse[page-subtype="channels"] ytd-thumbnail-overlay-resume-playback-renderer:upward(ytd-grid-video-renderer,ytd-rich-item-renderer) 43 | www.youtube.com##ytd-browse[page-subtype="subscriptions"] ytd-thumbnail-overlay-resume-playback-renderer:upward(ytd-grid-video-renderer,ytd-rich-item-renderer) 44 | www.youtube.com##ytd-browse[page-subtype="subscriptions"] ytd-video-renderer ytd-thumbnail-overlay-resume-playback-renderer:upward(ytd-item-section-renderer) 45 | www.youtube.com##ytd-watch-next-secondary-results-renderer ytd-thumbnail-overlay-resume-playback-renderer:upward(ytd-compact-video-renderer) 46 | ! https://github.com/letsblockit/letsblockit/issues/449#issuecomment-1584682170 47 | www.youtube.com##ytd-rich-grid-row, #contents.ytd-rich-grid-row:style(display:contents !important;) 48 | ! www.youtube.com##ytd-rich-grid-renderer:style(--ytd-rich-grid-items-per-row: 4 !important;) 49 | !#endif 50 | 51 | ! Hide YouTube shorts 52 | www.youtube.com##ytd-guide-renderer a.yt-simple-endpoint path[d^="M10 14.65v-5.3L15 12l-5 2.65zm7.77-4.33"]:upward(ytd-guide-entry-renderer) 53 | www.youtube.com##ytd-mini-guide-renderer a.yt-simple-endpoint path[d^="M10 14.65v-5.3L15 12l-5 2.65zm7.77-4.33"]:upward(ytd-mini-guide-entry-renderer) 54 | www.youtube.com##ytd-browse[page-subtype="home"] .ytd-thumbnail[href^="/shorts/"]:upward(ytd-rich-item-renderer) 55 | www.youtube.com##ytd-browse[page-subtype="subscriptions"] .ytd-thumbnail[href^="/shorts/"]:upward(ytd-grid-video-renderer,ytd-rich-item-renderer) 56 | www.youtube.com##ytd-search .ytd-thumbnail[href^="/shorts/"]:upward(ytd-video-renderer) 57 | www.youtube.com##ytd-browse[page-subtype="subscriptions"] ytd-video-renderer .ytd-thumbnail[href^="/shorts/"]:upward(ytd-item-section-renderer) 58 | www.youtube.com##ytd-watch-next-secondary-results-renderer .ytd-thumbnail[href^="/shorts/"]:upward(ytd-compact-video-renderer,ytd-shelf-renderer) 59 | www.youtube.com##ytd-browse[page-subtype="trending"] .ytd-thumbnail[href^="/shorts/"]:upward(ytd-video-renderer) 60 | www.youtube.com##ytd-search .ytd-thumbnail[href^="/shorts/"]:upward(ytd-video-renderer) 61 | www.youtube.com##ytd-notification-renderer:has(> a[href^="/shorts/"]) 62 | www.youtube.com##ytd-rich-shelf-renderer[is-shorts] 63 | www.youtube.com##ytd-rich-shelf-renderer[is-shorts].ytd-rich-section-renderer:upward(ytd-rich-section-renderer) 64 | www.youtube.com##ytd-reel-shelf-renderer 65 | m.youtube.com##ytm-reel-shelf-renderer 66 | m.youtube.com##ytm-pivot-bar-renderer div.pivot-shorts:upward(ytm-pivot-bar-item-renderer) 67 | m.youtube.com##ytm-browse ytm-item-section-renderer ytm-thumbnail-overlay-time-status-renderer[data-style="SHORTS"]:upward(ytm-video-with-context-renderer) 68 | m.youtube.com##ytm-browse ytm-item-section-renderer ytm-thumbnail-overlay-time-status-renderer[data-style="SHORTS"]:upward(ytm-compact-video-renderer) 69 | m.youtube.com##ytm-search ytm-thumbnail-overlay-time-status-renderer[data-style="SHORTS"]:upward(ytm-compact-video-renderer,ytm-video-with-context-renderer) 70 | m.youtube.com##ytm-single-column-watch-next-results-renderer ytm-thumbnail-overlay-time-status-renderer span:has-text(/^(0:\d\d|1:0\d)$/):upward(ytm-video-with-context-renderer) 71 | youtube.com##ytd-rich-grid-row, #contents.ytd-rich-grid-row:style(display:contents !important;) 72 | 73 | ! Hide View count on Home, Subscriptions, etc. 74 | ! https://github.com/yokoffing/filterlists/pull/111 75 | www.youtube.com##span.ytd-video-meta-block.style-scope.inline-metadata-item:nth-of-type(1) 76 | www.youtube.com##span.ytd-video-meta-block.style-scope.inline-metadata-item:nth-of-type(2)::before 77 | ! www.youtube.com###span.ytd-grid-video-renderer.style-scope:nth-of-type(1) 78 | 79 | ! Hide subscriber count by the channel name under the video player 80 | www.youtube.com###owner-sub-count 81 | 82 | ! Hide related searches and related results from the YouTube search results, only leaving organic matches for your search 83 | www.youtube.com##ytd-search ytd-item-section-renderer ytd-shelf-renderer 84 | www.youtube.com##ytd-search ytd-item-section-renderer ytd-horizontal-card-list-renderer 85 | 86 | ! Hide next video video, which may accidentally be clicked since it's near the Play button 87 | www.youtube.com##.ytp-button.ytp-next-button 88 | 89 | ! Hide Join button 90 | www.youtube.com##.ytd-video-owner-renderer.style-scope > yt-button-shape 91 | 92 | ! Hide Comment count 93 | www.youtube.com##.ytd-comments-header-renderer.style-scope.count-text 94 | -------------------------------------------------------------------------------- /privacy_essentials.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: 🔒 Privacy Essentials 3 | ! Description: A curated list for advanced hardening. Minimize connections to third-party sites. 4 | ! Homepage: https://github.com/yokoffing/filterlists 5 | ! Expires: 4 day (update frequency) 6 | ! Version: 29 March 2024 7 | ! Syntax: AdBlock 8 | 9 | ! GENERAL BLOCKLIST 10 | ! https://github.com/uBlock-user/uBO-Personal-Filters/blob/master/uPF.txt 11 | ! https://github.com/crssi/Firefox/blob/master/uBO-Deny.txt 12 | $ping 13 | .checkfront.com/lib/Control.Geocoder*.js$script 14 | .checkfront.com/reserve/lib/jquery.cookie*.js$script 15 | /fingerprintjs2$script 16 | /fp.js$script 17 | /loginmanager_sniff.js$script 18 | ! ||dailykarma.io^$3p 19 | ||assets.dailykarma.io^$3p 20 | ||0dcde44a41.com^ 21 | ||1105media.com^$3p 22 | ||2mdn.net^$3p 23 | ||2o7.net^ 24 | ||7882f4ee63.com^ 25 | ||a2sky.com^$3p 26 | ||ablestar.app^$3p 27 | ||ad.exilio.net^ 28 | ||addthis.com^ 29 | ||adicio.com^$3p 30 | ||adjust.com^$3p 31 | ||adnxs.com^$3p 32 | ||adsensecustomsearchads.com^ 33 | ||adserver.yahoo.com^ 34 | ||adsessionserv.com^ 35 | ||adskeeper.co.uk^$3p 36 | ||advertising.com^$document 37 | ||agilemeasure.com^$3p 38 | ||alooma.com^$3p 39 | ||amospalla.es^ 40 | ||animenewsnetwork.com/logger.performance^$1p 41 | ||animenewsnetwork.com/sponsor/$1p 42 | ||anlcld.com^ 43 | ||anyroad.com^$3p 44 | ||aolcdn.com/ads/$3p,script 45 | ||api.github.com/_private/browser/errors^ 46 | ||api.stacksocial.com^ 47 | ||app-measurement.com^ 48 | ||arc.io^ 49 | ||arctur.^$3p 50 | ||askmediagroup.com^$3p 51 | ||attn.tv^$3p 52 | ||automizely.com^$3p 53 | ||avada-tag-manager.firebaseapp.com^$3p 54 | ||avada.io^$3p 55 | ||b7b06aa9a2.com 56 | ||backinstock.org^$3p 57 | ||baidu.com^$3p 58 | ||bbb.org^$3p 59 | ||beddoe.com^$3p 60 | ||beehaw.org^$3p 61 | ||bestofmedia.com^$3p 62 | ||beta-testing-shopify-tracker.s3.amazonaws.com^$3p 63 | ||bf-ad.net^ 64 | ||bimbolive.com^$3p 65 | ||bizzabo.com^$3p 66 | ||blitzen.com^$3p 67 | ||blogsmithmedia.com^$3p,xhr 68 | ||bloomapp-production.herokuapp.com^$3p 69 | ||boldapps.net^$3p 70 | ||bookthatapp.com^$3p 71 | ||booster3000.si^$3p 72 | ||botframework.com^$3p 73 | ||branch.io^$3p 74 | ||budget.com^$3p 75 | ||buymeacoffee.com^$3p 76 | ||bytecache.ml^ 77 | ||calculoid.com^$3p,script 78 | ||capturehighered.net^$3p 79 | ||cbox.ws^$3p 80 | ||cbsinteractive.com^$domain=~etonline.com 81 | ||cdn.privacy.paramount.com^$3p 82 | ||cdn.ravenjs.com^$3p,script 83 | ||channelsight.com^$xhr 84 | ||chatango.com^$3p 85 | ||chatbro.com^$3p 86 | ||chimpstatic.com^$3p 87 | ||christianbook.com^$3p 88 | ||cigevo.uno^$3p 89 | ||cleantalk.org^ 90 | ||cloudinary.com^$3p,~image 91 | ||cnstrc.com^ 92 | ||coinmarketcap.com^$3p 93 | ||concert.io^$3p 94 | ||connect.getflowbox.com^$3p 95 | ||conscent.in^$3p 96 | ||consensu.org^$redirect=noopjs 97 | ||contentpass.net^ 98 | ||coordinatedcub.com^$3p 99 | ||crazyrocket.io^$3p 100 | ||creditsyard.com^$3p 101 | ||d77cf8b870.com^ 102 | ||datadoghq-browser-agent.com^ 103 | ||datadoghq.com^$domain=~docs.datadoghq.com 104 | ||deadlinefunnel.com^$3p 105 | ||decacopy.com^ 106 | ||delvenetworks.com^$3p,script 107 | ||disqus.com^$3p 108 | ||disquscdn.com^$3p 109 | ||dmca.com^$3p 110 | ||dmgmediaprivacy.co.uk^$3p 111 | ||donorbox.org^$3p 112 | ||dowjoneson.com^$3p 113 | ||dropbox-dns.com$domain=~dropbox.com|~dropbox-dns.com 114 | ||dropbox.com$domain=~dropbox.com|~dropbox-dns.com 115 | ! ||dropboxusercontent.com$domain=~dropbox.com|~dropbox-dns.com|~uniquestream.net 116 | ||drtuber.desi^$3p 117 | ||duckduckgo.com^$3p,domain=~duckduckgo.com|~spreadprivacy.com 118 | ||eagleapi.io^ 119 | ||emailsnow.info^ 120 | ||evidon.com^$3p 121 | ||exosrv.com^$3p 122 | ||fbot.me^$3p 123 | ||feedgrabbr.com^$3p 124 | ||flippback.com^$3p 125 | ||forbes.com^$3p,domain=quora.com 126 | ||foxnews.com^$3p,domain=~foxnews.com 127 | ||future-fie-assets.co.uk^$3p 128 | ||future-fie.co.uk^ 129 | ||future.net.uk^$3p,~script 130 | ||futurecdn.net^$xhr 131 | ||geniuslinkcdn.com^$3p 132 | ||geo.cnbc.com^ 133 | ||geo.lovely-app.com^ 134 | ||geolocation.nexusmedia.workers.dev^ 135 | ||get-native.eu^$3p 136 | ||getmetrical.com^$3p 137 | ||getmulberry.com^$3p 138 | ||getsentry.com^$3p 139 | ||getsitecontrol.com^$3p 140 | ||gleamjs.io^ 141 | ||gravatar.com^$important 142 | ||gravity-software.com^$3p 143 | ||groupbycloud.com^$3p 144 | ||guim.co.uk^$3p,script 145 | ||hawk-assets.co.uk^ 146 | ||hawk-tech.co.uk^ 147 | ||hawksearch.com^$3p 148 | ||hextom.com^$3p 149 | ||hollywoodreporter.com/fe_data/$1p,xmlhttprequest 150 | ||hotjar-analytics.com^ 151 | ||hubspot.com^$3p 152 | ||hudo.com^$inline-script 153 | ||iheart.com^$all,domain=~iheart.com 154 | ||incartupsell.com^$3p 155 | ||influglue.com^$3p 156 | ||inspectlet.com^$3p 157 | ||inswebt.com^ 158 | ||intercom.com^$3p,domain=~koinly.io 159 | ||ip.sp^ 160 | ||ipgeolocation.io^ 161 | ||iprom.net^$3p 162 | ||ipromcloud.com^$3p 163 | ||jetbluevacations.com^$3p 164 | ||jetlore.com^$3p 165 | ||js.partnerstack.com^$3p 166 | ||js.testfreaks.com^$3p 167 | ||judge.me^$3p 168 | ||jwp*.com^$3p,~script,~media,~image 169 | ||kme.si^$3p,~image 170 | ||knowyourapps.com^$3p 171 | ||kount.com^$3p 172 | ||kount.net^$3p 173 | ||kustomerapp.com^$3p 174 | ||leadsdome.com^ 175 | ||letspin.io^$3p 176 | ||limelight.com^$3p,script 177 | ||list-manage.com^$3p 178 | ||livechat.ivpn.net^ 179 | ||livenetlife.com^$3p 180 | ||liveperson.net^$3p 181 | ||lmaxdigital.io 182 | ||loox.io^$3p 183 | ||lowfruitsolutions.com^$3p 184 | ||loyaltylion.net^$3p 185 | ||lpsnmedia.net^$3p 186 | ||lr-hv-in.com^$3p 187 | ||lr-in.com^$3p 188 | ||lura.live^$3p 189 | ||mailchimp.com^$3p 190 | ||marketingautomation.services^$3p 191 | ||marketo.com^ 192 | ||maze.co^$3p 193 | ||media.licdn.com^$domain=~linkedin.com 194 | ||medium.com^$3p,~script,~image 195 | ||memberful.com^$3p 196 | ||metrics.foursixty.com^ 197 | ||mgid.com^$3p 198 | ||mimecast.com^$3p 199 | ||moengage.com^$3p 200 | ||montangop.top^ 201 | ||montiapm.com^$3p 202 | ||moonpay.io^$all 203 | ||mountain.com^$3p 204 | ||msgstore.www.notion.so^$all 205 | ||myanimelist.net^*/event/$image 206 | ||nepremicnine.net^$3p 207 | ||newsoveraudio.com^$3p 208 | ||nfcube.com^$3p 209 | ||nir.regmedia.co.uk^$3p 210 | ||nitroapps.co^$3p 211 | ||nmaib9.com^$3p 212 | ||npttech.com^$3p 213 | ||nsimg.net 214 | ||ntv.io^$3p 215 | ||nvidpn.com^$3p 216 | ||oath.com^$3p 217 | ||octaneai.com^$3p 218 | ||ogvaruvlkdsm.com^ 219 | ||okendo.io^$3p 220 | ||oko.net^$3p 221 | ||olark.com^$3p 222 | ||omnivirt.com^$3p 223 | ||oneall.com^$3p 224 | ||opta.net^ 225 | ||opumo.net^$3p 226 | ||origin.com^$3p,domain=origin.com 227 | ||outbrain.com^$3p 228 | ||p-n.io^$3p 229 | ||paddle.com^$3p 230 | ||paht.tech^ 231 | ||paisly.com^$3p 232 | ||paradox.ai^$all 233 | ||paywall-prod.appspot.com^ 234 | ||paywall.theathletic.com^ 235 | ||piano.io$3p 236 | ||pkmods.com$inline-script 237 | ||pmcatalyst-ae.com^$3p 238 | ||polyfill.io^$3p 239 | ||popupmaker.com^$3p 240 | ||pristopmedia.network^ 241 | ||pushance.com^$3p 242 | ||qq.com^$3p 243 | ||quantserve.com^$3p 244 | ||readcomiconline.*/Ads/ 245 | ||readcomiconline.*/wp-includes/*/*.html$subdocument,1p 246 | ||rebuyengine.com^$3p 247 | ||recommendation-hybrid.wpdigital.net^$all 248 | ||refer.bose.com^ 249 | ||rtyche.com^$3p 250 | ||s.aolcdn.com/ads/$3p,script 251 | ||salesforceliveagent.com^$3p 252 | ||sandsiv.com^$3p 253 | ||scroll.com^$3p 254 | ||sdk.asapp.com^ 255 | ||search.brave.com/api/feedback^ 256 | ||secomapp.com^$3p 257 | ||secondego.com^$3p 258 | ||securemetrics.apple.com^$3p 259 | ||segment.com^ 260 | ||servebom.com^$3p 261 | ||services.wikia.com^ 262 | ||share.qvcemail.com^ 263 | ||shutterstock.com^$3p 264 | ||simplecast.com^$3p 265 | ||sinclairstoryline.com^$3p 266 | ||sitebot.ai^$3p 267 | ||skiocheck.com^$3p 268 | ||slack.com/api/promo.banner^ 269 | ||slack.com/api/ublockworkaround^ 270 | ||smartfocus.com^$3p 271 | ||smile.io^$3p 272 | ||smind.com^$3p 273 | ||smsbump.com^$3p 274 | ||snapkit.com^$3p 275 | ||sni.star.24ur.com.c.footprint.net^$media 276 | ||soap2day.to^$3p 277 | ||soapps.net^$3p 278 | ||socialshopwave.com^$3p 279 | ||spot.im^$3p 280 | ||startpage.com/do/$image 281 | ||startpage.com/english/$image 282 | ||startpage.com/tst2/$image 283 | ||stkbl.app^$3p 284 | ||streetmetrics.io^$3p 285 | ||strike.fox.com^$3p 286 | ||syndetics.com^$3p 287 | ||taboola.com^$3p 288 | ||tags.news.com.au^ 289 | ||tawk.to^$3p 290 | ||teams.microsoft.com^$3p 291 | ||teletarget.ru^ 292 | ||thanhhd.com^$3p 293 | ||themessagecloud.com^$3p 294 | ||thunderhead.com^$3p 295 | ||ti-media.net^$~stylesheet,~image 296 | ||tinymce.com^$3p 297 | ||tinypass.com^ 298 | ||titsx.com^$3p 299 | ||tradingview.com^$3p 300 | ||tripadvisor.com^$3p 301 | ||trust-provider.com^ 302 | ||trustarc.com^$3p 303 | ||truste.com^$3p 304 | ||trustpilot.com^$3p 305 | ||trustx.org^$3p 306 | ||tsmedia.si^$3p 307 | ||tsyndicate.com^$3p 308 | ||turnto.com^$3p 309 | ||typekit.net^ 310 | ||typography.com^$3p,~stylesheet,~xhr 311 | ||ubembed.com^ 312 | ||upscore.com^$3p 313 | ||urbanairship.com^$3p 314 | ||viafoura.co^ 315 | ||vk.com^$3p 316 | ||vuukle.com^$3p 317 | ||wibbitz.com^$3p 318 | ||widgets.automizely.com^$3p 319 | ||widgets.guidestar.org^ 320 | ||yahoo.com^$3p,~image,domain=~yahoo.com 321 | ||yandex.ru^$3p,domain=~dzen.ru 322 | ||yottaa.com^$3p 323 | ||yottlyscript.com^$3p 324 | ||slickstream.com^$3p,domain=~slickstream.com 325 | ||sitescdn.net^$3p 326 | ||addsearch.com^$3p 327 | 9anime.*##+js(nosiif, (t)) 328 | fmovies.*##+js(nosiif, try) 329 | !!! https://github.com/uBlockOrigin/uAssets/commit/9c48940838eb4bff98f2a1a9b9cba1b92c3c8c9a 330 | ! ||tags.tiqcdn.com^ 331 | ||paykickstart.com^$3p 332 | ||pressplay.io^$3p 333 | ||convertkit.com^$3p 334 | ||grow.me^$3p 335 | ||getgobot.com^$3p 336 | ||twitcount.com^$3p 337 | ||launchpotato.com^$3p 338 | ||doctify.com^$3p 339 | ! https://camerareadycosmetics.com/ 340 | ||minmaxify.com^$3p 341 | ||pwztag.com^$3p 342 | ||beacon.kendall.ai^$3p 343 | ||orderdeadline.com^$3p 344 | ||soundestlink.com^$3p 345 | ||thimatic-apps.com^$3p 346 | ||revenuehunt.com^$3p 347 | ||omnisnippet1.com$3p 348 | ||freegifts.io^$3p 349 | ! https://www.vitalydesign.com/pages/contact-us 350 | ||ip-api.com^$3p 351 | ||marker.io^$3p 352 | ||shoplift.ai$3p 353 | ! Shopify 354 | ||juniphq.com^$3p 355 | ||postscript.io^$3p 356 | ||shoplift.ai$3p 357 | 358 | ! GENERAL ALLOWLIST 359 | ! https://github.com/crssi/Firefox/blob/master/uBO-Unbreak.txt 360 | @@*/lwa/WebPages/LwaClient.aspx$subdocument 361 | @@*/saml/$subdocument 362 | @@/clarity-*.js$1p,script 363 | @@/share-link-$1p,xhr 364 | @@||a-msedge.net^$domain=bing.com 365 | @@||advertising.com^$1p 366 | @@||alexa.com^$1p 367 | @@||amzn.to^$1p 368 | @@||assets-jpcust.jwpsrv.com^$image 369 | @@||bing.com/maps^ 370 | @@||bing.com/api/maps^ 371 | @@||r.bing.com/rp^ 372 | @@||th.bing.com^ 373 | @@||cbsi.com/dist/optanon.js$script 374 | @@||cdn-apple.com^$domain=apple.com|icloud.com 375 | @@||consent.cookiebot.com^$script,domain=adjust.com 376 | @@||contextual.media.net^$script 377 | @@||dropboxstatic.com/*/social_icon$stylesheet,domain=dropbox.com 378 | @@||e.infogram.com/js/dist/embed.js$script 379 | @@||e.infogram.com^$subdocument 380 | @@||gravatar.com^$image,stylesheet 381 | @@||omara.cdn-cnj.si^$script 382 | @@||paypal.com^$subdocument,popup 383 | @@||play.vidyard.com^$subdocument,script 384 | @@||pov.spectrum.net^ 385 | @@||udimg.com^$1p 386 | @@||udimg.com^$domain=urbandictionary.com 387 | ! https://github.com/yokoffing/filterlists/issues/98 388 | @@||use.typekit.net^$script,font 389 | 390 | ! GOOGLE 391 | ||accounts.google.com^$3p,domain=~youtube.com 392 | ||ampcid.google.com^$important 393 | ||contributor.google.com^$3p 394 | ||doubleclickbygoogle.com^$3p 395 | ||firebase.com^$3p 396 | ||firebase.googleapis.com^ 397 | ||firebaseinstallations.googleapis.com^ 398 | ||google-analytics.com^$3p,important 399 | ||google.com/cse/cse.js^ 400 | ||google.com^$3p,domain=~abc.xyz|~blackdog.ie|~cbsnews.com|~chromium.org|~developer.android.com|~flippity.net|~gstatic.com|~gptgo.ai|~nest.com|~oldgoogle.neocities.org|~translate.google.com|~youtube-nocookie.com|~youtube.com|~youtube.googleapis.com 401 | ||googleadservices.com^$3p,important 402 | ||googlesyndication.com^$important 403 | ||googletagmanager.com^$important 404 | ||googletagservices.com^$important 405 | ! https://github.com/badmojr/1Hosts/issues/1227 406 | ||jnn-pa.googleapis.com^$domain=~drive.google.com 407 | ||news.google.com^$3p 408 | ||play.google.com/log?$xmlhttprequest,important 409 | ||play.google.com^$3p 410 | ||scholar.google.com^$3p,domain=~google.com 411 | ||youtube.com/error_204?^$xhr 412 | ||youtube.com/youtubei/v1/log_event^$xhr 413 | @@||accounts.google.*/ServiceLogin$subdocument 414 | @@||apis.google.com^$script,domain=content.googleapis.com|dropbox.com 415 | @@||appspot.com^$subdocument,domain=cloud.google.com 416 | @@||blogger.*.google.com^$domain=blogspot.com 417 | @@||blogger.*.google.com^$subdocument 418 | @@||blogger.com/comment-iframe.$subdocument 419 | @@||consent.google.com^$subdocument 420 | @@||docs.google.com^$subdocument,domain=dropbox.com 421 | @@||drive.google.com^$image 422 | @@||google-analytics.com/analytics.js$script,domain=amainhobbies.com 423 | @@||google.com/maps/$subdocument 424 | @@||google.com/recaptcha/$subdocument 425 | @@||google.com/recaptcha/api.js$script 426 | @@||google.com^$script,domain=youtube.com 427 | @@||google*.^$domain=youtube.com|youtube-nocookie.com 428 | @@||google.com/uds/*visualization$script,stylesheet 429 | @@||gstaticadssl.*.google.com^$font 430 | @@||maps-api-ssl.google.com^$script,image 431 | @@||maps.google.*/maps$script,image 432 | @@||maps.googleapis.com/maps$script,image,xhr 433 | @@||mapsengine.google.com/map/embed$subdocument 434 | @@||youtube-ui.*.google.com^$subdocument,script 435 | @@||ytimg.*.google.com^$image 436 | @@||ytimg.com^$script 437 | 438 | ! FACEBOOK 439 | ! Logins (maybe more) 440 | ||connect.facebook.net^$3p,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com 441 | ||connect.facebook.com^$3p,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com 442 | ! Facebook Plugins (3rd-party embedded plugins) 443 | ||facebook.com/plugins/$3p,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com 444 | ! ||fbcdn.net^$3p 445 | ! @@||fbcdn.net^$3p,domain=facebook.com|instagram.com|messenger.com|workplace.com|oculus.com|oculusvr.com|oculusbrand.com|oculusforbusiness.com|onavo.com 446 | ! @@||fbcdn.net^$image,media 447 | 448 | ! INSTAGRAM 449 | ||graph.facebook.com^$3p,domain=~atlassolutions.com|~facebook.com|~facebook.de|~facebook.fr|~facebook.net|~fb.com|~fb.me|~fbcdn.net|~fbsbx.com|~friendfeed.com|~instagram.com|~internalfb.com|~messenger.com|~oculus.com|~whatsapp.com|~workplace.com 450 | ||graph.facebook.com/logging_client_events 451 | ||graph.facebook.com/?ids=*&callback=$script,3p 452 | ||graph.facebook.com/*/activities?access_token=&event= 453 | ||graph.facebook.com/*?fields=supports_implicit_sdk_logging 454 | ! ||graph.facebook.com^$domain=~facebook.com|~instagram.com 455 | ! ||graph.instagram.com^$domain=~facebook.com|~instagram.com 456 | ||instagram.com^$3p,~subdocument 457 | @@||instagram.com/p/$subdocument 458 | @@||instagram.com^$script 459 | @@||-instagram.*.facebook.com^$subdocument 460 | 461 | ! TWITTER 462 | ||api.twitter.com^$3p,domain=~tweetdeck.com|~twitter.com|~twitter.jp 463 | ||platform.twitter.com^$3p,domain=~tweetdeck.com|~twitter.com|~twitter.jp 464 | ||twitter.com^$3p 465 | ||syndication.twitter.com^ 466 | ||t.co^$3p,domain=~twitter.com 467 | !#if ext_ublock 468 | platform.twitter.com##+js(cookie-remover, /^/) 469 | ! Attempt to use uBO to remove cookies caused by Twitter 470 | !#endif 471 | @@||platform.twitter.com/embed/$subdocument 472 | @@||platform.twitter.com/widgets/$subdocument 473 | @@||platform.twitter.com^$stylesheet,image,script 474 | @@||twimg.com^$image 475 | @@||twitter.com/i/videos/$subdocument 476 | @@||twitter.map.fastly.net^$domain=twitter.com 477 | ! Breaks Twitter widget using Fanboy Annoyance 478 | ! https://www.cnet.com/news/social-media/twitter-musk-news-timeline-riptwitter-trends-after-employees-resign/ 479 | @@.twitterContainer 480 | 481 | ! TIKTOK 482 | !||tiktok.com^$3p 483 | ||ibytedtos.com^$3p,domain=~tiktok.com 484 | 485 | ! LINKEDIN 486 | ||licdn.com^$3p,domain=~linkedin.com|~lnkd.in 487 | ||linkedin.com^$3p 488 | 489 | ! PINTEREST 490 | ||pinterest.com^$3p 491 | 492 | ! TWITCH 493 | ||twitch.tv^$3p,domain=~twitch.tv 494 | 495 | ! DISCORD 496 | @@||cdn.discordapp.com^$image 497 | ||discord.com^$3p,domain=~discohook.org|~scam.gay 498 | ||discordapp.com^$3p,domain=~discohook.org|~discord.com|~discordpackage.com|~mee6.xyz|~scam.gay 499 | 500 | ! 3rd-party Payment Vendors / "Buy Now, Pay Later": 501 | ||global-e.com^$3p 502 | ||static.rechargecdn.com^$3p 503 | ! ||getcatch.com^$3p 504 | ||js.getcatch.com^$3p 505 | ||pay.google.com^$3p 506 | ||appleid.cdn-apple.com^ 507 | ||payments-amazon.com^$3p 508 | ||affirm.com$3p 509 | ||afterpay.com^$3p 510 | ||shoprunner.com^$3p 511 | ||amazonpay.com^$3p 512 | ||payments.amazon.com^$3p 513 | ||sezzle.com^$3p 514 | ||treat.xyz^$3p 515 | ||klarna.com^$3p 516 | ||klarnacdn.net^$3p 517 | ||klarnaservices.com^$3p 518 | ||preorder-now.herokuapp.com^$3p 519 | ||razorpay.com^$3p 520 | ! Blocks Paypal and Express Checkouts using Shopify: 521 | ! ||paypal.com^$3p,domain=~ebay.com|~paypal.com|~ticketmaster.com 522 | ||paypalobjects.com^$domain=~ebay.com|~paypal.com|~ticketmaster.com 523 | ||shop.app^$3p 524 | ||shopbonsai.ca^$3p 525 | ||shopcircleapp.co^$3p 526 | ||shopifycloud.com^$3p 527 | ||shopifysvc.com^$3p 528 | /AdditionalGoogleAnalyticsScriptSandbox 529 | /GooglePayButton 530 | /FacebookPayButton 531 | /ShopPay 532 | !||stripe.com^$3p,domain=~curesarcoma.org|~koinly.io|~patreon.com|~nextdns.io|~controld.com|~quetext.com 533 | !||js.stripe.com^,domain=~curesarcoma.org|~koinly.io|~patreon.com|~nextdns.io|~controld.com|~quetext.com 534 | 535 | ! 3p PAYMENT / LOGIN 536 | ##shopify-payment-terms 537 | ##.additional-checkout-buttons.grid__item 538 | ! 3p sign-in buttons 539 | ##.sign-in-google-btn 540 | ##.google.primary.auth 541 | ##.apple.primary.auth 542 | ##.facebook-auth 543 | ##.google-auth 544 | ##._btn-google.social-button 545 | ##._btn-apple.social-button 546 | ##.afterpay__wrapper 547 | ##.dynamic-checkout__buttons 548 | ##.shopify-payment-button 549 | ###googleContainer 550 | ###apple-signin-button 551 | ##.cl-socialButtons 552 | ! Google sign-in on Indeed 553 | indeed.com##.icl-Card 554 | 555 | ! BING 556 | ||bing.com^$3p,domain=~bing.com|~login.live.com|~microsoft.com|~msn.com 557 | ! https://github.com/AdguardTeam/AdguardFilters/issues/126174 558 | ||bing.com/fd/ls/lsp.aspx$badfilter 559 | @@||bing.com/fd/ls/GLinkPing.aspx? 560 | ! Bing reverse image search broken by EL 561 | bing.com#@#a[href*="/aclick?ld="] 562 | bing.com##.ins_exp.vsp 563 | ! https://github.com/uBlockOrigin/uAssets/issues/9093 564 | bing.com##:matches-path(~/shop) a[href*="/aclick?"]:not(.vsp_ads) 565 | ! https://github.com/easylist/easylist/issues/7240 566 | !#if env_firefox 567 | bing.com##+js(nosiif, logQueue, 10000) 568 | !#endif 569 | ! EP - needed for Bing rewards? 570 | @@||bing.com/rewardsapp/reportactivity? 571 | 572 | ! Microsoft Outlook breakage 573 | @@||pipe.aria.microsoft.com^$domain=outlook.live.com|outlook.office.com 574 | @@||browser.events.data.microsoft.com^$domain=outlook.live.com|outlook.office.com 575 | 576 | ! from https://github.com/crssi/Firefox/blob/master/uBO-Cosmetic.txt 577 | ! EasyPrivacy 578 | /log?entry=$badfilter,domain=outlook.office.com 579 | /postlog?$badfilter,domain=outlook.office.com 580 | ||bing.com/fd/ls/lsp.aspx$badfilter,domain=outlook.office.com 581 | ||data.microsoft.com/OneCollector/$badfilter,domain=outlook.office.com 582 | ||fp.measure.office.com^$badfilter,domain=outlook.office.com 583 | ||microsoft.com/collector/$badfilter,domain=outlook.office.com 584 | ||visualstudio.com/v*/track$3p,badfilter,domain=outlook.office.com 585 | ||visualstudio.com/v2/track$3p,badfilter,domain=outlook.office.com 586 | ! AdGuard Tracking Protection 587 | ||dc.services.visualstudio.com/*/track$badfilter,domain=outlook.office.com 588 | ||dc.services.visualstudio.com/v2/track$badfilter,domain=outlook.office.com 589 | ||virtualearth.net/webservices/v*/loggingservice/loggingservice.svc/log?entry=$badfilter,domain=outlook.office.com 590 | 591 | ! EasyPrivacy exceptions 592 | ! https://github.com/easylist/easylist/issues/4023 593 | @@||instant.page^$3p 594 | 595 | ! from https://raw.githubusercontent.com/Yuki2718/adblock/master/medium_mode/anti-allowlist.txt 596 | ! EL 597 | /prebid1.$important,domain=9to5google.com|9to5mac.com|9to5toys.com|electrek.co|dronedj.com 598 | ||accuweather.com/bundles/prebid.$important 599 | ! May cause sign-in trouble for US IP 600 | ||eventcom.api.np.km.playstation.net/event^$important 601 | ||g.doubleclick.net/tag/js/gpt.js$important,domain=accuweather.com 602 | ||networkworld.com/www/js/ads/$important 603 | @@||clients*.google.com/adsense/*?key=$domain=~calcalist.co.il|~gaytube.com|~mako.co.il|~pornhub.com|~pornhubthbh7ap3u.onion|~redtube.com|~redtube.com.br|~tube8.com|~tube8.es|~tube8.fr|~walla.co.il|~xtube.com|~ynet.co.il|~youjizz.com|~youporn.com|~youporngay.com,badfilter 604 | 605 | ! EP 606 | ||omtrdc.net/rest/$important 607 | ||smetrics.aem.playstation.com^$important 608 | ||walmart.com^*/logger^$xhr,important 609 | @@||s.yimg.com^*/advertisement/sponsor/promo/ad.png$image,domain=news.yahoo.com,badfilter 610 | 611 | ! NYT 612 | ! ||myaccount.nytimes.com^ 613 | ||messaging-notifications.api.nytimes.com^ 614 | 615 | ! HuffPost 616 | ||mapi.huffpost.com^ 617 | 618 | ! WP 619 | ||talk.washingtonpost.com^ 620 | ||washingtonpost.com/subscribe/ 621 | ||subscribe.washingtonpost.com^ 622 | ||washingtonpost.com/pwapiv2/$xhr,1p 623 | 624 | ! AMAZON 625 | www.amazon.*###universal-detail-ilm,.a-spacing-none.a-section > .sg-row,.AdHolder,#percolate-ui-ilm_div > .celwidget:remove() 626 | @@||amazon.*/*uedata$image,1p,badfilter 627 | 628 | ! To access Mozilla reports 629 | ||telemetry.mozilla.org^$badfilter 630 | 631 | ! https://github.com/easylist/easylist/issues/16298 632 | ||connatix.com/scripts^ 633 | !||connatix.com/scripts/facebook-pixel-script.js 634 | !||connatix.com/scripts/gaconnector.js 635 | !||connatix.com/scripts/microsoft-ad-script.js 636 | !||connatix.com/scripts/munchkin-script.js 637 | !||connatix.com/scripts/hotjar.js 638 | !||connatix.com/scripts/websights-script.js 639 | !||connatix.com/scripts/mkt-cke-script.js 640 | !||connatix.com/scripts/linkedin-script.js 641 | 642 | ! https://connatix.com/advertisers 643 | ||neverbounce.com^$3p 644 | ||greenhouse.io^$3p 645 | 646 | ! Outbrain 647 | ||outbrain.com^$3p,domain=~sphere.com 648 | 649 | ! Allow YouTube link redirect (Privacy Extended) 650 | @@||youtube.com/redirect?event=*q=http$document 651 | 652 | ! https://github.com/LennyFox/Blocklists/blob/master/uBO_medium_mode_filter 7 June 2023 653 | ! Removed redundancies from EasyListm, EasyPrivacy, and Privacy Extended 654 | ||1rx.io^$3p 655 | ||2cnt.net^$3p 656 | ||313.nl^$3p 657 | ||3lift.com^$3p 658 | ||4dex.io^$3p 659 | ||6sense.com^$3p 660 | ||aaxads.com^$3p 661 | ||abtasty.com^$3p 662 | ||actonsoftware.com^$3p 663 | ||adaraanalytics.com^$3p 664 | ||ad-delivery.net^$3p 665 | ||adlmerge.com^$3p 666 | ||adnxs-simple.com^$3p 667 | ||adotmob.com^$3p 668 | ||adrotate.de^$3p 669 | ||ads.tiktok.com^$3p 670 | ||ads-api.tiktok.com^$3p 671 | ||adservice.google.com^$3p 672 | ||ads-sg.tiktok.com^$3p 673 | ||adstanding.com^$3p 674 | ||ads-twitter.com^$3p 675 | ||adtago.s3.amazonaws.com^$3p 676 | ||advertising-api-eu.amazon.com^$3p 677 | ||adviad.com^$3p 678 | ||advice-ads.s3.amazonaws.com^$3p 679 | ||advividnetwork.com^$3p 680 | ||adxpremium.services^$3p 681 | ||afp.ai^$3p 682 | ||aiproxies.com^$3p 683 | ||airtory.com^$3p 684 | ||aliapp.org^$3p 685 | ||alibaba.com^$3p 686 | ||altitude-arena.com^$3p 687 | ||a-mo.net^$3p 688 | ||analytics.s3.amazonaws.com^$3p 689 | ||analytics-egain.com^$3p 690 | ||analyticsengine.s3.amazonaws.com^$3p 691 | ||analytics-sm.com^$3p 692 | ||anyclip.com^$3p 693 | ||aparat.com^$3p 694 | ||app.link^$3p 695 | ||appdynamics.com^$3p 696 | ||appsflyer.com^$3p 697 | ||app-us1.com^$3p 698 | ||associates-amazon.com^$3p 699 | ||atemda.com^$3p 700 | ||atgsvcs.com^$3p 701 | ||ati-host.net^$3p 702 | ||attentivemobile.com^$3p 703 | ||automattic.com^$3p 704 | ||avplayer.com^$3p 705 | ||awin.com^$3p 706 | ||bashirian.biz^$3p 707 | ||bdg.com^$3p 708 | ||bidstreamserver.com^$3p 709 | ||bidtheatre.com^$3p 710 | ||bing.com^$3p 711 | ||bitmovin.com^$3p 712 | ||bitrix.info^$3p 713 | ||bizibly.com^$3p 714 | ||bizrate.com^$3p 715 | ||blismedia.com^$3p 716 | ||bluebillywig.com^$3p 717 | ||bongacams.com^$3p 718 | ||bouncex.net^$3p 719 | ||brandcdn.com^$3p 720 | ||brand-display.com^$3p 721 | ||bttrack.com^$3p 722 | ||bullionyield.com^$3p 723 | ||business-api.tiktok.com^$3p 724 | ||casalemedia.com^$3p 725 | ||cctv.com^$3p 726 | ||cdnwidget.com^$3p 727 | ||chatra.io^$3p 728 | ||chaturbate.com^$3p 729 | ||chocolateplatform.com^$3p 730 | ||choozle.com^$3p 731 | ||clickagy.com^$3p 732 | ||clmbtech.com^$3p 733 | ||cloudflareaccess.com^$3p 734 | ||cloudflareanalytics.com^$3p 735 | ||congstar.de^$3p 736 | ||connectad.io^$3p 737 | ||connextra.com^$3p 738 | ||constantcontact.com^$3p 739 | ||contentexchange.me^$3p 740 | ||contents-search-windows.com^$3p 741 | ||contextweb.com^$3p 742 | ||contobox.com^$3p 743 | ||conviva.com^$3p 744 | ||cootlogix.com^$3p 745 | ||coub.com^$3p 746 | ||coveo.com^$3p 747 | ||createjs.com^$3p 748 | ||creative-serving.com^$3p 749 | ||crowdriff.com^$3p 750 | ||daum.net^$3p 751 | ||demand.supply^$3p 752 | ||digg.com^$3p 753 | ||dnacdn.net^$3p 754 | ||doublepimp.com^$3p 755 | ||dpmsrv.com^$3p 756 | ||dsspn.com^$3p 757 | ||dtscdn.com^$3p 758 | ||dtscout.com^$3p 759 | ||dynamicyield.com^$3p 760 | ||dynatrace.com^$3p 761 | ||eagleplatform.com^$3p 762 | ||eccmp.com^$3p 763 | ||elpais.com^$3p 764 | ||emxdgt.com^$3p 765 | ||episerver.net^$3p 766 | ||essayprofit.com^$3p 767 | ||exdynsrv.com^$3p 768 | ||extend.tv^$3p 769 | ||extole.io^$3p 770 | ||extremereach.io^$3p 771 | ||feedad.com^$3p 772 | ||fg8dgt.com^$3p 773 | ||fiftyt.com^$3p 774 | ||flowtype.press^$3p 775 | ||franecki.net^$3p 776 | ||freeskreen.com^$3p 777 | ||fuseplatform.net^$3p 778 | ||g2.com^$3p 779 | ||gbqofs.io^$3p 780 | ||getblue.io^$3p 781 | ||getletterpress.com^$3p 782 | ||gscontxt.net^$3p 783 | ||hanmaker.com^$3p 784 | ||hellobar.com^$3p 785 | ||highwire.org^$3p 786 | ||hinet.net^$3p 787 | ||holmesmind.com^$3p 788 | ||hushly.com^$3p 789 | ||igaw.io^$3p 790 | ||igodigital.com^$3p 791 | ||iheart.com^$3p 792 | ||imasdk.googleapis.com^$3p 793 | ||impact.com^$3p 794 | ||indexww.com^$3p 795 | ||influ2.com^$3p 796 | ||insightexpressai.com^$3p 797 | ||intentiq.com^$3p 798 | ||intentsify.io^$3p 799 | ||investis.com^$3p 800 | ||ipredictive.com^$3p 801 | ||ispot.tv^$3p 802 | ||iteratehq.com^$3p 803 | ||ivideosmart.com^$3p 804 | ||jsrdn.com^$3p 805 | ||juicyads.com^$3p 806 | ||justpremium.com^$3p 807 | ||jwpltx.com^$3p 808 | ||klaviyo.com^$3p 809 | ! ||launchdarkly.com^$3p 810 | ||layer-ads.de^$3p 811 | ||listenloop.com^$3p 812 | ||livejasmin.com^$3p 813 | ||loadercdn.net^$3p 814 | ||lotlinx.com^$3p 815 | ||magnetmail.net^$3p 816 | ||mainroll.com^$3p 817 | ||marketlinc.com^$3p 818 | ||marphezis.com^$3p 819 | ||marsflag.com^$3p 820 | ||matomo.org^$3p 821 | ||mavencoalition.io^$3p 822 | ||maxmind.com^$3p 823 | ||media6degrees.com^$3p 824 | ||mediacategory.com^$3p 825 | ||medleyads.com^$3p 826 | ||medtargetsystem.com^$3p 827 | ||microadinc.com^$3p 828 | ||mixpo.com^$3p 829 | ||ml314.com^$3p 830 | ||mmctsvc.com^$3p 831 | ||moatads.com^$3p 832 | ||moatpixel.com^$3p 833 | ||mobon.net^$3p 834 | ||mookie1.com^$3p 835 | ||mpeasylink.com^$3p 836 | ||mql5.com^$3p 837 | ||myfinance.com^$3p 838 | ||myvisualiq.net^$3p 839 | ||narrativ.com^$3p 840 | ||narrative.io^$3p 841 | ||nate.com^$3p 842 | ||naver.com^$3p 843 | ||newscgp.com^$3p 844 | ||newsmaxwidget.com^$3p 845 | ||ninthdecimal.com^$3p 846 | ||nuance.com^$3p 847 | ||nytrng.com^$3p 848 | ||omnitagjs.com^$3p 849 | ||onelink.me^$3p 850 | ||onesignal.com^$3p 851 | ||onet.pl^$3p 852 | ||opecloud.com^$3p 853 | ||openx.net^$3p 854 | ||opoxv.com^$3p 855 | ||osano.com^$3p 856 | ||outbrainimg.com^$3p 857 | ||owneriq.net^$3p 858 | ||pages03.net^$3p 859 | ||pardot.com^$3p 860 | ||parsely.com^$3p 861 | ||pathfactory.com^$3p 862 | ||perfectmarket.com^$3p 863 | ||petametrics.com^$3p 864 | ||pexi.nl^$3p 865 | ||pgs.io^$3p 866 | ||pixlee.com^$3p 867 | ||placed.com^$3p 868 | ||popt.in^$3p 869 | ||postrelease.com^$3p 870 | ||prdredir.com^$3p 871 | ||pressekompass.net^$3p 872 | ||pro-market.net^$3p 873 | ||pub.network^$3p 874 | ||pubmine.com^$3p 875 | ||pubnation.com^$3p 876 | ||purechat.com^$3p 877 | ||pushnami.com^$3p 878 | ||pxf.io^$3p 879 | ||qiyukf.com^$3p 880 | ||qualtrics.com^$3p 881 | ||quantcast.com^$3p 882 | ||quitzon.net^$3p 883 | ||realsrv.com^$3p 884 | ||reichelcormier.bid^$3p 885 | ||revjet.com^$3p 886 | ||richrelevance.com^$3p 887 | ||riotgames.com^$3p 888 | ||riskified.com^$3p 889 | ||robinhq.com^$3p 890 | ||route-fifty.com^$3p 891 | ||roymorgan.com^$3p 892 | ||rtbsuperhub.com^$3p 893 | ||rtmark.net^$3p 894 | ||rubiconproject.com^$3p 895 | ||rumble.com^$3p 896 | ||rumiview.com^$3p 897 | ||salesloft.com^$3p 898 | ||samba.tv^$3p 899 | ||sanjagh.com^$3p 900 | ||sascdn.com^$3p 901 | ||scatec.io^$3p 902 | ||scrippsdigital.com^$3p 903 | ||secondstreetapp.com^$3p 904 | ||sekindo.com^$3p 905 | ||serverbid.com^$3p 906 | ||serving-sys.com^$3p 907 | ||singular.net^$3p 908 | ||sitelock.com^$3p 909 | ||skimresources.com^$3p 910 | ||skplanet.com^$3p 911 | ||sleeknote.com^$3p 912 | ||slgnt.eu^$3p 913 | ||smaato.net^$3p 914 | ||smartadserver.com^$3p 915 | ||snplow.net^$3p 916 | ||snssdk.com^$3p 917 | ||so.com^$3p 918 | ||sobot.com^$3p 919 | ||sohu.com^$3p 920 | ||sphereup.com^$3p 921 | ||spiceworks.com^$3p 922 | ||spokenlayer.com^$3p 923 | ||sportradarserving.com^$3p 924 | ||spotxchange.com^$3p 925 | ||springserve.com^$3p 926 | ||stickyadstv.com^$3p 927 | ||stripchat.com^$3p 928 | ||sumologic.com^$3p 929 | ||sundaysky.com^$3p 930 | ||survata.com^$3p 931 | ||tagboard.com^$3p 932 | ||talkable.com^$3p 933 | ||taobao.com^$3p 934 | ||taptapnetworks.com^$3p 935 | ||tavoos.net^$3p 936 | ||teads.tv^$3p 937 | ||technoratimedia.com^$3p 938 | ||tend-table.com^$3p 939 | ||terminus.services^$3p 940 | ||tidaltv.com^$3p 941 | ||toast.com^$3p 942 | ||trackersimulator.org^$3p 943 | ||travelaudience.com^$3p 944 | ||tremorhub.com^$3p 945 | ||trendmd.com^$3p 946 | ||tribalfusion.com^$3p 947 | ||truefitcorp.com^$3p 948 | ||trueleadid.com^$3p 949 | ||trustedsite.com^$3p 950 | ||trvl-px.com^$3p 951 | ||trwl1.com^$3p 952 | ||tvadsync.com^$3p 953 | ||twinrdsrv.com^$3p 954 | ||udmserve.net^$3p 955 | ||unbxdapi.com^$3p 956 | ||unityads.unity3d.com^$3p 957 | ||unrulymedia.com^$3p 958 | ||usergram.info^$3p 959 | ||uservoice.com^$3p 960 | ||venatusmedia.com^$3p 961 | ||videohub.tv^$3p 962 | ||vidio.com^$3p 963 | ||vidoomy.com^$3p 964 | ||vindicosuite.com^$3p 965 | ||viralize.tv^$3p 966 | ||vrtcal.com^$3p 967 | ||webcontentassessor.com^$3p 968 | ||webterren.com^$3p 969 | ||webvisor.org^$3p 970 | ||weibo.com^$3p 971 | ||wisokykulas.bid^$3p 972 | ||wpmudev.com^$3p 973 | ||wsod.com^$3p 974 | ||wusa9.com^$3p 975 | ||xad.com^$3p 976 | ||xxxjmp.com^$3p 977 | ||yandex.com^$3p 978 | ||yieldlab.net^$3p 979 | ||yieldoptimizer.com^$3p 980 | ||yunaq.com^$3p 981 | ||zaius.com^$3p 982 | ||zergnet.com^$3p 983 | ||zeronaught.com^$3p 984 | ||zg-api.com^$3p 985 | 986 | !#include antipaywall_filters_without_element_hiding.txt 987 | !#include click2load.txt 988 | -------------------------------------------------------------------------------- /youtube_clear_view.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Title: 📺 YouTube Clear View 3 | ! Description: Clean up YouTube clutter 4 | ! Homepage: https://github.com/yokoffing/filterlists 5 | ! Expires: 4 days (update frequency) 6 | ! Version: 16 March 2024 7 | ! Syntax: AdBlock 8 | 9 | ! Hide the text label of the dislike/share/download/report/save buttons 10 | ! new format June 2023 11 | www.youtube.com###actions.ytd-watch-metadata button > div[class$="text-content"]:not(:has-text(/[\d]/)) 12 | www.youtube.com###actions.ytd-watch-metadata ytd-button-renderer .yt-spec-button-shape-next .yt-spec-button-shape-next--button-text-content 13 | www.youtube.com###actions.ytd-watch-metadata ytd-button-renderer .yt-spec-button-shape-next__icon:style(margin-right: -6px !important; margin-left: -6px !important;) 14 | m.youtube.com##ytm-slim-video-action-bar-renderer button [class*="button-text-content"]:not(:has-text(/\d/)) 15 | m.youtube.com##ytm-slim-video-action-bar-renderer ytm-button-renderer div[class$="icon"]:style(margin-right: -6px !important; margin-left: -6px !important;) 16 | 17 | ! Hide chat window when viewing streams 18 | www.youtube.com###chat:remove() 19 | 20 | ! Hide "Shorts remixing this video" shelf in the description 21 | www.youtube.com##ytd-reel-shelf-renderer 22 | 23 | ! Don't enter / exit fullscreen on double-click 24 | www.youtube.com##+js(aeld, dblclick) 25 | 26 | ! Hide Youtube mixes and radios 27 | www.youtube.com##ytd-browse ytd-rich-item-renderer:has(#video-title-link[href*="&start_radio=1"]) 28 | www.youtube.com##ytd-search ytd-radio-renderer 29 | www.youtube.com##ytd-watch-next-secondary-results-renderer ytd-compact-radio-renderer 30 | www.youtube.com##ytd-player div.videowall-endscreen a[data-is-list=true] 31 | 32 | ! Hide View Products 33 | www.youtube.com##.ytp-suggested-action-badge-expanded 34 | 35 | ! Hide Includes paid promotion 36 | www.youtube.com##.ytp-paid-content-overlay 37 | 38 | ! Hide upcoming Youtube videos 39 | www.youtube.com##ytd-browse ytd-grid-video-renderer:has(ytd-thumbnail-overlay-time-status-renderer[overlay-style="UPCOMING"]) 40 | www.youtube.com##ytd-browse ytd-rich-item-renderer:has(ytd-thumbnail-overlay-time-status-renderer[overlay-style="UPCOMING"]) 41 | www.youtube.com##ytd-browse[page-subtype="subscriptions"] ytd-video-renderer ytd-thumbnail-overlay-time-status-renderer[overlay-style="UPCOMING"]:upward(ytd-item-section-renderer) 42 | 43 | ! Brand image in the corner 44 | youtube.com##.ytp-button.branding-img-container 45 | 46 | ! Hide "1080p Premium" in the video quality menu 47 | !#if env_firefox 48 | youtube.com##.ytp-quality-menu .ytp-premium-label:upward(.ytp-menuitem) 49 | !#endif 50 | !#if env_chromium 51 | youtube.com##.ytp-quality-menu .ytp-menuitem:has(.ytp-premium-label) 52 | !#endif 53 | 54 | ! Hide horizontal scrollbar. This is only shown on Firefox (version 86 and above) 55 | ! https://github.com/yokoffing/filterlists/pull/109 56 | ! https://github.com/yokoffing/filterlists/pull/112 57 | !#if env_firefox 58 | www.youtube.com##ytd-app:style(--ytd-app-fullerscreen-scrollbar-width: -1px !important;) 59 | !#endif 60 | 61 | ! Hide Verified checkmark 62 | ! https://github.com/yokoffing/filterlists/pull/110 63 | www.youtube.com##.ytd-badge-supported-renderer.style-scope.badge-style-type-verified.badge 64 | www.youtube.com##.ytd-comment-renderer #author-text:remove-attr(hidden) 65 | www.youtube.com##.ytd-comment-renderer #author-comment-badge 66 | 67 | ! Hide badges (such as "New") under video recommendations on the sidebar 68 | ! https://github.com/yokoffing/filterlists/pull/114 69 | www.youtube.com##ytd-video-meta-block + ytd-badge-supported-renderer 70 | 71 | ! Hide "smartimation" animations 72 | ! Hide the rainbow-colored border animation around the subscribe button 73 | ! https://github.com/yokoffing/filterlists/pull/117 74 | www.youtube.com##yt-smartimation > *:not(.smartimation__content) 75 | 76 | ! Prevent stats from live-updating 77 | ! https://github.com/yokoffing/filterlists/pull/113 78 | ||youtube.com/youtubei/v1/updated_metadata 79 | 80 | ! Hide the hashtags above the video title 81 | www.youtube.com###description #info a[href^="/hashtag/"] 82 | www.youtube.com###super-title 83 | www.youtube.com##.super-title 84 | m.youtube.com##.standalone-collection-badge a[href^="/hashtag/"] 85 | m.youtube.com##ytm-video-description-header-renderer button-view-model a[href^="/hashtag/"] 86 | 87 | ! Hide the copyright notice in the video description 88 | www.youtube.com###description .ytd-watch-metadata #items:has(.ytd-video-description-music-section-renderer) 89 | m.youtube.com##ytm-video-description-music-section-renderer 90 | 91 | !!! OPTIONAL 92 | ! Add to your personal filters and remove ! to activate 93 | 94 | ! Hide recommendation sidebar 95 | !www.youtube.com##ytd-watch-next-secondary-results-renderer.ytd-watch-flexy.style-scope 96 | 97 | ! source: https://www.reddit.com/r/uBlockOrigin/comments/1bfv50f/what_is_the_difference/ 98 | ! Video Overlay - annotations 99 | !||www.youtube.com/s/player/*/player_ias.vflset/*/annotations_module.js$script 100 | ! Video Overlay - endscreen 101 | !||www.youtube.com/s/player/*/player_ias.vflset/*/endscreen.js^$script 102 | --------------------------------------------------------------------------------