From dd4afd258567a929edaf84a2b367912d4defbba1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 9 Nov 2024 10:08:49 +0800 Subject: [PATCH] Initial commit on new_branch --- .github/ISSUE_TEMPLATE/--------.md | 15 + .github/ISSUE_TEMPLATE/-------.md | 15 + .github/ISSUE_TEMPLATE/---.md | 19 + .github/workflows/greetings.yml | 20 + .github/workflows/new.yml | 59 + .gitignore | 12 + LICENSE | 674 + README.md | 65 + adblock.txt | 23660 ++++ adblock_lite.txt | 21143 +++ adblock_plus.txt | 180840 ++++++++++++++++++++++++++ adblock_privacy.txt | 127904 ++++++++++++++++++ scripts/dev/blacklist.txt | 6 + scripts/dev/whitelist.txt | 6 + scripts/lib/data_record.txt | 10 + scripts/lib/metadata.txt | 22 + scripts/raw/mobile.txt | 4 + scripts/raw/raw.txt | 8 + scripts/raw/whitelist.txt | 3 + scripts/tools/adblock.py | 155 + scripts/tools/raw_download.py | 58 + 21 files changed, 354698 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/--------.md create mode 100644 .github/ISSUE_TEMPLATE/-------.md create mode 100644 .github/ISSUE_TEMPLATE/---.md create mode 100644 .github/workflows/greetings.yml create mode 100644 .github/workflows/new.yml create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 adblock.txt create mode 100644 adblock_lite.txt create mode 100644 adblock_plus.txt create mode 100644 adblock_privacy.txt create mode 100644 scripts/dev/blacklist.txt create mode 100644 scripts/dev/whitelist.txt create mode 100644 scripts/lib/data_record.txt create mode 100644 scripts/lib/metadata.txt create mode 100644 scripts/raw/mobile.txt create mode 100644 scripts/raw/raw.txt create mode 100644 scripts/raw/whitelist.txt create mode 100644 scripts/tools/adblock.py create mode 100644 scripts/tools/raw_download.py diff --git a/.github/ISSUE_TEMPLATE/--------.md b/.github/ISSUE_TEMPLATE/--------.md new file mode 100644 index 00000000..690015b1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/--------.md @@ -0,0 +1,15 @@ +--- +name: "[新增隐私拦截]" +about: 我发现了未拦截的隐私追踪 +title: "[新增隐私拦截]" +labels: '' +assignees: '' + +--- + +域名: +过滤规则: +出现场景: +补充说明: +发生时间: 年 月 日 +使用的列表版本: (如2020082701) diff --git a/.github/ISSUE_TEMPLATE/-------.md b/.github/ISSUE_TEMPLATE/-------.md new file mode 100644 index 00000000..e5f1104f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/-------.md @@ -0,0 +1,15 @@ +--- +name: "[报告误拦截]" +about: 规则错误的拦截导致网页加载失败 +title: "[误杀]" +labels: bug, wontfix +assignees: uniartisan + +--- + +域名: +发生时间: 年 月 日 +使用的列表: (adblock_lite/basic/plus/privacy) +使用的列表版本: (如2020082701) +浏览器及广告过滤插件: +问题描述: diff --git a/.github/ISSUE_TEMPLATE/---.md b/.github/ISSUE_TEMPLATE/---.md new file mode 100644 index 00000000..d75acc0a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---.md @@ -0,0 +1,19 @@ +--- +name: "[新增广告拦截]" +about: 我发现了未拦截的浏览广告 +title: "[新增广告拦截]" +labels: +assignees: + +--- + +域名: +发生时间: 年 月 日 +使用的列表: (adblock_lite/basic/plus) +使用的列表版本: (如2020082701) +浏览器及广告过滤插件: +问题描述: + + + +注意: 如果您使用的是 adblock_basic 列表,您应该先尝试使用 adblock_plus,adblock_basic 是主要面向于中文(尤其是指中国境内)网站而制作的过滤列表。 \ No newline at end of file diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 00000000..4d43ca52 --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,20 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.PRIVATE_TOKEN }} + + pr-message: | + Hello @${{ github.actor }}, thank you for submitting a PR! To allow your work to be integrated as seamlessly as possible, we advise you to: + - Verify your PR is **up-to-date with origin/master. + - Please check out our contributing guidelines. + + + issue-message: | + Hello @${{ github.actor }}, thank you for your interest in our work! It’s people like you who make our work better! diff --git a/.github/workflows/new.yml b/.github/workflows/new.yml new file mode 100644 index 00000000..8611a559 --- /dev/null +++ b/.github/workflows/new.yml @@ -0,0 +1,59 @@ +name: Automatic Commit + +on: + # push推送时触发 + push: + branches: + - master + # 定时任务触发 + schedule: + # 每天北京时间1点运行 + - cron: '0 1 * * *' + workflow_dispatch: + +jobs: + build: + + runs-on: ubuntu-latest + + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup + uses: actions/setup-python@v5 + with: + python-version: '3.x' + - run: pip install requests wget + + - name: Clear old files + env: + TZ: Asia/Shanghai + run: | + git config --local user.email "github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git checkout --orphan new_branch + git commit -m "Initial commit on new_branch" + git branch -D master + git branch -m new_branch master + git push --set-upstream origin master -f + + + - name: Update + run: python ./scripts/tools/adblock.py + + - name: Commit + env: + TZ: Asia/Shanghai + run: | + git add -A + git commit -m \ + ":pencil: Update at \ + $(date +"%Y-%m-%d %H:%M") \ + " + + - name: Push + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.PRIVATE_TOKEN }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..e2c0b694 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ + +.vscode/launch.json +.ssh/id_rsa +*.pub +.bashrc +.bash_history +.gitconfig +.profile +.ssh/known_hosts +.wget-hsts +scripts/tools/__pycache__/*.pyc +.vscode/settings.json diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..f288702d --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/README.md b/README.md new file mode 100644 index 00000000..aa4032b4 --- /dev/null +++ b/README.md @@ -0,0 +1,65 @@ +# adblock_list +**一个订阅,拦截所有** +## 说明 + +这是针对中文区的广告过滤列表,实现了精准的广告屏蔽。 + +我们的原则是:**减少误杀** + +### 订阅 +| 列表 | raw | jsDelivr | iQDNS | Gitea by uniartisan | +| -------------------------------- |:------------------: | ---------------- |--------------------------------------------- |--------------------------------------------- | +| `adblock-basic` | [link](https://raw.githubusercontent.com/uniartisan/adblock_list/master/adblock.txt) | [link](https://cdn.jsdelivr.net/gh/uniartisan/adblock_list/adblock.txt) | [link](https://raw.iqiq.io/uniartisan/adblock_list/master/adblock.txt) |[link](https://code.uniartisan.com:8433/MirrorHub/adblock_list/raw/branch/master/adblock.txt) | +| `adblock-lite` | [link](https://raw.githubusercontent.com/uniartisan/adblock_list/master/adblock_lite.txt) | [link](https://cdn.jsdelivr.net/gh/uniartisan/adblock_list/adblock_lite.txt) | [link](https://raw.iqiq.io/uniartisan/adblock_list/master/adblock_lite.txt) |[link](https://code.uniartisan.com:8433/MirrorHub/adblock_list/raw/branch/master/adblock_lite.txt) | +| `adblock-plus` | [link](https://raw.githubusercontent.com/uniartisan/adblock_list/master/adblock_plus.txt) | [link](https://cdn.jsdelivr.net/gh/uniartisan/adblock_list/adblock_plus.txt) | [link](https://raw.iqiq.io/uniartisan/adblock_list/master/adblock_plus.txt) |[link](https://code.uniartisan.com:8433/MirrorHub/adblock_list/raw/branch/master/adblock_plus.txt) | +| `adblock-privacy` | [link](https://raw.githubusercontent.com/uniartisan/adblock_list/master/adblock_privacy.txt) | [link](https://cdn.jsdelivr.net/gh/uniartisan/adblock_list/adblock_privacy.txt) | [link](https://raw.iqiq.io/uniartisan/adblock_list/master/adblock_privacy.txt) |[link](https://code.uniartisan.com:8433/MirrorHub/adblock_list/raw/branch/master/adblock_privacy.txt) + + +- **Adblock-basic** - 快速、极致的去广告体验 + +- **Adblock-lite** - 针对移动设备的专用规则 + +- **Adblock-plus** - 广告,当然一个也不要放过 + +- **Adblock-privacy** - 你的隐私,在你的手里 + +#### 说明 +- adblock_basic 是主要面向于中文(尤其是指中国境内)网站而制作的过滤列表。 +- adblock_lite 是面向于中文网站(同上)且针对移动设备优化的过滤列表。 +- adblock_plus 是针对于中文及绝大部分常用网站的过滤列表,提供了高质量的去广告服务。 +- adblock_privacy 阻止互联网常见的隐私跟踪,日志搜集器。 + +*注意: 如果您使用的是 adblock_base 列表并发现有未过滤广告,您应该先尝试使用 adblock_plus 并复现结果。* + +## 规则来源 +**上游规则和自己的补充规则** +### 感谢 +- [Adblock Plus](https://adblockplus.org/) - 畅游清爽洁净的网络! +- [Adguard](https://adguard.com/) - 世界上最高级的广告拦截程序! +- [cjx82630/cjxlist](https://github.com/cjx82630/cjxlist) - Adblock Plus EasyList Lite与CJX's Annoyance List +- [iQDNS](https://www.v2ex.com/t/785666) - iQDNS 是 一个纯净的像少女一般的 DNS 服务。 +- [jsDelivr](https://www.jsdelivr.com/) - A free, fast, and reliable CDN for open source +## 参与贡献 +本项目分为上游列表和补充列表,如果您想要参与我们,您可以 Fork、Pull request。 +1. **如何参与贡献?** + +项目的 dev 文件夹中分别有黑名单和白名单,您可以修改他们并提交,提交要注明广告的复现流程。 + +2. **上游列表有误** + +反馈英文网站或 EasyLis t或 EasyPrivacy 或 Fanboy's Social Blocking List的问题:请将网址发到 easylist.subscription@gmail.com 并英文描述 + +反馈非中英文网站的问题:请查看对应的语言列表 + +https://adblockplus.org/zh_CN/subscriptions + +3. **如何提问?** + +[提问的艺术(中文版)](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/master/README-zh_CN.md) + +**请注意,提供此翻译的个人及组织不对本项目负责** + + +## Star History + +[![Star History Chart](https://api.star-history.com/svg?repos=uniartisan/adblock_list&type=Timeline)](https://star-history.com/#uniartisan/adblock_list&Timeline) diff --git a/adblock.txt b/adblock.txt new file mode 100644 index 00000000..81deac63 --- /dev/null +++ b/adblock.txt @@ -0,0 +1,23660 @@ +[uniartisan's Adblock List] +! Version: 202411080220 +! Title: uniartisan's Adblock List +! Expires: 1 days (update frequency) +! URL = https://github.com/uniartisan/adblock_list +! Length = 23654 +||pviasld.icu^ +||banma.com/get_ad/ +eprice.com.tw##.ad-320x100 +##a[href^="/dasp.php?a="] +||daweijita.com/2014/08/ad_head +||sxrb.com/front/stat/ +kwongwah.com.my##.kp-adv-widget +cjjjs.com,cnblogs.com,fastadmin.net,ziqiangxuetang.com##a[href^="https://promotion.aliyun.com/"] +||btfzbak.xyz^ +/statics/recommend/bense.gif +.icu/ads/ +##.player-info > .recommend-two.recommend-list +||zfcoin.cn^ +||eyny.com/data/cache/js_show_ads.js +||dingdangsheji.com^*/%E7%94%BB%E6%9D%BF- +douyu.com##.row-4.theatre +||mvcat.com/wx/follow.js +baidu.com###u1 > div.guide-info:last-child +www.sogou.com##.tgad-box + div +||ajghca.xyz^ +||3dmax8.com/jiaoche +||jingwuhotel.com/static/xbiquge +||evbrkhz.xyz^ +axjbt.com,avcao.cc#%#//scriptlet('abort-on-property-read', 'myclick') +yeeyi.com##.js_handle_right +||stat.game.yy.com^ +douyu.com##.layout-Main > section.layout-Customize +xianzhenyuan.cn##a[href*=".tmall.com"]:not(#xztba) +||fgnfpnae.icu^ +||gessdashb6.fun^ +gamicsoft.com##A[onclick*="'Advertisement"] + .absolute +jianshu.com##div[aria-label="amc-ad"] +yzpsb.net###fc_foot +||aixiaofan.cn/content/uploadfile/tpl_options//Ad_list_ +||n0399.com^ +rrys2020.com###indexNav1 +zhihu.com##.HitQrcode +/guangg/* +bjx.com.cn##.layer_right2 +itmo.com##.aside-game-icon-box +2345.com##.adMainBg +/moneymaker/js/kppp.js +||xiaoshuoyun.cn^ +||gansudaily.com.cn/2017zt/images/*gg +||qzsvwo.xyz^ +win007.com##td[height="18"][bgcolor="#FFFFE8"] +ctanet.cn##a[href*="/GoTo.asp?ID="] > img +||78land.com/js/fumeiti.js +||ogidskik.top^ +###hj-right-aside[style="float: right;"] +/gwunggou/* +||ithome.com/images/hongbao/ +||1f84e33459.com^ +uuzzw.com##.xgtj-recom +114la.com##.corner +||2345.com/duoteimg/img/*_ad_ +||syshwc.xyz^ +||jiemian.com/static/jmw/js/adBase_ +||bkxuprh.cn^ +forusex.com##a[href^="http://redheartnext.com"] > img +||douban.com/view/dale-online/dale_ad +||houstonbbs.com/data/ad/ +imgse.com##.ad-banner +||static.rongkao.com^ +huya.com##a[class^="Ad--"] +ifeng.com##div[class^="index_top_box_"] +||cadke.xyz^ +||titan007.com/images/item.gif +||jusha.com^$third-party +19lou.com##.pop-ad +51credit.com,hkepc.com##tbody[id^="normalthread_"] + tbody:not([id]) +||baidu.com/api/wikiad/ +||ccav5.com/static/js/floatImgAd.js +||pincai.com/js/pubuliu. +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.firework-wrap +youku.com##.src_adwrap +||fjhrq.xyz^ +||x0y081e.xyz^ +getrelax.cc#$?##main_content > .grid-boxes-in:has(> iframe[src^="//adserver.juicyads.com/"]) { remove: true; } +||frame.enet.com.cn/a.php +###bfad4 +meijumi.net##.widget_metaslider_widget +hktvyb.com##.myui-content__operate > a.btn-warm +||usmgoxe.cn^ +ilxdh.com##.double-eleven-container +###snActive-wrap +||xfqynrp.cn^ +||10000xing.cn/images/we +###header > a[target="_blank"] > img[style="width:100%;height:60px;margin-bottom:2px;"] +||oewrutk.top^ +||srtb.msn.cn^ +jd.com###m_common_tip +||ifengimg.com/a/*/core201 +rfidworld.com.cn##.rfidADClass +##a[href*=":7888/?register="] +/c.js#pid=$script,third-party +feng.com##.header +m.mydrivers.com###content > .bb +||gedashb112.fun^ +||zjjlhvo.xyz^ +||eccn.com/js/popupad_ +baidu.com#?#.c-gap-bottom-small:-abp-has(>a>div>div[class^="jr-stock-open-account-"]) +||alwaysc.com^ +/lenovo/pc/all*.js +||dw.xcar.com.cn^*.gif? +/ad/article_ +3g.qq.com###omgad-wechat-bigpic +.icu/*_*_rony.js +@@||news.u17i.com/advert/ +||kyemwo.xyz^ +||wfijsc.xyz^ +||51cto.com/js/activity_pop.js +||img.mikudm.net/img01/MP3/GG/20240415_CPS_960X75_general.gif +olgame.tw##.nex_mid_ads +bbs.xmfish.com##.cmp_v +sosg.net###postlist + .cc +3987.com##.showdown > .mt20:first-child +||0573fang.com/ads/ +||prtfpl.xyz^ +eol.cn,firefoxchina.cn,site.baidu.com##.popup +||ywhws.cn^ +###right_couple +/5ixcmbwj/js/ad.js +youxi.kugou.com###scrollUp +||iqiyi.com/common/*/cupid/ +||ky891.oss-*.aliyuncs.com^ +www.wenxuecity.com##.col > ul:not([id]) > li > a[href^="http"]:not([href*=".wenxuecity."]) +.co/ads/ +speedtest.cn##.pub-ad +||goodcome.com.tw/block/ad/rndtopad.php +500.com##.tz_pai +applefans.today#$#body { overflow: auto !important; } +$script,third-party,domain=colamanga.com +||dxrnksm.xyz^ +||pjdthz.xyz^ +||singtao.ca/editions/affiliate_ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=news.tvb.com +timedg.com##.crossAdvertise2 +||qsptv.com/tpl/newstyle/js/extension.js +aaaweb.cn##a[href$=".yhzu.cn"] +china.com.cn###baidu +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_right > div[id][data-click^="\7b \"fm"] +cool3c.com##.sticky-inner > [class="board board-side board-cool3c-homepage-TR300X250 board-new clearfix"][data-board="cool3c-homepage-TR300X250"] +-1316632262.cos. +firefoxchina.cn,hao123.com,muzhi.baidu.com##.bottom-banner +@@||smsonline.cloud^$generichide +||qiyipic.com/common/fix/wh-leftbanner.jpg +||jiangyahuid.top^ +||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ +||dwerzv.xyz^ +||api.bilibili.com/x/ad/ +/cpm/i.ashx? +cnlinfo.net##.guanggao-left +||ypkxka.xyz^ +||dpzplb.xyz^ +||dd6364.com/js/777/ +baidu.com##.spage-couplet-container +qq.com,sogou.com##div[class^="page-top-banner"] +wenku.baidu.com##div[class*="tiger-"][class*="-dialog"] +/ads-arc. +||c1.china.cn^ +||havttn.xyz^ +##.a_2mu +||24w0p.com^ +||pl520.com^$third-party +||9938.net/video/tvg/hot.js +baidu.com##.corneradv +kk665403.pixnet.net###Adsense +/468_60. +||img3.126.net^ +@@/advertisement.js$domain=gimhoy.com +/mobile-ad. +/Runtime/js/banner_ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###local_pb_top +itdog.cn##.div-top > .row > div[class] +||sotunet.com^ +://affiliate.$third-party +/wxhfm.html?cid= +||kankanwu.com/xuxu/ +||bcebos.com/ad/ +||bbsbaba.com/js/1.js +wantgoo.com##.adsbox +dl.pconline.com.cn##.links > p:not([class]) +/portalwlanad/pages/*$popup +dmxq1.com##.content > div[id] > a[id][target="_blank"] > img +||m.shushu8.com/js/tongji.js? +||ekykse.xyz^ +||5888.tv/Js/topBanner.js +||3625ggtp1.com^ +||mh3666.com^*.jsonp +/adsystem/* +yahoo.com###crazyAD +||r3sub.com/posters/0069810.jpg +airav.cc###Panel_GambleZone + .Hide_For_JP_AND_EN +iplaysoft.com##div[style="background:#fcf0ef;width:680px;height:130px;border-radius:8px;margin-top:28px;position:relative"] +###piao_div_0[style*="width:140px;"] +nownews.com##div[class^="ad-blk"] +hjenglish.com###regscrollcontainer +gamer.com.tw###BH-bigbanner +||eastday.com^$subdocument,~third-party +||jxdown.com^$third-party +||ruian.com/img/2016/a1-6-1.gif +||huancaicp.com/?pid=$popup +msn.com##div[data--adqjyluqt] +||xvilxdv.cn^ +myqqjd.com,cnprint.org,ez3c.tw,easylife.tw##.adsbygoogle +/ksks_*_*_*.js?$script,third-party +||caohv.com/mm/ +avmimi.com###ArticlesEx_box +2345.com##.chc-dzoem +||ytvrtrya.xyz^ +||zlvlciv.xyz^ +||2ccc.com/images/aobi.gif +jq.131458.com##.soso_02 +||zsjxwj.com^ +||8mg050.n3cdn1.secureserver.net^*/960 +||fwwang.cn/templets/fw/js/art +||zlyk.com/Runtime/Js/m_nav_bottom.js +||3boys2girls.com/newfile/image2010/banner_housead_ +||msstatic.com/huya/main3/widget/roomGg +||baidu.com/smalllog/ +xbeibeix.com#%#//scriptlet('prevent-setTimeout', '/\.height\(\) == 0|adsbygoogle/') +iqiyi.com##.hwLink +portablesoft.org##.sidebar-widget:first-child +||sjks88.com/templets/default/js/mydata4.js +||bedzbu.xyz^ +||sese277.info/photo/ +||jofknbpe.xyz^ +ilxdh.com##.show-container +##div[class][id][style] > .pic_container +||kak17p.xyz^ +pc.yiyouliao.com##.yyl-weiruan-ads-swiper +tigtag.com##.couplet_r +10jqka.com.cn##.top-ad-box +@@||av4u.info/source/plugin/unadblock^ +mse.360.cn##a[id^="banner"] +@@||uu.res.netease.com/pc/zt/*/img/ad_ +xbiquwx.la##.box_con > div[style="margin:10px auto;width: 930px;height: 250px;"] +||jmydm.com/jspage/ftt.js +kissjojo99.com###text-16 +||qu96.com^ +##.postmessage > #googleSecond +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.1.commercial.title', '') +/frm_adv.aspx +||205.209.138.102^ +||hujiang.com/ciku/getLesson +buy.ccb.com#@##top_ad +||s.rmimg.com/*.gif|$domain=nodeloc.com +/dzwww/ad_dzw_inner.js +||tangrenjie.tv/gg/ +lalulalu.com###overture_main_banner +ifoodie.tw##.ad-right-column-desktop +||zx123.cn/templates/zx123cs/theme-2015/js/right_xh.js +zhongziso.com##div[style="width:100%;height:100%;position:fixed;top:0"] +##.pro-molnk +||ydv7k.cyou^ +unikoshardware.com##.theiaStickySidebar a[href^="https://bit.ly/"] +eastday.com##.left-suspension +toolfk.com##wavy + div[style] +pujia8.com##.ad740 +91duba.com,iduba.com##.jq_notice +||rqnefp.xyz^ +baidu.com##.ec-oad +olevod.com##.B1L +jdyou.com###contentSlide +##.hd-adv +100ec.cn##.detail_top_ad +##.adsense160 +||prtadf.xyz^ +||du1.bbdj.com^ +/module/adsview/* +storm.mg#@#.social_btn +||bujz.top^ +3464.com##.CommonBody > .CommonListArea:nth-child(3) +||rdsgick.icu^ +||gjnbf.com^ +423down.com##span > a > b +||bdstatic.com/player/t/j/AEoIJIPB.js +baidu.com##.commentEmbed-backHomeCard +@@||regapi.37.com/api/p_register.php?login_account= +||mytanwan.com^$third-party +##.ad-left-down +||jxnews.com.cn^*_ad_ +tumutanzi.com###text-3 +52wubi.com##.top960 +||bplrpf.xyz^ +csdn.net##a[href="//gitbook.cn/new/gitchat/activity?utm_source=csdnblog1"] +qq.com##.main_ad_bottom +naifei.im##.tg_w +||vdggsd008.com^ +zhijia.com###QPhiddenLayer +||zhrrzug.xyz^ +||cdncg.com^*/Aepku +||guokr.com/baidu-cbjs/ +||wnacg.*/themes/weitu/images/0 +linuxidc.com##.linux801 +.blog/ads/ +c114.com.cn###ad_r1 +||bowoprf.icu^ +||itavcn.com/pic/news/201802/20180207/image/050N2.gif +||nxledn.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecom-result +||2500sz.com/site/ +||mvxz.com/bar3.js +2345.com###J_gul_yg + .mod +||bghebf.xyz^ +||zrblog.net/zanzhu/virpus.gif +fmdisk.com##div[style="width: 960px; margin: 0 auto; height:900px; color: #F00; font-size: 14px; text-align:left;"] > p +kocpc.com.tw##.sidebar:nth-child(3) +@@||dlpanda.com^$generichide +fnjiasu.com##.sidebar_download +||prhphla.xyz^ +runningmanzx.com##.guangao +||73652253191.com^$third-party +hackhome.com##.ul_ad +/floatad2. +||fpjjjh.xyz^ +||market.duowan.com^ +iqiyi.com##.gg-r +||dnwx.com/pic_ad/ +dongao.com##div[class^="fu_"] +android-doc.com,apk.tw,chaojizhibo.net,chtoen.com,dizhishengcheng.com,doitwell.tw,epinv.com,ff14angler.com,fxpan.com,haoweichi.com,logi.im,lspdfrcn.com,moa.tw,moe48.com,numberempire.com,playok.com,reh.tw,shenfendaquan.com,vaptcha.com#@#ins.adsbygoogle +hepan.com##.fivead +||yzmcok.xyz^ +iqiyi.com##.kwltp-rightgg +||imawwq.xyz^ +||ggjs.d17.cc^ +||zcpsc.top^ +||ip.ws.126.net^$domain=~fxingw.com +||gdr3.com/us/ +jyacht.com##.hot_reoc_adve +||sgg.southcn.com^ +||xunyugong.xyz/sitejs/xunyugong.js +/zzzz/assets/js/common/discor_list.js +cnfol.com###CjAdvBt +||win007.com/mn/ +iqiyi.com##.adBanner980 +banzou.name###appfu +maxthon.cn##.feast-gift-search +newmobilelife.com###ATS_sticky +||pmnct63.shop^ +###syad3 +||kankantv.*/javascript/thea +||cnki.com.cn/cnki/js/adrightdetail.js +$script,third-party,websocket,domain=52codes.net +||yimg.com/cv/ae/default/*_STATIC-JPEG_ +||609999.xyz^ +.com/js/o.js$domain=qdmm.com|qdwenxue.com|qidian.com +hitime5.com###gg730 +@@||udn.com/mall/images/spacer.gif? +pharmnet.com.cn###img1 +ruanyifeng.com##p[style="text-align:center;font-size: 16px;"] +||ssyy881.com/zz/ +||34iq.com/index +||dilidili.wang/uploads/allimg/171227/1_1520203421.png +playno1.com##.eis_adv2 +||cnmoad.com/wp-content/uploads/*_banner. +baidu.com###fc-left +html-js.com##div[style="margin:10px auto;width:1000px;"] +vx666.com##.async[href^="http"] +5278.cc###list_top_ad +||sdzbcg.com/images/sdfhyl +||haopp02.com/js/ +||chinanews.com/shipin/sptp.xml +||news.fangdaijisuanqi.com^ +||5xdmw.com/tb.jpg +##a[href*=".ssmh"][href*="?u="] +||63ys.com/ggg/ +||windows.net/732d.js +||img.mbalib.com/common/servicesPicture/prom.js +159i.com##div[id^="sidebar"] > :not(form) +idreamx.com#?##threadlisttableid > tbody:not([id]):has(> tr > td > ins.adsbygoogle) +||ahuys.net/sys +@@||85porn.net^$generichide +||cbsi.com.cn/js/mlt.js +||ryrmvd.xyz^ +||e5yx.com^$popup +eprice.com.hk##div[id^="eprice-div-gpt-ad-"] +.nyaa.fun/static/img/*_refesh. +$script,third-party,denyallow=fastlycdn.com|doodcdn.co|intensedebate.com|vixcloud.co|cdn.plyr.io|authkong.com|rsc.cdn77.org|linkvertise.com|fastly.net|statically.io|sharecast.ws|b-cdn.net|bunnycdn.ru|bootstrapcdn.com|cdn.ampproject.org|cloudflare.com|cdn.staticfile.org|disqus.com|disquscdn.com|dmca.com|ebacdn.com|facebook.net|fastlylb.net|fbcdn.net|fluidplayer.com|fontawesome.com|github.io|google.com|googleapis.com|googletagmanager.com|gstatic.com|jquery.com|jsdelivr.net|jwpcdn.com|jwplatform.com|polyfill.io|recaptcha.net|shrink.pe|twitter.com|ulogin.ru|unpkg.com|userapi.com|vidazoo.com|vk.com|yastatic.net|ytimg.com|zencdn.net|youtube.com|cackle.me|googleoptimize.com|vuukle.com|chatango.com|twimg.com|google-analytics.com|hcaptcha.com|raincaptcha.com|media-imdb.com|blogger.com|hwcdn.net|instagram.com|wp.com|fastcomments.com|plyr.io|cloudflare.net|rabbitstream.net|x.com,_____,domain=wap.dmwenku.com|m.wfxs.tw|h.fkxs.net|wap.ishuquge.la|m.91zww.com|592mh.top|dubuxiaoshuo.com|clm410.buzz|bookbl.com|shuku99.com|qiyoudy2.com|1yydstxt178.com|rouman5.com|feijisu20.com|iqb5.org|wap.xkushu.com|spoilertop.com|booktxts.com|bixia33.com|rouwenwu19.com|91porny.com|yznnw.com|vodtw.la|ckplayer.vip|uuread.tw|fengchedmp.com|aeahsck.cc|xiaoshubao.net|69xx03608.xyz|wap.yushuwu.cloud|twbook.cc +||jsdelivr.vip^ +jianhuadaily.com##.alignnone[width="300"] +||ruyig.com/730x76.png +jianshu.com##section[aria-label="jianshu-ad"] +||a.bake818.cn^ +||shbzikj.cn^ +/adscpv/* +##a[href*=":10443/"] > img[src$="gif"] +@@||exoclick.com/iframe.php?idzone=*&size=468x60$domain=porn77.info +90bifen.com##td[bgcolor="#FFFEE0"][height="22"] +ltn.com.tw##div[id^="ad-"] +##.w-full > .banner.el-carousel +||aokkwzg.cn^ +||hao5.net/images/*0- +@@||52zy.com/gg/ +||5dmail.net/image/ORF_1000.gif +m.qu.la#?#ul:-abp-has(> li > a[href*=".bcebos."]) +e10000.cn##.navigate_sty + div +52pk.com###bg_link +||nwxs5.com/js/ +||qq260.com/shout.js +redian.news##._ap_apex_ad[style^="width: 300px"] +sports.qq.com##.topBnaner +@@||szhr.com^*ad +so.com##.placeholder-default +||inhe.*/Uploadfiles/adpublish +||wcd2l.icu^ +@@||shijue.me/advertise/getList? +pconline.com.cn##.blk-img[href^="http://best.pconline."] +||zbcdn.net/__uvjgyw/slb.default.js +||panyh123456.cn^ +wap.zol.com.cn###waitrep +||pxzrlf.xyz^ +||gg163.net/js/gg163ad.js +||tv699.com/AllTemplet/js/ +@@/adview_pic_$domain=bigpixel.cn|fffmo.com|itbaoku.cn|laimanhua.net|lfqie.com|lingjike.com|mahua.com|mati.hk|meiyouad.com|mh160.com|reh.tw|silisili.in|sssam.com|yanyue.cn|zaixianjisuan.com|zgpingshu.com +sogou.com##.bottombar +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###ecl-temai-category +||baidujs.cnys.com^ +##a[href*=".downok.com"] +||rfidworld.com.cn/js/c.html +qq.com##.style_modal-wrap__UnbtS +||jd.com/ddimg/$domain=bimiacg.net +||lovespenhas.com^ +||xxooos.com/mm/ +boylov.xyz,boylove.cc,boyloves.fun###fake_avivid_waterfall_webpush +.com:9120/discor_list.js +qinbing.cn##.left-adv +18-comicfrieren.xyz,18comic.org,18comic.vip##.modal-backdrop +||dnvodcdn.me/fast/*.mp4 +||firefoxchina.cn^*49560. +zzbaike.com##.imglistbg_ad +||m1905.cn/js/afp/m +opdown.com##.cq-recom +||mp4ba.net/static/js/mp4ba.js +bog.ac##.sidebar-url +@@||fangcloud.com^$generichide +||baggvon.icu^ +||msstatic.com/huya/main/img/mc-recom_ +||adt100.com^$third-party +fujieace.com##.single-goods +qinbing.cn##div[class*="gg"] +||u1011.com^ +||5y9nfpes.52pk.com^ +||hgyouxi.net/source/plugin/hgyouxiad/ +||aibing.cc/vip/img/gou.gif +@@||potalapalace.cn/upload/images/advertise/picture/131030000583.jpg +nczsks.com###downyxjs +7k7k.com###player-ad +cnblogs.com##.sidebar-image +ldmnq.com##.dialog-game +@@/advert_$domain=pisen.com.cn|wb.qq.com +baidu.com##.game-adv-fram +||qingkai.com/2009/html/top.htm +||teamjwar.com^ +bt.cn##.left_wrap:nth-child(3) +||jynthelon.com^ +||lianmen1.joyyang.com^ +pianba.tv,pianba.net##.play-btn > a[target="_blank"] +jq22.com##.fdad +||miguyu.com/AD/ +||wzjs1.oss-accelerate.aliyuncs.com^ +||uqydcs.xyz^ +medsci.cn##.adv1201 +kocpc.com.tw##.Zi_ad_ar_O_3 +##a[href*=".pcjx365.com/"] +||adsv.svc.litv.tv/ads?ad_unit=$xmlhttprequest,redirect=noopvast-3.0,important,domain=ani.gamer.com.tw +||swad332.fun^ +/tghr.js$domain=159i.com +kumi.cn##.ad64060Box +||moberg.cn^ +baidu.com##.aside-inner > div[style*="height:"] +://abb.*.js?adv= +||muxingkj.com^$third-party,image +@@||doc110.com^*/ad.css?$stylesheet +agirls.aotter.net##.row > div.col.hidden a[href^="https://supr.one/"] +||bqnxff.xyz^ +||hao123img.com/static/common/js/cpc_ +hao.360.com###pushbar-festival +||heatherssb.com^ +||av6k.com/shop/bann$image +niuacc.com##.masks +||rentiyishu.org/*.js +ifeng.com##.yc_con_r +##.corner-gg +||ali213.net/pubjs/SetScreen +/js/AD_tv.js +ithome.com.tw##.span4:nth-child(8) +51cto.com##.footer_mask +~weibo.com##.con_ad +||9669.com^$script,third-party +7808.cn###float-chat +||m.ysxs8.com/js/content_db.js +||cupfox.app^$third-party +||qq.com/nodeapi/api/ads +||a-m-s.adnonstop.com^ +||hfptbb.cn^ +.com/rmb/palyyoubian.js +||okwan.cn^ +||data.waptime.cn^ +||app2.10090dfs.com^ +888fuq.com##div[class*="-bnslist-"] +zuoyebang.com##div[class^="adCard_"] +||ott.cibntv.net/*/ad/*.ts?ccode=$xmlhttprequest,domain=v.youku.com +||stat.hkwb.net^ +36dm.club,36dm.com,acgsou.com##.clear.text_center +/api/autosda.php +||8en.net^$third-party +||avqdhss.icu^ +jin10.com##.l-main > div > div[class^="jin-"] > .jin-timeline > div[class^="jin-1"] +||goodgupiao.com/skins/default/js/backTop.js +/pic/tgad/* +||abc.colayun.cn^ +baidu.com###left-promotion +@@/adsbox.$domain=long7.qq.com +||1.tecbbs.com^ +42xz.com,aiweibk.com,kuhou.com,pcsoft.com.cn##.gsxz +||dvclhmt.cn^ +@@||googletagmanager.com/gtm.js$domain=asus.com.cn|mamibuy.com.tw|warnermusic.com.tw +bilibili.com##A[href*="cm.bilibili.com"][data-target-url*=".biligame."] + .bili-video-card__info +||sconline.com.tw/top/coolpc_ +||s.union.360.cn^ +bde4.com#%#//scriptlet("adjust-setInterval", "timerAdCountdown", "", "0.02") +eastday.com#@##leftShare +@@||hk01.com^*/ga_trace.js +160.com###w-advertisement +||imedown.info/03.jpg +||jjwxc.net/jjPopup.php +zglww.net##.tool +||fwhhcpj.xyz^ +||4wfe3.icu^ +x6d.com,xiaodao0.com##a[href^="/ad."] +dapengjiaoyu.com##.toUnfold +/Runtime/Js/daohang.js +nobugin.com##.td-a-rec +||mvng.cn^ +3464.com##.CommonBody > .CommonListArea:nth-child(3) + .CommonListArea +kuai8.com##.Ad1 +||bd1.moguvet.com^ +gs.chinanews.com.cn##.div1000_2 + .div980 +||linuxde.net/wp-content/uploads/ad/ +/adjs/* +yaociyuan.bid##.content a[target="_blank"] > img +taizhou.com.cn##.duilian +||5brxi.icu^ +||manymgsgn.com^ +||51bczx.com/js/float.js +dailiantong.com##.appDwn +||scibook.cn/tuiguang. +||adconfer.com^$third-party +||uhmcjdc.icu^ +itbaoku.cn##.col-lg-12[style="padding-left: 0px;padding-top: 15px;padding-bottom: 15px;"] +im286.net###diy110 +.cyou/*_*_an*js?$script,third-party +||dyguo.com/pc/*0.js +||shenguangai.com/upload/img/1683711111. +||baike.com/iframeheightforad. +##img[src*=".qpic.cn"][width="980"][height="80"] +hexun.com###newsPopWin +||zvvlbf.xyz^ +||bolecdn.com/button/txt.js +||666bb777ww.com^ +3boys2girls.com###hotbar +@@||gtimg.cn/qz-proj/wy-pc-v3/static/img/svg/icon-share- +||07dy.cc^ +||bijmz.cn^ +ifeng.com##div[class^="ppx_wrap-"] +||tad.suning.com^ +||1.zhev.com.cn^ +||pzphmkf.xyz^ +.com/tonglan.js +liisex.com###apDiv22 +@@||85tube.com/player/player_ads.html +||dk45h.icu^ +||dfgfdffg.cn^ +||teads.tv^$third-party +||0k7wod.cn^ +@@||ad4.on.cc/web/www/delivery/spc.php +||img301.com^ +twpkinfo.com###div_close_cf +###doyoo_monitor +/hongie-1322507002. +$third-party,xmlhttprequest,domain=subhd.tv|subhdtw.com|xyg688.com|xyg688.xyz|zzzzz688.com +maxthon.cn###mx3-popularization-float +||vpdnjl.xyz^ +||adotone.com^$third-party +.com/dm/bofangxia.js +||ahlife.com/api.php?mod=adv& +fund.eastmoney.com##div[data-url^="//same.eastmoney.com/"] +##.eis_muad +/chinaadclient. +||henghost.com^$third-party +18moe.vip##a[href^="http"]:not([href*="18moe.vip"]) > img[src*="tc.18moe.net"] +||yin1.zgpingshu.com^ +6park.com##div[align="center"][style="background:#fbfeea;min-height:90px;"] +||anyshare.icu^*.js +||0a2b3c4d5e.com^ +jinhua.com.cn##.FocusAD +huaren.live#%#//scriptlet('set-constant', 'ConFig.config.ads', 'emptyObj') +||xiaopi.com/api.php?op=get_p& +~alicdn.com##a > img[width="960"][src*=".alicdn.com/"] +/meinv/js/*_banner.js +||codesocang.com/plus/*baoyue +||kuoizbtl.xyz^ +||tduenkq839.shop^ +baidu.com###bdyx_float_rb +||stat.jc001.cn^ +||szpwf.cn^ +##.rightAd +ithome.com##.rm-modal1-body +||no1.168abc.net/upload/ +://dmhy.gate.*/*.*?$image +bilibili.com##.video-page-game-card +||alypw.com/zb_users/plugin/ZF_tanchuang/ +7k7k.com##.bgLink +@@||google.sn/translate_$media,third-party,xmlhttprequest +50sen.com###box-ads +/gmu-download.oss- +@@||alicdn.com/js/*/xpopup.js +goodcome.com.tw###jad-float +news18a.com##.ina_ad_left +||louimg.com/i/2021/08/17/*.gif +||dv4ku.icu^ +||yylady.cn^ +||brookssa.com^ +||gamme.com.tw/uploads/*?2 +360kuai.com##.bottom_rectangle_gg_outer_box +||abjalrq.cn^ +||guojitv.com/m/ad/ +hf365.com,sina.com.cn,sohu.com##.adA +jingyan.baidu.com##.right-fixed-related-wrap +ifeng.com##.top-tg +||hanjutvn.com/template/alifun/js/Tmall/ +||bdjj.makepolo.net^ +||vmvps.com/aoyohost-com-bann +/640_120_javhd.jpg +##.ad300x250 +mypianku.net##div[style*="background:url"] +/View/img/b72890.jpg +||31vcd.com^*.js +tigtag.com###Home942x70_A1 +||53bk.com/Baokan/Comja/changepic. +3boys2girls.com###overture_ads_long +pxedt.net##.ggtext +##.add-gg +||beareyes.com.cn/2/cat/js/*_centerl +baidu.com##.result-op[tpl="sp_hot_sale"] +mydrivers.com##.baidu_box +||6oja.cc^$domain=9xav.cc +@@||163.com/user/event?id= +||fkxs.net/tops/ +||fcw45.com/js/layer1.js^ +kkj.cn##body > div[style^="width:"][style*="height:"][style*="background-color:"] > a[target="_blank"] > img +||u68t5.icu^ +||img.xixik.net/custom/section/*/banner-$domain=xixik.com +||ys630.com^$third-party +dyttw.com.cn##td[align="center"][valign="middle"][bgcolor="#FFFFFF"] > table[width="1210"] > tbody > tr > td[height="55"] +pupudy.com##.asst-post_header +@@||eden.international/script/ad_banner/ +||ryqgdrh.icu^ +||58cdn.com.cn/ds/zhuangxiu/jzad- +yasem5.com##a[href*="yasem5.com/go"][target="_blank"] +||img.hdsky.me/images/20*.gif +||sd2ua.icu^ +||baidu.com^*/interface/ad? +acgdoge.net,acglala.cc,chinalawedu.com,douyu.com,dzbhdm.net,gmgard.com,hggard.com,iqiyi.com,jinti.com##a[href*=".tmall.com"] +xiadele.com##.yun-advertisement +||bmatgg18.xyz^ +wangfz.com##div[class^="my-ad-"] +||2zzt.com/file/aliyun +dayoo.com###ad-xl +/crazyad. +||fanzhuang.net.cn^$third-party +caoporn.com##.container + #wrapper:not(.container) +||ithome.com/images/huawei.jpg +||toqsxdpx.xyz^ +||xvzvqoq.xyz^ +###haoxinqing_me_img +||imgtg.com^*.gif +lenovo.com.cn##div[id^="ad_bd_"] + .ad-mark +new.qq.com#@##TopAd +hinews.cn##div[id^="hi_gg_"] +youku.com#$?#.swiper-container-horizontal > div.swiper-wrapper > div.swiper-slide:has(a[href*="/tg.602.com/"]) { remove: true; } +/images/friend/*.webp?$domain=pornbest.org|pornlulu.com +auto.qq.com###tips +/jsad/* +123-bt.cn##.sd +||api.nivodz.com/commercial/incr/ +||avividone.likr.tw$third-party +1kkk.com,dm5.com##.guide +||amazonaws.com/s?z= +yatu.tv###a_d1 +||ckqebz.cn^ +##script + #rbbox +||vipdage.com/wp-content/uploads/ad/ +||hdoshbu.top^ +miercn.com##.ad_list +/newAd/* +||ha723.icu^ +||weibo.cn/status/banner? +js0573.com###adv2 +||9kld.com/ad*.html +/\/theme\/js\/[a-z0-9]{5,}\.js\?v=/$domain=novipnoad.com +logi.im##body > div[style^="background: black; position: fixed; "][style*="opacity: 0.5; z-index: 1999;"] +cnblogs.com##.adPopup +sm.cn##.ali_row[ad_aid] +07073.com##.No1 +www.jin10.com##.l-main_body > div[class]:not(.jin-timeline) +||tafuzcxr.xyz^ +||haoxxwang.com^$third-party +||sss777.net/Alove-A/ +||jisuxz.com/180226/downshare +baidu.com###adCard +storm.mg###dablewidget_KoEeAWoB +##a[onclick*="/dasp.php?a="] +##.homepage > .wp-none1 +##.ad-body +||jditera.top^ +||czxvgod.xyz^ +||imxsvpxe.xyz^ +||ivnrrkx.cn^ +76xh.com###divFendDuo +||ganji.com/content.php +://*.z*.xyz/$object,third-party +/main/s? +||xdybwjpa.xyz^ +||sxtnpzd.xyz^ +.buzz/*=$object,third-party +||fkf5.com/public/js/static.js +||douyin.com/api/user/getPcBanner? +weibo.com#?#.card-content > ul > li:-abp-has(>a[action-type="realtimehot_ad"]) +||51tongji.trafficmanager.net^ +/js/bdgg/* +tingroom.com###ifram_563 +win007.com##div[style="padding:6px 0; width:950px; height:45px"] +||gtimg.com/newsapp_ls/0/13971120264/0 +||3344ex.com/js/1playerad.js +51zxw.net###video div[class^="adelement"] +324324.cn##div > script ~ a +163.com##.at_item +bde4.icu#@#a[href*="/entry/register/?i_code="] +mnw.cn##.mnw_685 +||iuou.ysw365.com^ +||xp85.com/common/js/allpage.js +zk001.cc##section[class^="ch"] +||jy07.shop^ +||fq01.shop^ +||ftchinese.com/m/marketing/ +||90oo.com/tp/90280.gif +||m.daomutxt.cc/dist/common.js +||n0211.com^ +||banma.com/statics/scripts/common/dialogAdJs.js +||dragon-guide.net/pic001/hezuo/ +m.mobile01.com##.u-gapNextV--lg.u-height280 +||ghiuge55.fun^ +recruit.com.hk###topBar +/resource/common/tongzhuo/game_info.json +||alicdn.com/img/ibank/*_1623489831. +###bottommob.bottommob +||a.oh100.com^ +||cdcs34.fun^ +eastmoney.com###ListPage_r_Ad +||pfp.sina.net/ea/ad/ +52pk.com##span[style*="gaosu"] +||cosmo100.top^ +||shili.downxia.com^ +||remehealth.net^$third-party +||pengjinvc.top^ +shangyexinzhi.com##.advert +ifenpaidy.com##.post > .div +||wcbghap63.shop^ +sogou.com###emailLogin > div.hd-slider +##.top_ad_ban +159i.com###body > table[width="100%"] +@@||hopto.org/js/prebid-ads. +||doujs08.shop^ +@@||199it.com^$generichide +downbank.cn##.speed-downlist +||ybedus.xyz^ +||grulphaens.com^ +news.mydrivers.com##div[style="width:1000px;padding-top:16px;padding-bottom:12px;"] +cnpingpang.com,jdbbs.com,sxpojie.top##.a_h +||okiterk.top^ +||fgcxdr.cn^ +||centurys.net/promo_ +||eclassified.my/cp_featured +||suibi8.com/aa1.gif +@@||31vcd.com/player/kuyun.js +###aafoot.top_box +||sina.com.cn/litong/ +.xyz:9002/*?x=$websocket,script,third-party +||tt1069.com/t0602.js +zhuzhai.com##.news-details-ad +cnblogs.com##.focus-gg +||mqwmgs.xyz^ +12377.cn###notice +||df63x.xyz^ +gz0668.com##.down_fixed +##.b300 > .h100 > a[href^="http"] +||sacvmb.icu^ +ccav1.com###widget_da +||86uk.com/banners/ +@@||daoju.qq.com/time/*/js/ad/ +||tttppp.oss-cn-guangzhou.aliyuncs.com^ +tmioe.com##.zpgimg +4gamers.com.tw##.interstitial-ads +zuoye.baidu.com,zybang.com###QRinside +@@||4gtv.tv/4gtv/Data/GetAD.ashx +||yx1.managershare.com^ +||ss.ting55.com^ +||s3sng.cn^ +hboav.com#%#//scriptlet("set-constant", "onload", "null") +||bdstatic.com/tb/cms/com/game/couplet_ +||3dmgame.com/static/image/common/pc_tg3dm. +||lnnsvj.xyz^ +-*-*-*-*.as^$script,third-party +||haoxianggou.xyz/?from=$popup,third-party +linkedin.com#?#.core-rail > div > div[id^="ember"]:-abp-has(.feed-shared-actor__sub-description span:-abp-contains(/促銷內容|广告/)) +/js/adv. +mydown.com##.fcGg +pinshan.com##.b_adv +/crifan_com/padaili.png +###comiis_xizi_gg02 +baidu.com###adTitleRight +##a[href*="://4"][href*="/vod."] +kjsv.com###advertisingMap +://s.htkk*.top:$script,third-party +||blog.xuite.net/_public/js/ysmad.js +xgan.cn##.bottom_fixed +||tobyxev.com^ +@@||imfeifan.com/adv/$~third-party +||baj.fanwenzhan.com^ +##.comiis_guanggao_tit +@@||google.es/translate_$media,third-party,xmlhttprequest +ik123.com###aa960a +||abmedia.io/*/pum/ +||dbmp4.com/js/foot. +||loldyttw.com/skin/lol/js/ds.js +cnbeta.com.tw##div[id^="cbh"] +:8081/abc/interurl.jsp? +||bmqulua.icu^ +||dm.huochepiao.com^ +||zongheng.com/upload/hzds/ +||bkill.com/css/js/*top +my0511.com##.MY0511-broadcast +||muntswe58.shop^ +autohome.com.cn###live_rec +baixing.com##.listing-fixed-bottom-promo +cupfox.app##.t-img-box > a[target="_blank"] > img +ifeng.com,qq.com###advert +ptthito.com##.scupio-f +||vreqnait.com^ +||f1.pig66.com^ +||stheadline.com/images/heading-jm +||google-js-01.xyz^ +||mnrrk.com/yuhe/ote/js/pcgg.js +huarenjie.com###LeftAd2 +ilxdh.com##div[style*="1000px"] +filmaker.cn###frame2gS3Ea +/img/q/movie_*.gif +||76fengyun.com/vip.php$popup +||9tata.com/js/pbanner.js +wpjam.com###wpjam_blog_300x250_1 +@@||demo.ama.pub^$generichide +udn.com###ad_curtain +le.com##div[data-type="bottomLayerView"] +naifei.im##div[class^="wp-none"] +danzhaowang.com##.qxzx_scho +||jsdelivr.net/gh/*/1200-60.gif +wiseway.com.cn##.float-kefu +seselah.com###video-ads +/images/masha*.gif +catchv.fooish.com###ad +||xdnice.com/themes/xdnice/public/assets/images/quna.png +localking.com.tw###adbannerurl +||hboav.com/guga/images/$xmlhttprequest,redirect=nooptext +||wholehk.com/atttuop.js +||picpar.com^$domain=18board.com|18p2p.com +||udn.com/common2/iframe/ +club.6parkbbs.com##.body_center:has(> div.adv-6park) +||xnimg.cn^*/liveinc/rightlive.js +hk01.com##div[class^="lg\:min-h-[250px] hidden lg:flex lg:items-center"] +||hitchprivilege.com^ +/sungg/*$domain=sun0769.com +||zhongyoo.com/img/js/tongji.js +cnforex.com###topfocus +##.flash_ad +pornbest.org,ptt.sex##.links.row +shfq.com##.index_banner_ad +/advert/youxi.js +cam4.tw##.hbanner +||bxnxdlb.xyz^ +ye120.com##.fixed_bottom +/wiseatom/banner/pack_ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="game-page-romance"] +##.ad_right_2 +||coolpc.com.tw/img/topweb.html +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.images_game_container +##a[href*="/04816632.com/"] +||91xporn.com/fans/ +52pk.com###baidutop2 +3dmgame.com##.Content_L > p +baidu.com##.bottom-guide +/9115gg/* +##.bus_adsbox +||szpzm.cn^ +creaders.net###guanggao2 +121xz.com###gsxzdz +csdn.net###footerRightAds +easylearn.baidu.com##.feedback-icon +189.cn#@#.adlink +||jsdelivr.net/gh/cloud-files/imgs/adamkoo- +to8to.com##.kgjr-wrap +##[style*="mi-img.com"][style*="calc"] +@@.jpg#$domain=huhupan.com +duowan.com###doc > div[style*="width:998px;height:90px;overflow:hidden;border"] +tw.yahoo.com###discount +||nicelinks.site/ad-block- +##.a_sxpb +aimazu.com##.fixediv +||setn.com/js/advertisement? +/2048/aps/*_pc.js +76xh.com##.index_advertising +taiwanlibrarysearch.herokuapp.com#%#//scriptlet('prevent-fetch', 'www3.doubleclick.net') +||r3sub.com/images/aaa^ +gdmm.com##a[href="http://www.gdmm.com/appdown/"] +hcbbs.com###portal_block_2652 +||chnmoney.com/dfile/ +##.ad728 +||huatmp.icu^ +||baijs06.shop^ +||jauql.top^ +||haolingsheng.com/public/daguzhe.jpg +||cdickef.top^ +@@||423down.com^$generichide +||tu0379199038.cc^ +324324.cn##.gg_sidebar +nanrenwo.net##div[id^="content"] +/c/674_rlt.js +||900.la/imgs/d829d551-1d6e-4018-b3fe-78991bbbe2d6/2016-06-27/yiwmbica.gif +5173.com##.gg_130 +v-wb.youku.com#%#//scriptlet('set-constant', 'Object.prototype.adData', 'emptyObj') +bilibili.com##.container > div.bili-video-card.is-rcmd:not(:has(> *)) +rising.cn##.new-1111 +||fkjsjwbs.xyz^ +###hengfu2.banner +/floatadv. +/duilian2. +||wpsbaq.xyz^ +/nowscore/ad/* +||olgcpwc.icu^ +||fgwuw.com^ +||tqvnzj.xyz^ +@@||g.doubleclick.net/gampad/adx?$xmlhttprequest,domain=v.ifeng.com +||baidu.com/rec?*=ad& +||srwwce.xyz^ +||mltmjevd.xyz^ +||78dm.net/channel/test? +wenku.baidu.com##.area[href*="/adclick?aid="] +qq.com##.tmallskin +||alicdn.com/tfscom/*.sina. +sina.com.cn##.side-btns-game2021 +chinaz.com##.plate-layout +@@||douban.com/popup/login? +||meijucang.com/js/pop/ +vanpeople.com##.main-adv +||adx.36kr.com^ +@@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com +||kaoyan.com/school/final_class.html +||ggw.gusuwang.com^ +||11img.com/ad/ +163.com##.mod_ad_r +||docfj.cyou^ +||h7h35.space^ +||a.cnki.net/a/ +qq.com##.main_ad_top +.xyz/js/addp.js +speedtest.cn##.shade +||6b70b1086b.com^ +||icvsleec.xyz^ +##.space-y-6 > .advertising +qq.com###qqadv +.org/js/ads/ +/js/dyguosj/* +/bg5t4h.oss- +duowan.com##.full-banner +||ts166.net^ +||ad-1258444056.cos.accelerate.myqcloud.com^ +||tanju.vip/nyindex. +||afqodjc.top^ +||7junshi.com/con/ad +@@||am730.com.hk^$generichide +chinaz.com,mydrivers.com,oschina.net##a[href^="http://click.aliyun.com/"] +|http://*/js/ad/ +toolfk.com##.layui-layer-content +||jrzj.com/img_index/index_ +||hupu.com^*/stream.js +||ggttmu853.shop^ +meishij.net##.cp_body_right +||sexbarss.net/wap/ +wcjbb.com###frame37boCx +hdchina.org##.sitead +||hsex.men/view/img/*.gif +||ygoibya.icu^ +banzou.name###ads_1 +gfsoso.99lb.net##center > #logo-gf ~ * h7[style="color: red;"] +||obturex.com^ +||ac.86huoche.com^ +##.tooltip > #tp +||c.nuhcpf.com^ +||kapvu.cn^ +||uqaagi.xyz^ +qq.com##.action_ad +159i.com##.a1.style25 +cheaa.com###ADText +tmtpost.com##.open-app +blphoto.net##.float-ck +@@||ibon.com.tw/imageserver/images/ad_file/ +||kksjsa.top^ +games.qq.com##.dc-kf_list +benxiang.com##.w-hot-link-txt +||trxs123.com/skin/default/js/jque.js +chinacar.com.cn##.advertising +##.content > #dhxhtml +||kaaqgf.icu^ +myfreax.com#?#main > div.w-full:has(> ins.adsbygoogle) +firefoxchina.cn###tab-mod-tehui +@@||520click.com/ad.php$stealth +||taijuba.com/js/tj +@@/advertising/*$domain=315.sh.cn +||dsda21.fun^ +||wiixqm.xyz^ +iqiyi.com##.headerLink02 +lzcfz2.com##body > div.wp.cl +programmer-club.com.tw##A[href*="/ADRedirect."] +##.MacPlayer > #play-pause +##.ad_top +||lkenflknkd.com^ +||cngoldres.com/web/js/*_advs +||yht7.com/web/assets/js/right.js +##.aab-post +dianping.com##.J_mkt-group-2 +/adposid/* +news.cnyes.com##.content-main > div:has(> div[id^="div-gpt-"]) +||6528fdyngk.xyz^ +gameapps.hk##a[class^="top-ad-"] +||irmbyu.xyz^ +3987.com,588230.com,pilipali.cc###hongbao +||ddomjhr.icu^ +||a.wanzhuang.com^ +longzhu.com##.recommend-pop-up +hao123.com##.navrecommend-top +##a[href*=".taobao.com"] > img[src*=".tucao."] +xdf.cn##div[style="position:fixed;top:120px;left:4px;width:210px;height:298px;isplay:block;background-position:initial initial;background-repeat:no-repeat no-repeat;"] +ting89.com##.ad8 +||bxbyll.xyz^ +||hyislou.top^ +t66y.com##.tpc_content.do_not_catch > span.f24 +||uu3192uu.com^ +lgmi.com###openwindows0 +neets.cc#?#div[class]:-abp-has(> div > .home_p) +@@||msn.wrating.com/a1.js +||w0079.com^ +||qtq632.com^ +hoteastday.com##.sessionSub +jandan.net#?##sidebar > ul:has(> h3:contains(广告)) +||iask.cn^*commercial. +eol.cn##.ad_490 +goodcome.com.tw,sporttery.cn###mask +||zhuji.net/2007_ad/ +||cnblogs.com^*/sideColumnAd? +freejavbt.com#%#//scriptlet('prevent-window-open') +||bdtdat652.shop^ +hc360.com###endAccessories1 +?adzone= +galacg.me##.sidebar-top +||zhihu.com/api/v4/brand/question/*/card +||awyuge.xyz^ +ld0766.com##.rsf_pull_screen_adv +||bdzdd2-sdd53-vxc.com^ +cnblogs.com##.my_money +@@||aixifan.com/acsdk/log.min.js? +/ttgg/*.js$script,third-party +||cdeledu.com/ADVC/$domain=~chinaacc.com|~ruidaedu.com +##img[src*=".meiyida.tv/"] +creaders.net##a[title^="www.136888.com/"] +meijumi.net##.couplet_app +wnacg.com#@#.a_ssk_cn +||sysin.org/img/promotion- +cocomanga.com,ohmanhua.com,onemanhua.com#%#//scriptlet("set-constant", "NativeAd", "noopFunc") +iwan.baidu.com###j-media +||uc129.com/images/top_hjsj.jpg +||36kr.com/pp/api/ap/plan? +||mtime.cn/library/*/ECommerce/GoodsAndFeatureCtrl.js +||9ist.com/others/ad/ +||yhdm335.com/piao/ +||58.com/ds/tgbrand/*.js +||baigh8eosmgie01.site^ +@@||bdstatic.com/static/exp-pc/article/widget/cms-banner-ads/cms-banner-ads_*.css +||click.tianyaui.com^ +on.cc#@##CONTENTAD +||3dmgame.com/templets/index/js/huandeng.js +||ioswhi.com^ +m.xiaomiyoupin.com#@#[style*="mi-img.com"] +||ijeujkdhnvb.top^ +||gunmi.cn^$third-party +so.com##.windisplayCell +ifeng.com###upApp2 +||3dmgame.com/templets/index/gimg/ +||1pwx.com/js/ck.js +||mwrf.net/images/mrf/ +||kanguba.com/file/js/main.asp +/gaog/* +||aisixiang.com/images/*-20 +news.gamebase.com.tw##.rightMiddleAD +vipthz.com###fwin_content_imc_attachad [style="WIDTH: 100%; padding-left:10px;"] > div > p > a[href][target="_blank"] +.html?android=hx*&_$csp=script-src +||aeucyo.xyz^ +||mepupr486.top^ +anquan.org##.aside_profile_activity > div:first-child +||xlnvvbk.xyz^ +||hdsrc-a.akamaihd.net^ +||hoopchina.com.cn/static/www/*340-230. +163.com#@#.s-btns +||koyuod.xyz^ +||ll.gxsky.com^ +||clisatf.top^ +||hoopchina.com.cn/web/channel/nba/index/nbaposter/index.js +wandhi.com##.unit-100 +||ggs.myzaker.com^ +/upload/ads/* +/code/cpc.asp? +||0pdsa.icu^ +||benpsbp.com^ +xgan.cn##body > center > a[target="_blank"][rel="nofollow"] +||pv.cheshi.com^ +||lgpjw.cn^ +||dy6d.com/js/hf +$script,subdocument,third-party,domain=dlkoo.com +zybang.com##.related-question-below-text +123.com.cn##.bottom-ylink +blog.163.com###blog-163-com-toptips +tangdoucdn.com#@#.video-ad +###right_float.close_discor +||shbear.com^*/ad/ +||china.com/images/milapp +dcfever.com##.container > .row > .col-md-12[style^="margin-top:"][style*="text-align: center; width:"][style*="min-height:"] +||langya.cn/2014html/ad/ +2345.com#?#.pic:-abp-has(a[href^="http://g.wan."]) +||linovelib.com/scripts/zation.js +sd.ifeng.com##div[data-title*="广告位"] +||mqsjzm.cn^ +lysq.com###diyad +||xxxuhx.xyz^ +###advert_1 +@@||pg-wuming.com^$generichide +@@||mhxk.com^*/main/entry.common.$script +||sz88.oss-cn-shenzhen.aliyuncs.com^ +||d1net.com/index.php?m=poster& +||qayqa.com:6868/jquery/ +||999fb.cn^ +hao.lenovo.com.cn,hi.lenovo.com.cn##.bxslider-wrap +lyd.com.cn##.ad:not(:nth-child(15)) +yahoo.com##.ad-tl2b +/adnow.js$domain=tvboxnow.com +/shehuik618cn/images/ds.js +||268de.com/js/ +||hdapp1008-a.akamaihd.net^ +qq.com##.yscoin-box +||xfqrsjq.cn^ +||kwumme.xyz^ +||szjjzs.com/js/d*.js +||wnacg.*/1605524662751.gif +||av01.tv/images/partners/ +||sglahyea.xyz^ +xijucn.com###topc +#%#var AG_defineProperty=function(){var p,q=Object.defineProperty;if("function"==typeof WeakMap)p=WeakMap;else{var r=0,t=function(){this.a=(r+=Math.random()).toString()};t.prototype.set=function(a,b){var d=a[this.a];d&&d[0]===a?d[1]=b:q(a,this.a,{value:[a,b],writable:!0});return this};t.prototype.get=function(a){var b;return(b=a[this.a])&&b[0]===a?b[1]:void 0};t.prototype.has=function(a){var b=a[this.a];return b?b[0]===a:!1};p=t}function u(a){this.b=a;this.h=Object.create(null)}function v(a,b,d,e){this.a=a;this.i=b;this.c=d;this.f=e}function w(){this.g=/^([^\\\.]|\\.)*?\./;this.j=/\\(.)/g;this.a=new p}function x(a,b){var d=b.f;if(d&&!("beforeGet"in d||"beforeSet"in d))return z(d);var e={get:function(){var c=b.f;c&&c.beforeGet&&c.beforeGet.call(this,b.a.b);a:if(c=b.g)c=A(c)?c.value:c.get?c.get.call(this):void 0;else{c=b.a.b;if(b.i in c&&(c=B(c),null!==c)){var d=C.call(c,b.i);c=d?d.call(this):c[b.i];break a}c=void 0}(this===b.a.b||D.call(b.a.b,this))&&E(a,c,b.c);return c},set:function(c){if(this===b.a.b||D.call(b.a.b,this)){b.f&&b.f.beforeSet&&(c=b.f.beforeSet.call(this,c,this));var d=b.g;d&&A(d)&&d.value===c?c=!0:(d=F(b,c,this),G(c)&&(c=H(a,c),I(a,c,b.c)),c=d)}else c=F(b,c,this);return c}};d&&J(d,e,K);return e}function I(a,b,d){for(var e in d.h){var c=d.h[e];if(b.h[e]){var h=a,g=b.h[e],k=c;!k.f||g.f||"undefined"===typeof g.a.b||g.g||(g.g=z(k.f));g.c&&k.c&&g.c!==k.c&&I(h,g.c,k.c)}else{g=h=void 0;k=a;var f=b,l=c.i,m="undefined"!==typeof f.b,y=!1;m&&(g=L(f.b,l))&&!g.configurable&&(y=!0,h=f.b[l]);var n=y?H(k,h):new u(c.c.b);I(k,n,c.c);n=new v(f,l,n,c.f);f.h[l]=n;m&&(n.g=g,m=x(k,n),y?E(k,h,c.c):(q(f.b,l,m),g&&A(g)&&(M(m,g.value,f.b),E(k,g.value,c.c))))}}}function E(a,b,d){G(b)&&(b=H(a,b),I(a,b,d))}function F(a,b,d){var e=a.g;if(!e){e=B(a.a.b);if(null!==e&&(e=N.call(e,a.i)))return e.call(d,b);if(!O(a.a.b))return!1;a.g={value:b,configurable:!0,writable:!0,enumerable:!0};return!0}return M(e,b,d)}function H(a,b){var d=a.a.get(b);d||(d=new u(b),a.a.set(b,d));return d}function A(a){return"undefined"!==typeof a.writable}function J(a,b,d){for(var e=0,c=d.length;e .xoxo > li[id^="text-"] +||n019q.com^ +2cycomic.com,yemancomic.com##body > div > center +pchome.net###pchome_970_90_a +@@||5w8.fun/myads/img/*.gif +||wangjing.cn/iframe/zhounian.php? +olevod.com##div[class^="ad"][style="margin-top: 0.05rem;"] +/html/taobao_focus_ +aoshu.com,zhongkao.com,zuowen.com##.bottomImg +=BAIDU_SSP_define& +||xldxphtg.xyz^ +83novel.com##.page-content > div[style]:has(> script[src="https://a.magsrv.com/ad-provider.js"]) +||dict.youdao.com/vip/privilege/show/V*?bannerType=fanyiTop$domain=fanyi.youdao.com +ithome.com#?#li:-abp-has(>.block a[href*="/lapin."]) +||gcomwx.icu^ +||diamiu.com/wp-content/uploads/1200-200. +###aatop[class^="top_box"] +||sgidskib.top^ +||m.pianba.tv/ad/ +##a[href*=".zhuijuwa.app"] +163.com##.m-adv +m.youku.com##.download +sm.cn###download-uc +||hao.rising.cn/images/nsdgg.jpg +||bzdiao.com/wp-content/uploads/bhOCwJfYleFC/ +tptoon.com##span[style^="position:fixed; bottom:30vh;"] +chinayk.com##.yb_banner +/fdjdjghrut_tt.js +||0er7pc8.xyz^ +||jy05.shop^ +||rghbvp.xyz^ +fqlook.cn###rtj1009_iho3 +yp868.com##iframe[src="/js/loading.html"] +||m.danmeixsw.com/js/mwap.js +nanfengyl.com##.index-top-ad1 +/template/znfls/asd/* +huya.com###huya-ab-fixed +.tor*/js/jquery.bpopup. +##.frAd +18comic.org,18comic.vip##div[data-height="250"][data-width="300"] +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv##.img-list > .img-item:has(> a[href*=".ad_click"]) +moegirl.org.cn#?#.capsule-card:-abp-has(.n-tag) +jiegeng.com##.r_div +||mybgrea97.shop^ +cncrk.com###gsxza +eelly.com##.top-picture +||mima.club/tuijian/speedtest/ +||at*.doubanio.com^ +||azenco.xyz^ +hao123.com##.treasure-item +baidu.com##.sfc-image-content-waterfall-item > div:not([class]) > .sfc-image-content-cell +##a[href*="?register="] > img[width="100%"] +||oa.hinews.cn/work/img/ +||bdjs.uimg.cn^ +||yxbao.com/js/beitou. +pchome.com.tw##.adcon +||qywbslk.top^ +fpdisplay.com##table[width="960"][height="110"] +@@||10086.cn^*/ad$~third-party +||cctv5.name/js/*foot.js +##.r_ad +meltoday.com,sydneytoday.com##.mtgad +||btpian.com/static/*960.js +||hphvd.cn^ +||126.net^$script,redirect=noopjs,domain=rjno1.com +||a.youdao.com^ +@@||baidu.com/static/touch/js/lib/fingerprint.js$~third-party +jokeji.cn##.ad360_280 +||mmtdfxh.xyz^ +.com/Public/js/duiright.js +##a[href*="/souv5.com/"] +||npnzfri.xyz^ +gaokao.com###ad_top_gkw +##.advInfoElem +||3.ssqzj.com^ +fydisk.com###vbox +jmw.com.cn##.leftCouplet +||panel-cn.com^ +||dwstatic.com^*/newsPopup/ +ddxsku.com##.adhtml +||51wangdai.com/Images/bad_*0 +||gjmedashb0.fun^ +||etf88.com/jjb/*_ad$script +||niticl.icu^ +huya.com##.room-gg-chat +51cg1.com,h3ugz0.arwiotgiy.com,h3ugz1.biyuhcltj.com,h3ugz2.lrjhvntu.net,h3ugz3.ogvoxarpd.com,h3ugz4.uovxifzj.com,h3uaz0.ogvoxarpd.com##article:has(> a > div.post-card > div[style^="background-image: url(\"data:image/gif;base64"]) +||pp1hl.xyz^ +||alicdn.com/img/ibank/*_1230538058. +@@||jd.com^*&refer=http$script +||dm1.ddwk8.cn^ +jmbbs.com###xjj_jmbbs2015_01 +||pkvs.com/public/300/ +baidu.com#?#.container_frs:-abp-has(>.voice_room_card_frs[data-url*="yylive"]) +com.tw#$#img[width="960"][height="90"] { height: 0 !important; } +||criknudsr.com^ +||aynufyns.xyz^ +21ic.com,pyccoo.cn,qq.com##.topbanner +avcao.cc##.ps-body > div[class^="adv-top"] +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,domain=linovelib.com,important +||egywbps748.shop^ +iyaxin.com##.gr-ggtag +360kuai.com##.article__content__yyconfig +zn508.cc#?##portal_block_69_content > li:-abp-has(a[href^="http"]) +||tybmbbgu.xyz^ +/91ad. +||qq.com/minivideo_v1/vd/res/enttencentvideo.xml +aliyun.com###yq-a-r-bottom +##.RMss1 +w3school.com.cn###sp_tiy +mamibuy.com.tw,dyzd1.com,avcao.cc##.layui-layer-shade +/adfront/* +||cwwgqu.xyz^ +||4bfx0u.com^ +ditu.so.com##div[class^="index-adflag-"] + a +@@||wx.qq.com/mmbizwap/*/framead. +||kossog.xyz^ +||sina.com/assets/js/dart/ +@@||ntou.edu.tw/bin/showads. +||un1.lawyernet.cn^ +juxia.com###fmt +##.mks_ads_widget +/\.(cc|com|top|xyz)\/i\/v$/$third-party,xmlhttprequest +xw.qq.com##.globalThemeTip +ysxs8.vip##.ysxs8_w960_1 +##.col6 > a[onclick*="横幅"] +chdbits.co##a[href*=".taobao"] +csgoob.com##.lg\:sticky.lg\:top-22 > .card-shadow:not(.py-4) +||leeleo.top^$third-party +bingdou.com.cn,hoteastday.com##.float_ad +zjst.net##body > style ~ *,.vod-gd +he-games.com###he_bottom_ad +||ihcxue.xyz^ +gfan.com##.dl_AD +zww.me##.sad +||dai18.mumu01.com^ +||a5xiazai.com/z/ +||doubanio.com^*/js/ad. +##div[id][style="width: 100%;"] > div > iframe[scrolling="no"][src^="http"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +www.163.com##.float-bar +||2345.com/images/m/global/new-hongbao/ +||dsdsg44.fun^ +hcbbs.com,isiyuan.net##.ke-zeroborder +||meiju22.com/new/Public/gg.js +ifenpaidy.com##.modal-body +||zdscdkc.icu^ +||bdjs.guangyuanol.cn^ +###xqad3 +##.col5 > dl#randomBox +faxingw.cn##.detailadv +meizhou.com##.top + .w1000 +appledaily.com.tw##.adblock_splash +||orzx.im/js/*pop +@@||simba.taobao.com/?name=mcad$script +||top888.com^$third-party +||114la.com/static/js/egg.js +||sinaimg.cn^$domain=99re.com +/img/91/*_1280_ +|http://*/*_ad.js$domain=~pcpop.com|~xitek.com +||perlmaven.com/img/*0x2 +51cto.com###edu_adver +image.baidu.com,nongjitong.com##.recommend +||ferriesendless.com^ +vidhub1.cc,vidhub.me,vidhub.tv##.promotelink +||meijuxz.com/template/ZQ/ +||smzy.com/v1/img/ +@@||tvb.com^*/videojs.ads. +||ifunmac.com/wp-content/uploads/*/alipay- +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width^="72"] +@@/unadblock/adjs_$domain=hepan.com +2234.cn##.pc-down_url_left > .pull-left +baidu.com##.bd-aside-ad +ifeng.com##div[id^="padhide_"] +||jiegeng.com/static/json/jg_topFixed. +eprice.com.tw##.ad-300x370 +||ouresdk.top^ +||m1.darfd.com^ +duba.com##.hot_push > .hot_movie +bcquan.me##.bcqad +||izqeyo.xyz^ +||pptv.com/game/aplus/client/gamedetail.html +9ku.com##.youFix +downza.cn##.down-item-2 +||qxwoiv.com^ +||ghjie.com/JS/youcegg.js +so.com##div[id^="mohe-biu_360"] > .g-card +sina.com.tw###colorbox +admin5.com##.notice +||uhuf56.fun^ +douyu.com##.PaladinPop +||ad.szhsx.net^ +||mg21.com/wp-content/uploads/ad/ +||fmssoj.icu^ +world68.com##.head_m +mvcat.com###ad-jd +cww.net.cn##.adlinkL +dmzj.com###show_tip_bg +@@||steamcn.com/source/plugin/steamcn_gift/template/images/*steam.png +zybang.com##.navigationBar-below-banner +||cmm.xmfish.com^ +||freehao123.com/wp-content/uploads/2017/05/mmkdm.png +||keryt111.fun^ +rjno1.com#%#AG_onLoad(function(){var a=document.body,b=document.createElement("div");a&&(a.appendChild(b),b.setAttribute("id","aswift_1"))}); +huanqiu.com##.ad_all +fububu.com###wendibu +element-plus.gitee.io##.sidebar > .page-content +###right_couplet.close_discor +tigtag.com##.custom-box02 +||0598yu.com/api.php?mod=ad& +zol.com.cn###relatedProduct +||sodu2020.com/js/ppc.js +||pmgfwya.icu^ +||sogoucdn.com/translate/ssr/static/img/banner- +hvhbbs.com##.block[data-widget-definition="SwiperWidget"] +baidu.com##.school-promotion-pop-wrap +icbc.com.cn##.action_Y_more +megatime.com.tw###ad_type_9 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pop_frame +||feedou.com/nzq/style/pc/js/zt_bottom.js +||vfphbh.xyz^ +||pixabay.com/static/img/publisher/*_ad_ +||520cc.tw/AD/ +||n0255.com^ +@@||hboav.com/guga/ads.js +wenku.baidu.com##.banner-more-title +||lkoqtvvajktpjsk.xyz^ +||xkyn.com/imgs/js/xx.js +||udswai.xyz^ +||d56p.com/love/ +96weixin.com###lifelong +biz.ifeng.com##.header +10fang.com##.pro-item +/cnki/js/adDetail1124.js +||17ce.com^*_$image +||viladram.xyz^ +://m.*.pw/*/*.js?$third-party +||langxi.org/langxi/*900$image,object +||jy.zhongxues.com^ +||ejunshi.com^ +cardu.com.tw##.gold-big-ad +ithome.com###wapddfda21 +mydrivers.com#?#.newslist > li:has(> span:contains(广 告)) +/nForum/files/adv/* +||geewdashb3.fun^ +||jc001.cn/indexnew/js/yuyue.js +baofeng.com##.ad-pop-wrap +||super.cat898.com^ +||239300.net/template/*_mh_gg +||ggsfq.xyz^$third-party +||heiye.cc/js/xuanfu.js +www.wenxuecity.com###leftside +olevod.com##.A4R +||gg.sonhoo.com^ +||ajockk.xyz^ +||canton8.com/adphoto/ +appinn.com##.ads-m +m.image.so.com##.waterfall > li[data-imgid] > a[href^="https://e.so.com/search/mclick?"] +||people.com.cn/rmrb/tplimg/new.js +||hjammiz.icu^ +/vmind.qqvideo.tc.qq.com^ +||xv98.com/js/daohang +||hanjutv2020.com/statics/skin/*/js/plus.js +nownews.com###idle-layer +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":1480174042,"] +douyu.com##.bglink +||piclick.cn^$third-party +||uyulwc.xyz^ +##.aiboav-ads +docs.cfw.lbyczf.com###推广 +waerfa.com#?#.content-area > div#content > div > div.item:has(> a:not([href*="waerfa.com/"]) > img) +||guqu.net/Cooperate/ +##body.desktop[style^="-"] span[class*=" "] > a[href^="http"][rel="nofollow"][target="_blank"] +hkcards.com#@##ad-slot +||jokerlu.com/upload/addon/ +jijidown.com##div[style="width: 500px;"]:last-child +||csdcfvgf4.fun^ +||eefcdn.com/promotion/module/module. +||adm.cnzz.net^$third-party +||meqanhm.icu^ +@@||hdslb.com/bfs/archive/*@$domain=bilibili.com,image +||soffersk.com^ +||gcbtgh26.xyz^ +gamer.com.tw,pili.com.tw#@#.pub_728x90 +.qidian.com/pageOps. +||lgmi.com/ggimg/ +chaomi.cc##.cm-ads +.tw/ads/ +||lady177.com^$popup +||discuss.com.hk^*_prod.html +||m.gongzhilian.com.cn^$third-party +||xdrvkdni.xyz^ +||ih336.com^*a.js +||gfchck.xyz^ +||sbpb1.chuiyue.com^ +||bavotr.xyz^ +qiyeku.com##div[style*="height:90px;"] +##.con_section > .da +javdove.com##.ad-body +||qqryt111.fun^ +lsj.ac##div[class="col-12"] > div[class="poster"] +boniu123.cc##.right_side +||somanhua.com/smh/ +qq.com##.xxskj +||131458.com/union/ +||rryy99.com/statics/js/stat.js +18av.pro##.video-server > .inplayer +lnk2.cc#%#//scriptlet("set-constant", "adblock", "false") +fcw45.com##div[id^="layui-layer"] +jdbbs.com##.adyihifi +||nfmovies.com/pic/tu/a191124002. +2345.com###corner_div +||baomitu.duapp.com/js/layer.js +||hz.youku.com/red/ +##.gg_canvas +||18comic.*/exads-adblock-*/backend_loader.php +@@||cnzz.com/q_stat.php$domain=qd.alibaba.com +.com/js/alls_top.js +||iaiqk.top^ +/newfengchao/asp +||yvnxetmq.xyz^ +/pj545.oss- +sstv.pw##.container > a > img[style="width: 100%;"] +/Runtime/js/mad.js +||weidianyuedu.com^$third-party +||wshufa.com^$third-party +linovelib.com#%#//scriptlet('set-constant', 'adblock', '0') +##button[onclick*=".xacg.info/"] +/frontend-jiucao/ps/*.gif +jdbbs.com##div[id^="archy_ad"] +||115mm.com/js/ +v.qq.com##.module-image[style*="width:1240px;"] +codepub.com##.small-banner +||cy5kr.fun^ +||cidianwang.com/js/zdtop.js +||chsdwjes.xyz^ +||youth.cn/images/public_ +@@||95599.cn^*ad +microsoftnews.msn.cn##div[class^="nativeAd-DS-card"] +||bqjqripb.xyz^ +||baofeng.com/images/yiqi +##img[onclick^="window.open"][src*="pc.qq.com"] +/m1938pc/static/js/dibu.js +da-fan-shu.cn#@#.ad-s +||ykkhihg.cn^ +@@||g.alicdn.com^*/banner_ad_ +1ting.com###tingx_5 +||m.daomutxt.cc/js/ +||77ds.*/js/77ad.js +||opkmio.xyz^ +cupfox.app##.banner > div.banner-content.right +@@||ifengimg.com/fe/shank/content/mobile_view.*_modern.js +dianyingim.com##iframe[src="/buffer.html"] +||baidu.com/wkbus/fcwm/ +||adf.ly/js/$third-party,domain=~j.gs|~q.gs +||eepw.com.cn/event/action/rightbd/microchip*.js +cnbeta.com.tw##.tks +github.com##a[href^="https://openwrite.cn/"] +||xygwh.cc/js/x +@@||e.cn.miaozhen.com/r/k=*=http +||zg.mmyuer.com^ +##.adContainer[style="margin-top: -5px"] +chinamedevice.cn##.news_ylqx +muchong.com##div[id^="paper"] +webkaka.com##.pTopTextAd +##.container > a.mid-wrapper +||szddm.cn^ +||jjwxc.net/adsmanage. +||btnwxhjv.xyz^ +##.wwads_abp +hotpress.info###sidebar > div.widget_text:nth-last-child(-n+3) +||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg +||ck180.net/mitao +||ytezym.xyz^ +steamcn.com##div[class*="liz_"] +1x6666.com,528500.com,52jscn.com,5378cc.com,58cam.com,5imx.com,7sqq.com,99nets.com,99nets.me,bbs.52life.cc,bestcclm.com,cm868.com,cnyw.net,cqfishing.net,discuzlab.com,gebi1.com,hh010.com,i5qs.com,im286.net,kugz.com,ld0766.com,luanren.com,mahoupao.com,qinzhou8.com,sh419.net,suizhoushi.com,susongbbs.com,txahz.com,wishct.com,xsool.com,xydai.cn,ybvv.com###diy1 +0597kk.com##img[width^="37"][height="30"] +||e0575.cn/js/corea/jquery.popup.js +/template/*/adm/* +so.com##.e-buss +dditblog.com###income_div +###syad.visible-xs +||xmcimg.com/js/m.js +copymanga.org##.col-2 > .dailyRecommendation + div[style^="width:"][style*="position: relative;"] +so.com##.js-guess-list +163disk.com##.mads +##.ads-content +||tt1069.com/bbs/page20_top.php +||szmnf.cn^ +/home/ad_ +699pic.com##.springtime-pop +114la.com,ylmf.com###HDtopBar +://rou*/_next/static/chunks/pages/home- +soyoung.com##.pop_center_box +||qhbhlii.xyz^ +8684.cn,8684.com##div[id*="adid"] +epinv.com##.epinv_b +/clys.js?2020 +||yzfrapd.xyz^ +iqiyi.com##li[data-flag="shop"] +||codeceo.com/images/2020/04/kaikebabanner.png +||shulihua.net/js/gzlishigoogle.js +||fjsen.com:81/mysql/count/ +||rxfygd.cn^ +ckdzb.com##div[style="float:right;margin:10px 10px;clear:right;height:310px;width:336px;"] +dilidili.wang#$#body > article[class][style*="position: fixed;top: 0;z-index: 9999;display:block !important;"] { position: absolute!important; left: -3000px!important; } +||gcwwsv.icu^ +###adLeftFloat +||zhaofuli.*/data/content +||xinshijue6080.com/126.gif +||p2peye.com/ajax.php?mod=ad& +||jsckjqr.com^$third-party +||7k7k.com/api/position/ +@@||olgame.tw^$generichide +||oqvucp.icu^ +##.promolink-[style="position:relative;width:100%;height:100%;"] +cntronics.com##.ads970-90 +2345.com##.comp-normal-navigate +@@||aliyundrive.com^*/share_link/$xmlhttprequest +##td[id^="td_"] > a[href^="/htmm/"] +comicat.org,dapenti.com,douyu.com,iqiyi.com,jinti.com,kisssub.org,libvio.me,mvcat.com,mzh.ren,rufengso.net,v.qq.com,zhanzhangb.com##a[href*=".jd.com"] +firefoxchina.cn##.theme-side-bar-couplet +||sinajs.cn/t4/apps/publicity/static/wbad.js +5278.cc###leftside_banner_top +wealth.com.tw#?#div[class]:-abp-has(>div[class]>div[class*="-ad-manager-"]) +py.cn##.right-pops +##.jav-nav + .bcpic +||693836.com^$popup +||xdolhlwq.xyz^ +||xmkmryu.icu^ +skykiwi.com##div[style^="width:1200px;height:"] +7808.cn###force-popup +f2dsex1.com##.detail_left > div > a[target="_blank"] +@@||cheshi-img.com/ad/csad_2019.js +||159i.com/video/usr/uploads/bd/$image +51wangdai.com##.ad_123_AD +||hetlwsu.top^ +mtrend.cn##.new_right > div[style="float:left; width:100%;"]:first-child +editcode.net,itboth.com,itkeyword.com,ruyo.net,zhanzhangb.com##a[href*="cloud.tencent.com"] +||tdpujn.xyz^ +##.ad_300250 +||d4.sina.com.cn^$object,script +||ztjal.info/wp-content/plugins/kill-adblock/ +58b.tv,8fun.tv#?#.datal.clear:has(> table div[id^="revive_zoneid_"]) +||fabuye.vip/zhuanfa/ +getrelax.cc#$?##main_content > .grid-boxes-in:has(> iframe[src^="https://syndication.exosrv.com/"]) { remove: true; } +||88lm11.com^ +||hqcx.net/images/baidu.jpg +||xybnfn.xyz^ +||87uq.com^$third-party +qidian.com##.app_download_ad02 +jstv.com##.jadv +||dingdangsheji.com^*/%E5%9B%BE%E6%80%AA%E5%85%BD +/xxgg/pv.js +smzy.com##.u-gs-btn2 +||bogtrmjz.xyz^ +||ganimgs.com/images/*.gif +chinamedevice.cn##.news_ylqx3 +||500xxxx.com/go.js +/ggjs/* +||ymlykj.com/nuxt/static/liveBanner.jpg +||qiyipic.com/common/*_aLink +##.trad3 +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > style[id^="s-"] + style + div[id]:nth-child(3) +||85tube.com/player/html.php?aid=*_html&video_id=*&*&referer$redirect=nooptext +jianshu.com#%#//scriptlet("set-constant", "NEWS_FEED", "noopFunc") +/js/ads/neiye +||zjtu.tv/add. +##.davwheat-ad +||z0a1b2c3d4.com^ +hifidiy.net###part_right_gg7 +||1133.cc^$third-party +||axa123.com^ +##.ff-ads +||6avz.com^$script,third-party +cnfol.com##.EtGA +ifeng.com##.cont_bottom_Yy +||xiongyin.com^$third-party +||sdjbvjsbvjz.com^ +###recommend-float + .footer + .popup +ntpcb.com##img[width="1195"] +baidu.com##.wgt-bottom-union +_float_fuo.js +||nclljn.xyz^ +##.orbui-site +||bjsxt.com/statics/js/bjsxt/js.js +ifeng.com###hslide_sPic_baidu +owyb1688.com##.gray-show +ssr.tools,zhujiwiki.com##.asb-post-footer +hh010.com##.a_hong_t +||chinesetoday.cn/2017/ad/*.gif +/kumi/file/js/float.js +||szmdp.cn^ +||dajiahao8.top^ +||jddaw.com^ +||irtefs.xyz^ +||lxpbdp.xyz^ +||apic.in/mmd.gif +/css/78dfj/*.js +||dytt8.net/jsd +||76xh.com/skin/zxf/js/ad +||cnool.net/AdShowCache? +||b1.b2b168.net^ +@@||cq.qq.com/js/cody/*scroll_ad.js +||egywbpu286.shop^ +||mtwmuy.xyz^ +click108.com.tw##.AD_730280 +mnews.tw##.ad-container-pc +@@||7m.cn/v2/js/analyse.js +mtrend.cn##a[href*="taomoubao.com"] +ptbus.com##.weixin_ad +||smuc.cnnfootballclub.com^ +anjian.com##.ImgTop +mydown.com##.aqDownload +/guang/mscx-MTMwNTQ5.gif +@@||google-analytics.com/plugins/ua/ec.js$domain=lenovo.com.cn +readmoo.com#@#.navbar-social +##.hbp > .wp_banner +##.uk-width-1-1.adbox +zhongyiju360.com###bottom-float +18comic.org,18comic.vip,18-comic.work#%#//scriptlet('abort-current-inline-script', 'document.dispatchEvent', '/getexoloader/') +hupu.com##.ad_980 +||bcquan.me/front/*_game +wenku.baidu.com##.wubai-wrap +||kflybplr.xyz^ +||ctcxflak.xyz^ +hao123.com##.leftbanner +speedtest.cn##div[class^="speed-activity"][class$="wrap-index"] +/\.(com|cn|top|xyz)\/(j|K)\/[0-9]{6}$/$script,third-party +##.mod_ads +||52pk.com/style/files/images/*beitou. +||bitsinflow.com^ +hupu.com##.ad361-240-240 +downyi.com###BzDown +||bannedbook.org/bnews/bnews-tab.html$third-party +iwan.baidu.com###side-xbox +##.orbui-post +||pw321.com^*.gif +ettoday.net###adsense-matched-content +||edmontonchina.*/pic/ +techug.com,webhek.com##.aatb +gitee.com##.float-left-box +/viewad. +###ad_full +||insfengdata.com^ +||nfmovies.com/pic/tu/*_863x59. +||d37d9zbli5ytch.cloudfront.net^ +||vgjaxnuw.xyz^ +||west.cn/vcp/getJScode/ +xdf.cn##.footadv +duba.com#?#.newslist > .news_ctm_wrap:has(> .ctm_ad) +||d10wv.fun^ +||adm.beimg.com^ +||qingkong.net/skin/htcs/images/980.jpg +hc360.com###endAdBanner +||u833ij.com^ +toolfk.com##.geekgay +||cgidskif.top^ +||yrarhzuq.xyz^ +##.qzhfaaa +manwa.me##.ad-area > a +||59.36.101.209:888/link/*_280x192. +||pop800.com^$third-party +nodejs.cn###biz_nav +||777bbb222bbb.com^ +||baidu.com/tb/cms/forum_skin/file_ +||51img1.com/v6/my/js/bdm.js +pincong.rocks##.aw-mod > a[target="_blank"] +ddxs.vip##.content > p > font[color="red"] +||pzfqzv.xyz^ +bbs-tw.com###AdImg +||eastmoney.com/public/ad.tools. +ghxi.com###respond + div +||by.dyq.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.tools > .shouji +111os.com###topBox +||d.ziyuanm.com^ +||vdggsd006.com^ +||xuyanlong1.cn^ +||damai.cn/phpstat/ +cnfol.com##.wid600Ad +||hkbumv.icu^ +||eastmoney.com/Extends/GetReferralLinkJavaScriptObj +||sinaimg.cn^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|ac88.info|aisex.com|cnnice.biz|go543.com +koyso.com,wavse.com,kims3.xyz#@#.google-ad +||drvsky.com/js/jolimark.gif +||qqkkpos.com^ +juqingba.cn##.jqright1 +speedtest.cn##.summer_logo +||ilph0.icu^ +firefoxchina.cn##.banner-words +iciba.com##div[class^="Kyad_"] +||m.manhua123.net/js/com1.js +pconline.com.cn##.box-jcz +weihemenye.com,hao6v.com##.topad +||3bmmmesj.life/skin/js/dny. +||ozykeor.icu^ +##.adpc +||1616.net/jd/data/index/indexad.json +pconline.com.cn##a[href^="http://ivy.pconline."] +lz13.cn##.left_box4 +||taijuwang.com/template/alifun/js/unFavui. +ikandy1.com##a[href*="/ky-a.html"] +tuliu.com###vFloat +||piaodown.com/xtm/ +@@||qq.com/bossweb/jifen/ +||mm387.com/images/*.gif +||mmnc87.shop^ +||vidcrunch.com/integrations/*_Responsive_*_DFP_$domain=discuss.com.hk +@@||gomein.net.cn^*, +/template/jable/angular.min.js$~third-party +||pagechoice.net^$third-party +||loli.net/2020/06/17/gpRx7AzGwI4kQmV.gif +muchong.com###xd_popbox +||58.218.200.135:8081/js/ +@@||mm.maxthon.cn/ad/ +||r3sub.com/posters/00698128.jpg +||suning.com/cpc/getCpcSearchDatasRev? +||gkswas.xyz^ +so.com##.js-show-data +douban.com##.bottom_ad_download +/300x300.gif$domain=922tp.com +||china.com.cn/2016ads/ +||bxqgk.icu^ +||nvvqrv.xyz^ +66se2.com##.f_f +://*:*/oklist/vars.js +||52movieba.com/img/ad +sina.com.cn##.real-time-window__ad +@@.com/logo/ad.$domain=colamanga.com +juxia.com##.index_bttg +||alime-pic.oss-cn-hangzhou.aliyuncs.com^ +xz.ccoo.cn##.index_banner +||ghbdsbfd.com^ +pttweb.cc##.e7-min-ad-height +apk.tw###favatarRight +||hoopchina.com.cn/static/www/*340x230. +anquan.org##.pub_side_ad +##.btn.btn-success.text-white[href*=".com:"] +||mdmuky.xyz^ +||bdjfea.cn^ +||xhlkvx.xyz^ +||mzyfz.*/modules/46/ +3dmgame.com##.tonglona_2 +||shanyu178.com/agg$script +||sinaimg.cn^*/yyy_pop +##.ad-mod +ufanw.com###banne +||itc.cn/cache/lib/v2/odvmonitor/ +##a[href*="://2"] > img[src*=".qlogo.cn"] +muchong.com##.bg > .wrapper:nth-child(14) > .forum_Post_index +@@||appledaily.com.tw^*_ad_logo. +peizimenhu.com##a[href^="http"]:not([href*=".peizimenhu."]) > img[src^="data/attachment/portal/"] +||gfbdb1.com^ +||bing001.shop^ +hcbbs.com###framemI4t76 +##img#GGADIMG +||tf.360.cn^ +ck101.com###wp > .subListTop +||tmatch.simba.taobao.com^*&name=tbuad&pid= +||qeugcdcjr000.fun^ +||3798.com^$third-party +@@||ganji.com/findjob/send_resume.*&ad_type= +||onetvb.com/assets/javascripts/ +fx168.com###oilTopAd +edu.qq.com##.L +52tian.net,starbaby.cn##.bdad +||alicdn.com/img/ibank/*_!!2208043467212- +uc123.com###J_logoLeft +||kb-render.alicdn.com/html/*.html +.wap.x4399.com^ +||126.com/get.do?*=themeHandler. +weiyun.com#@#.page-ad +##.b_sxp +||23aitt.com/zz/ +chinanews.com##.tonglan_advert +wiki.mbalib.com###ad-fold +189.cn#@##linkShare +hmanga.world#%#//scriptlet('prevent-fetch', 'method:HEAD') +||tv2box.com/img_1g/ +###play[style="padding: 10px;"] > a[href*=".xmcdn.com"] +||xwdjnj.xyz^ +||mp3.haogeba.com^$image,object +house365.com##.home-new-user +@@||ifengimg.com/pdt/cfg/mudu/aplayer.xml$domain=v.ifeng.com +||kkkkdm.com/mg/show +muchong.com##p[onclick="view_ok();"] +@@||chinamobile.com^*/ad$~third-party +||sdofp9c.cddrhx.cn^$third-party +speedtest.cn##.aP-box +||downhot.com/Res/js/main.js +||cdn.haokongbu1.com^*.js +/securepubads. +kankanmi.com##.listnewli +search.chongbuluo.com##.search > div > a[target="_blank"] > img +||mo-tuo.com^ +/fage/sjad.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.hgame_mod_theme2 +||kiwi8.top/media/plugins/jquery_confirm/ +||guitarchina.com/1/*.gif +||qingkai.com/gg_img/ +###syad4 +||act.cmcmcdn.com/*/liondance/dist/js/bundle.js$domain=duba.com +hur.cn###ad810_2 +@@||technews.tw^$generichide,badfilter +/adsame1. +||azureedge.net/wp-content/cache/minify/d2299.js +||pic.0597kk.com^ +nxflv.com##div[style="position: absolute; width: 100%; height: 133px; bottom: 0px;"] +/uploads/ads/* +gov.cn###ippad03 +@@||ak77now.pixnet.net^$generichide +||ntce.com/images/js/ntce_public.js +||mmiedf.xyz^ +ifeng.com##div[class^="adv1"] +||lwurserl.top^ +gov.cn###ZhiXuwFloatWindow +||netease.com/f2e/auto/modules/float-ask-price/ +||3dmgame.com/page/hlbt/ +2345.com###header-img-new +||380tv.com/upload/*-ad- +###ad_hf_out5 +||0oqt9i.cn^ +||i-gamer.net^$domain=cartoonmad.com +||1weorpu.com^ +vjmedia.com.hk##.code-block +||colamanga.com/sw.js +||www-dnwx-com.anquanbao.cn/pic +||qlcbeg.xyz^ +##a[href="/goto.php?url=hth"] +seehd.so##.header_wrap + .tac + table[align="center"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##:not(.tbui_slideshow_slide) > div[data-daid] +||vjvj.vj24co.com^ +ifeng.com##a[class^="bookrack-"] +cnki.net#@#.ad_right +||xpyerxzn.xyz^ +secretmine.net###main-content > br +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(div[class*="head-info_"]>div:-abp-contains(热推)) +huya.com#@##banner +||gushiwen.org/getTicket.aspx +||szgpmy.com/js/ +||lm1.wkpcw.cn^ +||sinaimg.cn/large/*.gif$domain=mp4ba.la +||hjfile.cn/lib/hui/footer/0.1.0/footer.js +baidu.com##.sfc-image-content-ad-xg-cell +||pzpivx.xyz^ +chinabidding.cn###info_adv_1 +baidu.com##.l-header-ad +||fulibac.com/images/upload/ad/ +tw.news.yahoo.com##li[id^="ad-"] +||js.ubaike.cn^ +ettoday.net##.etmall-shopping-guide +||qydoex.icu^ +||same.eastmoney.com^ +@@||520cc.cc/ad/$script +||my0511.com/*/ad_ +||ali213.net/static/js/kktv +||images8.gaotie.cn^ +163.com,jishujd.com##.index_top_ad +||kvyyyde.cn^ +sina.cn##[data-href*="://sax"] + aside + blockquote +hy5.com.cn##.toplogoad +||dehua.ixinfan.com^ +###topNavad +||sohu.com/s/sohuplayer/iplay.html?*&autoplay=true$domain=eetop.cn +||leleketang.com/dat/a/ +||qusrow.xyz^ +||ifkdy.com/ifkdy/weixin/isFollowMe +||a1.zhanzhang.net^ +xiaopi.com##.gg_box +18comic.*##.modal-body > ul.pop-list +@@||niotv.com^$generichide +@@||baixing.net/combine/*,/css/ad- +||tyzfoej.cn^ +t.qq.com###talkList > li[ispopula="1"][tv="2"] +||zndsssp.dangbei.net^ +csdn.net##.blog_star_enter +||huoyan.tv/yb/img/*.gif +##.ad960 +||033ajy.xyz^ +||gotadd.cn^ +baidu.com##.chunwan-wrapper +youdao.com#@#.share-text +##.d_banner_inner +||32xp.com/upimg/ +meituan.com##.component-downtip +||topthink.com/api/basic/ +||ifengimg.com/c337cf1a3749e953/2015/0301/rdn_54f25a4228062.jpg +||z4a.net^*/960x +||yretx.cn^ +||codenong.com/c1.js +||soduso.com/js/4 +||imagespublic.tk/clothes/comeliness.php +||dd1.diymianmo.com^ +||ad.gmw.cn^ +||uu22112.com^ +||pwddhc.xyz^ +||fobshanghai.com/bbsad/ +sou.com###ad_wrapper_cpc_conversation-comment-right +||quzpvtt.xyz^ +yiyouliao.com#?#.yyl-weiruan-video-list-item:has(> div#small2) +||1.jiangzheba.com^ +zqzq.com###wAdTop1 +/ggpic/* +||cjx111.com/ads/ +@@||liulanmi.com/wp-content/uploads/*/StatCounter- +kisssub.org###kanban +||caonme.xyz^ +foodmate.net##.ad5 +/avshow_cn1.gif +zhidao.baidu.com##.doodle-container +###gudingweiDiv +||drtrs55.fun^ +||dodo8.com/template/*/images/g_js/ +||iqgessh.icu^ +||kankanmi.com/js/zjgg +house365.com###AD-coup-left +||jyuwkba.top^ +||admd.yam.com^ +@@||kfcorder.com.tw^*/Advert +||pipi.cn/player/ +699pic.com###landlord +39.net##[id^="ac_im"] +||kritgu.xyz^ +||fguhyg.cn^ +cnblogs.com##a[href*=".gridsumdissector.com/"] +||auerkbo.cn^ +||bijiangqing.com^ +##dl#listwoBox +##vg-pause-f +||qq.com/playgame/videoweb/ +nfuwow.com##.bannermid3box +||panpan.org/js/google +stockstar.com##.siteAd_r +||price.com.hk/ec-discuss-widget.php +huaban.com#$#.wrapper > div[data-content-source] > .modalOpenWidth[style*="top:"] { top: 80px !important; } +||youku.com/dress/ +||imgur.com/oPNxy4w.gif +||equkgm.xyz^ +||weryt111.fun^ +aibing.cc##a[href^="https://aibing.cc/go/"] +||sinaimg.cn^*/deco/$script +tw.news.yahoo.com###sda-WPS-iframe +0597kk.com##.lyhux_mu +||202.102.26.253:8182/files/7/lhzs1k.jpg +malimali5.com##a[href^="https://www.odancool.com/"] +hcbbs.com###portal_block_3441 +javdove.com##.tdads-nonlinear +gdmm.com##img[width="1200"] +iyf.tv##.video-player > div.ng-star-inserted > div#PB +axios-js.com##.recommand +||caoporn.com/templates/frontend/dark-blue/js/caoaa5.js +||xuoizbtl.xyz^ +||eacqihh.icu^ +||ce.wlaoc.cn^$third-party +||hmtoday.com^$third-party +ximalaya.com##.dl-pc +cheshi.com##div[id^="ad_pos_"] +@@||blog.ztjal.info^$generichide +@@||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$domain=ebb.io +||cetlwsf.top^ +@@||d1-dm.com^$generichide +||cnlg.cn/attached/script/ +||336t.com/img/boss/*.gif$domain=wmsj.pw +||sltbjrf.cn^ +qsptv.net###widget-weixin +baidu.com##.search-box-wrapper + .pager-container +||supfree.net^$xmlhttprequest +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > div:not([class]) > div[data-placeid] +live.bilibili.com##.container-wrapper[style="height:446px;min-width:1280px"] +/v2/ads/* +||ueumdkc.cn^ +||b1.engdvd.com^ +||febtzd.xyz^ +||ecpshapm.xyz^ +worldjournal.com##.banner-zone +tongzhuo100.com###gold_banner +||sdjbvskjvds.com^ +||blthwbe.xyz^ +||howbuy.com/subject/js/jquery.blockUI.js +stock87.com##img[width="960"] +##.mod_index_ad +gmtv1.xyz##.pc_rb_float +hdmoli.com#?#.row > div.myui-panel:has(div[style^="text-align:"] > a[href][target="_blank"] > img#index_banner) +||aziekg.xyz^ +||hnartcqab847.live^ +hao123.com###guesslikesite +weibo.com#?#.card-content > ul > li:-abp-has(> p > .icon-txt-recommend) +jjhuashui.com##div[id^="jinsom-widget-slider-"] +@@||alotof.software/wp-content/themes/alosss/ads.php +||xmnkgi.cn^ +/js/guanggao_gg.js +/tanchuan.htm$popup,third-party +||hentaicomic.*/data/ds/ +||mxcmwk.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_encourage-appforum\/pagelet\/my_app +itboth.com,itkeyword.com##a[href*=".aliyun."] +||bilibilitool.site^ +||zotcjeig.xyz^ +www.playno1.com##.eis_box_s +##.ui-ad +@@||adx.yiche.com/cityindex.ashx +ifeng.com##div[class^="pplive"] +lpl.qq.com,v.qq.com#%#//scriptlet('set-constant', 'CreativePlayerwebPlugin.AD_EVENT.AD_LOAD_START', '') +||cfjslif.top^ +51cto.com#$#.top_bg { height: 60px !important; } +zhibo8.cc#@##ad_box +||rnkzhsi.cn^ +||1.weiheshidai.com^ +||ravzbd.xyz^ +||mysteelcdn.com/common/mysteel/home/v2/js/index_image. +||m.91heima.cn^$third-party +bcbay.com##.ad_txt_box +||zhibo8.cc/js/adv-slide-toggle.js +fanyi.baidu.com##.trans-side-ad-wrap +boylove1.mobi##.main-banner +||mydrivers.com/drivers/2021/racent.jpg +warting.com##.hz2 +@@||gifshow.com/rest/wd/common/log/collect/acfun +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###lm +||jsdelivr.net/gh/cdnjsdelivr001/182cdn*.js +||ymmiyun.com^ +ltaaa.com##.txtads +silver.org.cn##.dl_lt +www.sina.com.cn##.secondtj-wrapper +sm.ms##div[class^="advertising_"] +||phbkm.com/js/ +kocpc.com.tw##.topbarad +ettoday.net##.etvideo_collect_1 +||a.91zhongkao.com^ +##[class][onclick^="window.location.href"][onclick*="%AF%B4.apk"] +fqlook.cn###rtj1009_ren_imme1 +/view/image/ngps1.gif +@@||sinaimg.cn/tech/https_index/share. +oschina.net##.mayun-jj +1909.me,8se.me,crxs.me,xchina.biz,xchina.co##.push-top +iplaysoft.com###link1111 +||mobile01.com/groupbuying.php +77mh.nl###bdcotopnew +||game333.net/aainset/ +buzzorange.com##.rmaxAD +##img[onclick*="/2e9c9aa9.com"] +csdn.net##.csdn-common-logo-advert +423down.com##.widget_d_banner +chapaofan.com##a[href^="http"]:not([href*=".chapaofan."]) > img[src*=".sinaimg."] +||666bbb333bbb.com^ +csdn.net###asideCustom65392991 +||eshbqn.icu^ +fulibl.cc##.widget_text:last-child +/js/pfad.js +||a.tbcdn.cn/s/atp.js +360.com###channel-mall +||apvnzvg.xyz^ +jurong.cn,ld0766.com##.totalad +||bnjovv.xyz^ +||222xs.com/js/greentea.js +||leabd.douguo.com^ +||wuhaolin.cn/c/ls +||avdao.pw/dist/js/sc_check +||staramuse.com/bmip/showg +###head_ad_area +gitee.com##.register-guide +58.com##.invokeApp +findlaw.cn###wlcommonbot +||33dav.com/static/js/bottom.js +||acgnz.cn/static/b.js +mtrend.cn##.daogou-foot +##.guanggaoBox +huaren.live#%#//scriptlet('trusted-replace-node-text', 'script', 'ConFig', 'let ConFig', 'var ConFig') +||abcdcfasda.gushiwen.cn^ +||kiwihk.net^$third-party +||uahozcfq.xyz^ +||xxsmad2.com^ +||sogou.com/html/ext/agentsdk.js +gdmm.com###separatorline + script + tbody:not([id]) +sogou.com#?#div[class^="right-feedback"]:-abp-has(>.list-step-title:-abp-contains(网游)) +||cbyhoe.xyz^ +||1dki0.icu^ +||dio99.com/images/*.gif +m.youku.com##.recommend +||cjjjs.com/script/ad.js +.gif|$domain=99re.com +||gn01.top^ +movieclassic.net##.modal-backdrop +||j.baminw.cn^ +easou.com##.easou_banner +##a[href*="/2e9c9aa9.com/"] +||mm.paizi.net^ +pc.yiyouliao.com##.yyl-ads-swiper +6park.com##a[href*="bpropolis."] +cn.bing.com##.b_algo:has(.rms_img[src*="/th?id=OADD2."][src$="21.2"]) +@@||189.cn^*/shareBox. +hc360.com##div[id^="Adv"] +zol.com.cn###iframe_zmall +||pnvtlh.xyz^ +theporn.cc##.toolbar-gg +||pharmnet.com.cn/js/float_div.js +hao123.com,jiegeng.com##.rightTip +moeci.com#%#//scriptlet('prevent-setTimeout', '_0x') +ltaaa.com##.topAds2 +||eeryt111.fun^ +finance.sina.com.cn##.m-s-tab + div +/adfile. +nen.com.cn##.for3gagzy +.com/adv/ +||duanmeiwen.com/static/cpt/img/write_right_float.png +@@||lancdn.com/landian/public/js/ads.js +||ocwdkp.icu^ +||javporn.best/asset/default/player/plugins/vast-*.js +/advertisement_ +||591520.xyz^ +#%#var AG_removeParent = function(el, fn) { while (el && el.parentNode) { if (fn(el)) { el.parentNode.removeChild(el); return; } el = el.parentNode; } }; +msn.cn##.nativeadserversidecontentmodule +||kf.qingwk.com^ +||a.lz13.cn^ +@@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|weithenn.org +||qq745.com/m/ad/ +||blasedustin.shop^ +moe.best##.markdown-body + div[style="text-align:center;margin-top:40px"] +||teslaamg.obs.cn-east-3.myhuaweicloud.com^ +pan.baidu.com###share_ad_info_panl +||gfpvvwf.xyz^ +||woyaoq.com/201904100958_5cad4dbac9c5f.png +cn.bing.com#?##b_results > li:-abp-has(.b_adProvider) +mitbbs.ca,mitbbs.com##.index_add +haosou.com###so_feb +po.baidu.com###shareBoxBlank +@@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn +www.sina.com.cn##.part-l +:81/c/i.php?id=$script +||rbift.icu^ +||chinafpd.net/js/2012-10/ +||qqcf.com/js/Content_Get.js +@@||chineseanime.vip^$generichide +||fztyrv.xyz^ +10jqka.com.cn###topba1 +chinese.engadget.com##div[class*="Mih(90px)"][class*="Bdbc(engadgetGray)"] +||onx8.com/zb_users/theme/ydgreen/style/ad/ +||mmn811.top^ +/banner.js$domain=28188.com|28188.net +||exoclick.com^$third-party +oschina.net##.float_adbox +||dykshao.cn/image/$third-party +||icws.jb51.net/good/arc2019.js +so.com###mohe-m-smzdm_haojia +||5184.com/container/html/news_view_gg +||gtimg.com^*/adv/ +czzy.top,czzy77.com#?#.swiper-slide:-abp-has(a[href^="http"]:not([href*="czzy"])) +||cnfol.com/index_new.php?id= +eefocus.com##.detailpage-rolling-ad +###cs_right_couplet +||qdaily.com/mount_details/pc/ +||ipuswrg.cn^ +2345.com##.coem-dzhcn +:800*/sc/*n=$script,third-party +||missyuan.com/sy/ +chuandong.com##div[class*="-ad"] +avtb2022.com###menu-main-content > li:nth-child(n+5) +##.top > a > .topline[src^="/photo/"] +##.adsense200 +sou-yun.cn###ads_index_2 +mail.126.com,mail.163.com##.gWel-bottom +||lveodaz.icu^ +tigtag.com###js-dropdown +hfxbs.cc##body > a:not([href*="hfxbs.cc"]):not([href^="/"]) > img +fqzww.net##a[onclick="qinlintes11t2()"] +||32.huanqiu.com^ +so.com##.tg-wrap-async +||360640.com^ +||52che.com/NewLocal/TemplateHtml/headflash1_ +||wj.jiancai365.cn^ +||cig.com.cn^$third-party +so.com###msocomBottomBanner +||ruiwen.com/jscss/ +||wqnwdjjc.xyz^ +/www/ads/* +||pmtrkp.icu^ +jisilu.cn##.foot_ad +||adbxb.com^$third-party +||sogou.com/ask?id= +weather.com.cn##.tuiguang +/mhw0/duniao/* +1010jiajiao.com###yueyu3 +||mdiygc.xyz^ +youth.cn##div[style="width:960px;height:90px;margin:0 auto;"] +||totheglory.im/pic/fangtuo.jpg +bootcss.com##.bs-docs-sidebar a[href^="http://click.aliyun.com/"] +||dy2018.com/jsdd/ +||39.net/js/google/ +chinapdf.com###floatright +qqxiuzi.cn##div[onclick][style] +##.ibtad +jmcomic1.me#?#.container > div.row:has(ins[data-width="300"]) +||beareyes.com.cn^*/ad/ +enread.com##.channel-nav > .back +soyoung.com###pubWideBanner +bilibili.com##.bili-video-card:has(.bili-video-card__info--ad) > .bili-video-card__wrap +||szmyl.cn^ +||b37r5.cyou^ +||prettyvirgin.com/js/show.html +@@||costco.com.tw/_ui/shared/js/analyticsmediator.js +@@||analytics.163.com/ntes.js$domain=3g.163.com +360zbz.com#@#.rightad +||kuku99.com^$third-party +||gg.7976.top^ +qzone.qq.com###appstore_sidebar_l +||rainpat.com/Scripts/jquery.SuperSlide. +||oehcxmhk.xyz^ +||ahgame.com/js/new_ad.js +||hackhome.com/js/*top.js +114la.com###egg-packet +||xineurope.com/static/image/banner/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_rank +ishowx.com##.ad1160 +finance.sina.com.cn###ny-link-r +||dqrdwz.icu^ +.com/myjs/mys_alljs.js +||oyretuk.top^ +||speedtest.cn/api/v2/show +||x-resource05.com/media_orange/server-img/*_1200_120. +baidu.com,youdao.com,yun.cn#@#.share-content +||zozwnv.xyz^ +movieclassic.net###billboard-modal +||jdfzfd.xyz^ +||c4d.cn/api.php?mod=ad&adid= +ifeng.com##div[class*="SlideAd"] +||dgkship.icu^ +||sohu.com/mail/pv/ +douyu.com##.isLink[href^="https://igxe.cn/"] +||fepmpify.xyz^ +||imedown.info^*.gif +zh141.com##a[title*="廣告"] +||m1.vodjk.com^ +||qienews.cn^$third-party +||uflybplr.xyz^ +||hznaxah.cn^ +kekeshici.com###pcAd +meijumi.me###app_left +@@||sina.com.hk^*_ads.cgi +||zhongyi.ifeng.com/a/zt.js +||segoyg.xyz^ +||86uk.com/uploads/*0.gif +||showhaotu.$domain=18board.com|18p2p.com +@@||hc360.com/ad/*.css +||mrs30w.com^ +douyu.com##.fishop-anchor-recommands-box +||haxqxd.xyz^ +.com/js/a_d/ +||m.kankanwu.com/js/ +sbdm.net###hqmhBottom +||chinaacc.com/lamu/piao +||pixoctopus.pixnet.net^ +||udn.com.tw/upf/*_banners/BD/ +||ruguoapp.com^$domain=aixiaoju.com +||pharmnet.com.cn/cnbanner/ +baidu.com##.union-tg +nxing.cn##.boxclose +zhidao.baidu.com#?#.wgt-ads +360kuai.com###pendant_interactive_gg +||786yfvedhcbxjk.top^ +||hebtv.com/d/a/thea +ikjzd.com##.article-banner-wrap +@@||piaotia.com/scripts/readindex/tongji.js +||upload.cc/i1/2020/07/13/8BGJiL.gif +||msstatic.net/main3/common/assets/template/head/ad. +||88lm05.com^ +||dpe5t.space^ +||qdjimo.com/html/js/ +||freejavbt.com/assets/images/banner +vmvps.com##.spbox +@@||aliyun.com/nocaptcha/analyze.js +iqiyi.com##.zzVideo +qzone.qq.com##.side_wrapper.side_wrapper_v3 +@@/js/adview_*.adsbygoogle.js$~third-party,domain=letv8.cc|zhibo1.cc +voachinese.com##.slide-in-wg +@@||haichaobiao.com^$generichide +familydoctor.com.cn##.adExtra +blog.163.com##.postadlayer +chinamedevice.cn##.ads_img +||ya*.dwstatic.com^ +/8drama_yahoo/* +mcar.cc##.showhide > video + div[style="background-color:#FC0;margin-top:1px; width:500px; height:90px;"] + div[style="background-color:#FF0;background-float:right;margin-top:-371px;margin-left:500px; width:234px; height:375px;"] +||asp300.*/2017js/ +51wangdai.com##.cx_ad +blog.163.com###r_mlofteriframe2 +||cngold.org/api/p? +||jinyici.com/qq.js +||wnalzle.top^ +||szpxp.cn^ +||fast8.cc/skin/default/images/630652.png +chinacbe.com##div[style="width:960px; padding:0px; margin:4px 0; border:0px solid #CCC;"] +@@||feilusw.com/search.html$genericblock,generichide +@@||2018x.bid/adview.js +||67.21.92.*.gif +||doujs04.shop^ +||cpro.baidu.com/cpro/ui/rt.js$script,redirect=noopjs,domain=rjno1.com +pixnet.net##div[class*="article-ad"] +chinaqking.com###readerServiceDIV +||imghost.top/kita/ +pansci.asia##body > section.hide-on-print.mt-5 +sina.cn##[data-href*="://sax"] + aside +@@?adType=$domain=taotaosou.com +cncrk.com,kxdw.com##.gsdt +||520call.me/ad/ad_ +||imgroom.net/images/*.gif +||cvnxetmq.xyz^ +0597kk.com###kk_head_ad +##.container + .container > .warp > .cate +||cgczuu.xyz^ +##.top_box > li > a[href^="/js/app.htm?"] +jiagle.com##.bannergroup +5dm.link#@#.tm-share-this +||eqygki.xyz^ +||ooublik.top^ +||yinyouapp.com^ +||alicdn.com/imgextra/*_!!2207010417239. +||900.la/imgs/1bb725da-974f-43da-9eb9-dfdebc224949/2015-12-18/zg3wwaug.gif +||ifengimg.com/static/news/js/advtrack +@@||cloudflare.net^$script,domain=colamanga.com +||d1.sina.com.cn^$object,script +||bkiterv.top^ +||17173cdn.com/a/lib/vda/seed.js +||inifdlao.top^ +5588.tv##.ProDaTu +||fxkfhbn.xyz^ +jpsub.com##.floatbar_div +pcstore.com.tw###keyad-right +||4jffu.cn^ +two.game.tw#@##ad_02 +||ksvkfwth.xyz^ +3dmgame.com##.R_qingtianzhu +||migo011.top^ +mamibuy.com.tw,dyzd1.com,avcao.cc##.layui-layer +/xianbao_theme/ziyuan/1111/hongbao. +###adleft +udn.com##.overlay-container +||max211.top^ +###micast_ads +||gog.cn/sys/online_calc.js +||ylrjnhxi.xyz^ +||85wp.com/ad/ +||jiaoyu.baidu.com/tieba/ +||sqgnqc.xyz^ +||a.quangushi.com^ +2345.com###J_act_plane_hb +||mwurserx.top^ +40407.com###tcdgg +woaimoon.com##div[id^="juan_"] +||v1.taksh.cn^ +||waipian*.com/statics/recommend/ +||bwjfnj.xyz^ +||ddlvpmt.xyz^ +@@||kayixin.com^*/advert +e0575.com##.tg2 +sinami.com##.banner_centerRight +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_forum +||uuvzmba.cn^ +||ccav1.com/wp-content/uploads/an-temp/ +cnys.tv,4kya.com###player_pause +||ratedxbiz.com/d/ +hanjutv2020.com##a[style="width: 1120px;height: 70px;overflow: hidden;display: block;"] +52solution.com,imydl.com##div[class*="banner"] +##.search + #midBox +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="qunar_hotel"] > .c-border +download.csdn.net##.quake-slider +eastmoney.com##.popswipe +||lgmi.com/right_ys +||gepvgv.icu^ +||linovel.net/cp/lk/ad/externalAd? +/adsjs/* +manhuadb.com#@#a.d-block +###rightAD +||qunlove.com^*.gif +:81/s/i.php?id=$script +###Layeraa1 +||f1.ichong123.com^ +||firefoxchina.cn/2014/*_foxphone.png +hupu.com##div[class*="ad728-90"] +||194.59.220.161^ +||dkasdeerw.xyz^ +||goosedaily.com/advertise/ +yixingjia.com###wp > table[width="960"] +firefoxchina.cn##.float-small +typecho.wiki##.haliluya +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=4gtv.tv +-728-90. +hualongxiang.com##.quick_reply_ad +||oojjsa.com^ +||szmpy.cn^ +yunpan.com#@#.share-new +||blogspot.com^*/s1600/drug.gif +books.com.tw##.header_box_pop > [class^="flash_banner"] +/bbs/include/javascript/adblock. +##.widget-ad +360doc.com###divunderZcommondAd +||cycyw.com/mf/ +||ifengimg.com^*300x600 +kankan.com###adv_box +baidu.com##.download-app-parent +jiyingdm.com###otherWindowBox +@@||highcharts.com.cn/highcharts/modules/heatmap.js +||luolikong.net^$third-party +netbian.com##a[href^="https://ibaotu.com/guanggao/"] +||lwlwlw.com/ggzx/ +lzdcctv.cn##.ac_pc +kkbox.com##.google-ad-manager +hkwb.net##.rightadv2 +||fendeyrziz.top^ +/2me3/true.js +/\.[a-z]oubli[a-z].top\//$script,third-party +||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ +@@||alicdn.com^*/log.js, +viu.com##div[data-marker-title="undefined"] +###tr_ad9 +77bike.com,actoys.net,gpsuu.com,homefei.me,ksbbs.com,mgbbs.cn,oigps.com,opticsky.cn##.tac.mb5 +rou.video##.grid > div[class^="col-span"]:has(> div[class] > div[id^="ts_ad_native"]) +||jandan.net^*/3kbw2.png +cnki.net##.banner-main +||vk920.com/img1/ +@@||geo.query.yahoo.com^$xmlhttprequest,domain=tw.autos.yahoo.com|tw.buy.yahoo.com +wenmi114.com###xiezuo +qudao.com###wechat +my0511.com###lphybbschklogdiv +iqiyi.com##.float_div +##.feed-item[data-ad] +###piao_div_5[style*="width:140px;"] +##.house-ads +360kuai.com##.marketing-box +||zhimg.com^*_600x250 +firefoxchina.cn##.theme-adv +qzone.qq.com##.ck-act +||c.91wan.com^$third-party +||adbd.liuxue86.com^ +speedtest.cn##.ticket618_logo +||dydab.com^ +||bhaoea.cn^ +koyi.pub#@#.main_ad +##.mediav-newsfeed-listitem-type-1 +||baihuwang.com^$third-party +vansky.com##.liAds +||upload.xchina.biz/ad/ +hboav.com#@#script + div[class="cc5278_banner_ad"] +lahoo.ca##.right_multi_banner +playtv.com.cn##a[href="http://www.sdhanrui.cn/"] +##.ad-right +xyj321.com##.foot_alert_wrap +skinme.cc,yuntue.com##.huodong +||midifan.com/aaa/ +||wwwww.asia^ +ganji.com###write_resume_id +$object,script,subdocument,third-party,websocket,xmlhttprequest,domain=00ksw.com|0794.org|114zww.com|123du.vip|123wx.cc|126shu.org|12zw.net|13txt.net|147xiaoshuo.com|156zw.com|17k.com|1biqu.com|1kans.net|1pwx.com|1qxs.com|23hh.com|23qb.com|23qb.net|23sk.net|23us.tw|23wxx.com|23xstxt.net|24kxs.cc|2kxs.info|333uu.org|33yq.org|360xs.com|38kanshu.net|3yt.com|477zw.com|4xiaoshuo.net|4yydstxt226.com|50zw.co|50zw.com|50zww.net|51eshu.com|52bqg.org|52shuku123.org|52xs.net|56shuku.info|59xs.com|6666xsw.com|67shu.net|69kshu.win|69shu.org|69zww.com|7017k.net|777zw.net|779buy.com|77xsw.cc|8181zw.com|81book.com|91zww.com|93xscc.com|99mk.net|9tiefu.com|a6ksw.net|abqg5200.com|aiwx.info|aixiashu.net|aixs.la|aikushuge.com|b520.cc|b5200.net|bamxs.com|bbiquge.cc|bbiquge8.net|bequmo.com|bimixsw.com|biqiuge8.cc|biqudd.com|biqudu.tv|biquge365.net|biquge5200.net|biquge775.com|biquge98.net|xbiquge99.cc|biqugecd.com|biqugen.net|biqugesc.org|biqugewu.net|biqugse.com|biquka.com|aidu123.com|biquluo.net|biququ.info|biqusk.com|biqutsxs.com|biquzw.info|bisowu.cc|bisowu.net|bixia66.cc|bokanx.com|booktxts.com|boquku.com|bqg999.net|bqwxg8.com|bshuku.com|bxwx.live|bxwx00.com|changduzw.com|chenkuan.com|china-wuling.com|damengzhu1.com|ddbqgtxt.cc|diyibanzhu.buzz|diyibanzhu9.pro|dizishu.cc|dobiez.com|doupocangqiong.info|dpcq1.com|dpcq1.net|feibzw.com|fkxs.net|fxsc6.net|gaofuwu.org|gdbzkz.com|gdbzkz.org|guanshuya.com|haitangmi.xyz|hongyeshuzhai.com|huanyue1234.com|ibiqu.org|ibiquges.com|ibiquges.org|ibiquta.net|ibotaodz.org|idzs.org|ijjjxs.net|imianhuatang.info|ishisetianxia.com|ishubao.org|itshang.com|xvipxs.net|iwurexs.info|ixs.la|jcdf99.com|jieshengit.com|jiezhong.cc|jingwubook.com|jmshuwu.net|kanshu5.net|kanshushi.com|lewen123.com|lewenge.info|lewxs.com|liewenn.com|liudatxt.org|longzu5.net|luoqiu.io|lzbao.net|maxreader.la|mcmssc.net|mingrenteahouse.com|mqxs.com|msxsw.com|nuanyuehanxing.com|paoshu8.com|paoshuzw.com|piaotian.la|piaotian55.com|pksge.com|prpcoin.com|qiqidu.net|qishula.com|qishuta.info|qqxsnew.net|qqxsw.so|quge66.com|ranwen.la|rizhaoxs.com|roushuwu6.com|sbooktxt.com|sdhear.com|shanhaimiwenlu.com|shenshuxs.org|shenzu.org|shu008.com|shubaowang.cc|shumi.la|shumil.co|shuquso.com|shuyy8.com|silukex.com|siluwx.org|sinodan.cc|sjks88.com|soduha.la|sthuojia.org|stxsw.com|sxcnw.net|sytxt.cc|tianz.la|ting56.cc|tpsge.info|trxs.cc|tutengzw.com|txtduo.com|txtwan.com|tysk.cc|u33.cc|u33.me|wenxuem.com|wenxuemi.cc|whzh-xs.com|woaidu.info|wodexiaoshuoh.com|wolaidu1.com|x23us.us|x81zw.co|xbiqugela.com|xbiquke.com|xdingdian.cc|xhytd.com|xiashuyun.com|xiaxs.info|xinremenxs.com|xiushukong.com|xqianqian.cc|xs5200.com|xs7788.com|xsb-xs.com|xstt5.com|xszww8.net|xuanjiezhimen.org|xuanshu.org|xuessex.com|xwbxsw.com|xxbiqudu.com|xygwh.cc|xyuanzunxs.com|yemancomic.com|ygshu.com|yingsx.com|gytmh.com|ymxwx.com|yqd6.com|ysxs8.vip|yunxs.info|yuyougu.com|zhuishubox.com|zydu3.com|zzs5.info +news.pchome.com.tw##.adfloat +eastday.com##.golden_adv_2 +##.index-wz-ad +||erutvncw.top^ +kisssub.org##a > img[src*=".0o0.ooo/"] +||ld0766.com/*20*a/ +||btpian.com/static/wenquan.js +||youdao.com/rlog.php +||hjshal.com^ +||baidu.com/api/*/ads/ +||cwiuhtp.icu^ +sydneytoday.com##div[style$="-144px;top: 115px;"] +/adcms/js/* +||we560.com/js/*.js +||eduuu.com/website/public_js/pc_aso.js +||oxvlxwz.xyz^ +||saltsleaseholder.com^ +||yehaobo5.com/js/ +6parknews.com#?##d_list > ul > li:-abp-has(a[href^="http"]:not([href*="6parknews"])) +nczsks.com###rightyxjs +bigbigwork.com##.pinterestbox +123pan.com##.baidu-banner-container +||hdslb.com/bfs/ad/ +eastday.com##.right-suspension +.dajiahao*.top/getCodeDomain/ +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#$?#.img-list > .img-item:has(> a[href*=".ad_click"]) { remove: true; } +||inhe.net/Uploadfiles/inhegg2016/ +||wenhua.jiaoshou.com^ +||szyepu8.com/data/AADDimg/ +||kankanwu.com/le/ +51cto.com###advCanvas +||booktxt.net/js/easyAD +||syseen.com/content/uploadfile/*/hongbao.png +|http://*/js/ad.$domain=~coolpc.com.tw|~sac.net.cn +qq.com##div[id^="couplet_auto_"] +||dfvmzx.xyz^ +520call.me#%#//scriptlet("set-constant", "all520dddaaa2022ccc", "true") +||xianshuabao.com/ashx/pt.ashx?cmd=record&filter=&order=all& +olevod.com#$?#.swiper-wrapper > li.swiper-slide:has(> a[target="_blank"]:not([href^="/"])) { remove: true; } +||a.yangshengtang123.com^ +||t2.picb.cc/2022/08/07/6rpRKd.jpg +/104_150/1360_1| +:12289/o.js$script,third-party +jable.tv##.text-center > a[target="_blank"] > img +digitimes.com.tw##.edm-frame:has(> .adtext) +||perlmaven.com/img/sticker-you.jpg +@@||ad.thsi.cn/siteHome/ +qq.com###r_ad +romzj.com##.sectionThree +mamecn.com##.njjGsxzRight +game2.cn###rb +.189.gd^*.html?p=$popup,third-party +lihkg.com##iframe[src^="https://pb.lihkg.com/primis?"] +pianku.me###playad +||abminbuy.com/789. +hahamx.cn#@#.ad-1 +~upupoo.com##a[href^="http://www.upupoo.com"] +huaren.live##.action-ad +||sass.hk/images/hengfu.jpg +hao123.com##.recommend-link +###pop_hongbao +/conch/asset/js/open-vb. +||ql.uzuzuz.com^ +chexun.com##.ad1100 +||osafsr.xyz^ +/Images/ak47/*$domain=hanzify.net|hanzify.org +||pakaujf.icu^ +sci-hub.org.cn##.gs_r[data-cid=""] +||51cdn.club:453/hf85/960x +||jubnpx.xyz^ +##.w_ad +||manwa.me/static/custom/files/300X250.$image,rewrite=abp-resource:1x1-transparent-gif,~third-party +||mql5.com/rq? +##img[src*=".meituan.net"][style="width:100%;height:70px;"] +||empizem.cn^ +||cduno.cn^ +qq.com,sogou.com##.banner-vda +ifeng.com###g_code +||jandan.net/static/sos/recreate-games.gif +||jiyingdm.com/js/loadingshow.html +##.downcode[style^="position:fixed;z-index:1000;top:200px;"] +||kwivb.cn^ +||kiees.cn/img/ +fxykx.com,pantsu.cat#@##banner_ad +maomaomom.com###execphp-21 +###duilian_left +hdzone.org##a[style*="fixed"] +4gamers.com.tw##.aroma-home-page-float-ads +sina.com.tw##div[style*="min-height"][style*="250px"] +||douyucdn.cn/butterfly-java/*?width=1200&height=100& +afzhan.com##.newsRightAdv +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##style[id^="s-"] + script + script + div[id] +||meitiantv.com/ganggao/ +dataguru.cn###popDiv +news.gamebase.com.tw##.PCAD +||wlrjy.com/assets/images/*.gif +qidian.com###banner-two +||vinsgcs.com^ +||hb8g86k.mom/mz.js +||ali213.net/js/data/3gcommon.js +imooc.com##.redrain-bg-shade +||pic.gongkong.com/UploadPic/gongkong/ +tuliu.com##.zx-advertising-box +baidu.com#?#.container:-abp-has(>.bottom-section>.item_voice_room[data-yysid]) +||abminbuy.com/QQ +/advs/* +baidu.com##.optimus +||beareyes.com.cn/2/cat/js/*_right +360.cn##.ads-pic +@@||forexprostools.com^$domain=shougedui.com +||dwadwere.xyz^ +alotof.software#%#window.google_jobrunner = function() {}; +image.baidu.com##.tjImgli +||njjavt.xyz^ +meltoday.com,sydneytoday.com##.promo +||hkitblog.com^*-banner +chemicalbook.com,foodmate.net,nmgnews.com.cn,sportscn.com##.ad3 +||sanme2.taisantech.com^ +||kdipsumd.top^ +||fxnmjb.xyz^ +||chinacar.com.cn/Public/index/images/banner_ +||bookrb.com/images/jtt +||osmzym.xyz^ +so.com##.newsfeed-popup +||t.cn^$domain=28kys.com|92kvip.com +||a1.bookapka.com^ +||1cpkcnm.com^ +@@||genesyslogic.com^*/ads$~third-party +||megydyk.icu^ +||cdxyb.cn^$third-party +||dnxtc.net/xiaobing/ +ruten.com.tw##.act-promo +||yshlor.icu^ +||wgidskie.top^ +||hbjolp.xyz^ +elecfans.com##div[class^="banner_ad"] +/dbhf.js$script,third-party +loldk.com##.tools-recommend +lolshipin.com##.box2 +~aircn.org,~steamcn.com,~x3cn.com##.wp.a_t +duba.com##.liondance-wrapper +115.com##.gb-advs +hao.lenovo.com.cn##.left.icons +||miduoke.net^$third-party +||cr173.com/skinb/ +@@||supercloudsms.com/js/ad +||pcbeta.com/data/cache/common_fbdbbsyuzhttpx.js +||goole24.shop^ +duodada.com#$#body { padding-top: 0!important; } +||hao123img.com/res/js/common/as. +||lianty.com/getImg?id= +||tatyboy.top^ +||huya.com/leaf/*=vodadv&$rewrite=abp-resource:blank-mp3,domain=huya.com +||new-icon.ol-img.com/jslib/ad +||yu0123456.com^$third-party +||97ii.cn^ +||cdolhlwq.xyz^ +||couvxlif.top^ +||yldfkfb.cn^ +xyg39.xyz###__top_header + script + div +qingdaonews.com##.commonrightad +||bbqoa.top^ +cbber.com,you85.net###diy2 +#%#var AG_onLoad=function(func){if(document.readyState==="complete"||document.readyState==="interactive")func();else if(document.addEventListener)document.addEventListener("DOMContentLoaded",func);else if(document.attachEvent)document.attachEvent("DOMContentLoaded",func)}; +||cdn.haocaa.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.close_btn[src*="/adsense/"] + div:last-child +/m1938pc/static/css/sxy.css +||dy2018.com/js17/ +firefoxchina.cn##.mrec-banner +||sozi.cn/templets/sozi/js/js.js +/caiguu_gg_ +||aerbgpn.xyz^ +||bmp1.ali213.net/js/ +||t2.picb.cc^$image,domain=dmxq1.com +||gcw*.2liang.cn^ +/showpage2.asp?u=$script,third-party +||wpuiuwh.icu^ +||ithome.com/block/headerline$subdocument +||hwurseru.top^ +||meizhou.cn/comm/mygg/ +77mh.nl###bdbottop +||boqsxdpx.xyz^ +/heituad/* +:8080/js/v1.js$third-party +51offer.com###rightFu +||stat.mql5.com^ +||uogtrmjz.xyz^ +||ifeve.com/wp-content/uploads/*/WechatIMG +||one101.xyz/data/images/*.gif +bilibili.com##.operate-card[data-target-url*="doubleclick."] +||nhjn788.fun^ +||8seaa.com/template/assets1/js/vue.js +toy-people.com##.good72890 +||91bixin.net/api/adv/ +||s.69vj.com/assets/DIY.$image,media +||mini.hao123.com^ +||sobaigu.com/images/tencentcloudamd_1040x100.jpg +||kaosts.com^ +aguitar.cn##.headerbanner2 +||fdfghgfdd.yunqishi.net^ +autohome.com.cn##DIV[id^="popautoapp"] +storm.mg,mobile01.com##div[id^="dablewidget_"] +||kostool.cn/screenshot/ +||88ys.cc/js/abcd.js +axios-js.com##.lessonlist +plays01.com##.adbox-bg +||krbulhb.com^ +uisdc.com##.post-pm-content +||yeryt111.fun^ +/fuliba/js/n1.js +/skin/ecms082/images/kf- +/code/cpv.asp? +||dj97.com/api.php?mod=ad& +||p.udn.com.tw/upf/2014_banners +###qrcodeWrap +||shimo.im^*/ads? +##.maomi-content > .section-menu > .row > a[target="_blank"] +imydl.com###enhancedtextwidget-5 +downg.com##.Gs_d[href$=".exe"] +||yellowjm.com^ +58.com#?#LI[sortid]:-abp-has(.icon-zhiding) +||titan007.com/news.aspx +||yijuxie.com^$third-party +pp.ua###id_ad_image +||qyisloy.top^ +iqiyi.com##.oppo +/300x250. +||okpcyp.icu^ +||62mao.com/52 +||lianmeng.la/ad1/ +backchina.com##a[href*=".cardbenefit.com/"] +||cosouy.xyz^ +||pic.pimg.tw/promo01/ +###vpnModal.nordvpn-popup +7k7k.com##.page-right-side-btns-img-link +||lbx777.*/css/300.js +||hntkgpd.cn^ +le.com##.ad_layer +||gunepszy.xyz^ +||86uk.com/uploads/*0x +||daksflkalq.top^ +||kanmeiju.net/js/ +||sitv.com.cn/cookiead.php +_billboard_320x100.iframe. +xuite.net###single-bottom-ad +||alicdn.com/img/ibank/*_951336353. +||cdn.galacg.me/img/*.gif +zzbaike.com##.imglistbg-ad +||380.tw^$popup,third-party +hupu.com##.voteIndex +||8684.com/com/sys_ad_ +ntp.msn.cn##recommended-sites +###syad1 +p9.com.tw##.contentRightAd +baidu.com##.wgt-union +jmw.com.cn##.top_pic +.com/rmb/daohang*.js +x3cn.com###portal_block_12045 +||5gxs.org^ +##.theme_custom_slidebox-ad-below +||rmxizma.cn^ +||acasadf112.cn^ +##div[class^="is_"] > a > img[referrerpolicy="no-referrer"] +||i.imgur.com^$domain=av.movie +||pcjx365.com/kpimg/*.gif +###index_content_ad +||hkpeghqu.icu^ +udn.com###doctop +||mbiypew.cn^ +||xdyjt.com^ +fxykx.com##a[href*="zyttx.com/"] +||xprdmnlo.xyz^ +asmag.com.cn###adRightFix +||ohncc.cn^ +||nmxxvr.xyz^ +@@/adshow/*$domain=mndxy.org +||5etv.com^$third-party +16668tu.com,alibuybuy.com,chewen.com,faloo.com,newhua.com,ph66.com,tv.cntv.cn,weishangshijie.cn##div[class^="ad_"] +||lsfevr.xyz^ +||stat.2u.com.cn/ol_2u.js +||cnwnews.com/gg +/qiuyi-gg-wrapper- +auto-online.com.tw##.text_links_h +/g.jsp?uid=$script,third-party +||wuepo.cn^ +btbtt.me###wrapper2 > .width +ettoday.net##.ec_menu +businessweekly.com.tw##ins[pid] +dytt5.net##.detail-body > .fly-panel +##.adtxt +||nweon.com/wp-content/repo/ad/ +||tencent-cloud.com/s9m1/12f70718c866ea3e5f22c68e6a34c54f. +21cn.com##.h-gg +||lv.myapks.com^ +||szmgr.cn^ +||quwkke.xyz^ +hualongxiang.com##.bbs_box_gg +1010dy3.com##a[href^="/go"] +hl.cn###xf_right +||lfhnzbj.xyz^ +||baidu.com/cms/lemmaconfig/baikeDynamic. +###guanggao1[style^="position"] +||yemancomic.com/static/maoshuang.js +hao.360.cn###festival-theme > .right-entry-wrap +qq.com###mod_float_box +||upytsgo.cn^ +fsjoy.com#@#.main_adv +||allbeauty.com.tw/GoldPrice/*_CF.php +ddooo.com#?#ul:-abp-has(>dd:-abp-contains(高速)) +2345.com###J_s11_foot +||union.yihaodian.com^ +sina.com.cn##A[href="https://touzi.sina.com.cn/"] +||hdslb.com/js/bfd.js +||log.vdisk.cn^ +www.rkanr.com##div[id^="rkrCp"] +d.wanfangdata.com.cn##.wfPubAcc +21cn.com##.xuantu +/ikanfan/i.js +##.addddddwarp +||static.olelive.com/upload/site/*/*.gif +appinn.com###ranshownow +@@||tq121.com.cn/j/ad/caoyu-min.js$domain=products.weather.com.cn +||bd.dhsz.cn^ +.com/zz/tcc2.js +e-learn.cn###block-youyi +163.com##.ns-side-qrcode +||darren01.oss-cn-beijing.aliyuncs.com^ +pjtime.com###pjtime_full +hualongxiang.com##.khd_b +163.com##.right_originalcolumn_ad +||qbox.me/FnjnjJhJZlKZEGJ7qV1AocqusFbf +56.com##.goods_show +@@||tanx.com/ex?i=$script,domain=dlkoo.cc +sina.com.cn##.f_app_screen_wrap +||nxhh.net/gw/gw.js +||yp868.com/js/54h/ +sex8.cc##.b_mu > div#asx_text +ebc.net.tw###lotteryfnc +||jmhfw.com/index.php?/ajax/get_adv/ +||zsyk91.cn^$third-party +live.win007.com###notify > a[target="_blank"] +aeink.com##p[style*="82px;background:"] +||koolearn.com/www/subject/script/subject_form.js +whcykj.cn##.swt_bottom +/vjioew-1322507002. +||ckg.vipyl.com^ +||strip.taobaocdn.com/tfscom/$subdocument +/v.gif?logtype= +||hao123.com/static/img/taobao +58avgo.com##.BillingLeft +3322.cc###addr +.com/zz/yd2.js +||fq06.shop^ +/scr/wtixyd.js +manhuadb.com##.d-flex.px-2 +game.macx.cn#@##google-ad +##.module-adslists +news.cnyes.com##article > div:has(> div[id^="div-gpt-"]) +||szpnp.cn^ +.oeya.com/$domain=realtw.com +cztv.com##div[class^="banner_"] +theav.xyz##div[v-if="is_show()"] +pchome.com.tw###div_superbar_swf +||01u.net/js/tj.js +||mountain.zhidao.baidu.com^ +||gtimg.com/edu/pics/hv1/115/26/2077/135063670.png +||myhack58.com^*0$script +||xxxx88xxxx.com^ +.com/logo/ad.js +gufengmh.com##.animated +daweijita.com##.sidebar-right > .widget-box:first-child +||love.furenkeji.com^ +||qianhua.*/data/attachment/portal/ +||yhnvgdkw.xyz^ +||phpad.cqnews.net^ +||qzehwg.xyz^ +||tingroom.com/images/qsbdc.gif +||laoqo.top^ +||cnzzla.com/public/scripts/money.js +18comic.*##body .bot-per +||nfmovies.com/static/*.jpg +||lycc72.com/resources/js/content.js +@@||studioclassroom.com/ad/ +wdzj.com##.ggao-everyone-rebeat +||ankangwang.com/js/info.js +hoteastday.com##.reloadMedia1 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_thread_list[data-field^="\7b \"id\":4419048726,"] +gamme.com.tw##.list > li.ad +||dkhffh.xyz^ +sgamer.com##.plc > div > a[href*=".vgcool.com"] +chinaz.com##.media-banner_auto +lanrentuku.com###advbox +jiegeng.com##.l_div +###piao_div_3[style*="width:140px;"] +3dmgame.com##.tonglona_1 +@@||bdstatic.com/??*,*,*, +x99av.com#%#//scriptlet('set-constant', 'ADSOBJET', 'emptyObj') +||107.167.16.*.gif +:12289/slot? +||dm.jb51.net^ +||53shop.com/js/dun.js +||wyisloe.top^ +##.apd-footer +||168gamer.*/list- +wenxuecity.com#%#//scriptlet("set-constant", "adsbygoogle", "noopFunc") +||uunfybw.cn^ +||bzverx.xyz^ +||lele36.com/p/*.gif +||oweeiyw.icu^ +##div[id][style="width: 100%;"] > div > div > iframe[scrolling="no"][src^="http"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +||rndcdb.xyz^ +||chidir.com^ +||kgeqsu.xyz^ +||cpddgcr.xyz^ +rjno1.com#%#//scriptlet("prevent-addEventListener", "error", "event.target.tagName") +bilibili.com##.ad-report +||aaholidays.cn^ +||ged46.xyz^ +##.top_box > #news +||cpdronhu.xyz^ +www.pixnet.net###extradiv5 +||kuwo.cn/static/swf/xctg.swf +eprice.com.hk#@#.one-ad +||sogoucdn.com/app/a/100540022/2021022016080586548810.jpg +||zt2088.com^ +zhidao.baidu.com##div[class^="cms-slide"] > p[class="cms-link-title"] +||cachead.com^*.js +||oafhif.icu^ +||eastday.com/jrdftt/static/javascript/ad/configDouble11. +ifeng.com##.ad_04 +nownews.com##div[class^="footer_"] > div[class^="adBlocks_"] +||bjs.faxingzhan.com^ +/adpfile/* +51credit.com##.credit-box +/gamedog_mobile_ +||1905.com/data/js/*.json +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.switch_radios + div[class] +chinakaoyan.com##.side-wx +wandhi.com##a[style="display: inline-block;position: relative"] +||xuexila.com^*-xxl.js +alu.cn##.Tg_290x60 +||xinhuanet.com/jjimages/jc/js/fla.js +||iffobi.xyz^ +pchome.net###bzhref +||cowm199.com^ +||hqcx.net/index.php?m=poster& +le.com##.H-tg +qq.com##.adword +@@||hdsky.net/ad/down.png +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###loan_ad_mod_a +ifeng.com##div[class^="d_box-"] +qciss.net#%#//scriptlet("prevent-window-open", "0", "qciss.net") +1010dy3.com##.text-center[style] +||174.127.195.66/bbs/include/javascript/adblock.js +||imgur.com/df53F09.jpg +55188.com##.ggdistich +masturbation22.com,playallvideos.com,pron.co,ratedxbiz.com,taporn.com##.ima +@@||szhr.com^$generichide +||njreka.xyz^ +||jrtlisa.top^ +porn87.com##.pc_instant +||sugilip.cn^ +||pkyjuc.cn^ +||elsbfby.com^$popup,third-party +||wmeng.feihuadns.com^ +||pxxnejx.xyz^ +||piaotia.com/scripts/read/style +||ypcngw.xyz^ +58.com###rightRetui +||yanu.qiniudn.com/270300.jpg +.com/rmb/bofang*.js +||fpdisplay.com/upload/n_ad/ +6park.com##a[href*="jdoqocy."] +||my0538.com^*/thumb_1000_70_ +ifeng.com##.recommend > .picNews +5278.cc,hboav.com#%#//scriptlet('prevent-setTimeout', '/ad block stop|warm_msg/') +||doujs09.shop^ +||dio88.net/images/*.gif +fanyi.baidu.com##.extra-banners +||javhd.com/sb/ +##a[href*=".kaiyunty.live"] +/ysm.ezprice.net/* +||jav101.com/img5bbb0096f242f.gif +fullyu.com##.rightSide-top-ads +||51offer.com/pageData/getDataByModuleIdandKey.html?leadkey=adList& +||sf2.net/a/index. +||hitime5.com/skin/css/*.js +bdys03.com##.artplayer-plugin-ads +||autyxdek.xyz^ +||cnfol.com/Count.html +||ax.ifeng.com^ +||adzo.cn^ +||alu.cn*/aluad/ +##.wrap + #btmBox +baobao.baidu.com##.qb-relate-box +||heipa666.xyz/hp/ +||hy5.com.cn/admin/ +||51vob.com/js/hf.js +kaolashuwu.com###newmodule +||ubmcvideo.baidustatic.com^ +flight.qunar.com##.l_rside > .b_fly_ban_b:nth-child(2) +||cornpic.com/images/*.gif +||qq.com/tousu/img/20210522/4340189_1621663491.jpg +||90oo.com/tp/40 +ixigua.com##.J_ad +||xinmin.cn/framepage/yqLink1.htm +||x0or8.icu^ +layui.com##.layui-layer-tips +pornbest.org,pornlulu.com,ptt.sex##.no-gutters +||gcvgedashb3.fun^ +2345.com##.cmp-game-new +wenxuecity.com###marquee +/image/ad/* +||webkaka.com/script/cp.js +##.playtopad +66rpg.com###right_overlay +@@||c.mipcdn.com^$domain=prpcoin.com +||edadmy.xyz^ +###sponsorAdDiv2 +/skin/tb12/*$domain=firefox.com.cn|firefoxchina.cn +.com/js/discor_list.js +3dmgame.com###min_ad_con +muchong.com##a[target="_blank"][style="display: inherit!important;"] +||360kan.com/special/ +solarbe.com##.LT_banner +||ulrvkee.xyz^ +||91yun.co/download/ +boke112.com##a[href*=".tencent.com"] +||h1.cfxinxi.cn^ +||bcebos.com/725c659194eeebb8c6b970e52e2dc8aa. +||mc.mwgpg.cn^ +tzfdc.com.cn##div[id^="LMT_"] +bmlink.com##.Tg_1190x70 +/a/p?adid= +le.com##.lay_body[style^="width:980px;height:100px;"] +||y1.junshitt.com^ +3h3.com###gaosu_down_bt +||uc*.atobo.com^ +||hsex.men/nb/ +buzzorange.com###divRelated > .dfped +||91rb.net/js/gg.js +##.top_box > #foot +324324.cn###gg_468_60 +gate.baidu.com,m.baidu.com###container +huaban.com#@#img[width="240"][height="400"] +||7k7k.com^*/loding.htm +||3alian.net^$third-party +guancha.cn##.g_swiper_container +ebb.io#%#//scriptlet('set-constant', 'google_empty_script_included', 'true') +@@||51zxw.net/getvutf.asp?$domain=51zxw.net +||repian.com/a/ +/js/gg123/* +###ad_bottom +xueqiu.com##div[class$="__ad"] +||shang.hlgnet.com/code/ +@@||ad.alimama.com^$genericblock +##.nQIAj1 +zhujiwiki.com##.msg +yxdown.com##.news_tl +##a[href^="http"] > img[src*="pic.rmb.bdstatic.com/"][src$=".gif"] +chinaz.com##.media-banner__auto +||yfasjfk.icu^ +liba.com##.advert-l +juejin.im##.feedAdsense +m.babytree.com##.wrap > section[class*="0"],.wrap > div[class*="0"] +:1010/openV5.js +hao.360.cn,hao.360.com###activity +hdhive.online#?#.mt-4:-abp-has(>.text-lg) +##.cfa_popup +anny3805201314.pixnet.net###pilot +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_live_list +||dsaewew21.fun^ +||yohnoirs.com^ +bitauto.com##.advertise-nav-down +dzbhdm.net##.inn-nav__placeholder + .poi-container > a[target="_blank"] +gebi1.com###fwin_dialog +blog.sina.cn###pl-blog-artad +ooopn.com###ab-left +||act.chinatimes.com/aimg/ +hur.cn###ad810_6 +elecfans.com##div[style^="width: 960px;height: 40px;"] +||riscil.com^ +/pc/Tpl/baibaipc//js/* +||mat1.gtimg.com/2014/vikkydu/GA/haier +pcdown.net##.sort_list > .clearfix:first-child +hackhw.com##.d336x2 +mydrivers.com##.adds +zhidao.baidu.com###act-link-banner +||rk6h3.icu^ +baidu.com##.v-s-tuiguang-wrap +muchong.com##.xmc_viewthread_ad +||apk-01.oss-cn-beijing.aliyuncs.com/dp/ +||baidu.com/adver? +||988aiai.com/static/js/common.js +softblog.tw#@#.dshare +||spqi.xyz/static/tmp/ +pg-wuming.com#%#//scriptlet("abort-current-inline-script", "$", "!document.getElementById(btoa") +||lmtnfl.xyz^ +||kuaihou.com/js/new/xiazai +||fvyqblc.icu^ +###tr_ad11 +||ntrtifx.xyz^ +sina.com.cn##.tab_related_app_imglink +||mpyerxzn.xyz^ +@@||googletagmanager.com/gtag/js?id=$domain=av01.tv +1ting.com##div[style="position:fixed;bottom:0;z-index:999"] +||sinaimg.cn/large/$domain=chakd.com|seehd.so +||hexun.com/js/att_count.js +huya.com##.ab-content +league-funny.com##.more2ad_bb +bdinfo.net###header_AD +||itc.cn/hdpv.js +jmbbs.com##.middle_guanggao +||gd.189.cn^*.htm?SP=$third-party +##.mobadsq +||ultmjevd.xyz^ +||sobaigu.com/images/server_tourist.jpg +||bbttf26.shop^ +eeskill.com##.channel-featured-adv +@@||i2.bahamut.com.tw/JS/ad/animeVideo.js^$domain=ani.gamer.com.tw +||weagehn.icu^ +@@||bdstatic.com/static/common/widget/ui/admanager/ +novipnoad.com#?#.video-item:-abp-has(img[src*="/bd/"]) +admaimai.com##.in16_w01 > div[class*="_ad0"] +||6park.com/img/*0.gif +||gslejoki.xyz^ +||165tchuang.com^ +||wioboy.xyz^ +||pb.shuxigua.com^ +###index_aside_ad +d1xz.net##.base_ad_300_250 +kocpc.com.tw##.sidebar:nth-child(2) +||tingroom.com/images/z923.js +||autohome.com.cn/Topic/RobotVideo? +newtalk.tw##.dable_response +cbmland.com##div[id^="ads_"] +||imndl.icu^ +||ithome.com/images/productgif/pcmaster.gif +||sakguz.icu^ +||svhdbmp.cn^ +||arkkcu.xyz^ +@@||kf.cn/ad/css/*.css +||lnd.com.cn/sys/real_calc.js +bilibili.com##.adcard-content +58.com#?#LI[sortid]:-abp-has(.icon-jingxuan) +speedtest.cn##.speed-top-ads +||vpqko.fun^ +||bdstatic.com^*/fullpage-pop/ +||vansky.com/agdg/Individual/ +||shbznkj.cn^ +||6park.com^$subdocument,badfilter +chinanews.com##.add3 +||asyy6.com/dm/ +airav.cc###diy_right +fdc.com.cn##.yifangbanner +douyu.com##.hot-sign-1 +##.float-left12 > .div-list +codexiu.cn##.blog-twitter:first-child +||xinhuanet.com/iframe/ad +##.player-rm-float +||milimili.tv/js/loadjs/jquery +||pan.baidu.com/act/api/activityentry? +||17house.com/zt/style/*_banner*.js +lalulalu.com##.overture_banner +###ads_c_tpc +@@||tt1069.com/advert.js +###playerAd +litv.tv##body > .right_float_poster_container +||abdd*.com/js/abc/ +zol.com.cn###Article_Top_Banner +@@||58huanbao.com/skin/defaultcs2660/images/ad +||*xav.*/guang/*.gif +##.ads-after-header +.com/js/ads/ +||tu2.taohuaimg.com^$third-party +||pexavfro.xyz^ +##.widget_ui_aub +||jrjimg.cn/ad/ +.com/java/shang1.js +cool-de.com##.bustopads +1688.com.au###top-ad-layout-new +firefoxchina.cn##.chip-banners +||gaoqing.la/wp-content/uploads/*banner +||cartoon18.com/images/friend/ +||hweriou.top^ +||n0633.com^ +||yimuhe.com/n_ad/ +@@||fltaradio.com/js/ads.js +baidu.com##.ec-fc-ad-results +||synergyat.work^ +##a[href^="javascript:gl012"] + img +||alicdn.com/kf/Hd62261f1a7964c50824ac5982b1aa1bfk.gif +sina.cn##.midThreeAds +kdslife.com,pchome.net##.weixin +||rpeutxu.icu^ +||chazidian.com/czd_gg.js +yunpan.com#@#.share-wrapper +||w3cschool.cn/attachments/image/20170919/1505817817281252.jpg +||tc911.vip^ +weibo.com#?#.card-wrap:-abp-has(> .card-film > .card-head > .title:-abp-contains(广告)) +||fgttbz.xyz^ +###SOHU_MAIN > .module-cmt-float-bar +cgown.com##.breadcrumb-gg +||infobabo.*/da.aspx +sohu.com###turn-ad +||cp.qbaobei.com^ +159i.com#?#:-abp-has(> img[src*="gif"]) +||zhifuok.com/19xa.jpg +||xn--2qu96gouvko1a.com^ +gameapp.qq.com##.act-tips +||alu.cn/Ashx/AjaxGuangGao. +##.lt_ad +||4imk5.online^ +moe.best###rcm_sidebar +cnki.com.cn##.mainboxconbanner +boylove.cc###fake_avivid_waterfall_webpush +||dailynews.sina.com/gb/ads/ +netfly.*,netfly.tv##.container-slide +##img[onclick*="/c7.net/"] +||sinaimg.cn/large/6f8a2832gy1g7qyw7suqjj21400p0ake.jpg +||66308888.com^ +msn.cn##.consumption-page > above-river-block +||yptqys.tianqistatic.com^ +ettoday.net#@#AMP-AD +.cc/ads/ +/skin/footer.$domain=iimanhua.cc|iimh.net +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_left > div.result[data-cost]:has(.c-row > a[target="_blank"] > span:contains(腾讯广告)) +@@||fm.ipinyou.$domain=ipinyou.com.cn +dzbhdm.net##a[href*=".weixin.qq.com/"] +||hybbs.com/i/$image,object +||nzydzsw.com^$third-party +###ks > .DaKuang +##.index-top-ad +||chinaz.com/images/210x175.jpg +firefoxchina.cn##.side-tpth +|http://*.me/ad/ +/pge/?s=$third-party +##.banner-ad-section +@@||szhr.com.cn^*ad +chexun.com##.ad794 +jxnews.com.cn##.ad120050 +@@||tenpay.com/v2/res/pub/cps/main/bottom_ad.js +@@||freedidi.com^$generichide +||nqbcf.cn/html/top +360kan.com###js-eb-bottomad +||cpmlwhra.xyz^ +||iporn.world/attachment/ad/ +hepuwang.com##.n5_dbhfad > .wapper +||it610.com/views/front/js/special/ +||jrj.com.cn/s?z= +||ddshu.net/a_d_code/ +@@||yesiget.i234.me^$generichide +itdog.cn##.top_contents +||23qb.com/ak +91danji.com##.zlVideTowNav +||excelhome.net/js/banner- +/adservice.$domain=~adservice.io +sina.com.cn##.gamead1 +bamxs.com###inglestore +tianhaohz.com##span[style="display: block; clear: both; overflow: hidden;"] +||pwrgcxaj.icu^ +51ztzj.com##.dtmwrap[style="height:75px;background:#fff"] +game735.com#$#div[id^="gklobl"] { height: 1px!important; } +china.com.cn##a[href*="dwz.cn"] +||d1.zhuangxiu6.com^ +||470kk.com/js/indextop.js +||nsclick.baidu.com^ +###homead +game.eroge.xyz##a[href^="https://ffab.rqatmd.com/"] +||imageoss.com/images/*_GIF2400x120_ +||zjdruhn.xyz^ +||gegeyingshi.com/template/*/images/g_js/ +||jinnanyq.com/js/zmjw. +sinoca.com##td[align="center"][height="90"] +||btvbnrwo.icu^ +qq.com##.ad-long-pic +bkjia.com##.art_rightad1 +baidu.com##.guide-to-univer-app-root +wealth.com.tw#?##root > div[class] > div[class]:matches-css(z-index: 4):has(> button path[d^="M16 4c6.627 0 12 5.373"]) +m.toutiao.com##.recommendation-container + div[class] +||4399sj.com^*/mask-ad +/js/ads- +iqiyi.com###adflash +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,domain=xiebruce.top +yahoo.com##li[id^="gemini-ad-"] +qianzhan.com##.qqonline +actoys.net##.p_new_ad +||youzhan.org/img/aliyun- +||jjj*.com/static/js/common.js +||fppcrl.xyz^ +||optaim.com^$third-party +@@||icantw.com/platform/cover_ad/cover_ad.js +||dwhyjwrw.xyz^ +alipay.com###J-cooperant-banner +||pw2ct1.asia^ +/advertise_ +||car.qcmrjx.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > style[id^="s-"] + div[id]:nth-child(2) +||wples.com/pc/common.js +||360doc.com^*.html?t=$badfilter +||cycvyo.xyz^ +||qwsanan.top^ +gbyhn.com.tw##.footer-widget-column +a9vg.com##.a9-back-top_qrcode +||huanjugu.com/dm +###adBody06 +||baijs02.shop^ +||ziyzcu.buzz^ +||u4ccj.icu^ +briian.com##.hentry-gad +@@||jiav000.com^$generichide +###ad_headerbanner +ifxtx.com##.ppsy_content758 +iwan.baidu.com##.banner-container +ali213.net##.video-window +||m.bjdcfy.net^*.js +##a[href="/bbs/"] > img[src*=".bcebos.com"] +silisili.in##.play_ad +cnlmjx.com##.yw_ad +/iframe/ad/* +||ad.youku.com/vp? +||tupian9999.com^ +||555bbb555www.com^ +||vfdvdfv77.fun^ +##a[href*="/Register?a="] +||gdmm.com*/mybt/ +||eepw.com.cn/pub/js/TopFullScreen.js +||feakio.top^ +###aaheadtop +||qqainj.cn^ +||chunyuqiufeng.com^$third-party +@@||github.io/videojs-ima/node_modules/video.$domain=setn.com +###imgad +/bannerad. +sina.cn##[href*="://sax"] +rouman5.com#?#.col-md-4 > div.row:has(> div.col > h5:contains(支持一下吧)) +maxthon.cn###top-slider-ad +||idcot.com^ +||pconline.com.cn/js/ivy.js +haiwai.com##.container + .fixed-bottom[style^="box-shadow:"] +||999xx333kk.com^ +@@||ntust.edu.tw/bin/showads. +mh160.com###jusha1 +||sina.com.cn/NewIndexAdStart.js +cnool.net##.second-banner +/scrollgg_index.js +litv.tv##.ad_impression +189.cn,vua.sh,weiyun.com,youdao.com#@#.share-link +||analystrati.com^ +zh141.com###text1 +||manage.wdfans.cn^ +waipian1.com,waipian2.com,waipian3.com,waipian4.com,waipian5.com,waipian6.com,waipian7.com,waipian8.com,waipian9.com,waipian10.com,waipian11.com,waipian12.com,waipian13.com,waipian14.com,waipian15.com,waipian16.com,waipian17.com,waipian18.com,waipian19.com,waipian20.com,waipian21.com,waipian22.com,waipian23.com,waipian24.com,waipian25.com,waipian26.com,waipian27.com,waipian28.com,waipian29.com,waipian30.com,waipian31.com,waipian32.com,waipian33.com,waipian34.com,waipian35.com,waipian36.com,waipian37.com,waipian38.com,waipian39.com,waipian40.com#$#.player-rm > a[target="_blank"] { position: absolute !important; left: -3000px !important; } +mop.com##.rel-item-gg +||mfnfylx.xyz^ +baike.baidu.com##.baike-dynamic-wrapper +||eejwvwoo.xyz^ +||sex141.com/img/banner/ +||273knt.xyz^ +litv.tv##.internal_bn +bbs.my0511.com##span.smalltxt +||ieapak.xyz^ +pconline.com.cn##.hongbao_1111 +###adBody03 +||kekmhvbb.xyz^ +||dvnqhdmze.xyz^ +android-doc.com,apk.tw,chaojizhibo.net,chtoen.com,dizhishengcheng.com,doitwell.tw,epinv.com,ff14angler.com,fxpan.com,haoweichi.com,logi.im,lspdfrcn.com,moa.tw,moe48.com,numberempire.com,playok.com,reh.tw,shenfendaquan.com,vaptcha.com#@#ins.adsbygoogle[data-ad-slot] +||scoev.cn^ +ruanyifeng.com#?#.asset-content > p:-abp-contains(/二维|助教|0 元|报名费|原价/) + p > img +://adv.$domain=~adv.ru|~forex-tv-online.com +||bthypgm.cn^ +soft.macx.cn#@##googlead1 +||hp8g6.icu^ +sohu.com##.sidebar.right > div.extend-mod +###olfullad +||taotaogeren.xyz^ +||omheth.com^ +##body > div[style="display:none;"] + div[style="display:none;"] + div[id][class][style^="background-color:"] +||gth112.com^ +liues.cn##.widget-graphic-cover +esu.moe,esu.wiki###ASSPC +/js/piaofu_bet. +soyunpan.com##.jmwb +volcore.xyz##.avd2 +laosiji.com#@#.sns-wrapper +.com/js/bnnr_ +||wqzmed.cn^ +||ik123.com/js/dd.js +||ifkdy.com/_nuxt/44e01dcef4aa1a21d9a6.js +||cww.net.cn/js/urdev.js +://8ox.cn/$third-party +le.com##.lay_title[style^="width:490px;height:60px;"] +/js_ad_utf8. +||itbulu.com/banner/ +||zzbaike.com/main/*-20 +||kmwclt.xyz^ +||dian500.com^$third-party +vsping.com##div[style^="border-radius: 10px; box-shadow"] +.nyaa.fun/static/img/host/*.gif +||158zm.com/head.js +||lftpvh.xyz^ +||weste.net/js/showpagead.js +||1.hnyouneng.com^ +gdmm.com###hd > .wp > .module +xinhuanet.com##.adv-column2 +haianw.com###comiis_haianw14 +@@/adguard.$domain=llq.dml.ink +pcbeta.com#?##toptb ~ #wp > *:not(div):not(style):not(ul):not(script) + div[class][id]:has(div[style="display:none"]):has(script:contains(window.slotbydup)) +||wangjing.cn/images/js/YlFloat.js +||docin.com/building/getAdvById. +##img[src*=".c-ctrip.com"][style="width:100%;height:70px;"] +iplaysoft.com##[style*="width:3"][style*="height:2"] +/images/*.gif$domain=maichun5.info|myhhg.com +:800*/d/*n=$script,third-party +||oauqyw.xyz^ +||08088.top^ +jijidy.com###box +||b1.b2b168.com^ +nextapple.com###lrec01 +9xav.cc#%#//scriptlet('remove-class', 'q-body--prevent-scroll', 'body') +wendu.cn##body > div[style^="width:1000px;"] +||cdn.wo.cc/wo.js +boylove.cc##.reader-home-swiper +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###platform_spread_video +||lmvotk.cn^ +||vkdgdt.xyz^ +||1.shopit.cn^ +bilibili.com##a[data-target-url*=".taobao.com"] +/guang/guang*.js +||fx110.*/Scripts/1.0.0/gulpmin/Ghz/ +help.xunlei.com#@#.a_fr +zrblog.net##.ad_h +sina.com.tw##div[style="height:156px;width:570px;margin:0px auto;display:block;"] +cnstock.com##.newslist[style="padding: 10px 0px;"] +163.com##.idx_textlink_ad +javdove.com,javdove2.club,porn5f.com##.preroll-adv-popup-overlay +||firefoxchina.cn/chome_pmt_ +||doujs03.xyz^ +||cssqt.com/a/images/indexsd.gif +kknews.cc,read01.com##.axslot +||qrwcss.xyz^ +/1linbAte_mplatk/* +1010jiajiao.com###daan_recommend + .xiti +uuzzw.com##.topmedia +||gg.taoseyy.cn^ +||wscewc.xyz^ +||jianshe99.com/lamu/ +blog.163.com###loftertextlinkad +#@#.has-ad +||blzwvb.xyz^ +||udb3n.icu^ +#%#var AG_abortOnPropertyWrite=function(a,b){var c=Math.random().toString(36).substr(2,8);AG_defineProperty(a,{beforeSet:function(){b&&console.warn("AdGuard aborted property write: "+a);throw new ReferenceError(c);}});var d=window.onerror;window.onerror=function(e){if("string"===typeof e&&-1!==e.indexOf(c))return b&&console.warn("AdGuard has caught window.onerror: "+a),!0;if(d instanceof Function)return d.apply(this,arguments)}}; +||czsp12.com/api/*=advert& +||uuresdt.top^ +||dataoke.com/api/component/code-info/v1? +baidu.com##.spread-wrap +||ac.art456.com^ +||d6.mobaders.com^ +||bellessb.com^ +cnblogs.com###blog_c1 +||liangjan.com/js/show_ +gucheng.com##.right_info +cnbeta.com.tw,qudong.com##a[href*=".ctyun."] +||tmvebl.xyz^ +@@||hopto.org^$generichide +||olltcqg.xyz^ +ifeng.com##.ad05 +mydigit.cn##.radi +pinggu.org##.mui-mbar-tabs +52fzwg.com,79tao.com,hqol.cn,icabbs.com,k7d.com,kxdao.net,mcncc.com,sunwy.org,twunbbs.com,wnflb.com,wnflb2023.com,wnflb66.com,xkeba.com,zn508.cc##.GzList +@@||e9china.net^$generichide +rvlev.com,t66y.com#?#.tpc_content:-abp-has(>b:nth-child(n+50)>span>a[onmouseover="this.style.background='#DEF5CD';"]:-abp-contains(91TV)) > :nth-child(-n+55) +||999d.com^$third-party +||ifeng.com/showjs?*apids= +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.hgame_mod_theme1 +||acdwef114.cn^ +zhenbuka.com##.jq-toast-wrap +||zopuqv.icu^ +||qiyipic.com/common/*/kehuzhuanqu +@@||morosedog.gitlab.io^$generichide +discuss.com.hk#$#iframe[width="728"][height="90"] { position: absolute!important; left: -3000px!important; } +@@||edu.cn^*/ad.css?$stylesheet +actoys.net,hualongxiang.com##div[id^="ads_d_"] +@@||google.ru/translate_$media,third-party,xmlhttprequest +||thepaper.cn/bottomBanner_ +6789.com##.mm-force +||gffedashb6.fun^ +||sdo.com/static/image/mkads/ +||z1.pclady.com.cn^ +||img50.pingguolv.com^ +||ipsoazr.icu^ +||alicdn.com/kf/Ub1be4a53456c4dd2a7dbc839969ed856a.gif +sutin0831.pixnet.net#$#div[class*="-ad-sidebar-"] { position: absolute!important; left: -3000px!important; } +||kuke99.com/static/home/js/index/index.js +||iyxdm.*/js/gad_ +||brtlisv.top^ +e0575.com###img2 +||ly55442.com^ +||apple886.com/subs/*.js +@@||noahedu.com/ad/$~third-party +###widget-quan +423down.com##h3 > a[href^="https://mp.weixin.qq.com/s/"][target="_blank"] > span +||dyzgdp.xyz^ +##.box-ad +##a[href="/e/member/register/index.php?tobind=0&groupid=1"] +||api.live.bilibili.com/*/Banner +||e9377f.com^$rewrite=abp-resource:blank-mp3,domain=eastday.com +||jiaoben.jucanw.com^ +||mitbbs.ca/ad_ +qq.com##.jpBanner +||kocpc.com.tw/adsbyso.js +||wouvxlie.top^ +||zhihu.com/sku/km_resource?token=feed-right-banner +||grtarpcf963.top^ +||downyi.com/tg/ +cnool.net##.banner-ad001 +letv.com##.newyear_red_bot_wrap +##a[href*=".asd257642.com:"] +kq7.com##.J_appFromLen +@@||mccm88.com^$generichide +||61.10.2.86/dev/xopen.php +||sjgsgy.xyz^ +||zhibo128x1.xyz^ +baidu.com###search-union-ad +zhenbuka.com#%#//scriptlet("prevent-setTimeout", "ad_ids") +nownews.com##[class*="Side_"] div[class=""] > [id^="dfp-"][style^="width:"][style*="height:"] +heho.com.tw##div[id^="heho-ml-"] +||ckyriuf.icu^ +aeink.com##p[style*=".alicdn.com/"] +||ilvqyya.cn^ +gaokao.com##.adout116 +fx361.com###k_s_ol_chatWin +||china.chemnet.com/cnbanner/ +chiphell.com###diy2 + div +||yjxzvqy.xyz^ +||eastday.com/static/js/ad +||ad.52av.tv^ +||ifeve.com/wp-content/uploads/*/cachekit +/adswrapperintl. +ouyaoxiazai.com##.ad_show_1 +||baijs010.xyz^ +||elvirassb.com^ +159i.com,movieffm.net#@#.adsBox +niutuku.com,sina.cn##.bannerAD +||gybyxsy1588.com^ +/template/m1938-*/static/js/dao_ +||js.jstucdn.com/js/ad_37cs.js +/AdsShow. +youku.com##.sub-slides-wrap .swiper-wrapper > .swiper-slide:has(> a[data-intactspm*="drawer1.d_yk_ad_"]) +/guang/5liao.me.gif +/MDassets/images/*.gif$~third-party +##a[href*=".asd252466.com:"] +@@||uukanshu.com^$generichide +||kantie.org/a/images/car.jpg +||a.yuzhainan.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_banner +||atool.org/res/ads/ +||zt.chuanke.com/?mod= +tigtag.com##.couplet_l +wiki.mbalib.com###p-ad-bd +||qiyipic.com/zongyi/fix/mxdj +||591hx.com/images/0000.jpg +||xtcxflak.xyz^ +52bdys.com###ayx > img +||cijianggun.com^ +##.readerListADbox +||acwifi.net/wp-content/uploads/2019/11/20191119.jpg +||127.net/m/*/promPic.jpg +||gjhjjhgc.cn^ +||uqcktxp.icu^ +alypw.com##.adbkk +/ab_res/m/common.js +||t1.612.com^ +||1.95ye.com^ +||qkgllif.icu^ +||meilunsc.com^ +||xlpu.cc/adv/ +iqiyi.com##.ggwBox +###ad-box +csgoob.com#?#div[class^="dark:shadow-none"]:has(> div.ant-ribbon-wrapper) +||tupian88888.com^ +rfidworld.com.cn###placeHolderR +||1234good.com^ +||unpkg.com/hjadu/ +olehdtv.com,olevod.eu##.guangao +/page/?s=$third-party +||yqlxwb.icu^ +||88lm15.com^ +||cxsh.cn.com^ +unwire.hk###post-sidebar-ad +||e.so.com/search/pcnew? +||mznizrhd.xyz^ +##.banner-cctv-Topping +||ftdbtko.xyz^ +||fkesfg.com^ +sonimei.cn##.style03 +||wewrute.top^ +||24cmm.com:8888/js +||sdnc.top^ +mcdulll.com##.pixnet-ad +||sfjslib.top^ +ssnn.net###float_picr +||vuvnix.icu^ +aliyun.com##.aliyun-delivery-view-container +||aidmat.icu^ +ifeng.com##.adbest +##div[id^="a-loading-"] > span +weiyun.com#@#.page-share-box +nen.com.cn##.w610 +/adcomp. +dapenti.com##a[href*="sq.cc"] +||1024mzs.pw^$popup,third-party +||actoys.net/js/beitou.js +nownews.com#?#div[class^=" margin10_"] > div[data-reactid] > a[class^="clearfix box_"][data-on="click"]:has(> .right > [class^="category_"]:contains(Sponsored)) +||ljpbtjq.xyz^ +##div[style^="position"][onclick^="window.open"] +@@/adbanner/*$domain=bsgroup.com.hk|fjt2.net +||miaoshangmanhua.com/template/pc/skin01/images/250_250. +||8h93.com^*.gif +||gscsahv012.com^ +||yui-nya.com/wp-content/uploads/2016/12/neta370-370.jpg +||xdttxdqe.xyz^ +||kiees.cn/k1.js +||mdhv3.icu^ +baidu.com##.fufei-activity-bar +##.room-ad-video-down +fx110.com##.matrix-banner +@@||pos.baidu.com^*?di=u3160754&$domain=bigpixel.cn +/Appapi/jjlist.php +||umrstfl.cn^ +||cdnlog.zhenai.com^ +iask.sina.com.cn##.sj_680x250 +@@||ruten.com.tw/js/jquery.ruten.supertop_ad.js +||yes1.feng.com^$domain=feng.com +ibaotu.com##.comVip-tg +gzmama.com###mdvtips +douyin.com#?##videoSideBar:-abp-has(div:-abp-contains(/商品|商家|退款|店铺/)) +52pk.com###baidutop +yahoo.com##.wrapper-border > .Pos\(r\) > .VideoPlayer.D\(b\).Pos\(r\) +&ad_type= +||hudong.com/11/85/26100000005581147339859649123.jpg +vansky.com##.safari_pop +ssyy.ee##.container > a[target="_blank"] > img +sm.cn###download-uc-v2 +@@||adnet.qq.com^$~third-party +||whdx.cc/js/ +||sohu.com/api/labs/hotnews/c/load? +||6efgcdcjr000.fun^ +||muer.cdn-baidu.fs-sywh.com^ +eyy5.cn##.wzgg +||bumimi.com/money/ +||cnfol.com/pc/Js/as/ +benxiang.com##.ad_ld +###comic_reader + #adDisabledBtn +||kvpqrydt.xyz^ +||stat.yunfan.com^ +||wbaj.cn^ +||51miz.com/index.php?m=Ad& +sina.com.cn##.fl_feedFous +coolsaid.com##iframe[src="http://coolsaid.com/gmifr_lei.html"] +||qdzyspjx.com^ +##.frontpageAdvM +##a[href$=".xyz:8443"] +huya.com##.room-business-game +||cbcgqs.xyz^ +||duba.com/wangmeng/ +51cg1.com,h3ugz0.arwiotgiy.com,h3ugz1.biyuhcltj.com,h3ugz2.lrjhvntu.net,h3ugz3.ogvoxarpd.com,h3ugz4.uovxifzj.com,h3uaz0.ogvoxarpd.com##.post-card-ads +girlstyle.com,thecatcity.com,urbanlifehk.com##.pl-main-article__ad-block +||126ccb.xyz^ +cool-de.com###fwin_popadv +||ali213.net/static/js/*_ali213tv.js +maomaomom.com##.textwidget > table[width="1050"] +mydowndown.com#?#.bs-component:-abp-has(>a[href*="97jez.com"]) +##.ad_hover_href +ithome.com##.indexV2 > div > a +360kuai.com##.detail-top-banner +@@||91wii.com/source/plugin/unadblock/adjs_pic_cpc_cpm_cpa_guanggao_gg_ads_250x250.js +||alicdn.com/img/ibank/*_!!3820217494-0-cib. +iqiyi.com##.kwltp-leftgg +||6669667.com^ +dayanzai.me##.rban1 +||bd1.yidu.cc^ +||duiwai.baidu.com^ +my0511.com###idxtelecom +.com/images/102.js +/pic/ad/* +##a[href*=".xacg.info/"] +||gdcytv.cn^*.gif +7itv.com,fengchedmp.com,hdwan.net##body > div[style] +||fotaxf.xyz^ +||ljbrbz.xyz^ +||70url.com/aiaike/bood.js$domain=yingwangtv.com +||dzwww.com/k.js +wealth.com.tw#?##root > div[class] > div[class]:matches-css(z-index: 4):has(> div[class]:matches-css(height: 250px)) +muzhi.baidu.com##.leftnest +##a[href*=".n7.org.cn"] +||cnqaaa.xyz^ +@@||hinet.net/keys/a.key^$domain=ani.gamer.com.tw +||btc.com/v1/poster/production/explorer-banner. +autohome.com.cn##.monkey_box +caikuu.com##.photo_abv +||dfhgry.com^ +||kuaidiwo.cn/kdwkxmlt.jpg +||lxtuzcb.cn^ +||iqveat.icu^ +/dt/guanggao_func.js +42xz.com##[onclick*="godownload"] +oilchem.net##.LzAdv +##.hzxld +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.worldcup_info_banner_dialog +://m.*.cn/*.xmtl?$third-party +hdshare.cn,it168.com###adv +###ChapterView > .slide-baidu +||hexun.*/hxpage/index.html +tieba.baidu.com##.post_client_down +ettoday.net##div[id^="abp"] +||akabebe.com/jgg/*.gif +###crazy_ad_layer +||yeshefb.com/template/conch/dd/ +@@||eslite.com^*/ad +fishpi.cn##a[href*="guangdianhong.com"] +||epebuk.xyz^ +||uuishsa.com^ +||6699fa.cn/js/ +||auislq.top^ +360kuai.com##.novel_galery_icon +it168.com##.fu1020_box +suopao.org##.tr3.t_one[onmouseout] +||rou.video/js/exo.js +||woxwhfdo.xyz^ +||ylwrdnrw.xyz^ +||uebohjhh.xyz^ +||chazidian.com/statics/images/wangke.jpg +||djecgyk.icu^ +||u0082.com^ +||tiexue.net/zgg/ +mydigit.cn##.view-hover[channelid="smzdm"] +||gsywcc.xyz^ +||kfocken.icu^ +||zlyk.com^*/ysapp. +eet-china.com#?#.new-list > ul > li:has(> div.li-row > div > h2 > a[href^="http://pubads.g.doubleclick.net/gampad/"]) +##iframe[src*=".xxmh"][src*="?u="] +||tc8ji.website^ +ifeng.com##div[class^="topBox-"] +||mwerilxx.top^ +||hltoon.com/hanman/static/dist/ppm/js/foot +porn5f.com##.preroll-adv-popup-iframe +sinami.com##.banner_rightBottom +buzzorange.com#?#.sidebar > section[id^="text-"]:has(> .textwidget > .dfped) +||koauq.top^ +image.baidu.com#?#.newfcImgli:-abp-has(.fc-ad-tip) +@@||wl.jd.com/joya.js +##.bg_ad +||tdipsumi.top^ +||pccoo.cn/js/dlv1.0.js +||szdtf.cn^ +||panc.cc/uploads/hongbao.png +||zgm1.com^ +jmw.com.cn##[class^="advertising"] +||ccb.com.cn/V5/images5/left0.gif +||imall.cntv.cn^ +bejson.com##.modal-backdrop +||mvxz.com/boximg/ +||af9dc9.xyz^ +||dssddf33.fun^ +||dianping.com/mkt/ajax/getNewItems +||guess.h.qhimg.com^ +||xibfnb.xyz^ +3dmgame.com##.add_ +wasu.cn##.info_ads +||euresdw.top^ +itboth.com,itkeyword.com##.ad_pop_left_txy +||bwuwirv.cn^ +/content/clyscontent.js +csdn.net###layerd +sogou.com###appNewsBtn +##.ad_content_mask +3dmgame.com##.Tonglan +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="900"] +bilibili.com##.bili-video-card:has(.bili-video-card__info--creative-ad) > .bili-video-card__wrap +||ectyet.top^ +/wdzj_banners.js +||hc360.com/js/build/source/widgets/flowbao/flowbao.js +||bdgg.qjy168.com^ +ntunhs.edu.tw,ntust.edu.tw,sjsmitaa.org#@#.module-ads +||allkmbr.icu^ +duote.com##.links-banner +fun1shot.com##a[href^="https://kenio.cn/"] +?frm=*&ct=*&dit=$third-party +||ymdxl.com^ +jin10.com###J_wdgg_t +$script,third-party,domain=cilimao.co|cilimao.one +||kemmars.com^ +||aiai123.cc/js/*.js +ifeng.com#?#div[class^="titleImg-"]:-abp-has(span[class^="source-"]:-abp-contains(推广)) +freedidi.com#@#.adsBanner +||tlanyan.pp.ua/wp-content/uploads/meomiao.png +news.gamebase.com.tw##.PcRightHomeMiddleAds +ruanyifeng.com##a[href*=".apeclass.com"] +league-funny.com##.right > .fansCard +55haitao.com##.bbs-bottom-popup +||zhengliyqq.com^ +fastadmin.net##.article-section + div .img-responsive +blog.csdn.net###article_content > link + a +douyu.com##.giftbox +||easou.com/online/banner/ +/sinaLoginReward2014_comment. +v2rayssr.com##.slider-4-box1 +||so.open.163.com/v/list.htm?pid= +pc.yiyouliao.com##.yyl-video-list-item-width +||ykxafzdu.xyz^ +##.sidebar-ad +ltn.com.tw##div[id^="compass-fit"] +||gaofen.com/source/plugin/gaofen_ad/ +djwma.com###logo +cnblogs.com###xiaociguai +neatstudio.com##a[href*="&cps_key="] +||a1.51shiti.cn^ +||cnfol.com/f=ud/Js/Ad +affyun.com##.text +||bkjia.com/bkjia/js/artitle.js +@@||xianzhenyuan.cn/data/attachment/common/guanggao/adjs.htm +||xyj321.com/static/xyj/js/foot_slide_bar_ +/adimg. +tw.yahoo.com##.travelads +||pmzlnt.xyz^ +douyin.com###videoSideBar iframe +||hdtu.oss-cn-beijing.aliyuncs.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.content_top +sogou.com###PZL +||crjeymh.cn^ +neihanshequ.com###pageletTopBanner +||t1.xuefen.com.cn^ +pornlulu.com,pornbest.org###fullPageModal +baidu.com##.icon-bdad +@@||cdn.jsdelivr.net^$script,domain=movieffm.net +||by4d.com/love/ +qzone.qq.com###appCanvasTodayRecom +ccav1.com###nav-menu > ul > .menu-item > a[href^="http"]:not([href*="yigujin."]) +2cto.com##.adv980 +cnfol.com##.wid390AdBox +||slcmvgr.icu^ +bioon.com##.grid_6 +||so.com/resource/js/mod/detail/business. +@@||citytalk.tw/js/ct/common/v3/ui/fblike/FBLike.html +pcbeta.com#%#//scriptlet('abort-on-stack-trace', 'document.createElement', 'make_rand_div') +||wacisi.xyz^ +||halct.cn^ +olgame.tw##.nex_floor_banner +jxdbg.com##.indexmv +##span[title="neteasefooter"] +||meijutt.tv/js/layer/mobile/layer. +159i.com,china.com.cn##.ab +||hl.dyq.cn^ +||bshare.cn/bshare_view?Callback= +||meizhou.com/images/topbanner +dzbhdm.net##a[href="https://www.dzbhdm.com"] > img +###adad +||ktauoy.xyz^ +xgrb.cn##.d_2016_ggw +sac.net.cn###leftDiv +kpd122.com,ssp28.pw##.index-owl-carousel +hk.yahoo.com##div[id^="my-ads"] +1616.net###toplink +ettoday.net##.adHint +||xxl.bt-xd.com^$third-party +||amsbce.xyz^ +baidu.com###index_banner_top +/ifengRotatorAd.js +.com*/ps/psCreat.js +||dn*.ixinwei.com^ +||feesoon.com/js/cnzz_ +||162ck.com/v*.js +||valerieurania.com^ +ytbbs.com###dd1 +gamer.com.tw,~buy.gamer.com.tw##a[href^="https://buy.gamer.com.tw"] +##.a_cn +ctfile.com##.speedydown-info-box +tvsou.com##.story_ad_content_footer +atyun.com##.coupletbox +qq.com##.aaddvv__list +||heloisessa.com^ +||fvpboxu.xyz^ +||site-bk.oss-cn-shenzhen.aliyuncs.com/img/aliyun/ +||haiwainet.cn*/k.js +||jsgapai.icu^ +v.youku.com##.advertise-layer +baidu.com#@##results > div[class]:not(.result):not(.result-op):not(.sp-rslt-bar) +||azureedge.net/wp-content/cache/minify/3c6d7.js +||vuyibsm.icu^ +tianshif.com###comment-ad +85novel.com,digitalocean.com,ikjzd.com#@#.ad-content +||autoimg.cn/club/v1Content/images/heycar1111.jpg +||wkabios.icu^ +baidu.com,bdimg.com,tieba.com##.shield-agent-tb-feed +zhiding.cn###MgBox +yaya0506.com##iframe[style="border: 0;"][width="100%"][height="280"][src^="//www.12beststar.com/"] +msn.cn#%#//scriptlet('inject-css-in-shadow-dom', '#entry-point-hp-wc-root-wrapper[style^="margin-top:"] { margin-top: 0 !important; }') +3dmgame.com###index_bg_box +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.0.commercial.jumpUrl', '') +||arewcdf116.cn^ +6fzd.com,fzd3.com###comiis_app_block_84 +stockstar.com###dhwzl +||hh010.com/static/image/fff/ +||fq02.shop^ +||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg +||zpcj8.online^ +||qiyun.org/images/js/*.htm +qianlima.com###float_mask +||frgf99.fun^ +mafengwo.cn###ad2 +||bs.baidu.com/app-ads% +airav.cc###Right_Panel > div[style^="margin-"] +chinanewsx.com##a[href^="/go/"] +||wefihob.cn^ +||google-analytics.com/analytics.js$script,redirect=noopjs,important,domain=ebb.io +1kkk.com,dm5.com,dm5.hk##.adform_2 +smzdm.com#@#.comment_share +xiazaizhijia.com###gg_2 +||sinaimg.cn^$domain=88files.net +||rugao35.com/Public/config/Couplet/Index +itbaoku.cn#%#//scriptlet('set-constant', 'killads', 'true') +||klfbnklddfbkn.com^ +cnfol.com##.Ad1000 +4399.com###ads1_1 +hkcards.com###ad-slot[style="min-width: 300px; min-height: 300px;"] +##.ad-banner +18comic.vip##.tab-content + .row:has(> div[class] > div[class] > .group-notice) +||hao123img.com/res/js/track.js +/guanggao/* +||zhulong.com/detail/floorOneAd? +csshello.com###topgg +||u0062.com^ +koolearn.com##.show_ad +dongao.com,zgsyz.com###ad +gvm.com.tw###colorbox +@@||bcebos.com^$script,domain=biququ.info|jingwubook.com +0597kk.com###cool_fixed +||elecfans.com/skin-*ad_ +||rgmmeff.icu^ +imydl.com##div[id*="banner"] +||analytics-union.sandai.net^ +||pexels.com^*/sponsored_ +||kzepp.com^ +||xcar.com.cn/dsp/ad +||imageshh.com^ +chysg.com##img[width="232"][height="90"] +haianw.com###comiis_haianw01 +||youth.cn/qwtf2015/ +###ad_left +/info/ads/* +caoporn.com##.jw-icon-replay-contain > div[style^="display: block; position: absolute; background-color: white; width:"] +baidu.com###knowledge-answer +||fhtfnb.xyz^ +||jyewkb.icu^ +med66.com##.banner +||qange.com^ +||wuliao.juqingba.cn^ +haosou.com###haosou-banner-left +||kpmose.xyz^ +||pozrwj.icu^ +||mat1.gtimg.com/ent/flash/*300 +liaoningmovie.net#$#.app-container[aria-expanded="false"] section.with-ad { width: calc(100% - 20px) !important; } +||yeyemo4.com^$third-party,image +moegirl.org.cn##.moe-card[data-region="oversea"] +||yijfdsu.cn^ +||pcmx.autohome.com.cn/impress? +||5dmail.net/js/ +www.pixnet.net###extradiv2 +||23img.com^*/qomnyi. +||51offer.com/mod/public/talk/ +||liveany.com/images/8d8d.gif +jthysh.com##.box980 +||alchemeeten.com^ +||pm.poqwua.cn^ +liba.com##.advert-r +||av-yoyo.com/images/*.gif +||so.auto999.cn^ +zhongkao.com##.focusBox +||skaumbp.icu^ +||aitaotu.com/style/js/aitaotu +||dfcfw.com/EMFloatFrame/ +||jgygtv.cn^ +||bd888.qizuang.com^ +||bilibili.com/x/web-interface/archive/special/recommend?aid= +zybang.com##.question-below-text +feng.com##.dd305 +##.jav-nav + .bcpic2 +||gxzhshop.com^ +||partner.googleadservices.com^$third-party +||ichc1.xinglinpukang.com^ +china.com.cn##img[width="665"] +40407.com##.bg_r +||vjnxpj.xyz^ +instrument.com.cn###leftFlash +||btkat.com/style/l.js +||fenxiangdashi.com/Res/js/detail_ +###ad_hf_out2 +firefoxchina.cn##.ff-banner +||qilanxiaozhu.*/data/attachment/portal/ +||tqznjujv.xyz^ +/gamer/*$subdocument,domain=gamer.com.tw +haoduoyun.cc#?#.ebookRight > div.tb_cell.mb10:has(> div.listcell > div.lc_head >h2:contains(课本赞助商)) +||mqcoycx.icu^ +5imx.com###diy_mxad04 +||113.105.248.169^ +||wymqjow.icu^ +||pro.cn^$third-party +||dianping.com/hippo.gif? +@@||ttkdex.com^*ad$~third-party +||niwota.com^$third-party +bbs-mychat.com###cate_top > tr > .f_one +||srmsii.xyz^ +typecho.wiki#@#.downloadad +perfectmatch.tw#@#.right_ad +/advpic/* +360doc.com##div[style^="height: 90px; padding-top: 13px;"] +||iairuo.xyz^ +||jialingmm.net/img/gdw.jpg +||fang99.com^*/advjs/ +huaban.com,zcool.com.cn##.ad +159i.com###header + div > style + div[class] +||nwpcptmm.xyz^ +oneinstack.com##.w-ad +96weixin.com##.pop +tw.yahoo.com##[class*="has-beacon-click"][data-wf-beacons^="https://*.gemini.yahoo.com/"] +iqiyi.com#%#//scriptlet('json-prune', 'data.template.tabs.*.blocks.*.data.data.videos.*.ad') +||rotondelibya.com^ +ccav1.com##a[href*="meidebi."] +axiang.cc###photo-sliders + .widget_text +house365.com##a[style*="1200px;"] +cnqiang.com##.rad360 +||gtimg.com/newsapp_ls/0/27161189/0 +ixueyi.com,shangxueba.com###rightfloatdiv +v.qq.com##a[href*=".renrendai.com"] +4399.com#$#body { background-image: none !important; } +||udn.com.tw/upf/*_banners/BD/$third-party +supercloudsms.com##a[style="display: block;"] +chyangwa.net,motorfans.com.cn##img[width^="1200"] +3gsc.com.cn##.tipsA +yes-news.com##.new-index-main-728 +3d66.com##.botfocus +/cari/banner/* +||missevan.com^$domain=jijidown.com +jspoo.com##.apd +||cnplugins.com/templets/cnplugins/pushbox1.js +jable.tv##a[href*="?banner="] +||ymhyw6.lol^ +||kelatv.com/ad/ +tvbs.com.tw###news_detail_div > strong > a[rel="noreferrer"] +||ohdvafp.xyz^ +||bytecdn.cn/ta/resource/v0/analytics.js +||pianbar.net/JS/bootfloat.js +###rm-float3 +||qnvwjpr.icu^ +myptt.cc#%#//scriptlet("set-constant", "adsbygoogle.loaded", "true") +manhuagui.com##.gg_728 +cm.k366.com##.rightpart td[height="260"] +||wujiupic.com^ +bejson.com##div[id^="shuangshi"] +||3q1lsj.cn^ +news.xfastest.com##.vw-sticky-sidebar-wrapper #custom_html-5 +||cfdns.vip^ +||vvv.ieduw.com^ +blog.csdn.net##SCRIPT[src^="https://csdnimg.cn/release/phoenix/vendor/linkCatcher/linkCatcher.js"] + .t0 +mianhuatang520.com###addiv2 +||misjgy.xyz^ +myexception.cn##.m_a +##.video-info-aux + div[style^="border-radius: 5px;"] +baijiahao.baidu.com,feed.baidu.com##body > div[id$="-container"]:last-child +yibian.hopto.org##.yb-apng +sogou.com###appRedPackageAd +||guanggaolianmeng.net/plushuan/ad_js.php?aid= +||oqxep.cn^ +letv8.cc,zhibo1.cc#%#//scriptlet('trusted-set-constant', 'adsv', '"Y"') +.gif|$domain=7mshipin.org|viidii.info +||enuksg.xyz^ +vgtime.com##.vgart_top +duba.net###login_alert +aliyun.com##.yq-ads-blog +.com/sitejs/hansan.js +||tzfdc.com/Images/09/flv/flv_index.js +||sdxzqec.xyz^ +||linuxeden.com/plus/web_js.php +ezvivi.com###table1[width="336"] +###piao_div_2[style*="width:140px;"] +/ojborn.so?$script,third-party +||baidu.com/ndcore/interface/searchTop? +||iqiyi.com/player/common/rebull +||pconline.com.cn/js/ad_ +@@||aixifan.com/acfun-H5/public/script/sensorsdata. +||reacdf311.cn^ +||lanyes.org/content/templates/lanye2015/images/hb_banner.png +||becode.xiao84.com^ +chineseinla.com##.text-ads-col +appledaily.com.tw##.THISISANADHERE +||uqjqripb.xyz^ +4c.cn##div[id^="top_ad"] +/webcam.mp4$domain=91porn.com +||dongfangtai.com/2018/ +@@/iplookup.$domain=cankaoxiaoxi.com|dongfeng-nissan.com.cn|huomao.com|loldk.com|sina.com.cn +||wjoxqd.com^ +#%#var AG_abortOnPropertyRead=function(a,b){var c=Math.random().toString(36).substr(2,8);AG_defineProperty(a,{beforeGet:function(){b&&console.warn("AdGuard aborted property read: "+a);throw new ReferenceError(c);}});var d=window.onerror;window.onerror=function(e){if("string"===typeof e&&-1!==e.indexOf(c))return b&&console.warn("AdGuard has caught window.onerror: "+a),!0;if(d instanceof Function)return d.apply(this,arguments)}}; +##.ad250left +###Layeraa2 +eworldship.com##a[href*="ad_click&"] +###apprecom1.apprecom +@@||alimama.com^$domain=tanx.com +ruten.com.tw###ad-467 +ali213.net##.qztf +||gaoqing.la/wp-content/uploads/*GOOVIS +runoob.com###sidebar-right-re +||7kankan.com/scripts/new/indext +||pjaihds.icu^ +samsung.com###operationBanner +/code/pop_cpf. +xianzhenyuan.cn##.sd_ad:not(#xztba) +||jieshengit.com/js/*_ +###ADtip +||getitfree.cn/wp-content/plugins/anti- +carousell.com#@#.fb-b +@@||ccb.com^*^ad +###top_ads0 +ifeng.com##.cont_bottom_YySmall +||ypwlctfk.xyz^ +/static/images/ky888.gif +firefox.com.cn,firefoxchina.cn##.side-mod[track-key="side_tpth"] +bitauto.com###carshow +||abcj.dooccn.com^ +||btn.onlylady.com^ +.gif$third-party,domain=922tp.com +||leiphone.com/uploads/new/category/pic/*/740x140/ +||iqnew.com/d/js/m/thea +demaxiya.com##.tp_box +||360doc.com/js/index7/mask_index_yc.js +||ijksec.xyz^ +||wwads.cn^$third-party +||opwofty.cn^ +toolfk.com##.swiper-container-horizontal +auto-online.com.tw##div[style="width:728px;height:130px;margin:0;background:#000000"] +||jiupaozi.com^ +||iask.ca/img/*.gif +smzdm.com##.beiwo +hao.360.cn,hao.360.com###top_hotsite +babytree.com##.side-text-slider +||hyusnisu.top^ +ddys.*,ddrk.me#%#//scriptlet('set-constant', 'Object.prototype.canobpreroll_', 'true') +||tigtag.com/images/pic1/ +||hexun.com/inc/popbox.aspx +||sinaimg.cn/finance/*/sideQR +||iztwp.com/images/ +||a.mfcad.net^ +xkeba.com###diy90 +5054399.com##div[id^="gg"] +||uuuutp.com^ +||fxbcc.cyou^ +||jrjimg.cn/stock/adjsok.js +||obzthda.xyz^ +||hao123.cn/images/cp +wuyong.fun##.content-area .adsbygoogle +bigear.cn##.adpicright +@@||microsoft.com/translate/auth +@@||jlthjy.com^$generichide +||jia.com/js/tuku/footBanner_ +##.jqrp_infoflow_ad +||aispyd.icu^ +||vtnmxx.xyz^ +||50m.gkcyc.com^ +||02wq.com/script1/ +||union.china.com.cn^ +hxcpp13.com###player-bottom-ads +||a1.q6u.com^ +||wandouys.com/Runtime/Js/ +||ctvrtrya.xyz^ +10fang.com##.foldcss +zhihu.com##.WeiboAd-wrap +||uuu9.tieba.com^$subdocument +||baidu.com/tcx?*adbanner +baidu.com###cms-company +||1.xilu.com^ +||cooann.top^ +/js/zb.js$script,third-party +18comic.org,18comic.vip,jmcomic1.city,jmcomic1.win#@?#:-abp-has(>script[src*=".realsrv.com"]) +mobile01.com#$#.modal-backdrop { display: none!important; } +||vfdvdg67.fun^ +tianya.cn###bbs_login_div +mydrivers.com##.main_right_div[style="padding-top: 10px;"] +##.hlol_ad +##.widget_adbox +@@||adservice.google.com/adsid/integrator.js$domain=logi.im +||ryvexulg.xyz^ +easou.com##.ad-charge +||syislob.top^ +||hellogithub.com/v1/advert/ +cn.bing.com##.b_algo:has(.rms_img[src*="=AdsPlus"]) +||sifuwei.com^ +||lgtpdt.xyz^ +guozhivip.com##.tit > a[style="color: #f80"] +||news.jiukang.org^ +||ca2686564a.com^ +||333bbb777bbb.com^ +5068.com,ifeng.com##.gg01 +/common/ad. +||eol.cn/js/global/jQuery_ads.js +||aiwanma99.com^$popup +.gif$third-party,domain=yasem5.com +||njtbiml.xyz^ +||8jrc564wtf.cn^$third-party +iqshw.com##.iqshwad-comm +||alicdn.com/img/ibank/*_1847837006. +##a[href^="javascript:gl012"] +||hc360.com/js/module/info/info_liuliangbao.js +||tp1902abd.com^ +acgnx.net,acgnx.se##a > img[src^="/images/"] +||count.nuanyuehanxing.com^ +iqiyi.com##.cupid-panel + div +@@/mobileads.$domain=naviking.localking.com.tw +cnbeta.com.tw,thinkphp.cn##.cooperation +/template/*/lele36.html +@@||v2rayssr.com^$generichide +||momoshop.com.tw/league/$domain=beephone.com.tw +nownews.com##[class^="bg_"] > [class^="clearfix container_"] > [class^="rightSide_"] > [class^="box"] +sina.com.cn##.center-pdps-02 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.life_helper +||baidu.com/tequan/adpadmin_feed/ +||sufile.com/jsa/ +###news_top_advert +chinamedevice.cn##.logo_ads +linuxde.net##.ad360x500 +pcsoft.com.cn##.xzdz_huodong +tieba.baidu.com##.client_ad_topBanner +||u0067.com^ +||vk923.com/img/ +||cnjxol.com/images/20191031.png +||lywww.com/header_pic.php +zrblog.net###top_nav +@@||qhimg.com^*/monitor_analytic. +||vkguvyg.cn^ +/images/*gamble$domain=tvboxnow.com +||quyuancn.com^$third-party +/dygg_ +||bt888bf.com/da.aspx +||chinaz.com/zt/hanyi/images/sanji.jpg +/scriptonline.js?uin= +||ccdm*/Scripts/ccMedia.js +||mphj.com^*Runtime/Js/ +||baojia.steelcn.cn/images/$object +news.99k.tw##iframe[src^="http://news.99k.tw/open/open"][src$=".php"] +||bdcode.youke.com^ +##.Text-Advertising +##a[href*="/?aff="][target="_blank"] +ltaaa.com##.lAds +||xiaoz.top/assets/imgurl.js +||oiuuuc.xyz^ +||da.mgtv.com^ +||666hh999gg.com^ +||wacowla.com/wp-content/plugins/popover/js/ +huaren.us##.article_title_ad_img +||ugpibtpk.xyz^ +||yfzpxnb.xyz^ +||knalzld.top^ +xitongzhijia.net##.m_swift +||eastmoney.com/analysis/ +||zupulu.com/scripts/app/app.js +i-cable.com#@#.video_ad +||ecpoc.com/style/ad +||cibntv.net/youku/*.mp4?$media,redirect=noopmp4-1s,domain=v.youku.com,important +114la.com###dlAD1 +||panda.kdnet.net^ +segmentfault.com###first-ad +||rjzxw.com/include/ +||antpedia.com/antad/ +so.com###qiyu-brand-container +chineseinla.com##div[style^="position:absolute;"][style$=":0px;top:30px;"] +||comm100.cn/livechatserver/chatbutton.*&res= +soft5566.com###sharebtn +||szpwh.cn^ +||hinet.net/product/promotion/$popup +||hoopchina.com.cn/gamecenter/side-stg.js +||izcqyy.xyz^ +||hapic1.zhuangxiu22.com^ +||ssp.21ic.com^ +.top/ad/ +gamer.com.tw,pili.com.tw#@#.text_ads +qingwk.com##.l-index-activity-entrance +||apple.www.letv.com/env/? +@@||moegirl.org.cn^$generichide +||jd.com/bottom/cps +hao.360.cn###left-ria-fixed +##.bottomads + .leftd +szjjzs.com##a[href^="/pic/tiao/"] +||bttt11.com/ad. +my0511.com##table[bordercolor="#C0C0C0"][border="1"] +:8888/zhu/pc_ +###js_ads_banner_top_slide +||jcreje.com^ +muzhi.baidu.com##.wgt-container +||roxewwq.cn^ +aae3.com###menu +||mysteelcdn.com/advert/ +||poco.cn/v1_1/rank/get_floating_layer_ad +||rkgbqn.icu^ +/homead/*_appledaily_bg. +.niusnews.com/upload/banners/ +avtb01.com##.ads-player +hy5.com.cn##.toptxtad +||boylov.xyz^*/img/20*.gif +||alicdn.com/img/ibank/*_256401016. +||vainanalyst.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.thread_dir_ad +||x81zw.co/js/dsnmd. +techug.com##a[href*="/eee.html"] +131458.com##.ulfooter_top +||a.tvsou.com^ +2345.com##.act-market +||lnlkmr.xyz^ +##a[href^="http"][onclick^="setCookie"][style^="width:100%;height:100"] +qq.com##.mod_ad_square +dmhy.anoneko.com##div[id$="_adv"] +@@_cpc_cpm/$domain=youranshare.com +##.gggpost-above +||huiji-fs.oss-cn-qingdao.aliyuncs.com/huijiad/ +cnxz.cn###js_focusimg3 +playallvideos.com,pron.co##.rmedia +@@||zhaiyd5.com^$script,domain=louzhong8.com|miwens.com +gameapps.hk##.adClick +||lywww.com/data/js.php?id= +||m.m216j.cn^$third-party +@@||google.de/translate_$media,third-party,xmlhttprequest +||2345.com/pic/2345video.png +||7m.com.cn/b1/live_b +||hzrnbl.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###platform_left_float +||cctv.com/Library/a2.js +||wxmhau.xyz^ +||pos.baidu.com^ +25xz.com##div[style*="1002px;"] +||faxingw.cn/js/*0 +163.com###layout-bobo +bbs.51cto.com##.postinfo06a +||fontke.com/custom/ +eprice.com.tw##.ad-970x250-g +.xyz/js/ads/ +||bcebos.com/24x360x528.gif +||jsyefc.com^ +||kbayke.xyz^ +ilxdh.com##.bottom-show +||cpbl-elta.cdn.hinet.net/web/images/ad_ +||kjipko.xyz^ +8264.com##.ewmbox +||bd-js.duote.com^ +||go2av.com/js/AM.js +||17dm.com/s/common/js/*AD.js +sm.cn##.ec-goods-list +rfidworld.com.cn###IOTVote2017Ad +||mm1qj.icu^ +||kanpb.com/skin/images/ +infoq.cn##.widget-slide-weekly +||uu22002.com^ +koyi.pub#%#//scriptlet("set-constant", "fuzqingAdPlus", "emptyObj") +||wyohm.xyz^ +/tigtag_custom/include/popup. +it165.net##.advyello +mscbsc.com##.bao1 +163.com###floatLayer +||tj.21ic.com^ +163.com###suning-bottom-banner +foodmate.net,ting89.com##.ad7 +||itxueyuan.com/advPicture/ +itavcn.com##.dlggw-g +cqmmgo.com##.ad-160x40 +tieba.baidu.com##.client_ad_banner +qq.com##[dt-params*="ad_creative_"] +baidu.com##.search-aside-adWrap +||xinshijue6080.com/gg +||gwbnsh.net.cn/hd/unicom/ad.html +sblunwen.com##.c11 +@@/ad_banner/*$domain=donnaart.com.tw +||ithome.com/api/lapin/ +hao123.com##.mp-app-ad +qq.com##.body-Top-Ad +||bdunion1.suxiazai.com^ +applefans.today#$#.timed-pup { display: none !important; } +tangdoucdn.com#%#//scriptlet("adjust-setInterval", ".s--", "", "0.02") +setn.com##.e_ad +||gkutca.xyz^ +mail.pchome.com.tw###main_top_frame +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="20%"] > a[target="_blank"] +douyu.com##.ActPayDialog +||seslco.xyz^ +###ptcmsad1 +vanpeople.com##.advlr +juejin.cn##.activity-recommend +redocn.com###yc_adv_1_2 +||rvbiocn.cn^ +||dansheshi.com^ +@@||dlkoo.com^$generichide +2345.com##.newsArea +@@/js/prebid-$domain=huruwo.top +||minixiazai.com/others/all_soft.js +141jj.com##.moboad + .webad +||bxjhlhk.xyz^ +.cyou/*_*_u*js?$script,third-party +||998sus.com^ +||bmougwx.icu^ +##.widget_ad_rotator +forum.hkgolden.com#?#body > div[class^="jss"]:has(> div[class][style^="transform"]:only-child > div[class] > div[data-role="ad"]) +||jinxpn.xyz^ +chongbuluo.com###add + a +||img11.biyan8.com^ +baidu.com##.opening-season-dialog +###googleAdIndexTop +||bdimg.com/static/wkcore/widget/commerce/fengchao/ +json.cn##.tip[target="_blank"] +||xxqmtod.icu^ +flyblog.cc##.pixnavbar__top-bar__main-sites +meizhou.com##.cc_z1 +||xav*.icu/base/js/other.js +||yong.chazidian.com^ +||wdxxx.top^ +.xyz/o.js$script,third-party +baidu.com##.sf-wrap > .c-back + div[id]:last-child +||norse.mingxiaow.com^ +||kkpgv2.xunlei.com^ +bejson.com##div[id^="shua"] + font[color="red"] +asus.com##.bg_block +p2peye.com##.red-box +hupu.com###threadLeftAd +.com/logo/logo.js +##.samBannerUnit +||369bgrec.top^ +||heiguang.com/f/uad/ +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="50%"] +sina.cn##a[href*=".maozhuar.com"] +@@||v2cross.com^$generichide +||xitongku.cc^ +chbeyond.cn#?#a:-abp-has(> .xcybk-adfg) +_ad_bottom. +||6ft8a.icu^ +dy2018.com,xiaopian.com##a[href^="http://www.xiacai.com/"] +||gpmzkg.xyz^ +||r.99waiyu.com^ +eastday.com##.right_adv_3 +||51.la^$third-party +||5278.cc/js/check.js +||divxrj.xyz^ +@@||google-analytics.com/analytics.js$domain=citytalk.tw|ebb.io|komica.org|lenovo.com.cn|linetv.tw|maminews.com.tw|support.amd.com +newyx.net,yxbao.com##.gs +||vixajghi.xyz^ +||jgstny.com^$third-party +||cdn.wuyou.ca^ +||duba.com/baidu +||kgipui.xyz^ +||csmfee.xyz^ +||gongshe99.com/d/js/gongshe/gsw +fx168.com###ImgText_02 +@@||shopback.com.tw^$generichide +baidu.com##.swan-ad-fc-feed +2345.com##.top_news +||vhvwlb.xyz^ +||to8to.com/to8to_pc/common/modules/bottom_up_slide/ +moe.gov.cn,qspfw.com#@#.ad_title +6park.com##a[href*="geekbuying."] +bilibili.com##.container > div.feed-card:not(:has(> div > *)) +hk01.com##.article-grid__desktop-rhs-section > .items-center:has(> div[class^="sc-"] > div[data-id="lazyload-placeholder"]) +||iaindu.cn^ +62422.cn##body > table[width="778"][align="center"] +||6080.tv/public/js/m/uaredirectformobile.js +##div[align="center"] > a[href^="/url/"] > img[src*=".alicdn.com"] +||igao17.com/need/h5.js +loldk.com##a[href$=".html?from=video_right"] +51zxw.net###video div[class^="adpauseclose"] +||dp3.qq.com/qqcom/ +||hfptbf.cn^ +||akamaihd.net^*/sid.html?p= +||gyunce.xyz^ +||heapz.cyou^ +||so1nv.xyz^ +aiqicha.baidu.com,xinmin.cn#@#.share-title +/jdzjgg/* +||fq010.shop^ +hanime1.me##div[style*="width: 310px; height: 282px;"] +||youaima.com/zz/ +||6b856ee58e.com^ +##.lol_ad +/pages/ads +/fage/ad.js +.hk/ads/ +||ufiidvv.icu^ +jjwxc.net##.h8px + div[align="center"] +o8tv.com##.container > .row > .myui-panel-bg> .myui-panel-box > .myui-panel_bd > .myui-vodlist > .col-lg-8 > .myui-vodlist__box > a[target="_blank"] +||xx3691b.com^ +bkill.com##.cross-ad +||99lb.net/index_files/*/970 +xiaoma.net##.colunm-banner +##a[href^="http"] > img[height="60px"][src*="imgsrc.baidu.com"] +||szmty.cn^ +||g1.tagtic.cn^ +||letv.com/pzt/hyhmzq/index.shtml +###MyMoveAd +mydrivers.com###a_showhotnews_list_dia +||phb123.com/skin/js/tongji.js +111os.com,ahah3.com,qhyy8.com###couplet +18av.mm-cg.com###main > #twcgUUU +||ifeng.com^*/wapifeng +/cache/ad_js/* +didispace.com##.widget-wrap > p[style="text-align: left;padding-bottom: 20px;line-height: 30px;"] +qixin.com##.web-diversion-container +||aojeet.icu^ +123pan.com,meidebi.com,weicaixun.com#@#.share-list +||sogou.com/athena/ +ifeng.com##a[href^="http://ids.deliver.ifeng.com/"] +health.tvbs.com.tw##.h-full > div.flex-wrap > div.max-w-full > div.px-5.lg\:hidden:has(> div > div.flex.justify-center) +19lou.com##.editor-ad +||baizhan.net/js/136/jingyun_righttop. +||gd.ct10000.com^*/push/$popup,third-party +||yuanxue365.com/js/a22. +sina.com.cn###f_ask +###lovexin13 +||lgkocdi.icu^ +hackhw.com,ithome.com###hd_float +||jsf.cnlinfo.net^ +||fzbm.com/bbs/static/js/bma.js +||ssh.*.com^*!$script,third-party +php.cn##.wwads-cn +x-mol.com###floatWindow +redian.news##.md\:w-\[728px\].mx-auto +dyhjw.com##.nn_link +||iyinghua.io/bar/ +||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com +||ghoffice.com/bbs/js/float.js +@@/ad-close.png$domain=ch.com +||g6tgashb.fun^ +92wy.com##.adhengfu +huke88.com##.hand-once +163disk.com##.gg_990_65 +||blrpbt.xyz^ +ent.qq.com###ent_ad +jia360.com##.row-ad01 +||antdv.com/yideng +||vcxv787.fun^ +jspoo.com##.g-wznywzjs +huya.com##.j_posterItem[href^="http"]:not([href*=".huya."]) +/adsservice. +||zhengjie.com/a_d? +letv.com##.fl_app_bot_wrap +||vuirssd.icu^ +||ebiotrade.com/newsf/js/news_top_banner.js +avcao.cc##div#aa +||xszw0.icu^ +uu114.cn##.side_top_banner +##.wrapper > a[target="_blank"] > .ads +||miwfkm.xyz^ +||yiren34.com/js/ +2345.com##.wawaji +image.so.com###js_textlink +||yunzuowen.com^$third-party +linetv.tw##.aspect-ratio > img.object-cover + .aspect-ratio-content + div[class^="absolute inset-"][class*="bg-brand"] +||mumnxiex.top^ +||bd-china-1.appmobile.cn^ +##.page > .wp-none1 +||alicdn.com/imgextra/*_!!823262290. +/moneymaker/images/*.gif +@@||ad4.on.cc/web/www/delivery/ajs.php +/js/common/gg.js +||bqiapp.com/api/config/ad? +x-mol.com###rightAllJournal +||hexun.com*/hx_news/hx_news_finalpage.js +||gcvcdashb2.fun^ +||bpimg.com/4851/19f7543667f26682.jpg +||qnifdlay.top^ +||keydot.net^$third-party +||pcgames.com.cn*/index.js +hao.360.com#?#.cube-mod:-abp-has(.dh-cpcad-container) +||99danji.com/kchtml/ +##.containeradvertising +##a[href$=".php"] > img[src*=".bcebos.com"] +||zzbaike.com/main/arvixe +@@||930mh.com/js/config.js +||1.5000yan.com^ +||tx99y.net^ +cartoonmad.com##td[align="center"][height="102"] +ithome.com##.lapin +||ccccc88kkkkk.com^ +||leidad.xyz^ +||wap001.bytravel.cn^ +||sgadkc.xyz^ +/proxy_top_banner_js.php +@@||ecitic.com/source/*/pop +##script + a[href] > img[src*="lbsugc.cdn.bcebos.com"] +||hs640.com/js/jquery.js +hboav.com#$?#.cc5278_banner_ad { remove: true; } +iplaysoft.com###section_postbanner +||6.cn/coop/pub/getRand.php? +||p2ijd.space^ +editcode.net##.sd > a +||iiauu.cn/777/ +@@||republicbharat.com/_app/immutable/chunks/FloatAd.*.js$domain=republicbharat.com +icbc.com.cn###kv-admain > div[id$="_1900_380"] +sina.com.cn##.ad_01_center +guagua.cn###floatRoomDiv +||lancdn.com/tmp3/GG_Notice.png +||hhrerv.xyz^ +0597ok.com,nongjitong.com,typecho.wiki##.div_ad +92ghai.com##.a_xiu_t +||omzxutfm.com^ +/moneymaker/js/fkpp.js +acfun.cn###goniudan +||star-media.cn^$third-party +natgeomedia.com##div[id^="AD-970x250"] +||veaiyl.icu^ +||kkbbjtfp.xyz^ +actoys.net##.p_top_ad +32r.com##.gsxzdz > ul > dt +||9jsp.com/pay.png +@@||ixueshu.com/ad-server/ +||onefuq.xyz^ +/alljs/allwzwfoot.js +jyacht.com###playergg +bitauto.com##ins[type="ad_play"] +kocpc.com.tw##.kocpc_bot_ad +tw.stock.yahoo.com##td > div.ysm +/rightad/* +u-car.com.tw##.contad +||aa.gushiwen.org^ +###xqad1 +news.owlting.com##.profit-wrapper +###topAdv +qq.com,sogou.com##div[pbflag="bt_newsb_ad"] +||xiu8.com/baidu-tieba/*&forum_name= +jin10.com##div[id^="J_wdgg_"] +||right.com.cn/logo/yyb.png +1010jiajiao.com##div[style*="position:fixed;"][style*="bottom:1px;"] +##a[href*=".imiwang.com/"] +haianw.com###comiis_haianw13 +km.com##.downloadApp +17173.com##.list-beauty +||autoimg.cn/club/v1Content/images/heycar +/adTopBar. +||hao.rising.cn/catalog/bottom.html +||yhderd69.shop^ +||ayalcid.icu^ +||qk6.org/file/script/ +||8maple.ru/dzcm$rewrite=abp-resource:1x1-transparent-gif,domain=8maple.ru +||sinaimg.cn/news/article/article_qcode +||pic.yupoo.com/showflash/ +yun.cn##div[class*="ad-block"] +||smgsue.xyz^ +@@||aboluowang.com^$generichide +520film.net##.wapimg +36dm.club,36dm.com,acgsou.com##a[style="color:red;"][href*="show-"] +||66wz.com/data/attachment/portal/ +880sy.com##.fot_btom +||count.pcauto.com.cn^ +:88/999pc/ +/Runtime/Js/m_v_tuijian_ +disp.cc###ads_page_b +juxia.com##.game_img_list +/img/91/*_600_ +||koolearn.com/zt/poster_js/$domain=~www.koolearn.com +||4p68.com^ +||uebipacy.xyz^ +163.com##.tie-ad-bar +9s102.xyz###main > .container-fluid.mb-3 > .row > .col-sm .alert +xxt.cn#@##mainAd +||aldtop.com/scrtips/ +515fa.com##.gg_ad01 +||vgxbpf.xyz^ +||192.151.218.66^$third-party +||sdtsad.com^ +||hebei.com.cn/sys/online_calc.js +youivr.com##.header-widget-region +||aikkits.com^ +||fsdf45.fun^ +://banner.$third-party +ccoo.cn##.ad-wrap1 +||baijs02.xyz^ +chunyuyisheng.com##.ui-grid + .fixed-layer +||erqtga.xyz^ +||gliacloud.com/player/adgeek_teep +58.com##.ewmAdNew +##div[bannerlist] +###ad1[onclick="window.open(this.url)"] +weather.com.cn###ytc +@@||game735.com^$generichide +||cqvip.com/viewserver/ViewAD +||zhulang.com/zlpv.php +cool3c.com##.post-list > [class="board board-post board-cool3c_superboard_2 board-new clearfix"][data-board="cool3c_superboard_2"] +newsmth.net##.Smthtwenty_float +firefoxchina.cn##div[trace-key="ad_theme_skin_link"] +||d*.xinshipu.com^ +sogou.com##.top_adv_wrap +||ccwxma.xyz^ +||ad.doubleclick.net^$~object-subrequest,third-party +boylove1.mobi##.sponsor-colse +so.com##.commercialCell +cw.com.tw#?#.adActive > .list-link:has(> ul > li > div[id^="div-gpt-ad"]) +||ydss.cn/test.www.jdpay.com +yxbao.com###gs_down +firefoxchina.cn##.module-banner +||pfkgl.top/images/*.gif +||trenhdg.com^$third-party +avple.tv##.MuiSkeleton-root +||clgvlvbc.xyz^ +china.com.cn###gggg +||syndication.exosrv.com/splash.php?$xmlhttprequest,redirect=nooptext,important,domain=hboav.com +||yhdd1.com^$third-party +||3344ex.com/js/jc.js +||leju.com^*=abs.processReqChange +||supertaste.tvbs.com.tw/css/adunit.min.css +||s.btime.com^ +||guozh.net/wp-content/plugins/eazy-ad-unblocker/ +||execuri.com^ +jianshu.com##.self-flow-ad +##.alert_windows > .q-card__actions > a +@@/ads.js$domain=iyf.tv +||jane2.top^ +ydss.cn##.bm.bml.pbn > table > tbody > tr > td:nth-child(-n+2) +@@||emome.net/files/advertising/ +||pixfs.net/js/mib_falcon +||mesh.if.iqiyi.com/portal/lw/search/$xmlhttprequest,removeparam=adExt +||cjndvoglik.xyz^ +jokerlu.com,jokerlu1.com##a[onclick^="_czc."] +||shanhaimiwenlu.com/sh +itheima.com##.tanchang +365xuet.com##.cd-items +||58cdn.com.cn/nowater/webim/big/n_v2e722db7ca7f1458d92b7d6e57f833548. +hanime1.me#%#//scriptlet("trusted-replace-node-text", "script", "popunder", "/window\.open\('(.*?)',.*?\);\n.*location.href = '.*';/", "location.assign('$1');") +||vaekkfv.cn^ +duote.com###hengfu +||orutvnck.top^ +||hexun.com/hxpage_jrtj2020/ +||sdickeb.top^ +@@||daziba.cn/Images/share.css +buzzorange.com###primary > .dfped[id^="all-970x"] +0597kk.com##.kk_ad +||zztongyun.com/static/js/sh. +||fastadmin.net/uploads/store/aliyun +||suning.cn/javascript/sn_da/sa.js +gvm.com.tw###cboxOverlay +||1010pic.com/static/js/allpc.js +mobile01.com###show-play-ad +||inoreader.com/adv/$domain=inoreader.com +||pkk1.zuimeiniwo.com^ +hao123.com##.tvtip +||yzihdppw.xyz^ +jin10.com#?#.jin-timeline:-abp-has(.jin-tag) +||l7u3kf.cn^ +||vdfvdf33q.fun^ +/stuiA004/statics/asd/* +||pwuxnr.cn^ +||lalabaos1101.top^ +##.widget_ui_asb +||40407.com/plus/rpad/ +miaoshangmanhua.com##.cy_menuright +||jsyliea.top^ +||qdoshby.top^ +hao123.cn##.cool > tbody > tr > td[align="center"]:last-child +||kt51.com/images/kt51.gif +||6yso.com/wp-content/uploads/*-300-x- +||1qkmxbt.com^ +###lovexin11 +health.tvbs.com.tw##div[data-testid="ad-container"] +||retrefsf.cn^ +kankan.com##div[id^="cm"].banner +||linkpicture.com^$third-party +||itadapi.ithome.com.tw^ +@@||slit.cn/source/plugin/unadblock/*.js +weishangshijie.cn###wad_right +||vxdrfr.xyz^ +||panpan.org/other/ +||ff.qichetansuo.com^ +||ymewsu.xyz^ +##div#xinxi +||udn.com^*/ad/ +bjxfqc.net##script ~ ul[style] +@@||5qidgde.com^$generichide +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [class] > a[href*="//e.baidu.com/?refer="] +||5588.tv/js/piaofuImg.js +nasyun.com##img[width="275"] +freedidi.com##.sidebar-content > div[id^="custom_html-"] +yesky.com##div[class^="ad7"] +##.adspace +||huo720.com/back/ad_ +line.me###install_line +yahoo.com##.GeminiPortalStreamAd_handleViewport +||77xsw.la/novel/js/pagetop.js +||c.28rv.com^ +ifeng.com##div[class^="dbox"] +yuanxue365.com#?#.content-main > div > .container-fluid:has(span:contains(广告)) +||c2000.cn/c2000/ +||bkjia.com/bkjia/js/subnavtop.js +||apistat.wasu.cn^ +/static/ad/* +iqiyi.com##a[href*=".oppo."] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.order_repost_wrap +2dfan.com,galge.fun###popadv-container +aura.cn##.tc1 +||etest8.com/js/158/infojs/ +logo160.com##script + a[href="/"] +plus28.com##a[href*="/?Extend="] +||scupio.com/adpinline/ +||gg1.mengchongzu.com^ +||onegreen.net/MyFile/ +||iyingdi.com/goood? +19lou.com,cqmmgo.com,ihome99.com##.float-ad-wrap +||crazyit8.com^ +sgcn.com##.oyad2.cl +||gg.0598yu.com^ +vansky.com##.top-ad-link +||snxyf.com^$third-party +t66y.com##a[href^="http://www.viidii.info/?https://po88_"] ~ :nth-child(-n+115) +fsclzs.com###qvod +hkdm688.com##.bb01 +||lwlwlw.com/js/FVgg.js +||csdnimg.cn/common/redpack/redpack.js +@@||weithenn.org^$generichide +manwa.fun###detail > div:has(> div.ad-area-close) +500papa.com,papa03.com##a[href*="9927.com"] img +/js/ads/piao.js +baidu.com,bdimg.com,tieba.com###aside-ad +||c9ql2.com^ +cs.com.cn,pjtime.com##.ad_txt +||adf.dahe.cn^ +||hpy9w.cn^ +||sasadown.cn/ad/ +@@||pinduoduo.com/advert/$~third-party +||ctyusif.top^ +||666bbb222www.com^ +||ahernssa.com^ +ifeng.com,~mall.ifeng.com##A[href*="mall.ifeng.com"] +@@||117.60.146.16:8089/images/ +||shulihua.net/js/gzlishi468google.js +||u.riju.com/click.php +||c72w6.com^ +||cngold.org/cngold_float +||pgdt.gtimg.cn/gdt/$domain=info.3g.qq.com +m.babytree.com##.recommend-img-box +||gesvfvfhhb6.fun^ +||weibo.com/ajax/feed/getTipsAd? +baidu.com,bdimg.com,tieba.com##.fengchao-wrap +##.video-item-ads +##.bhgg +||hanjutv2020.com/index.php?c=dudu_ +zhiyoo.com###dialog1 +||dianjinghu.com/static/frontend/images/lol/penpen +||11.golang8.com^ +/web/ad/*$domain=gamer.com.tw +||hcbbsoss.oss-cn-hangzhou.aliyuncs.com^*-banner +||haokan5.com/js/haokanjs/youxiajiao.js +wantgoo.com#@#.shareBtns +@@||ez3c.tw^$generichide +||99886aaa.com^ +||cjzrfxs.xyz^ +||gamme.com.tw/ga/ +/static/js/gold_daddy.js +18-comicfrieren.xyz,18comic.org,18comic.vip##a[href*="//"]:not([href*="comic."]) > img +.com/style/vue.js?v= +pan.baidu.com##.phone-banner +||szjjzs.com/js/fe +||vatzxd.xyz^ +inmywordz.com,ants.tw##.acca-block +||eeyy.cc/style/yxj.js +||q1gel.icu^ +||webjx.com/zanzhushang/ +||bbccf12.xyz^ +iqihang.com#$#.app.padding > .header { top: 0 !important; } +gaoqing.la###head > a +@@||aternos.org^$generichide +||a.wzu.com^ +||tigtag.com/styles/phpcms/js/tigtag/ads.js +||gfan.com/press/ +hao123.com,jiegeng.com###siye +||aliyuncs.com/vss/haotu.js +4gamers.com.tw##.vue-portal-target > div[style="min-height: 210px;"] +feng.com##.ad-aside +||51gugu.com^$third-party +||mnorkc.xyz^ +||szbxm.cn^ +##.ad-left +chinaqking.com###newsAD +unikoshardware.com##.elementor-popup-modal +||myunion1.qm120.com^ +||bendibao.com/mo/adm_iframe.htm? +||yhsdwjes.xyz^ +||jsdelivr.net/gh/yaociyuan/ +||baidu.com^$domain=pos.baidu.com +~dongman8.com##.m_acmsd +||lalabaos1020.top^ +||chinapress.com.my/public/static_resources/img/*636x105. +silver.org.cn##.zl_login +yxdown.com##.r_b_fmt +/ajgg-1318512902. +||52dytt.net/img/zlgg.png +||tnfhxszj.xyz^ +||geotmt.com^$third-party +whnews.cn###gd_l +||kxd56.com/qq.js +###floatAd-right +wholehk.com#?#div[id^="postmessage_"] > div[align="center"][style^="font-size:11px;"] > font:contains(Advertisement) +||1fzjy.xyz^ +||netease.com^*bobologo +hoteastday.com###detail_mask_ad +104.com.tw###aidma_128 +||rising.com.cn/weblog/ +||2.haoxue360.com^ +||llj22.com/1.gif +160.com###w-btn-advertisement +v.pptv.com###video-download-game +||tymahuxv.xyz^ +line.me##.midAdModule-root +||dms.vancss.com^ +||gg3a.cc^ +lbx777.com,lbx777.net##table[width="325"][height="280"] +||d1zoi2q7y0e4d.cloudfront.net^ +###my_gd_a +likr.tw###avivid_waterfall_wp_product_area +zhibo8.cc##a[href*=".wanjiashe."] +/eucjhfxh/*.js +||stats.766.com^ +||win007.com/js/flashad +||0722fc.com/index/index.php?/ajax/get_adv/ +v2ex.com#?##Rightbar > .box:has(> .inner > div > span:contains(Sponsored by)) +##.adHF3 +###xqad +||comefromchina.com/images/128bestbuy +||6080aa.com/template/*/images/g_js/ +###xqad2 +playno1.com###m12 +##div#ad_id +##script + [id][style="width:100%;height:auto;min-height:120px;position:relative;display:block;"] +3czol.com##div[class^="ban_"] +zhicheng.com##.normal-banner +||xnbuapwp.icu^ +||a.guzhilin.com^ +||zantainet.com^ +||txhfgwgkwt8.asia^ +china.com.cn,csdn.net,cyol.net,lenovo.com.cn,liues.cn,wxrb.com##.AD +||oakmn.top^ +||baiducom.bj.bcebos.com^ +/runtime/js/index960.js +hexun.com###hexunCouplet01 +##a[id][href*="/?register="] +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(.wbpro-ad-tag:-abp-contains(广告)) +||alicdn.com/mtb/lib-smartbanner- +gameapps.hk##.pc-header-video > a[class^="top-ad-"] + .youtube-container +||shuneiya.com/js/wcnm/foot.js +@@||chtoen.com/js/adsbygoogle.js +qq.com##.mod_ad_side +||hontont.com^ +@@/fuckadblock.$domain=datehub.co|golangnote.com|joyk.com|liumingye.cn|lnk2.cc|poedb.tw|share1223.com +||qyer.com^*/base_beacon_ga.js +acg.d1dm.top##.module-adslist + a[target="_blank"] + i.gg-icon +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv#%#//scriptlet('evaldata-prune', 'entity.commercial') +||180.96.27.85^*.htm +||ent1.qunchua.com^ +3boys2girls.com###displayadbu3 +@@||sssbozh.com^$generichide +renren.com###videoAd12 +||msdn.hk/templets/msdn/*/gg.js +@@||cdn.sssam.com/static/js/*.js +ltn.com.tw##.list > li[id^="newspaper-native"] +||daima.ijq.tv^ +@@/adview_$domain=52xkdy.com|fydy8.com +||sinaimg.cn^$image,domain=hg6384.com-www.6u7u.com +4spaces.org,fuliba.net,fuliba2023.net,uliba.net,ypojie.com##.widget_ui_orbui +caijing.com.cn##.downdiv +||aizhan.com/imagesa/ +||chouti.com/js/tingyun-rum.js +||j.diangon.com^ +||zyfnbl.xyz^ +||4gtv.tv/4gTV_OTT.json +||cweriof.top^ +||koqjok.xyz^ +||qcepqj.icu^ +##.gg_full +||zqzq*.com:*/da.aspx +onlinedown.net##.u-btn-safe +@@||4horlover.com^$generichide +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video$domain=ulifestyle.com.hk +ddooo.com##.xzbtn +@@||520cc.cc/ad/520cc/images/tw_search_s.gif +||sdkjnbjksbnkjs.com^ +##.a_sxp +||555ppp777ppp.com^ +v.163.com##div[style^="width: 140px; height: 199px;"] +qq.com##.yw-gg-float +jinhua.com.cn##.banner1200 +/N-960x60. +boniu123.cc##.td_item +||di2y21.top/jian/jiansshu.js +||mttpsy6666.cc^ +soundofhope.org##.itb_ads +udn.com###sidebar_fix > .area.mag_topic > .nomurafunds > a[href^="https://p.udn.com.tw/upf/2016_sales/nomura/nomurafunds_2.html?"] +||gpowow.xyz^ +||ad.walkgame.com^ +@@||tangsanbooks.com^$generichide +tobosu.com##.tbs-bottom-order +track718.com##.track-search-ad +hao.360.cn,hao.360.com###festival-logoskin +##.ad-above-footer +||abcd789.com^ +||5vdd.com/360 +||vnet.cn^*.html +/moneymaker-banners/ads_ +||usltmus.cn^ +||hyjqgpu.top^ +||ofqvca.xyz^ +||icon.zol-img.com.cn/mainpage/js/click.js +@@||mediav.com/js/interactive_plugin.js$domain=v.360kan.com +sina.com##.parta_l_ads +to8to.com##.quoted-outside +@@||qq.com/server/website/CommWebGameSelect_ad.js +maiche.com##a.some-img +@@||pingjs.qq.com^$~third-party +zhihu.com##.Banner-link + .Pc-card-button-close +||gmxysb.icu^ +||skeyword.browser.qq.com/getHotRank +yiyouliao.com##.yyl-weiruan-ads-swiper +||qpawkw.xyz^ +||fun8.us^$domain=cartoonmad.com +##a[href*="/d27.tv"] +jurong.cn##.ad_190_60_5s +||szmwr.cn^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###j_ten_years +||autohome.com.cn/risk_fp_log? +||a.dlads.cn^$third-party +pianhd.com###myCarousel +oschina.net##.news_detai_above_ad +||juznlx.xyz^ +.top/ad- +||yhzjidgc.xyz^ +wnacg.com#@##adsbox +962.net##.g-962-ad +||gdmm.com/images/leftbottom.png +||txzqw.me/tupian/ +csdn.net##.panel_body > div[style^="position:fixed;bottom: 0;"] +||cp.7y7.com^ +ants.tw#?##sidebar > section.widget_text > div.textwidget > script[src^="//pagead2.googlesyndication.com/"]:upward(2) +###left_couple +@@||182.150.59.104^*/ad.css?$stylesheet +##.wumii-widget-ad +||hbbynt.xyz^ +@@||airav.cc/js/td_ga_tracker.js +18avtube.com,avmimi.com,mm-cg.com###friendLink +##.bottom_mengcheng_ad_wrap +/ads/ads. +||one.fsylr.com^ +@@||loltmcheck.com/js/ads.js +###footAd +||hanzify.*/Main/Template/Images/chinabank.gif +yesky.com###gfapp1 +||bweriov.top^ +||zlgame.top^ +.html?$third-party,domain=m.800xs.net +||ybrrvck.xyz^ +||eastday.com/static/js/eastday_ +||udxhzqg.cn^ +solarbe.com##a[href*="redirect"] > img[width^="3"] +aiyuke.com###Playerpad +||159i.com^*.php| +v2ex.com##.sidebar_compliance +vansky.com##.scol-banner +youku.com##.pop-prompt-box +||lianyexiuchang.cc/img/2f2372e9bf205df0.png +/Api/Ad. +qq.com##.masker_1111 +||rbsr0.icu^ +gohome.com.hk##div[id^="div-gpt-ad"][style] +baidu.com##.gg-content +hefei.cc##.bbs_app_fk > a:first-child +||greenxiazai.com/d/js/v/ +mydrivers.com,wmzhe.com##a[href*=".jd.com/"] +/botad.html +baixing.com##.a_d_s_hidden_link +jc001.cn##.ADS +yfsp.tv,aiyifan.tv,iyf.tv##.video-player + div.ps > div:has(> div.bb) +||zk789.cn/Res/Scripts/Show/NetSys/Show.ashx +chinanews.com###qizhi_div980 +manmanw.net##.tlads +stockstar.com##.siteAd_l +so.com##.js-business-list +@@||bytegoofy.com/ad/$domain=jinritemai.com +||mymqcy.xyz^ +||3337723.com^ +||emoney.cn/www/officalWebStatic/js/slideAd.js +@@/fingerprintjs2.min.js$domain=imooc.com +||bdm.ye-su.cn^ +10jqka.com.cn,faxingw.cn,gdmm.com#@#.ad_1 +||douguo.net/upload/post/d/ +bbs.it168.com##.daoh2 + .bor8 +||commonwealthproficient.com^ +||ogxstqna.xyz^ +||ettoday.net/style/mobileweb2014/js/smartbanner/jquery.smartbanner. +||u0083.com^ +###player_ad +||crvbnac.xyz^ +benyixiwang.com#?#p:-abp-has(a[href="http://www.sm9166.com"]) +||southmoney.com/page/top +||jspqhh.xyz^ +||tltmjevd.xyz^ +/jianpian.obs.cn- +image.so.com#?#.cell:-abp-has(.txt:-abp-contains(广告)) +@@||countrygarden.com.cn/ad/ +/the_top$domain=28188.com|28188.net +fang.com###xmlAd +||hefeng-group.net/attach/20200605/Fl05PJWEPUSuVt1x6PeHbHiaQ59J.png +||acdrewrf711.cn^ +hqdoor.com##.index_ad2 +||aafuck.xyz^$third-party +||cxdcn9c.fjshxjs.cn^$third-party +91lai.com##.D_guanggaotu3 +9ht.com,pc0359.cn,pc6.com##.downnow +||sp.qf.56.com^ +||yhimpnr.icu^ +||lkpxzt.xyz^ +3boys2girls.com##.float320 +||dnxtc.net^*/xiaobing +||141h.com/data/attachment/noblock/cf/ +||chaomi.cc/js/cms_ +baidu.com##.tc-card[tpl="fc_before_fixads"] +@@||ad4.on.cc/web/www/delivery/spcjs.php +/appnei-huodong.oss- +||33shu.net/js/game +||80s.so/html/ +baidu.com##.cbg-Ads +||toutiao.haotui.com/data/js/0.js +||usxuyr.icu^ +||top2099.com^ +hao123.com###yixing-siye +||mipcdn.com^*/mip-*ad- +||0uvt8b.cn^ +baidu.com##.wgt-ad-exp-pic +fx110.com,fx110.uk##.Adv_1 +baidu.com###j-ad-side +@@||duelmeta.com^$generichide +||vuetifyjs.com/notify.json +sdzbcg.com##td[width="297"] img +@@/adpro.js$domain=tingfm.com +heiguang.com##.syAdTopTxt +dahe.cn###adArea1 +||aqeivzm.icu^ +bmlink.com##.Tg_gg +||audgiqb.cn^ +||qxzlmzt.xyz^ +||zmklhev.cn^ +||4q87v.icu^ +||z.nowscore.com^ +@@/adslider/*$domain=firstbank.com.tw +@@/show_ads_$domain=ygo-sem.cn +@@||litv.tv/ads/ads.js +up01.cc###popad +##a[href*="/mobads.php?"] +/rightad. +||uvwnkmf.icu^ +baidu.com###video_push_box +159i.com#?#.style15:-abp-has(> img[src="//159i.com/images/arrow3.gif"]) +||gsuxyg.xyz^ +||bd.czxuexi.com^ +||jaychu.top^ +ifeng.com###upApp1 +||dajiahao9.top^ +masok.cn###bottomLayer +||zol.com.cn/adrs/ +hao123.com###lefttip-container +||right.com.cn/forum/static/image/common/logo +||c.pcswtw.cn^$third-party +||bdu.focus.cn^ +||baidu.com/ndview/interface/hx/ +||999aa666bb.com^ +@@||youmaker.com/js/prebid.js$domain=epochtimes.com +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.diamond-mall-aside +##.recommended-grids > .file[style="margin: 5px 2px 5px 2px;"] +||gdxxb.com^$third-party +szxx.com.cn###A0 +@@||yimg.com/ss/rapid-3.*.js$domain=hk.yahoo.com|tw.yahoo.com +jdbbs.com##div[style="margin: 0 auto 10px; width: 1000px;"] +||4wu3gf.cn^ +txzqw.me##.tac[style="margin-bottom:5px;"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post + div[class]:not(.l_post) +hexieshe.cn###media_image-3 +||cntv.cn/hezuo/ +||xlmdtiyqbkygtfkh.com^ +pipi.cn#@#.ad-root +||jtezxmpb.xyz^ +||gdyjs.com^ +##.html5-ad-progress-list +duba.com##.slidebar +baidu.com##.landrightbanner +@@||ujinbi.com/UpLoadFile/guanggao/ +||theporn.xyz/static/bet365.gif +||7x7n.com/static/image/888.jpg +loldk.com###meizi_ad +@@||192.168.*/advertising_$stylesheet +||1gmzo.icu^ +||educity.cn/self_text/text_disp.aspx?id= +2345.com##.act-yguang +||xhm.pub^ +||fuimg.com^$domain=678cn.com|cfzhushou.com +||ojvpigx.xyz^ +||requirejs.cn/ts.png +wuchajian.net##.UPAD +||yikeyz.com/pm.js +taoguba.com.cn##.wz_ad +mydrivers.com##.bb +||ys2000.cdn.bcebos.com^ +/service/ad/* +||yukbsa.xyz^ +||gushi.network^ +||ibaotu.com/revision/js/ad/ +ganji.com##div[id^="GcnADId"] +/banner-ad. +finance.sina.cn##.article-sax +||bdp.cn^$third-party +||amazononline.xyz/mp4/*.mp4$redirect=noopmp3-0.1s,domain=iyingshi7.tv|localmv1.com +avple.tv##.jss20 +/adintrs/* +||dxsjcz.cn^ +news.163.com##.mod_netes_origina +jd.com##.gl-warp > li[data-spu=""] +kxdw.com###downloadTop +||kjnsgqe.icu^ +qq.com###barrageBase +qq.com##.g-qzp-bottom +hupu.com##DIV[class^="game-center-"] +##.ad1000 +news.baidu.com##.swipe-backflow-container +mirrormedia.mg##div[class^="gpt-placeholder"] +||chuantu.xyz/t6/714/1580707721x3703728804.jpg +upmedia.mg###divider_ad +m.babytree.com##script + a[class] +news.baidu.com##.recommend-mask +eastday.com##.detail_fixed_gg +||ryyuvrt.cn^ +||bbsbaba.com/js/2.js +gucheng.com##.gcw_r_ad_pc +||satroki.tech/api/JdUnion +||pcauto.com.cn/forum/fz/hots/ +faxingw.cn##.indadv1 +||nkbpft.xyz^ +||c6.friok.com^ +||stsesc.xyz^ +btnull.org,gyg.la,gyg.si,gying.in,gying.net,gying.org,gying.si###ly +||23.224.89.2^$third-party +acwifi.net,zhain8.com##.ssr +cnbeta.com##div[id][style^="position: fixed; bottom: 0px;"] +189.cn#@#.share-panel +@@||gk.sina.cn/v1/gkmatch? +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.dasense +||m.aty.sohu.com^ +||dvser.china.com^ +@@||cdn.bootcdn.net^$script,domain=38kanshu.net|tianz.la +m.taobao.com##.install-app +sina.com.cn###SI_Comment_DA +163.com##.doc-footer-wrapper +bilibili.com#?#.video-card-common:-abp-has(>.card-pic>a[href*="cm.bilibili.com"][data-target-url]) +||kaoyan1v1.com/IAA/ +mrmad.com.tw#?#div[id^="mrmad-"][style]:has(> .adsbygoogle) +@@||miaozhen.com^*/m.suning. +||uphcrjth.xyz^ +||fbqrt.cn^ +aizhan.com###all_text_content +@@||10010.com^$generichide +||pierrebotton.com/global/ +chinese.engadget.com#$#[data-spotim-module=recirculation][data-spotim-showing-slots~="1-start-300x250"] .spotim-recirculation div[data-spotim-row] > div[data-spotim-slot-size="300x250"] ~ .sprcRftoX { margin-left: 0!important; } +||tui56.com/guanggao*.html +||un.ubaike.cn^ +||cctime.com/UpLoadFile/201*.gif +mydigit.cn##.txtMes +icook.tw##.amp-parallax-ad +enorth.com.cn##div[class^="guanggao"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.top_toutu_admarks + .tbui_slideshow_list +||mhdlll.com^ +104.com.tw##.career-clinic-ad +||ouyaoxiazai.com/static/img/cqthree.gif +||ytroytj33.fun^ +.com/vj1/$script,third-party +||cnyw.net/autoloader.js +@@||5278.cool^$generichide +jav777.xyz#%#//scriptlet("prevent-eval-if", "ADS_BLOCKED") +||51ztzj.com/js/you.js +dmhy.org##div[id$="_adv"] > a[onclick*="'ad'"][target="_blank"] +xiaopi.com##.down-list +:8888/mb1/wap_ +||aisy19.com/dm/ +raenonx.cc##div[style="display: flex; justify-content: center; align-items: center; position: relative;"] > iframe +v2rayssr.com#?#.content-area > .single-bottom-html:has(> div[align="center"] > .adsbygoogle) +||china.com.cn/statics/js/js_vag/ +||beacher56.xyz^ +tw.stock.yahoo.com#?#.news > div[class="bd quote"]:has(ul > li > .geminiAd) +digitimes.com.tw##a[href*="/webad/"] +||f5zv2.icu^ +toy-people.com##.right_bottom_bb +||v1.19purify.com^ +||jpcctez.icu^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl="app_normal"] +guokr.com##.guokr-layer-beforelogin +||hyhy2.fun^ +||right.com.cn/forum/static/image/common/logo1. +||uycxhgrp.xyz^ +wandhi.com##.table img +waipian1.com,waipian2.com,waipian3.com,waipian4.com,waipian5.com,waipian6.com,waipian7.com,waipian8.com,waipian9.com,waipian10.com,waipian11.com,waipian12.com,waipian13.com,waipian14.com,waipian15.com,waipian16.com,waipian17.com,waipian18.com,waipian19.com,waipian20.com,waipian21.com,waipian22.com,waipian23.com,waipian24.com,waipian25.com,waipian26.com,waipian27.com,waipian28.com,waipian29.com,waipian30.com,waipian31.com,waipian32.com,waipian33.com,waipian34.com,waipian35.com,waipian36.com,waipian37.com,waipian38.com,waipian39.com,waipian40.com#@#a[href*=".umtrack.com/"] +huya.com#%#//scriptlet('remove-attr', 'style', '#banner[style*="background-image:url"]') +||qiji1.jdwx.info^ +dm5.com,dm5.hk##.cl760 +||002777.xyz^ +/cpro.$popup,third-party +||mat.chasedream.com^*.gif +||chinamedevice.cn/cnbanner/zjmz.gif +||static.jfrft.com/js/main_video.js^$script,redirect=noopjs,domain=dilidili.wang,important +||feijisu*.com/js/huimi- +||tinypic.com^$domain=fdzone.org|jandown.com|mimima.com +4gamers.com.tw##.home-carousel-container +||ihssdas.icu^ +.io/js/ads/ +||worlderva.com^ +unwire.hk##.post-main-ad +##img[src*=".sinaimg."][style="width:150px;height:300px"] +||huoche.net/public/huoche/ad/ +699pic.com##.springtime-floatLink +||17173.com/api/video/PlayerPopup? +beianbeian.com##div[style="height: 62px;margin-bottom: 20px;"] + .layui-table +appledaily.com.tw##.owl-lazy[tcode^="AD:"] +||kkisoo.com^ +||right.com.cn/logo/*.gif +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.BAIDU_CLB_AD +/sinaLoginReward2014. +||1.mgff.com^ +||analy.tuniu.cn^ +ifeng.com##.news_ADbox +sinolub.com##div[style="float:left; padding-right:20px;"] +||cidianwang.com/css/tj. +||smqzj.com/seo.js +boke112.com##.custom-html-widget > div[style="margin-bottom: -7px;"] +||mphj.com/Runtime/Js/ +||hvxrvef.xyz^ +||336t.com/cf/js/data.js +||kwurserd.top^ +||hshmbx.xyz^ +||pcauto.com.cn/forum/autobbs/clubtl/ +ypojie.com#?#.excerpt:-abp-has(>.focus[href^="http"]:not([href*="ypojie"])) +taihainet.com##.top-info +.com/adv? +||7f7rt.icu^ +||360buyimg.com^$domain=chdbits.co|qianggou5.com +||momoguoji.xyz^ +@@||hanjubaike.com^$script,~third-party +##.float-adv-right-bottom +sanhao.com###reg-bar +||afewe611.cn^ +ibaotu.com##.bg-feedback +||affyun.com/wp-content/uploads/*/ad- +wnflb2023.com##.GzList +||itbaoku.cn/Content/jms_ +||alicdn.com/img/ibank/*_1980598585. +hl.cn###xf_left +||zoukankan.com^$csp=script-src 'self' * 'unsafe-eval' +2345.com###J_tip_stopXP +||jiuab8eig2oateh01.site^ +hexieshe.com,hexieshe.xyz,xxshe.info##.mh-sidebar img +@@||ipfs-lab.com^$generichide +1avlang.com,avavl4.com,avlang.com##.index-info > .tac +nowscore.com###toperText +||aixifan.com/appSpreadContents/danmuad +ftchinese.com#%#//scriptlet('prevent-setTimeout', '.offsetHeight') +||gmbbk.com/fb.js +##.topbanner + .nav + .banner +||1028images.com^ +/promo/right_float_poster/image^$domain=litv.tv +##.ad_banner +||mercor.cn^ +||flyzy2005.com/wp-content/*/bandwagonhost-top. +||aiboav.vip/wp-content/uploads/*/3aaa- +||bkill.com/css/js/xinbkill.js +gamer.com.tw##.b-list_ad +||da.daji.com^ +chacuo.net###mailtooltipss +.vip/gg/ +hexieshe.cn##a[href^="http://zd.zhiketong.cn/"] +###eis_pad1 +||huanqiucdn.cn/huanqiu/js/www/common/detected_block. +||ark.le.com/s?vid= +||rjzxw.com/temp/index.files/logo2.gif +||baidu.com/ur/scun?di=contentunion +eol.cn##.listAd +:18443/*/*-*-*.html$subdocument,third-party +weather.com.cn,wed114.cn#@#.adpic +||qeogcdcjr000.fun^ +||jivvjl.xyz^ +||jandan.net^*/moyu.png +||iqilu.com/getZone.php +/adshow/* +fanyi.baidu.com,longzhu.com##.banner-wrap +/adtest/* +||wnllmyw.xyz^ +ali213.net##.detailAlertBox > a[style] +||nxing.cn/uploads/uploads/*-size1220x +||ifengimg.com^*/iframe_load_ +blog.icook.tw##span[class^="style_adUnit"] +||kuk8.com^$third-party +ablesci.com#?#.fly-panel:-abp-has(img[src*="-hongbao."]) +||dian.brecm.xyz^ +||bing003.shop^ +||baijs08.xyz^ +hao.rising.cn##.channel-adimg +hmoeh.com##div[class] > div[class]:has(> a[href] > img[src^="https://ad."]) +||alicdn.com/img/ibank/*_434184744. +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xmlhttprequest,domain=duelmeta.com|linetv.tw|liout.com|moneysave.info|raenonx.cc|zxmee.com +huaijiufu.com###wp > center +@@||ipip.net/ping.php? +youxi.baidu.com###coupletBanner +baidu.com##.c-result[data-tpl="adv_wenku_fc"] +||jnalzla.top^ +||zhushou.360.cn/script/plugin_tiper.js +||static.zongheng.com^*/logger.min.js +/993dy_new//gg123/* +@@||alicdn.com/dt/tracker/2.5.1/tracker.js$domain=alimama.com +||anywlan.com/link/*.gif +||ifengimg.com/mappa/ +/topads. +||15huhu.cn^ +||letlwsl.top^ +||yt-adp.ws.126.net^ +||n0244.com^ +||code.bizdirlib.com^ +/58pic/index.php?m=adManageSystem& +baidu.com##.rmb-growth-common-tpl-1-wrapper +||xbbhwggj.icu^ +||dybz44.com/js/html +||admsapi.businessweekly.com.tw^ +@@||szhr.com.cn^$generichide +||imgclh.com/imgs/2024/08/07/569cfb2f078e0c42. +ichunqiu.com###portal_block_157 +uwants.com##.showpx1 +||maiysw.xyz^ +||kqbrgl.icu^ +||hellocenter.xyz^*.mp4$rewrite=abp-resource:blank-mp4,domain=localmv1.com +12306.cn###slideRBox +bilibili.com##.title > span > a[href^="http"]:not([href*=".bilibili."]) +hao123.com###\5f _wgt_0_13 +qzone.qq.com##.topic_item[data-url*=".gdt.qq.com/"] +||xhbshv.xyz^ +dzbhdm.net##a[href*="/xzgg/"] +||sina.com.cn/other/src/sfc_app_sidebar.js +||bfhueh.top^ +||veryt111.fun^ +nicotv.me##.clearfix-ads +||china.com/media/images/58/ +||f*.baidu.com/it/u=*,*&fm=$third-party,domain=~hao123.com|~haokan.com|~yoojia.com +i.qq.com##.linwei-logo +||5z2oy.icu^ +||chazidian.com/Statics/images/ad_ +bitauto.com###bitAd_background +outofmemory.cn##.tgBar +##.widget_advert +||smlpcz.icu^ +/template/bingfeng/statics/js/pingbi.js +appinn.com,hexieshe.cn###media_image-2 +##a[onclick^="gtag"] > .add +||images.china.cn^*first/$subdocument +goodav17.com##.ads_pc +dlkoo.cc##ins[id^="tanxssp-outer-conmm_"] +house365.com##div[id^="AD-bottom"] +edc1014070.pixnet.net##a[onmouseover*="_openBrWindow"] +.asp?wsg&df=$script,third-party +||bio-equip.com/uploadimages/peiqing.gif +hihbt.com##.single-content > p > a[target="_blank"]:not([href^="/ac"]) +||cvgrszkg.xyz^ +xiaoma.net##.col-list-ad +csdn.net##.right-item[data-track-click*="http"]:not([data-track-click*=".csdn."]) +.vip/js/ads/ +||computel.cn^ +||baidu.com/view/api/fc_btm? +||hcqumrjbx.xyz^ +yimuhe.com###maincontent3 > div[style^="height"] +image.baidu.com##.ford-tag +123.sogou.com,daohang.qq.com,hao.qq.com##.guess +||baidu.com/4.gif? +:52789/gg/ +||shbzegs.cn^ +||1688by.com/static/default/js/loadLM.js +ggjav.com,porn87.com#%#//scriptlet('abort-current-inline-script', '$', 'popunder') +920share.com###layui-layer1 +kikinote.net##.pc_ad +123pan.com##.ant-carousel +:538/attachment/js/ +iqiyi.com##div[style^="z-index: 4200; position: absolute; left:"] +.com/?aff=$popup,third-party +bkill.com##body > a:first-child +||fptdxkm.com^ +tom.com###popupDivgame +/cache/OTca.js +noy1.top#%#//scriptlet('prevent-xhr', '/api/ads') +||sina.com/ads/ +thenewslens.com##div[class^="help-tnl-"] +###bfad6 +||jsdelivr.net/gh/huang545/huang1111@1.0/bottom.png +||szfcol.com/js/siteAd.js +||hexun.com/2017-11-07/191534592.jpg +@@||jd.com/adclick?$~third-party +.com/?Intr=$popup,third-party +||xycxhgrp.xyz^ +19lou.com##div[class$="ad-cycle"] +||qiyegongqiu1.qiyegongqiu.com^ +/blgg/* +||jxad.jx163.com^ +tiexue.net##div[id^="Baidu_"] +ithome.com,zhihu.com##.AdblockBanner +||vryoacs.icu^ +||yhmeinv.com/mh/ +||e0514.com/do/js. +||8q88n.icu^ +qianlima.com##.seo400 +||0579.cn/SHow/Showplacenew.aspx +feebee.com.tw###ad_mid_module + #item_backfill +sportsv.net##.adv01 +||cgskys.xyz^ +||abc.yebaike.com^ +||gqleov.icu^ +qq.com##.AdTop-Article-QQ +||huoche.net/Images/pc/ad_ +ithome.com##.open-app-banner +china.cn##.bottom_recommend_box +||imgjiajiao.cn/jiajiao/js/lxonline.js +||kaiyuan308.vip^ +||xlca666.site^ +||js.ruiwen.com^ +||bootcss.com/assets/js/and +||052db.website^ +taiwan.cn##div[style*="height:250px;padding:5px 17px 5px 18px;"] +wealth.com.tw#?##root div[class]:matches-css(row-gap: 13px) > div[class]:matches-css(row-gap: 6px):has(> div[class]:matches-css(width: 300px)) +bilibili.com##.index-promote +||kzaawga.icu^ +businesstoday.com.tw##.article__mainevent[style^="min-height:"] +qq.com###ay-bottom-tips > .bd > .pic-box +||eaqlos.xyz^ +||doupocangqiong1.com/js/ptwap.js +||qqganna.icu^ +||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw +0du123.com,100ec.cn,24en.com,3gsc.com.cn,591hx.com,acgnx.net,acgnx.se,aguitar.cn,btzx2017.com,e0514.com,eastmoney.com,guitarchina.com,gz0668.com,hk.on.cc,iguaji.com,iqiyi.com,jia360.com,jojf.cn,junk-call.com,kdnet.net,kumi.cn,netbian.com,qiuziti.com,rain2.top,solarbe.com,tiboo.cn,v2rayssr.com,woniuyulew.com,xingkbjm.com,zyue.com##.banner +||brand.sogou.com/micro?yyid= +###player_pause > .tip + a[target="_blank"] +||vzttq.brfvyrrp.com^$all +@@||i2.bahamut.com.tw/JS/ad/animeLogo.js^$domain=ani.gamer.com.tw +||u1102.com^ +ltn.com.tw##.suggest_full .C5 +@@||google.fr/translate_$media,third-party,xmlhttprequest +123.com.cn##.fixed-top +:12443/*/*-*-*.$script,third-party +bilibili.com##.topic-preview > li > a[href^="http"]:not([href*=".bilibili."]) +sina.com.tw##.tablet_above_ad +||alexa.cn/upfile/images/ +mail.pchome.com.tw##.mnav +@@||ad.ettoday.net/msg_liveshow.php^$domain=ettoday.net +@@||ad.3.cn/ads/mgets?$domain=jd.com +newsmth.net##.b-content > #sogou_banner:nth-child(3) +iqiyi.com##div[class^="video-slide_normal"] > a[href^="http"]:not([href*="iqiyi.com"]) div[class^="video-slide_row"] +||52waha.com/static/js/func_bbs.js +||a1.289.com^ +manwa.fun#%#//scriptlet("prevent-setTimeout", "/alert\('请关闭.*Chrome/") +youku.com##div[name="m_pos"] > #FullPromotion +58.com##.S_table_ding_box +ldqk.xyz,masuit.com##.bs-slider +/adcode. +||delivery.playallvideos.com^ +bilibili.com##.activity-slider[style="width: 1220px;"] +superlife.ca##.sidebar-ad-zone +||n0h56.site^ +||bvlang.com/ad/ +hoteastday.com##.detail_top_mask_ad +||bestqikan.com/static/js/swt.js +eastmoney.com###search > .ads +.com/js/ad_ +||guifun.com/psptool/ad/ +hao.360.cn###daily-hotword +@@||captcha.qq.com^*&refer=http +||360buyimg.com/jzt/temp/js/ +###player-bottom-ads +house365.com###youXFsmall +||gd163.*/2018_ad/ +fx168.com##div[adisload] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="game-page-platform"] +ikandy.fun##.stui-banner__pic[href="/statics/js/ky-a.html"] +||gd.189.cn/ad/$popup,third-party +ifeng.com##div[id^="couplet3_"] +||acdf115.cn^ +||bb999.net/pic/n/agents/C-79.gif +##div[id^="photo-header-title-content-text-dall"] +04647.club#%#//scriptlet('prevent-fetch', 'doubleclick.net') +qciss.net##.container-fluid > #lightbox +||cdn.shdsp.net/ad +sina.cn##.xc_da +||v1.wphonelife.com^ +163.com##.txt-bobo +55haitao.com##.global-dialog +@@||ettoday.net^$generichide +coolpc.com.tw##TD[onclick="cancelBubble()"] +@@||qingdaoport.net/adv/random.jsp +/front/adv/getpmadvlist +abminbuy.com##body > a[rel="nofollow"] > img +iwan.baidu.com###banner-info +juksy.com##.js-adCoverPopup +||bjcathay.com/s?z= +right.com.cn#@##sitefocus.focus +||rarbt.cc/js/index960_ +udn.com###simplemodal-container +2dway.com##a[href="https://www.2dway.com/5244/"] +||ehmhqcn.cn^ +dcard.tw#?#div[role="main"] div[class^="atm_26_"]:has(> div[class^="atm_26_"] > div[style="min-height:90px"] > div[id^="div-gpt-ad"]) +||27gh.cc^$popup,third-party +boylov.xyz,boylove.cc,boyloves.fun##div[data-type="1"] +||stat.house365.com^ +gdmm.com###diy3 +ifeng.com###CA_left +sina.com.cn##.cj_app_left +##.player + .sponsor +autohome.com.cn##a[href="https://m.autohome.com.cn/activity/special/autohome29.html"] +kalvin.cn##.fell_advertisement_box +||hiad.myweb.hinet.net^ +/aipai/player/game_video/videoAdvert_ +/adsfactor_ab +@@||vast.btrll.com^$domain=hinet.net +@@_370x270.$domain=bairuitool-cn.aliyun-hk03.hicheng.net +nwell.net##.f14hui[width="25%"] +||func.tw/image/func2.png +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_banner_common_wapper +||shbzgkj.cn^ +||xhbheroq.xyz^ +##.float-adv-left-bottom +||hiaxj.com/dbxf/ +##a[href*=".nhjhu25hd.com"] +eol.cn###adfloat_l +###adv-3 +offcn.com###offcn_yx +||js.passport.qihucdn.com/11.0.1.js +||beijing.buzhi5.com^ +duba.com##.side_other > .img +||51cto.com/edu/center/js/interaction_iframe.js +ifeng.com##div[class^="index_topBox_"] +7654.com##div[class^="sidebarimg"] +landiannews.com##section[id^="media_image"] +||trvxbd.xyz^ +||xkbbjtfp.xyz^ +/c/i.php?id=$script,third-party +||lolshipin.com/zt/sxx/ +||qhimgs4.com/t01d8315ddb1a5adcce.gif +||tsdfxv.xyz^ +||deliver.ifeng.com^ +liaoxuefeng.com##div[style="width:336px;height:280px;float:left;"] +le.com##.lay_body[style^="width:490px;height:320px;"] +||mdoshbx.top^ +bilibili.com#?#.video-page-special-card-small:-abp-has(>.card-box>.info>a[href^="http"]:not([href*=".bilibili.com/"])) +teepr.com##div[class^="mid-post-ad-"] +yamol.tw##.panel[style="text-align:left;width:100%;padding:0px;background-color:white"] +||gghhct36.shop^ +proewildfire.cn##.comiis_nav ~ a +@@||da.mgtv.com/m/player? +||xinyi.com/Public/config/Couplet/Index39.js +###leftad +||dpedrt.xyz^ +fjsen.com,nuomi.com#@#.right-ad +houdao.com###header-ban +51zxw.net###video div[class^="adBar"] +||yuanpinghengkangfuyouxiangongsi.top^$domain=9xav.cc +duba.com###J_BottomAdBan +hihbt.com##aside[id^="advert-"] +||lih6e.site^ +||sohu.com/i/?pvid=$popup +51zxw.net###idSlider +blog.163.com##.m-regGuideLayer.f-trans +||tvpqnh.xyz^ +daydaycook.com##.ad-mask +###ad900 +ck180.net##.mitao +greenxiazai.com##.yinsu_xz +##div[id^="div-gpt-ad"] +||jizxnr.xyz^ +mytheme.cn##.ad01 +tongxiang.net##.mmver.w-1200 +||ckmbig.xyz^ +||wake-up-neo.com/bnet/ +##.nav-ads +hxsd.com##.left_side +91porny.org,jstv600.com,x9av7.com#?#.card:-abp-has(>.card-image>a[href^="http"]) +||scw98.com/js/Index +||weacdf211.cn^ +afzhan.com,iqiyi.com##.rightAdv +||qq.com/static/web/websites/newsplugin/ssp_ad_ +||66game.cn/skinnew/js/ad.js +||eastday.com/iframe/ +zhihu.com##.Sticky > .Card[data-za-detail-view-path-module="ContentList"] +##a[onclick$="'clicked', 'ad');"] +fox-saying.com#?##sidebar__inner > #links-row-1 > .box.folder:has(> h4:contains(AD)) +||aapeople.cn^ +||bpdtrfb.xyz^ +/img/91/*_600. +||shui5.cn^*/ima/gg +gaoqingw.com###searchform > label > span +||nyvgbt.xyz^ +hao.rising.cn##.search-right +shm.com.cn##.w1000.surround +/r/t1/*$subdocument,third-party +||muyuge.com/fw.html/ +||hwpvbdj.xyz^ +@@||ibf.tw/user/plugins/webtech-topbar/fuckadblock.js +@@||cocomanga.com/js/ad_/$image +||hscq8.cyou^ +||s.yimg.com/ja/ap/tw/js/ +lenovo.com.cn##.adver-bg +morningpost.com.cn##.gg-stl +18comic.*##.top-a2db +||1909.me/upload/ad/ +xitek.com##a[href*="/adclick"] +||zpvfsrb.xyz^ +xxxxx520.com##.ripro_gg_wrap +||eht116.com^ +||880sy.com/Public/js/*_gg.js +||fnjoomqa.icu^ +||xn--mts60is5y5uk.com^ +||atiws.aipai.com^ +||yywz123.com/file/A*.js +@@||goodinfo.tw/StockInfo/image/*.png +##a[href*="/auth/register?code="] > img +tuwan.com##div[style="width: 360px;margin-top:10px;"] +##a[href*="kdocs.cn"] > img[src*="sstv."] +||cpro.zol.com.cn^ +hkepc.com##.headBanner +/img/bbsad/* +||shbzokj.cn^ +||bdstatic.com/tb/cms/activity_head/file_ +juejin.cn##.recommend-box +||xstt5.com/skin/v3/js/dibu.js +nextapple.com##div[class^="na-ad-"] +gameapps.hk###top-ad-left +||cee1.iteye.com^ +chinatimes.com##.tab_4_box +@@||img4399.com/static/huodong/daily/fpv2.js +||meijutt.*/js/pcjs/ +||lgmi.com^*_gg +hk01.com##div[data-id="lazyload-placeholder"] +weiyun.com#@#.page-share +||debugease.com/static/js/show.js +baidu.com##.ec_ad +##.headad +anywlan.com##.bscekvofc_o +v2ex.com##div[class^="wwads-"] +~sinaimg.cn##a > img[width="980"][src*=".sinaimg."] +2345.com###cnxh +||daiwofei2019.top^ +3d66.com##.advertisement-carousel +||yjwxegq.icu^ +co188.com##.suspen +eweiqi.com##.guoqing +||s8bbs.com/ad/ +xblian.com##img[alt*="广告"] +/Php/Home/kakaxiaikakaxi.php +||stat.cnmo.com^ +||p.wktfkj.com^$third-party +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="right_timeliness2"] +||china.com/zh_cn/ads/ +||eap.enorth.com.cn^ +||58avgo.*/AirADPic/ +||kiolpia.icu^ +||qiyipic.com/common/fix/dasdasdasdk.jpg +ruanyifeng.com###homepage_pos +||fenxiangdashi.com/img/banner/ +163.com##.top-gg-area +###dbgg +@@/images/share/*$domain=search.www.gov.cn +||70.86.24.120:8060/ +###advt +||1p3yg.icu^ +||vcnpnf.xyz^ +||415677.com^ +feebee.com.tw###ad_bottom_module +||alicdn.com^$domain=99re.com +memes.tw##.nice-box +||ad.hot-mob.com^ +||uaiqp.top^ +||p45m0.icu^ +2345.com##.s11-fixNav +||ugidskit.top^ +||image.51cto.com/ad/ +###overture_ads_top_td +://*:*/chunyu.html?k=$csp=script-src +news.qq.com,www.qq.com,v.qq.com,new.qq.com#%#//scriptlet('json-prune', 'ads') +/gg_t.php +nfuwow.com##.midbgdbox +@@||autoimg.cn/bi/common/pvevent_all_ +porn5f.com##.preroll-adv-two +||binga03.shop^ +||woublie.top^ +||qyer.com/qcross/home/ajax?action=banner +||asp300.*/2012js/ +/w_e_b/de_li_ve_ry/a_j_s.php?zid=$domain=cnlmjx.com +##[class][onclick="window.location.href='https://www.tsqcy.cn'"] +huanqiu.com###winNext +qq.com##.qGirl-wrap +||yanu.qiniudn.com/*x60. +@@||winwk.com^$generichide +||94itv.net/f/ +cartoonmad.com##tr:nth-child(n+5) > td > table[width="732"] +58.com,pcpop.com,phpernote.com,zh141.com##div[id^="ad_"] +hc360.com##.baidutuiguang +baidu.com##.rec-feeditem +||stat.timedg.com^ +acfun.cn###prompt-box +fengniao.com###ad-head +||99smsf.com^$third-party +firefoxchina.cn###theme-side-banner +||54gtlb.cn^ +||z1.chezhuzhinan.com^ +||sdfewed.com^ +##.ka-flo +||kanxiao.net^$third-party +###wp > .V-videoFloat +||cdn141.com/banner/adcards. +~95504.net##.ggbox +||xl720.com/tmp/ +||z4a.net/images/*/960-60. +@@||bdimg.com/static/wenda-pc/widget/share/share_ +kukuo.tw#?#article > aside.left > .adsbygoogle:upward(1) +dismall.com##.d_money +edh.tw###caas-vm-container +downbank.cn,greenxf.com###speed-download +||adpai.thepaper.cn^ +||codekon.xyz/wp-content/uploads/yHX +##.a_sxc +##.mediavAd_report +@@/img/ad_$domain=p9.com.tw|ruten.com.tw +||0597ok.com/ilike/597/ +||cpro.baidustatic.com^ +||51credit.com/js/app/end-layer.js +kuwo.cn##.tuiguang +chinanews.com.cn##.tp_adv +||zcaijing.com/images/ +||ibqmey.xyz^ +aura.cn##.foot-xcx +||avvfjhg.xyz^ +/lenovo/pc/top.js +.php?ad= +oschina.net###project_ad_banner +hupu.com##.m-app-info +jjwxc.net##[id^="adp_"] +||al.newxue.com^ +||caomeixz7.xyz^ +||fpdisplay.com/templates/default/js/palyflash_ +douyu.com##a[href*=".miaozhen.com"] +||vv1.pyhfxdm.cn^ +.com/0gg/gg*.js +@@||ohmanhua.com/js/*.js +||bdstatic.eastmoney.com^ +||miaozhen.com^$third-party +||mnfse.cn^ +||e3c7.com/love/ +||cdgfa.ifeng.com^ +wbiao.cn##.wb-panel +ant.design###geektime-ads +||sobt8.org/Public/static/js/common.js +||ad*.on.cc^ +||edu.jiukang.org^ +###breadCrumb + .c + .t[style="margin-top:8px"] +||7299tu75.cc^ +||lgmi.com/tjyf200x207.asp +36mh.net##div[style="width:960px;height:300px;margin:0 auto;"] +/template/chiav/img/*.png +||easteat.com/templets/default/images/media-top.png +dzbhdm.net##a[href="https://www.dzbhdm.com/"] > img +91porna.com##.carousel-container-bottom +||gtimg.com/sports/qingyang/ +||linj.top^ +daydayin.com###adbn_UMU +||kuakao.com:6053/floatcard? +mnw.cn##.mnw_top_ads +04647.club##div[class*="bannerBox"] +||dkyd6.xyz^ +niotv.com##.epg_ad3 +cgdyx.com##.zib-slider +@@||monnsutogatya.com^$elemhide +||alicdn.com/imgextra/i3/1731999033/TB2lAJufnlYBeNjSszcXXbwhFXa_ +cloud.tencent.com##.mod-commercial +||baifen.music.baidu.com^ +||moe48.com/static/img/1200x +||xn--xhq326apqhcx0d.cn^ +rouman5.com##.fixed-bottom +wasu.cn###scan_qrcode +||chdbits.co/pic/*-*.gif +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[srcid="13602"] > .c-border +league-funny.com###popupvideoad +engadget.com#?#.Py\(40px\):-abp-has(> article > .D\(f\) > .Pos\(r\)[data-ylk*=":AD;"]) +||impservice*.yodao.com^ +||gmgbmzz.xyz^ +||ali213.net/news/kx/ali213-kx-data.js +||lianmeng.la/cde/recommend.js +||szfmr.cn^ +$domain=googleads.g.doubleclick.net +/91ad_ +ithome.com##.rds +dm5.com#$#body[style*="overflow"] { overflow: auto !important; } +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_encourage-tbguess\/pagelet\/sidebar +||btwuji.com/jsj1/ +||abbao.cn^*adblock +||2yjw.com/statics/js/jquery.min. +###adv_wrap_hh +||wdadad.cn^ +||googletagservices.com/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=gamer.com.tw,important +88files.net#%#//scriptlet("prevent-window-open") +||cdndm.com/12/2016/$domain=1kkk.com|dm5.com +###adBody01 +hmitalk.com##div[data-adid] +stockstar.com##.ss-ad-icon2 +||rsyepnq.icu^ +##a[href*=".niujyl.com/"] +ali213.net###tmp_ggao +||gkcogyf.icu^ +233.com##.gads2 +9312.net##.pop-up +||dealmoon.com/build/js/www/home/activity-pop/index. +||9k9k.com/jscode/js/ +||buxfznnf.xyz^ +||kekenet.com/Images/*/tom640X40.gif +dailynews.sina.com##.TopNav + table +||lznpcwl.xyz^ +||fluxy.cn^ +baidu.com###wgt-left-promo +tieba.baidu.com##.client_ad_topBanner_all +||qhimg.com/ssl/20212c7594890e1c.js +doc88.com##.adpx250 +acwifi.net##.article-content > div[style="float: none; margin:10px 0 10px 0; text-align:center;"] +18-comicfrieren.xyz,18comic.org,18comic.vip##a[href*="//"]:not([href*="comic."]) > [style*="back"] +||souka.me/ad/ +yesky.com##.main_left_advertisement +chinaz.com,58b.tv,8fun.tv,99kubo.tv##div[style^="width:300px;height:250px;"] +||tzelzfnj.xyz^ +ithome.com##a[href*="/lapin."] + .ad +126.com,163.com##.gWel-promt +324324.cn###gg_728_90 +/ad5. +||5mm.zxfw5.cn^ +||lgmi.com/left_right_ +||d3d7a0q05k6bvz.cloudfront.net^ +@@||sohu.com/integration-api/mix/region/*&refer=http +||777bb111ww.com^ +||hdtvnr.xyz^ +||ldmnq.com^$third-party,badfilter +bilibili.com##.extension-tips +@@||google.so/translate_$media,third-party,xmlhttprequest +goodcome.com.tw###jad-right +@@||sohu.com/upload/static/share/share_play.html +maidi.me###diy15 +@@||9zvip.net^$elemhide +.info/js/ads/ +||98158.com^ +||duluoweiyu.com^ +||mlhdvjv.xyz^ +||18avday.*/aa/ +player.hboav.com#%#//scriptlet('set-constant', 'player.VastADPlugin', 'noopFunc') +||98wjse.top^ +16rd.com###diy_bbs_list_right IMG +||1688.com/b2bxad? +||aogk88.asia^ +##[class][onclick^="window.location.href"][onclick*=".bcebos."] +||jnifdlaa.top^ +@@||mediav.com/js/reward_video_pc.min.js$domain=baiten.cn +||xdmnlxtu.xyz^ +zdface.com#@#.top-ad +||ekzzed.icu^ +~car.kdslife.com,enet.com.cn,fjsen.com,hupu.com,kdslife.com,~my.hupu.com,mysteel.com,news.cnyes.com,pchome.net,rznews.cn##div[class^="ad"] +114la.com##.headline +blog.sina.cn###pl-blog-tbyy +||phvfevk.xyz^ +/bottomad/* +||k1.wanwenwan.cn^ +@@||viu.tv^$generichide +silver.org.cn##div[class*="_gg"] +/shenmago_download_app_ +agentm.tw##.gpt-ad-slot +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###search_button_wrapper +hupu.com###game-center-entrance-container +||vejhln.xyz^ +114la.com,ylmf.com##.bighd-top-bar +sydneytoday.com##.mygad +||qtoidch.icu^ +firefoxchina.cn##.sp-content +rising.cn###viphui +||ityusio.top^ +||hyuwkbu.top^ +||l7ghj.xyz^ +1kkk.com,dm5.com###lb-win +1314gl.com##a[href*=".apkpackagesys.com/"] +||dyccdk.xyz^ +||1.xuexi.la^ +||ykujch.icu^ +||yfsstec96.xyz^ +jrj.com.cn###comment > a:first-child +pixnet.net#%#//scriptlet('abort-current-inline-script', 'window.leave') +/cache/js/OTca.js +##.Flagrow-Ads-under-header +setn.com###FBAnchor +||a.wifi33.com^ +:701/gd_xueersi/$popup +||xchina.*/plugins/jquery.modal/ +||mycxhgrp.xyz^ +/ylqq/*.add +||hynahyqq.xyz^ +mirrormedia.mg##div[class^="related-article-list__AdvertisementWrapper"] +jiegeng.com##.banner_1212 +423down.com##.entry > p[style^="color:red"] +||buoizbtl.xyz^ +.com:91/Runtime/js/psCreat.js +||163.com/special/*/ted_vad. +||sinaimg.cn^$domain=t66y.com +||shzzzz.dftoutiao.com^ +||eeyy.com^$third-party +||av6k.com/templets/default/%E5%A4%A7%E5%93%A5/ad.js +guilinlife.com#?#li:-abp-has(> div > .content-other > .content-type:-abp-contains(广告)) +/images/sgcrwj*.gif +getitfree.cn#%#//scriptlet("abort-current-inline-script", "document.getElementById", "/!document\.getElementById\([\s\S]*?\.style\.display=/") +lawtv.com.cn##div[style=" width:664px; height:260px; margin-top:10px;"] +||kanshushi.com/yyddssdd. +16rd.com##.c1c2_b1b2_adbx +||reryt111.fun^ +||bugzmn.icu^ +||hnrjign.cn^ +||222aa333bb.com^ +||kuheju.com^$popup +://*btbtt.*/view/image/QT_ +||uwants.com/dfp_forum.php?au=Uwants_Web_ +||ocggec.xyz^ +||120askimages.com/ask/js/askfrom.js +###ad-floatwin +||vpwizuj.icu^ +||rbfxoex.xyz^ +jingyingjiajiao.com##DIV[style="width:auto;border: 1px solid #aaaaaa; position:fixed; bottom:1px; right:1px;z-index:2000"] +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(span[class^="wbpro-icon-search"]:-abp-contains(/商|上新|好物/)) +||jiaoben.eastday.com^ +@@||suning.cn/project/msIndex/js/?? +||sw76r85eda3k.com/need/h5. +||eic.org.cn/api/Popup? +||gridline.cn^ +||getitfree.cn/wp-content/plugins/adunblocker/*.js +||mqsnce.xyz^ +||hdtedar126.shop^ +||inworket.com^ +###downdiv > .downcode +gitee.com##.fixed-notice-messages +@@||adidasoriginals-lookbook.com.tw/js/adtracking.js +baidu.com,bdimg.com,tieba.com#?#.thread_item_box:-abp-has(div[class*=" fc-"]) +||gghhce96.shop^ +cnblogs.com###cnblogs_c2 +iqiyi.com##.search-item-box:has(> a > div > div[class^="ad_adContent"]) +qianzhan.com##.kfonline2 +||vxfdepn.cn^ +||dyegif.icu^ +theav.xyz,69xx.one,theporn.cc#$##alert_windows { display: none !important; } +##.ads_all > .ads_w +||pkfuxvbk.xyz^ +||usejj.wangkl.com^ +||jsdelivr.net/gh/*/960-80.gif +ifeng.com##.pic950 +jieav.com#$##comment { margin-bottom: 0 !important; } +||tyuwkbi.top^ +xzji.com##.speed +||imgsrc.baidu.com/tieba/pic/item/$image +||bmp2.ali213.net/js/ +soku.com###\5f xbox_ad +##.adsoho +investing.com##div[class*="overlay_overlay"] +||ebwonro.cn^ +||51hanhua.com/2013/ +chinatimes.com##div[class*="googlead_"] +||dscds111.fun^ +||lesenjiaoyu.xyz^ +||bd100.010lm.com^ +||xpicj8.cc^ +money.163.com#$#.finance_header_gg { display: none !important; } +mydrivers.com###div_newsyjgg +rrys2019.com##.lx167 +||ddnzpr.xyz^ +||tgccct.icu^ +qzone.qq.com###appCanvasRecentAppActivity > .activity-area +||thnuvgme.icu^ +@@||count.taobao.com/counter$script +||yssryr.cn^ +||chayassa.com^ +@@||ads.lingxing.com^$~third-party +@@||lib.baomitu.com/video.js/*/video.min.js$domain=69xx03608.xyz +iciba.com##.cb-downmask +||39.net/PictureLib/A/f76/20160825/org_749281.png +youku.com#$?#.newswiper_big_swiper_container > div.swiper-container-horizontal > div.swiper-wrapper > div.swiper-slide:has(> a[data-href]:not([data-href^="https://v.youku.com/"]):not([data-scm])) { remove: true; } +||p5kzev.com^ +||u1077.com^ +eprice.com.tw###popup-ad-overlay +so.com##.spread +hao.360.com###festival-firework +||uiatkc.xyz^ +||alicdn.com/kf/Uc07bb4287e9d4fd0a7a26204b13ef9ae7.jpg +||cnrdlpk.xyz^ +###fuo_top_float +||ooqiu.com/ad_js/ +||mkbbjtfp.xyz^ +||yivkzvog.xyz^ +map.baidu.com##.damoce-search-item +/^(?!.*(fastlycdn.com|doodcdn.co|intensedebate.com|vixcloud.co|cdn.plyr.io|authkong.com|rsc.cdn77.org|linkvertise.com|fastly.net|statically.io|sharecast.ws|b-cdn.net|bunnycdn.ru|bootstrapcdn.com|cdn.ampproject.org|cloudflare.com|cdn.staticfile.org|disqus.com|disquscdn.com|dmca.com|ebacdn.com|facebook.net|fastlylb.net|fbcdn.net|fluidplayer.com|fontawesome.com|github.io|google.com|googleapis.com|googletagmanager.com|gstatic.com|jquery.com|jsdelivr.net|jwpcdn.com|jwplatform.com|polyfill.io|recaptcha.net|shrink.pe|twitter.com|ulogin.ru|unpkg.com|userapi.com|vidazoo.com|(\/\/|\.)vk\.com|yandex.|yastatic.net|ytimg.com|zencdn.net|player|youtube.com|cackle.me|googleoptimize.com|vuukle.com|chatango.com|twimg.com|google-analytics.com|hcaptcha.com|raincaptcha.com|media-imdb.com|blogger.com|hwcdn.net|instagram.com|wp.com|imgsmail.ru|cloudflare.net|(\/\/|\.)x\.com)).*$/$third-party,script,_____,domain=manshuxs.com|yemancomic.com|qimiaoxiaoshuo.com|gaofuwu.org|nxpaaq.com|dengbi2.com|92hm.top|634.tv|myhaitang.cc|ckplayer.vip +||91rb.net/fc/ +||3397ys.com/e/public/onclick/ +||chuantu.biz^$domain=7mav2.com|thztv.cc +||topicimg.1234567.com.cn/product/2021/1/11/b914f8b6-fb61-4c85-834f-863b67c13a45.gif$domain=fund.eastmoney.com +||xn--2ss830adjbqy7h.xn--fiqs8s^ +||qcjycg.com/template/conch/asset/js/hl +hao.360.cn###festival_fly +||bdstatic.com/tb/zt/tengfei/gzdialog.jpg +/ggao. +###kfpopupDiv +||mddcloud.*/oweApi/ad/ +||eyislow.top^ +music.wandhi.com##.google-auto-placed +pigai.org###newnotice +##.ml_ad1 +||yesky.com/s?z= +||utnwxhjv.xyz^ +@@||count.video.sina.com.cn^*?video_ids= +icook.tw##.recipe-ad-placeholder +||zndvfrl.xyz^ +||ptppcyg.xyz^ +bbs.52life.cc##.part1 +||hdipsumu.top^ +/getfuolist|$xmlhttprequest +||qvxtzi.xyz^ +||tvyb03.com/template/mytheme/statics/js/layer/ +||caomaotongji.com^ +ibm.com###dw-regbar +mgnacg.com##a[href^="https://fanqiev2.work/auth/register?code="] +ckxxbao.com##.weixin +||zuofang05.com/template/mytheme/statics/image/1/ +linetv.tw#%#//scriptlet('prevent-xhr', 'pagead2.googlesyndication.com') +ithome.com##.rm-modal1-bg +@@||fharr.com^$generichide +@@||ggg50.pw^$generichide +sohu.com#@#.label-ad +twinsyang.net#@#.Zi_ad_a_H +xiebruce.top#%#//scriptlet("prevent-addEventListener", "", "showRemoveAdBlocker") +chem99.com###J_tcode +||mowenxi.com/1.png +||weikeys.com/js/zt.js +.com/ads/$image,object,subdocument +d1xz.net##.base_ad_960_90 +||bdfjw.cn^ +||76xh.com/skin/zxf/js/*Out.js +||lawtv.com.cn/jd_ceshi.html +suxzp.com##.full-screen-cover +||yeyou.com/2013/new/yeyou-float-window.js +||haomm.com^$third-party +/svr/*.aspx?placeid=$third-party +||jsdelivr.net/gh/te89899/ +360doc.com###arttopbdad +||kvsvug.xyz^ +sina.com.cn##.adF +||pirubcfy.xyz^ +||tiiepofl.xyz^ +hao123.com###shortcut-tuiguang +||lcefsf.icu^ +||mlgowell.com^ +||huishij.net^ +lysq.com##div[id^="followDiv_"] +||cpro.baidu.com^ +||manqian.cn/784a6e27-be5b-4442-86e5-9f4adb51894d? +||images.sohu.com/bill/ +||slkkbnsgn.com^ +1688.com.au###side-ads-wrapper +||99meiju.tv/js/tj.js +||cdn-data-cloud.com/history/ +sanv.org##.main-nav +||adblock.sina.cn^ +61.iqiyi.com,v.61.com###J_videoBox > .view +pcsoft.com.cn##.shuang11 +##script[src="/js/sy2.js"] + div[align="center"] +||yantuchina.com/Upload/Ad/ +duonaolive.com##div.nav-mobile +banzou.name###daiyan +||lanrenzhijia.com/Public/images/head_right_top.gif +ltesting.net##.ltad_580 +chazidian.com###worldcup_float +||infocab888.life^ +||58tg.com^$third-party +||ayxz.com/images/enkj_small.gif +hihbt.com#?#.theiaStickySidebar > .widget_custom_html:has(> .textwidget > p a[target="_blank"][rel="noopener"]:not([href^="/ac"]):not([href^="/asian"]):not([href^="/category"])) +pcstore.com.tw##.bestshop_ad +||gxnews.com.cn/clientscript/index_duilian_ +pptjia.com##.alert2_wrap +dianping.com##.QQlink +blog.163.com###r_m163news +###cat_intro_second_ad +||szmkr.cn^ +||dioguitar23.*/images/*.gif +@@||criteo.com/delivery/ajs.php?zoneid=$script,domain=gaus.ee +||5054399.com/js/rice/m.js +||pc6.com/img/ +||libhzf.xyz^ +_yad_jsonp_ +||9129666tp.com^$domain=9xav.cc +||1k2l3m4n5o.com^ +||9tata.com/js/www.js +api.guailie.com#%#//scriptlet('set-constant', 'killAdKiller', 'noopFunc') +sharonlife.tw#?##sidebar > div.widget:has(> h4:contains(廣告)) +||dnwx.com*/ad$image +iyf.tv##vg-pause-ads +windowszj.net##.g_slide_title > .feedback +@@||acgdraw.com/ad$xmlhttprequest +||r9ffi.fun^ +||exoav.com/nb/nt.js +18avtube.com,mm-cg.com##.CN_qmvtoy +@@||9zvip.net/wp-content/plugins/detect-adblock/js/ads.js +##div[id^="adv-"].adv +mfa.gov.cn,fmprc.gov.cn#@#.adbox2 +||qqtn.com/js/*0.js +||gxjajt.com^ +||keyrun.cn^$third-party +||shanvezhu.com^ +||micaitu.net/js/dibu.js +###adBody02 +##.container > .slide-baidu +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div:not([id]) > style[id^="s-"] + style + div[id] +||duboku.net/static/images/20201111 +||0322cfmtl.cc^ +##A[href^="/e/public/ClickAd?adid="] +/live800. +||9669.cn/ipdat/duilian/ +/sobt_adv.js +||twrank.com^$third-party +baidu.com##.sfc-image-content-adtext +theporn.cc##.gg-config +bmlink.com##.fixedBg +99kubo.tv##div[style="width:970px; height:250px;"] +||qhres.com^*/baidu_ +sojson.com##._right_ad +||ufile.cc/crod.js +96weixin.com##a[href^="/show/ads/"] +||countpage.sznews.com^ +##.chat-ad +||vdggsd010.com^ +||pconline.com.cn/count.php? +||ovfvkfc.xyz^ +163.com##span[class^="gg"] +sm.cn###sc + .article.ali_row +miercn.com##.color-box +||3344mf.com/js/ +||tupian6666.com^ +||xvzcfh.xyz^ +:6607/qy/$script,third-party +||youdao.com/ctlog? +##.advert_nav +touzi.com##.tck-cover +||stat.baike.com^ +||shbzhkj.cn^ +@@||ozabc.com^$generichide +mcdulll.com###box2155090 +/728_90. +##a[href*=".ipndyn.com/"] +tongren.gov.cn###tanchukuang +iqiyi.com##.float_div_r +2345.com###m_banner_2 +||127.net/2018/08/15/71ee02b5b61c4090b3ce0116306596c2.jpeg +||962.net/show/all_$script +||uedas.$domain=qdmm.com|qdwenxue.com|qidian.com +win007.com,win0168.com##table[id^="table_Ad"] +||155zn.com^ +.com/java/xia1.js +news.ebc.net.tw##a[href^="http://www.ebcbuzz.com/url/"] +||shihuo.cn/alibtn_ +hao.360.cn##.festival_snatch +||sentcss.com/get/showcase/ +||xdfdqce.xyz^ +4gamers.com.tw#?#.container-fluid > .vue-portal-target:has(> div[style] > .aroma-news-detail-iframe-ads) +||dlkoo.cc/down/*.htm$popup +||tarvrf.xyz^ +blog.zhheo.com#@##footer-banner +||420909.cn^ +qyun.vip##.tp_advertising +codenong.com###sidebar aside[id^="text-"] +||dmym.aixyy.com^ +/AShow.aspx?AID= +||fjzimaoqu.cn^$third-party +event.biotherm.com.tw#@##ad2 +||scfh9.cn^ +||shuneiya.com/static/js/ding.js +mobile01.com#$#body { overflow: visible!important; } +||rewrwrt4.fun^ +||pxx.tnklrs.cn^$third-party +||sunpma.com/other/logo/ +image.baidu.com###cmsimage +storm.mg###floating_btns_wrapper +||w.xiaopiaoyou.com^ +||ttrruq749.shop^ +/exads-adblock-$image +ck101.com##.btn_dw_app +7060.la##.tuiguang +||a1bw2cup.top^ +/tan1.js +/onead_ +||hahamx.cn/images/banner/ +/webcam600.mp4$domain=91porn.com +51zhishang.com###kyzb_layer +||20szp.com^ +goodav17.com#%#//scriptlet("abort-on-property-read", "popunder") +/^https:\/\/zz\d{4}bb\d{4}\.com/$third-party,image +||vipgogo123.site^ +||vmnlkr.icu^ +jinti.com##a[href*="immobel.com"] +||ali213.net/static/js/kv +biznetvigator.com#@##container_ad +||same*.stockstar.com^ +||greenxf.com/js/2019/ +###floatad-winpop +||youqunjx.com^$third-party +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.activity_iframe_container +huya.com##.nav-expand-list #J_tt_hd_category_ad +||mdezco.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.EC_newppim +cnitpm.com##.erweima +lahoo.ca##.a_af +||aly.la^ +||hgcgnfe.icu^ +||onifdlak.top^ +firefoxchina.cn##.side-tool-outer > div[class]:first-child +||bzqqftz.icu^ +tvsou.com##.story_ad_ios +/stui_ads/xyz456e/* +||yj2nf.icu^ +||o.phb123.com^ +/source/plugin/drk_ledadv/* +news.lyd.com.cn##td[width="300px"] > table[width="300"] > tbody > tr:nth-last-child(n+2) +pilipali.cc##.tips-widget-weixin +||reportlog.dftoutiao.com^ +||cao0002.com/vip/js/ +||dyjqd.com/images/js/dyjqd.js +##a[href*=".taobao.com"] > .top1 +httpcn.com##a[href^="http://www.okbmf.com/"] > img +chem99.com###div_main_ta +||jy09.shop^ +acwifi.net##.widget_ssr +||touimg.com^$domain=dyzd1.com +||okooo.com/I/?method=system.data.ad& +/yryy/css/venmy.js +mydrivers.com##.good_ths +||bjwj2y.com/JS/LsJS.aspx +tongxiang.net##.x15sdv.display_3_3 +/pushstart.html?$popup,third-party +/index.php/Customize/list?params= +55188.com###center-pic +ablesci.com#?#.able-container-body-right > .fly-panel:has(> div > img[src*="-alipay-autumn-hongbao.png"]) +##.ct-ad-article-wrapper +||ijmxco.xyz^ +||ileled.xyz^ +focus.cn##.index-app-download +nanfengyl.com##.top-ad-txt +||217hs.com/js/jquery.js +||ruiwen.com/sp/ +||xvzfyra.xyz^ +mobilemagazinehk.com##.adv2 +||ktwwzqdx.xyz^ +||lsjazn.xyz^ +||159i.com/nd/scxd.js +ifeng.com##.js_url[href^="http://dol.deliver."] +||webkaka.com/info/script/articleAd.js +||1905.com/data/js/*.json?pwd=*.shtml&rand=$xmlhttprequest +le.com##.Banner +||6qyxeob.xyz^ +pilifx.com##.imoney +||shbzqkj.cn^ +@@||bdimg.com/advert/js/advert.js$domain=music.baidu.com +/gg_d.php +anjuke.com###xajk_down_new +###overture_ads_bottom_td +||baidu.com/baidu.php?url=$popup +gvm.com.tw##.promotion_ad +2345.com##.cmoe-nxh-dx +||pcstore.com.tw/css/myacc_init.js +@@||kaitao.cn/public/wenda/ad/css/ds-un-detail.css +yahoo.com##div[id$="-Ad-Proxy"] +angelweb.cn##.gg250x250 +###bottomApp +/ad_common. +jkpan.cc#%#//scriptlet("abort-current-inline-script", "document.writeln", "\u") +###qrcodeDownloadBar +||richh.cn^ +banjiajia.com##.register-box +360kan.com##.eb-rightbox +||qqtn.com/skin/know/ +kankan.com###modal-adv +cyol.net##.AD960_90 +||m.kukudm.com/mg/show1.js +mtrend.cn###topictabs1 +so.com##.js-left-rec-busi +bilibili.com#$#.bili-video-card:has(.bili-video-card__info--creative-ad) > .bili-video-card__skeleton { visibility: visible !important; } +||mcmod.cn/editor/upload/20221126/1669399546_2_ONBt. +gasaq.com###guanggao_right +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.banner-wrapper +sina.com.cn###commonSideBar +nfuwow.com##.crightbtad +||xliffnsc.xyz^ +163.com,~love.163.com##a[href^="http://love.163.com/"] +linovelib.com#$#body[style] { overflow: auto !important; } +||etadult.com*/images/20 +@@/adaffiliate_$image,domain=ipfs-lab.com +||51.com/up/bdfmt/ +||gocye.com^$third-party +duowan.com##.lolboxapps-qrcode +2345.com###corner-flash +||x1.52aoteman.com^ +blog.iportable.in##body > b[style="z-index: 10000;"] +anoneko.com,dmhy.org,ye1213.com##div[id$="_ad"] > a:first-child > img +||linuxidc.com/linuxfile/list +||bignqzm.cn^ +||lweriol.top^ +||tp.sgcn.com^ +##.module-yylist.tg_w +/ad_360_$domain=somanhua.com +||mlstx.cn^ +||alicdn.com/img/ibank/*_!!4231779133-0-cib. +.com/rmb/dl.js +3dmgame.com##.abstergo +military.china.com##.slide_doubleimg > .baiBox +||5ilog.com/qq/js/jsgg.js +bbs.fobshanghai.com##table[cellpadding="4"][style="background: #D6E0EF"] +xinhuanet.com##.adv3 +guahao.com##.link-modal +ltn.com.tw#$#.whitecon > .related[data-desc="相關新聞"] > li:nth-child(5) { margin-right: 0!important; margin-left: 20px!important; } +@@||yimg.jp/combo?*/ad/ +@@||translate.googleapis.com/element/ +||knfhxszj.xyz^ +51dll.com,fulisuo.com###aa +||sspai.com/api/v1/recommend*=article_ +firefoxchina.cn,taoyitu.com##.float-banner +baidu.com##.desktop-guide +/ad_top_ +ilvruan.com###text-14 +||yskicm.xyz^ +fengniao.com,zhiding.cn##div[id^="AD"] +omnitalk.com##tr[bgcolor="ffffc8"] +||awaw.asia^ +comic.qq.com###fixed_right > div +fastadmin.net##body > a[target="_blank"] +@@||autohome.com.cn/javascript/fingerprint.js +||nmmemzi.icu^ +||msg.ettoday.net^ +||uywoynr.cn^ +ifsp.tv##.video-page-right +||6zfem.icu^ +.com/topjs/ +##.adv_left +||922tp.com/wp-content/uploads/*0x +||51ui.cn/js/500200.js +||ygshu.com/js/h +||supfree.net/baotu. +iqiyi.com##li[id^="100000"] +mcdulll.com##body div[class*="-mib-ad-"] +||js.yanyue.cn^ +||lyislol.top^ +money18.on.cc#@#.ads-bg +||dsp.lenovo.com.cn^*&clientType=api| +le.com##.broadcast-adv +/page/s.php?s=$third-party +||zpgjz.com/cdn/new1/4.gif +||yyetss.com/static/modal.js +discuss.com.hk##iframe[src="/fb_page_plugin.php?interface=web"] +fx678.com##div[class^="hc_ad_"] +||xywy.com/zhixing/ +||anhuinews.com/include/ +txahz.com###archy_ad2 +mydrivers.com##.duilian2 +||3h3.com/js/homepage.js +||discuz.gtimg.cn/cloud/scripts/discuz_tips.js +||oaftaijo.net^$third-party +||adsame.com^$third-party +||shuakongbao.com/resource/images/banner/ +||hsvmtn.xyz^ +||php.cn/ad1. +||zvtnj.icu^ +||tnifdlai.top^ +image.so.com#?#.imgcell:-abp-has(.txt:-abp-contains(广告)) +||pztezl.xyz^ +it1352.com##.glyphicon-certificate +||jiandan100.cn/images/site/union/ +||captickc.com^ +||zhaweifeng.com^ +ifeng.com##.leftpopad +||*.$image,rewrite=abp-resource:1x1-transparent-gif,third-party,domain=rmdown.com +||835images1.com^ +||fbfrbt.xyz^ +czzy01.com#?#.swiper-wrapper > div.swiper-slide:has(> a[href^="https://"]) +||ostjpig.cn^ +||itad.linetv.tw/api/v2/vmap?ad_id=$xmlhttprequest,redirect=nooptext +||go.hangzhou.com.cn^ +||isdspeed.qq.com^ +||pengwei168.com/template/stui_tpl/html/vod/f.js +lenovo.com.cn##.bottom_ad_ban_bg +||qpgyy.com/add01.html +/images/segucrwj*.jpg +u7u9.com##.xw-right-ad +so.com###e_map_idea_detail_lists +@@||serving-sys.com/serving/adServer.bs?$popup,domain=hongkongcard.com +firefoxchina.cn##.feed-pmt +18avtube.com,mm-cg.com###partner +||iptv444.com/ad- +||qc1.cheshipin.com^ +ifeng.com##a[href*=".app"] +||giaoji.com/Runtime/Js/ +/dm78ad/* +||ccmeng.com^$third-party +qidian.com,~game.qidian.com##A[href*="game.qidian.com"] +csdn.net##.float-left > div[id^="dmp_ad_"] +dianping.com##.votelist + .aside-box +@@||vipstatic.com/img/share/blank.png +en8848.com.cn##.list_adv +/728_90_ +/asset/js/gglms. +||pcpop.com/pv/pv.js +ggdoc.com.cn#@#.addiv +ahtv.cn,sexbarss.net##.l1 +99tianji.com###banner_gg +||1188.com^$third-party +szonline.net##.layout_ad +||szdzn.cn^ +ali213.net##.head-left +||mymahuxv.xyz^ +||dvlith.xyz^ +/guang/twuu.gif +alu.cn##.Tg_590x60 +||rakuya.com.tw/position?task= +||gqwwshbdd1.fun^ +||1x6666.com/img/ +csdn.net##.padb0 +duba.com###fixedad +sina.cn##[data-videojc*="://sax"] +sex8.cc##.gd-list +@@||o.auspost.com.au.ssl.d2.sc.omtrdc.net +raenonx.cc##.main_ads-content + div +||tmoclbf.icu^ +sohu.com##a[href*="_Click_Flow_recommend_"] +||txhfgwgkwt7.asia^ +||szpzk.cn^ +||pxqqytk.icu^ +||dig.chouti.com/advert +||scint-x.com/js/ +##a[href="javascript:GoTp();"] +xiaohutuwb.com##.ceo_ads +gamer.com.tw,pili.com.tw#@#.text-ads +159i.com##a[href*="/"]:not([href*="159i.com"]) +/secretmine_out.js +eepw.com.cn###startvideo +||esyliew.top^ +/smflow/get.*=gAdCallback_ +||kanshushi.com/js/nxnhsqe. +||redyzlmc.xyz^ +tech.qq.com##.kjad2 +@@||zpmobi.cn^*/ad.css?$stylesheet +##.bottom_fixed > #imgs_link4 +ifeng.com##div[class^="bottomDbox"] +jitashe.org##.bc_side_250 +||shbzjgs.cn^ +baidu.dj###ETE +||bjmama.net/a/spc_ +||rrkouuz.icu^ +.com/Public/js/duileft.js +pilipili.site##.block-sales +||hasdjksndjk.com^ +||jyuskb.cn^ +||vqlwoy.xyz^ +/duilian_gg. +.qidian.com/gameBox. +baiduyun.wiki##.tecent-adsense +||121zou.com^$subdocument +downza.cn###priDownBtn + a[href*="?module="] +qinbing.cn##.zjlmad +||mzpecui.icu^ +||tiao1.cc/static/default/js/loadLM.js +||mvpqrydt.xyz^ +||tianyaui.com/cms_fragments/res/*/bbs_include_mod.js +||axhfeum.xyz^ +||pipix.cc/gg.gif +1688.com.au##.ad_300_p +tie.163.com,uump4.com,uump4.net###top-banner +/k960g90. +||m.mianbao99.com/js/detail.js +||dm.aizhan.com^ +||xdcad.net/source/plugin/disad/disad.js +oschina.net##a[data-traceid^="questionbanner"] +||djxpnuo.xyz^ +##.menutab_ad +jandan.net##a[href*="/money.php?"] +||duyewnf.icu^ +qq.com##.ad-foot +58.com##.guaguabox +||bad996.com/dakaads.js +fx361.com###k_s_ol_chatWinSm +nowscore.com##div[style="background-color:#F0F0F0;line-height:25px;height:25px;text-align:center"] +##a[href*=".xxmh"][href*="?u="] +douban.com##.rec_topics_name[href^="https://erebor.douban."] +||yddjmpjo.xyz^ +||bnlbecm.xyz^ +fx168.com##.jy_ny2018_content_LeftAd +.xn--fiqs8s:7385/ +/js/ads_ +rjno1.com#%#function preventError(d){window.addEventListener("error",function(a){if(a.srcElement&&a.srcElement.src){const b=new RegExp(d);b.test(a.srcElement.src)&&(a.srcElement.onerror=function(){})}},!0)}preventError(/^(?!.*(rt-error.js)).*$/); +||bdcode.2345.com^ +||motsjnv.cn^ +||doc88.com^*/count.js +||mn1180.top^ +||vdggsd013.com^ +bfmusic.com.tw,workercn.cn#@#.ad_content +###googleAD3 +123.chinaso.com##.right-list6 +123.sogou.com,web.sogou.com##.dropBox_list > li > a > span[style="color:red"] +home.ifeng.com##.fengjc02 +||xn--xhq326aj6yqpw.com^ +vpser.net##.ab_cpb +||liantu.cn/script/ +||yibian.hopto.org/apng/load.php$important +yahoo.com##div[class*="bg-Ad"] +@@||rm.sina.com.cn/minisite/*/css/art_normal.css$domain=client.sina.cn +ilvruan.com##a[href^="http"]:not([href*="ilvruan"]) > img +yy.com###rbappend +||qzozsa.xyz^ +||2345.com/right/homepage/tqbChannel_ +@@||519.best^$generichide +/Static/Home/GongGao/img/juzi*.gif +||lhmgoik.icu^ +androiddevtools.cn###auto-scroll-ad-box +##.wp.a_f +||gd.sina.com.cn/iframe/22/ +jrj.com.cn##.piboxtwo +cq.qq.com##div[class^="ad-box"] +||s7tu.com/images/*.gif +||edjjpgf.xyz^ +||daliantong.com.cn^$third-party +||xtrkhv.xyz^ +||revsci.net^$third-party +lenovo.com.cn##.game-bd +||nkfith.xyz^ +rjno1.com#$#body #aswift_1:not(#style_important) { display: block !important; } +131458.com##.divGuanggao +||rcnithgm.xyz^ +||ccement.com/js/ccement_new/open.js +||hackp.com/im/ +||sogou.com/uniplan/?pageID= +ifeng.com##.right_gg +2345.com###m_banner +/ab_my/pc_pf.js +||dlkoo.cc/down/$subdocument +||jhfcll.cn^ +##.wpcom_ad_wrap +||cqpph.cn^ +##div[style="position: fixed;top: 60px;right:0;z-index:999;width:250px"] +paopaoche.net##.down_btn2.green +||120askimages.com/ask/zhenshi/templates/pub/js/loadPart.js +baidu.com##.ad-list +ettoday.net###ticker_3 +pornbest.org#?#.container-fluid > div.row:has(> div.item > div.card > div.card-body > div > span:contains(/^ad$/)) +newtalk.tw###_popIn_recommend +||ljvc0.icu^ +qqxiazai.com##.bt_abtn2 +afzhan.com##.topRightAdv +||mahua.com/www/default/js/replace_ab.js +||bd1-china.6789.com^ +||rbrmhz.xyz^ +@@||tv99.tv^$generichide +69xx.one,69xx487.xyz,8mav.cc,av411.xyz,cable2055.cc,theav.xyz,thep178.com,theporn.cc,weav.xyz#?#[class]:-abp-has(>a>.q-responsive) +||doczj.com/js/common.js +||mphxyxk.xyz^ +||hongi7ie8owiie01.site^ +@@||fotor.com.cn/static/web/share/js/ +||biancheng.net/uploads/ggxc/ +touchgal.org##a[href*=".sailing.ink"] +||byscy.cn^$third-party +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video-js.min.css$domain=ulifestyle.com.hk +||5dmail.net/image/ad_ +cztv.com##.right_box +||myhaitang.cc/assets/public/*.js +||100xuexi.com/CssModel/*Layout.js +||esnysd.icu^ +||cacafly.net^ +maxthon.cn###festival-skin-link +hexun.com##.lck-module +technews.tw##.inside_AD +||973.com/static/js/pccom.js +||yizhibo.com/special/h5corner.html +||tangrenjie.tv/gg/$image +||uxrdg.cn^ +yicai.com##.dfb-ad +iciba.com##.footer_baidu +||a.zuowenku.net^ +||gjwind.com/xxmh.gif +v2ex.com#?##Rightbar > .box > .inner:has(>a[href]:only-child) + .sidebar_compliance > a[href="/advertise"]:upward(2) +bbc.com##section[class*="AdContainer"] +@@||sxjbjt.com^*/ad +4gamers.com.tw##.mobile-bottom-ads +||5axxw.com/extends/ad/ +||scanfang.com^ +||121.204.246.*.gif +||log.daqi.com^ +hh010.com##.a_hong_h +.com/java/zuoxia.js +kocpc.com.tw###scroll_div +||mec9k.com^ +||tingchina.com/js/760 +||jsztl.com/img/particular/tbyhq.jpg +duba.com,newduba.cn##.s11_store_box +/adbox/* +fsbot.xyz#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +xiazaizhijia.com###public_right_mid_ad +jyacht.com###zy_topgg2 +~umeng.com##a[href*=".umeng.com"]:not([href="http://www.umeng.com/"]) > img +to8to.com##.ask_side_opa +||hupu.com/_dace.gif? +edrawsoft.cn###bottom-banner-activity-md +/vs.aspx?action=c&vs1=$third-party +||17173.com/new/ +||iprefer.com.tw^$third-party +||banzou.name/qq/qq2.js +oschina.net##div[name="detail_show_footer"] +||g.gegeyingshi.com^ +hao123.com###__elm_0_4 +||cnblogs.com/units/ +||dingniugu.com/newskin/js/backTop.js +||hihlj.online^ +||qiyipic.com/common/*/225x230.jpg +||zhangqifeng12.top^ +rjno1.com##main > div[class^="qnb"] +udn.com##iframe[src*="udn.com/mall/cus/cat/OutWebAd.do"] +world.huanqiu.com##.ad_txt +webhd.top##.justify-content-center.pt-2 +cr173.com,itmop.com,jisuxz.com##.xiazaiqi +###left_top_ad +||gg.gsdlcn.com^ +||aliyuncs.com/wjy99re/ +##.ddd.ng-star-inserted +||1.jushtong.com^ +/fsjghgwyegh_f.js +techbang.com##.phone-ads +now.com#%#//scriptlet('set-constant', 'preBid', 'emptyObj') +apk.tw#@##google_ad +||kccdk.com/Content/img/*.gif +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?#div[id$="_canvas"] +douyu.com##.IconCardAdBoundsBox +||chubun.com/images/banners/ +||douyucdn.cn/butterfly-java/*?width=1200&height=120& +##.conch-ads-box +##div[style^="width: 100%;"][style$="opacity: 100;"] iframe[scrolling="no"][src*="//"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +zhihu.com##.KanshanDiversion +||iciba.com/web/static/scripts/kds2_record.js +##.ads4 +@@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com +||mobiteu.cn^ +_300x250. +||sunshijc.com^ +||xadulxs.cn^ +@@||2345.com/images/activity/20171111/open/j/close.png +briian.com##.sidebar-widget-area > #custom_html-6 +sxrom.com##.tmk +||soft.mumayi.net/js/ +||g2ak5.com^ +gamicsoft.com##A[onclick*="'Advertisement"] +cztv.com###adsmall +@@||kk665403.pixnet.net^$generichide +||jmw.com.cn/m_v2/js/active.js +setn.com##.rightFloat +||ctfile.com/iz.php? +baidu.com##.wgt-bottom-ask +##.top-meta > .moj-content +/xiaoyi/360_ +=fitacg.com/static/other1/ +1kkk.com,40407.com,5068.com,88148.com,chazidian.com,china.com,cnwnews.com,elecfans.com,ghjie.com,iask.ca,ifeng.com,iqilu.com,juqingba.cn,liuxue86.com,qzwb.com,sina.com.cn,zsnews.cn##.gg +mm-cg.com###ArticlesEx_box +duba.com##.hot-bottom +.vip/html/zbxx.js +||chinaacc.com/lamu/*piao +alibabacloud.com##.hmod-alicloud-contact-sales-support +fortress.com.hk,youdao.com#@#.share-icon +.xyz/ad/ +##div[style="width: 100%;"]:not([id]):not([class]) > iframe[scrolling="no"][src*="//"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +||taobao.com/js/smartbanner/ +||pcxnrd.xyz^ +||ali213.net^*/promotion/ +.com/stat-qq.html?*&click_url_final=$all +||daima.yuzhulin.com^ +wdzj.com##.left-gg-box > div.sl-ggao > div.gg +@@||digit77.com^$generichide +-90mh-gg. +sex-gen.com##.navi +||162.212.182.$subdocument +||mphcrjth.xyz^ +||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ +sina.com.cn###ad_tl_01 +||khrtac.xiangha.com^ +weihemenye.com#$##player_ad_div { display: none!important; } +||qudao.com/common/minisite.js +/advert. +##.ad_footerbanner +mydrivers.com##div[class^="jdong11"] +/js/jsstyle-$third-party +||gtrhnhg.cn^ +||o1b04.cyou^ +||lieqinews.com/json/zhiketj/ +###ldgindexbuttom +||fanyi.baidu.com/wise/afd +||ali213.net/zt/twtk/images/tzxf.png +/img/ad_ +cnfol.com##.AdvDL +@@/common/cf/*$domain=66u.com|changhong.com|fei3d.com|oneplusbbs.com|readboy.com +||luyarvx.icu^ +moe-acg.com##a[href*=".x8o.de"] +mgtv.com##.c-95060-top +@@||chaintv.xyz/homestatic/js/adjs.js +||s11.cn^$third-party +##.ad_hf +||haokan5.com/js/haokanjs/playa +||spsfupq.cn^ +buzzorange.com##.ad_small_m +galacg.me##a[href*="/game"] +||u10*.com/*.gif$domain=bhuai.top +helloyishi.com.tw##.article-desktop-ad-wrapper +##a[href*="/dsf188.cc"] +||wendangku.net/js/common.js +zhihu.com##.Banner-link +163.com##.u-index-ad +||daima.ysdui.com^ +m.56.com##a[data-statkey="newad_banner"] +||hgpdoa.cn^ +/js/hf*.js?v=$script,domain=bqgaa.com|bi25.cc +ccav1.com##a[href*="/go"] +||u0065.com^ +||8ovgk.online^ +nowcoder.com###jsSideTopicList +||wenxue.youzhicn.com^ +||unikoshardware.com/wp-content/uploads/*/*/WPointer_Ad_440x250.jpg +||cnkang.com/showcodejsonp? +jiayongluyou.com#?#.widget_html_myimg:has(> ins.adsbygoogle) +gamersky.com##.downLoadGame-2 + .dl_url +@@/share/js/*$domain=yunpanjingling.com +||fgadsqdma.top^ +||qunale888.com/files/h5/ +||baidu.com/common/fc/ +neihanshe.cn###mobile_client +||tzfdc.com.cn/userfiles/flash/ +||xn--gmq238c5fy.com^ +jingyan.baidu.com##.task-panel-entrance +||doujs09.xyz^ +tom.com###body_right_banner +||vbiakpu.icu^ +||stats.v.duowan.com^ +sogi.com.tw##div[class="row my-2 ad-slot-970"] +||wqvbuj.icu^ +mirrormedia.mg##.story__ad +youku.com##.newtrochanter_trochantercontent > .g-row > .g-col:has(> .g-box > .pack_yk_pack > .pack_pack_cover > .aplus_exp > .pack_p_rt_ad) +hao123.com##.newskin-tip +hmoe.one,hmoe.moe##a[href^="https://item.taobao.com"] +||doujs06.shop^ +||cbjg.cqnews.net^ +||skskssso.com^ +speedtest.cn##.speedtest-recommend +meijutt.tv##.a960_index +520cc.me#%#(function(){var b=window.setTimeout;window.setTimeout=function(a,c){if(!/myaaqqbpfun12\(\)/.test(a.toString()))return b(a,c)};})(); +ichunqiu.com###cnzz168_Login +91porna.com##div[class^="col"] div.filters:has(a.checkNum) +||myqcloud.com/ad/ +||ad.digitimes.com.tw/*_bigbutton.jpg +||alicdn.com/img/ibank/*_1591187313. +##.container > a[href^="http"] > .ads +||ta20k.xyz^ +gamersky.com##div[id^="adscontainer_b"] +yiyouliao.com##.yyl-ads-swiper +element-plus.gitee.io##aside > .page-content +||enread.com/img/185-50.gif +||wm.szdushi.com.cn^ +||ly6080.com.cn/gg/ +||qunar.com/render/*Advertisement.jsp? +||m1.27com.com^ +||upyzqf.cn^ +||100ksw.com/inc/doc- +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##a[href*="www.clinique."] +/adsame. +||clkdbbvy.xyz^ +/xiaoyi/960_ +ifeng.com##div[class^="qrCode"] +@@||liumingye.cn^$generichide +##.Zi_ad_a_H +||xitong8.com/theme/default/images/index_13.jpg +||log2.mtime.cn^ +||vbzrkme.xyz^ +ahhhhfs.com###ri_home_slider_widget-2 +pupudy.com##.sidebar +cpnn.com.cn##.leftgg +fx110.com##.down_Hx +||qescaen.com^ +||wendellyu.com/banner/ +oneinstack.com##.sidebar > .widget:last-child +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_listLiveTvCnt +@@||alicdn.com^*yksdk/*sdk.js$script,domain=youku.com +||jhpbtp.xyz^ +@@||securepubads.g.doubleclick.net/pagead/managed/js/gpt/*/pubads_impl.js$domain=line.me +||juxia.com/jxtp/indexbg.jpg +##.adv250 +@@||wuyong.fun^$generichide +||snifdlab.top^ +hepuwang.com##a[href^="http://ad."] +||ewqws55.fun^ +fwwang.cn###n_s_300250ad +onebox.mydown.com##.advertisement_pic +555hd2.com##a[href^="https://57063683.com"] +||u7u9.com^$third-party +||mobantong.oss-cn-hangzhou.aliyuncs.com^ +aura.cn##.suspension +edc1014001.pixnet.net##a[onmouseover] +pconline.com.cn##.fixLeftQRcode +bdimg.com,tieba.baidu.com,tieba.com#?#.tl_shadow:-abp-has(> .ti_item > .ti_infos > .label_text_tag:-abp-contains(广告)) +||firefoxchina.cn/chome_*.html +||dasdujaosjdioad.com^ +||jsdelivr.net/gh/sex169hub/ +frdic.com,godic.net##a[onclick*="/ads/"] +||china.com/media/mm/ +||google-js-02.xyz^ +##.ads-all +downkr.com#@#.address-left > ul:nth-child(2) +||i3535.com^$third-party +@@||cdnjs.cloudflare.com/ajax/libs/videojs-contrib-ads/*/videojs.ads.min.js$domain=linetv.tw +||jwhdgt.icu^ +||koudaiyundong.com^$third-party +||dssdfsf.cn^ +||bapa215.top^ +@@||eolinker.com^$generichide +nfstar.net#?#.myui-panel-bg:-abp-has(strong:-abp-contains(广告)) +||bmtfka93.xyz^ +||sonimei.cn/qipai.jpg +@@||hk01.com^*/scripts/ga.js +||xcypgd.icu^ +liba.com##.avdert1190 +hc360.com###newAppBox1 +##.look_more_a[onclick^="open_app"] +||adsmind.gdtimg.com^ +100ec.cn,159i.com,1905.com,22vd.com,2345.cn,234fang.com,3gsc.com.cn,52youpiao.com,72g.com,8se.me,acg.bz,acg13.cn,acgbenzi.com,baiduyunpan.net,baike.com,bbs-mychat.com,cdyee.com,ce.cn,chinaqking.com,chinatimes.com,chinatruck.org,chinaz.com,cnforex.com,cnsoftnews.com,codepub.com,cq.xinhuanet.com,cxryun.cn,dav01.com,discuss.com.hk,djwma.com,dmzj.com,dmzj1.com,dngz.net,douban.com,dzwww.com,eastday.com,fengniao.com,focus.cn,fx112.com,gongkong.com,henan100.com,honglingjin.co.uk,house.jschina.com.cn,iciba.com,ifeng.com,ipeen.com.tw,isharebest.com,itavcn.com,jojf.cn,jrj.com.cn,kmeiju.com,kumi.cn,landiannews.com,lawtv.com.cn,lieyunwang.com,lncn.org,loveshang.com,ltn.com.tw,luo8.com,maxpda.com,mm111.net,moxing.net,mvcat.com,ncdiy.com,neotv.com.cn,newsmth.net,njdaily.cn,pc0359.cn,people.com.cn,pharmnet.com.cn,pixnet.net,pptv.com,ptbus.com,qncye.com,r3sub.com,sogou.com,sozi.cn,toolfk.com,tv.sohu.com,u-car.com.tw,weather.com.cn,xianbao.fun,yawin.cn,yb983.com,ydss.cn,yesky.com,yiche.com,yqxxs.com,zhihu.com,ziyuanyo.com##.ad +189.cn,zdzdm.com#@##share_list +.co/js/ads/ +##.gotoclick[adv_id] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[data-click*="\"rsv_srcid\":\"10090\""] +||365xuet.com/assets/web/js/main.jsr_ +@@||joyk.com^$generichide +||54admin.net/images/ad_ +94itv.app##a[href="https://leo535.com/"] +linetv.tw#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +jqzb.com.cn##.zk_xf +fx678.com#@##ad_8 +backchina.com##.eis_subnav_area +eastday.com#@#.ad_center +ekamus.info#%#//scriptlet("prevent-setTimeout", "ins.adsbygoogle") +||olelive.com/v1/pub/index/anchor/check/pc/e? +||oa-panther.data.aliyun.com^$third-party +##.area_ad +||avcao.cc/js/p.js +||qhapoq.xyz^ +||tanx.com^$third-party,domain=~1688.com|~alimama.com|~tmall.com|~www.taobao.com +###wp > .V-video-float +iask.sina.com.cn###topic_ylzz_new +||szyhqj.com/js/ +mpyit.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +baidu.com###ad_xbox_1 +||1.qjhm.net^ +||link114.cn/template/js/showpics_ +ltn.com.tw#@#.adright +||pqnqrjxe.xyz^ +baidu.com##.container:has( > .bottom-section > .item_voice_room[data-yysid]) +||idipsumo.top^ +||clouddn.com/960x60.gif +||js.92aliyun.com^ +abmedia.io,appinn.com,carrotchou.blog,landiannews.com,laoliublog.cn,woniuyulew.com,zhain8.com##.widget_media_image +aicoin.net.cn,bccn.net,douyuex.com,hkepc.com,iviewui.com,juejin.cn##.advertisement +||shuihulu.com^$third-party +||ds.ruanwengfa.com^ +||mqjqripb.xyz^ +##a[target="_blank"][onclick*="广告点击"] +||tpyerxzn.xyz^ +@@/adbanner/*$image,domain=books.com.tw +||gaoqing.la/wp-content/uploads/*/kaiboer.gif +||fulitech.com.cn^*/float.js +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=line.me +fqsousou.com,kengso.com#@#.user-share +||maxun118.top^ +||g-years.com/tb/ +||rdxqbp.xyz^ +||cbdm.weathercn.com^ +ithome.com###hd_float1 +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###global_notice_wrap +redocn.com##.big_vip_gg +/alljs/allwzwhead.js +bjnews.com.cn##a[href*="/ads/"] +cartoonmad.com##table[width="890"] > tbody > tr > td > table[height="110"] +itheima.com##.nav1 +avbebe.com###wrapper > div[align="center"] +gamersky.com##.ad_cmt_cont +##.footer-ad +woniupai.net##.wnp-adbox +||baijs06.xyz^ +/527ldy.oss- +@@||banma.com/statics/js/?? +/red2/ad/* +miaopai.com##.footer_banner +eol.cn###big-ad-img +114la.com,ylmf.com###imgArr +||danlan.org/KFC/ +||dianassb.com^ +@@/guanggao/*$domain=icbc.com.cn|igame.qq.com +cssqt.com###mainbox > a +sina.com.cn##.AD_hqbottom +eastmoney.com##div[style^="position: fixed; z-index: 100000; top:"] +/game/aplus/pptv/* +||159i.com/video/pop/ +||oaiqksi.top^ +||mkscy6.cn^ +||ylplrhum.xyz^ +||www5.oss-cn-hangzhou.aliyuncs.com^ +thenewslens.com##div[class^="help-tnl-container-"] +360doc.com##.floatqrcode +||ccccc78kkkkk.com^ +cam4.tw###newTippingViewer + div[data-ab] +||xxlfteg.xyz^ +@@/home/ads/*$domain=esunbank.com.tw +xbgame.net#@#.google-ads +||chazidian.com/all/gg_ +||haochi123.com/J_Box/Inc_ +@@||seselah.com^$generichide +||bahamut.com.tw/js/ad.js +||sina.cn^*/impress? +||uewrutt.top^ +||proginn.com/cms/10000/ +||letvcdn.com/lc02_live/201803/18/23/40/1521387641261new. +/uploads/setting/ad/* +||uugtv.com/x/app/videoSpread? +||swsegi.xyz^ +cna.com.tw,ettoday.net##.ad_970 +dzwww.com##div[style="margin:0;padding:0;width:620px;height:345px;overflow:hidden;background-color:#fff;"] +||xiaopinwo.com^ +||gpiagk.xyz^ +qq.com##.mod_stridead +/template/zsy_badian/dddytt-gg/* +cndesign.com##.index-add +||tamedia.com.tw^$third-party +||pianbar.net/JS/hottj.js +||longzhu.com/i/api/videos/dailyRecommend? +||bojyvp.xyz^ +/js/ggtop.js +anquan.org##.gj_download +||talyrt.xyz^ +mo.fish##.list-item-content-ad +##.advertising_lightbox +||hoopchina.com.cn^*/ad-pc-sdk. +##.chat-top-ad +.live/o.js +laifudao.com##.side-adinner +52asus.com###guiigo-black-mask +||pic1.dianshu119.com^ +.com/rs/in/*?n=$script,third-party +zuoye.baidu.com,zybang.com###aside +@@||8maple.ru/comic.jpg$domain=video.bilibili.to +pansci.asia##div[class^="pansc-"] +||msvkfwth.xyz^ +||vgzytn.xyz^ +happymh.com##a[href*=".taobao.com"] +||cn6x.com^ +ygdy8.cc##.container > a[href^="/"] +porn5f.com##.video-promote-adv +||westca.com/server/ +/adview_ +8264.com##.advSection__wrapper +huaban.com#$#div[data-content-source="导航栏"] > a.modalOpenWidth { display: none !important; } +||chong-wu.net^ +cpnn.com.cn##.rightgg +||tb58.net/plugin.php?id=tb58_ +www.duba.com##.tiyan_a +##a[href*="/333663.xyz"] +qqyy.com##.ind_ad +~laifeng.youku.com,youku.com##a[href^="http://cps.laifeng.com/"] + .bg + img +slit.cn#%#//scriptlet("abort-current-inline-script", "alert", "typeof(ad)") +toy-people.com##.rightAd_3002502 +tieba.baidu.com##.top_toutu_admarks +udn.com###ad-pall +54new.com###imgshow +||07073.com/api/getKfList? +mcbbs.net##img[width="462"][height="78"] +||jmcomic1.me/static/resources/old/images/AD/ +||osusjsga.com^ +fang.com##.bannger_inbox +||en8848.com.cn/js/ad +@@||dlkoo.cc/down/*/*.htm$popup +||qizhihaotian.com^*.js +@@||hdslb.com/bfs/cm/cm-sdk/static/js/bili-collect.js +/dreamads/* +||d2.yingyongge.com/*?*&$subdocument +||cwrxgb.icu^ +||cdszgg.xyz^ +qingdaonews.com##.surround +2345.com###right > div:first-child +||a.52zxw.com^ +pinshan.com##.bea_adv2 +||51la.net^$third-party +||yrszy.com.cn^ +hao123.com##.sc-tips +##.c-ad +||doko.moe^$domain=pantsu.cat +||aoji.cn/default/looyu/ +baidu.com##.ad-vip-close-bottom +appinn.com###sidebar a[rel*="sponsored"] +||adshows.21cn.com^ +||wsdwbfs.cn^ +youdao.com##.dialog-guide-download +||xhgpuxim.xyz^ +@@||gg.pl/wp-content/*/GG/ +@@||muzlan.top/ads/banner.png +preface.ai##.cs-sidebar__inner > .widget_media_image +.top/g3/myString3AsyncG?$third-party +/js/yueyupp_3.js +||pchome.net/flow.php +||mobile.sina.cn/public/files/image/620x300_ +||160.com/statics/statics/js/code_15.js +||ftimg.net/s?z= +m.babytree.com##a[class$="-join"] +yesky.com##div[class^="ad1"] +youth.cn###identifier-pannel +||0439.com/javascript.php?part=advertisement& +||lingdianshuwu.com/js/content +###leftFloat[style="z-index: 999; position: fixed; left: 0px; bottom: 0px;"] +||39.net/a.htm? +||sinaimg.cn^$domain=2c2.website|2p8.space|adultgao.com|caopop.com|caoporn.com|caouoo.com|caox.cc|h3e.pw|h3y.pw|k88.club|me88.pw|p5p.space|se88.space|t2p.space|tb001.xyz|te88.pw|vwan.xyz|xhao1.com +discuss.com.hk##div[id^="ad_"] +sina.com.cn##p + .article-video +||pconline.com.cn/ipJson. +sinoca.com##div[style="float:right;height:280px;width:336px;clear:left;background:#FFF;margin:15px 15px 15px 15px;"] +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.thread_recommend +||pvnzrr.xyz^ +||afoqs.cn^ +caoporn.com##div[style="height:160px; max-width:100%; width:945px; padding-top:10px; margin:0px auto;"] +zhujiceping.com##.fcode > center > table +danlan.org##.ad98090 +cnplugins.com##.pushbox1 +||666bbb888www.com^ +nfuwow.com###dl-right-first +||666ppp888ppp.com^ +.cn/sc/*?x=$script,third-party +||04stream.tv/sda/ +||ymniqh.icu^ +aa25.cn,kafan.cn###content_top +||mall.xinkuaituan.com/zhuanti/ +d1xz.net##.base_ad_640_90 +||develenv.com^$third-party +||sohu.com/api/photo/photo_bottom.json +||itongcheng.cc/amm/ +girlstyle.com,thecatcity.com,urbanlifehk.com##.desktop-sidebar__block--ad +||mlog.aipai.com^ +||citysbs.com^*swf +||moneyweekly.com.tw/Uploads/AD/*970x +91wenmi.com###xzsp +||truvidplayer.com^$domain=technews.tw +sogou.com##.sponsored +wapwenku.baidu.com,wk.baidu.com##a[href^="http://www.baidu.com/cpro.php?"] +codeceo.com,fuli8.net##.widget_text:first-child +league-funny.com#%#//scriptlet("prevent-setTimeout", "ad_num_show") +bkjia.com,zol.com.cn##.hot_tj +||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg +||dyzyhj.com/Jk/ +3dmgame.com##.mb30.warp_f +||chinapress.com.my/public/static_resources/img/600x337 +ifeng.com##.popoxiu_topic +2345.com##.dzc-hn-cmoe +hmitalk.com##div[class*="-pubadban "] +airav.cc###bottom-adv +||i322.com/ad_avshow/ +cntronics.com##.cnt-ads90 +##.ad_336x280 +||caoimgs.com/images/*.gif +@@||int.mwbbiz.com/static/*/videoShow.js$domain=91porny.com +||izqogb.cn^ +||kekenet.com/images/*/akasuo +hao123.sh##.box-banner +||1.lvshi567.com^ +||a6.hujiang.com^$domain=~class.hujiang.com +||dclpjx.xyz^ +||usyliet.top^ +thinbug.com###inktokad +netfly.*,netfly.tv##div[class*="tt-"] > a[target="_blank"] > img +||520z-2.com/uploadfile/sucai/ +||ps123.net/MyFile/ +eprice.com.tw##.ad-728x250-g +@@||colatour.com.tw/webDM/*/adbanner$~third-party +youdao.com#@#.open-share +qzone.qq.com##.gb-bill-area +mxdm.xyz#%#//scriptlet('abort-current-inline-script', 'Function', 'new Function(document[') +||a.icdol.com^ +||weiyuedu.cc/skin/v3/js/dibu.js +/common/cf/*$image,object,domain=~ztgame.com +###right_down_float_ad +||vcxv73.fun^ +||ss9874.com/img/91_ +##a[href*="/?Intr="] +@@||bootcss.com^$script,domain=kan-tv.com +||cnpingpang.com/themes/v1.0/images/temp/ad/ +niuacc.com##.botLm-container +qinbing.cn##div[class^="Ad-"] +csdn.net###kp_box_58 +##.adBanner +@@||rmdown.com/ads.js +||ab.cnbanbao.com^ +fashion.qq.com##.rv-js-root +@@||readmoo.com/images/social/ +blog.csdn.net##.t0 +||d2.sina.com.cn^$object,script +pconline.com.cn###JdlFixed +||1.ajiyuming.com^ +||biiepofl.xyz^ +||przbzr.xyz^ +||gxihcq.xyz^ +vmall.com#@#.iframeAd +||acqaghx.icu^ +waipian1.com,waipian2.com,waipian3.com,waipian4.com,waipian5.com,waipian6.com,waipian7.com,waipian8.com,waipian9.com,waipian10.com,waipian11.com,waipian12.com,waipian13.com,waipian14.com,waipian15.com,waipian16.com,waipian17.com,waipian18.com,waipian19.com,waipian20.com,waipian21.com,waipian22.com,waipian23.com,waipian24.com,waipian25.com,waipian26.com,waipian27.com,waipian28.com,waipian29.com,waipian30.com,waipian31.com,waipian32.com,waipian33.com,waipian34.com,waipian35.com,waipian36.com,waipian37.com,waipian38.com,waipian39.com,waipian40.com#@#.player-rm > a[target="_blank"] +pcworks.cn##.xintheme-ad +||kanshu5.net/js/index.js +/pjk/mdk/*$subdocument,third-party +||csdnimg.cn/public/common/indexSuperise/1.1.1/indexSuperise.js +wendu.com##.foot_adv +||dfcfw.com/tg/ +||allyes.$third-party +||sasadown.cn/source/plugin/drk_ledadv/ +||sciencenet.cn/html/js/n +big5.china.com.cn##a[href^="http://big5.china.com.cn/gate/big5/"]:not([href*="/science."]) +||huibaihe.net/static/730-580. +2345.com##.mco-ex-ndxh +~sinaimg.cn##a > img[src*=".sinaimg."][src$=".gif"][style*="width:960"] +baidu.com##.rel-exp-feed-ad-item +iqiyi.com##div[class^="video-slide_threeImagePages"] > a[href^="http"]:not([href*="iqiyi.com"]) > div +||360.cn/apis/qss/soweb/ad_proxy/internal/ +||githubusercontent.com/vip888vip/ug/main/*.gif +hackhw.com##.d336 +||jsdelivr.net/gh/cloud-files-cdn/jsfiles/lieqi. +creaders.net##.border_b > tbody > tr > td[height^="2"] +||777bbb777www.com^ +||163disk.com/static/aimgs/d +dingdong.ganji.com#@#.banner +||miycoc.xyz^ +@@||google.ps/translate_$media,third-party,xmlhttprequest +moe-acg.com##div[style="position: relative;width: 100%;height: 0;padding-bottom: 18%;"] +boce.com##.page10Box1 > a[href^="http"]:not([href*="boce."]) +||7daystodie.cn^$third-party +||lfjslil.top^ +||doxihz.xyz^ +||80s.us/9*.js +||xc.macd.cn^ +||wwwbaiducom.xyz/4/js4/ +114la.com###dlAD2 +||news.sina.com.tw/js/ti.js +||adsc.wasu.tv^ +nba.hupu.com##div[class^="nba-ad"] +||vip.panggugu.com^ +/moneymaker/js/player/zanting.js +||ggsnyc.xyz^ +enread.com##td[width="326"][height="250"] +ltn.com.tw##.list > li[id^="apxzone_"] +sinolub.com##[id^="xker"] +||kejiwanjia.com/wp-content/uploads/*/1040x100. +||stbwhln.cn^ +###adBody07 +###popadv_popmask +qq.com##.adbutton-Aritcle-QQ +||askdlajfbv.top^ +||lotour.net/bcef/388.js +||p1.qxzsw.com^ +||codenong.com/dq.png +||gangjuw.com/style/lmjs/ +.info/ad/ +||njxzwh.com/pcsoft/statics/ycgg/ +||ads.tvb.com^ +.com/vh1/$script,third-party +||tv99.tv/wp-content/uploads/pum/ +||img2.126.net^ +||beiwo888.com/Runtime/js/ +||ecikmrm.icu^ +||er.5ykj.cn^ +||233.com/js/side.htm +hao.360.cn,hao.360.com###plane > .plane-hd +sina.com.cn##.m-p1-lb1-ad +||91hs005.xyz^*.gif +||iciba.com/static/images/download_banner.png +||brutvncv.top^ +##.wwads-cn +##a[href*="/33hth.cn"] +||qronay.xyz^ +/pubads. +||news.cn^*_tlad.js +||xlgvlvbc.xyz^ +/popunder1000. +fanyi.sogou.com##.img-banner +||94n33.fun^ +pinggu.org##a[target="_blank"][href*=".cda.cn"] +mx-fm.com,ts.21cn.com#@#.ad_img +###mv_float_layer +||dymmt.com/skin/mzitu/js/foot. +iqiyi.com##div[class^="list_list__"] > div[style*="margin-bottom:"] > div[style*="margin-right:"]:has(> div > div[style*="background-image:"] div > div[class^="video-list-item_"] > div[class^="video-list-item_"] > a > div[class^="video-list-item_"] > div[class*="video-list-item_"] > img[src*="/ADS/"]) +||cdnjs.hro-cosmetics.com^ +||oh100.com/js/pubuliu. +||seutop.icu^ +##.ad_two +||whichav.*/qq/qq.js +||classic.39health.com^ +##div[style^="line-height"][style*="http"][style$="fixed;"] +it165.net##.adv728a +||vrelai.com^ +||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$script,redirect=noopjs,important,domain=ebb.io +||vexilorath.com^ +~hrtsea.com##.widget_ui_ads +||ujrspnbf.xyz^ +||scupio.net/kanglei/ +||mdjdpyrt.xyz^ +||w0082.com^ +duote.com##.download-box:first-child +||fzxiaoshuo.com/source/ +bejson.com##a[href*="/kuaikuai."] +businessreview.global,zhihuishu.com#@#.sharing +szxx.com.cn#@##divAd +/Runtime/Js/90_m.js +bg3.co###div_top_ads +/javhd-jp-970x170.jpg +tvshowbox.tw##a[href=" http://www.shumeimotel.com/"] > img +/os2023001.oss-$script +||dangdang.com/adall. +f2dsex1.com##div.link +pansci.asia##.ad-container +||aaaimg.com/images*.gif +||sh.sina.com.cn/iframe/522/ +||qkscga.xyz^ +360.com###rainbow-cat-screen +riaway.com##.info_message_container +:538/attachment/xjdb.jpg +landiannews.com##a[href*="ourl.co"] +zuanke8.com##.zuanpw +my0511.com###footerbannerad +||sogou.com/dr/p1.gif +||51hir.cyou^ +now.com#%#//scriptlet('set-constant', 'preBid.displayAd', 'noopFunc') +360doc.com###divaboveReflectionAd2 +##a[onclick^="_czc.push(['_trackEvent', '广告"] +cs.com.cn##.js-ad1 +||yzdh44.com/js/ +@@||sudupan.com^*/*.gif +xixik.com###news_contents_left > .left_gg +mydown.com##.adv2 +@@||060s.com/images_ad/*.png +||es3984.review/02_cn_ad/ +||mm.wxc.cc^ +_728_90_ +360kuai.com###xunjia-modal-btn +||china.com/zh_cn/etc/gghead +1kkk.com##.kk2.cc +||fghghh.cn^ +||qmbdta.cn^ +||kuxfznnf.xyz^ +18comic.org,18comic.vip,18-comic.work#$?#.col-xs-6 > div[data-type][style]:has(> ins + script) { remove: true; } +||snzfj.net^$third-party +/data/attachment/ad/* +ting89.com,tingshuge.com##.banner250 +@@||cocomanga.com/js/ad*/*.js +/uploadfile/ad/* +||sina.com.cn/3/2016/1114/45.js +||chinaz.com/news.js +||dcs.conac.cn/js/ +###tanx-con-1 +||bhiagi.xyz^ +nipic.com##.vip_homeshow +18comic.*##div[data-height="90"][data-width="728"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###duoku_servers_list +mpyit.com###sidebar a > img +||kryeia.xyz^ +||linkwan.com/gb/broadmeter/speed/cp.js +||xedpzh.xyz^ +||qidou.com^$third-party +@@||hboav.com/guga/images/20201021.jpg +||0460.com/images/banner/ +||dskjbvzvs.com^ +||ofdnkro.xyz^ +csdn.net##.p4course_target +||nmntgd.cn^ +@@/adbar/*$domain=outlook.live.com +adguard.info,adguard.com,adguard.app##.hello_from_adguard_ext +||wfqgfaa.cn^ +@@||da.mgtv.com/m5/page? +||rzfdbsn.cn^ +||nyt5j.cyou^ +||phpstudyimg.com/all/xiaojieqiantie.gif +xhd.cn##.xinad +qingwk.com##.c-footer-banner +mydown.com##.doubleDownload_content > .middle +||zhihu.com/api/*banners/ +||alicdn.com/img/ibank/*_687764080. +58.com##.topinfos +##.imagegg-container +@@||taobao.com^*&adgroupid= +baidu.com###copyright + .banner +hupu.com##.m_text_ad +/letv-gug/* +||053h94.com^ +||alicdn.com/img/ibank/*_1085845541. +chinaz.com##.Postcon-ad +haote.com##.bigmainIn +||webfunny.cn^$third-party +##.ads-item +bilibili.com#?#.eva-extension-body > .bili-video-card:-abp-has(.bili-video-card__info--ad) +||wwxufo.com^ +||tieba.baidu.com/f/urlcheck? +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###plat_recom_carousel > .tbui_slideshow_list +@@||img.ads.tvb.com/news/min.js$domain=news.tvb.com +||yyefao.com^ +easou.com##.ecom-adTop +||chinaacc.com^$domain=100ksw.com +nfmovies.com#@##adright +||licai18.com/pic/article/*.gif +qiannao.com###main > div[style="padding-left:20px;margin-top:10px;"]:first-child +||sdss99.fun^ +msn.cn##.intra-article-ad-full +eastday.com##.video-mask +||m6j37.xyz^ +sonkwo.hk##.store-ad-waist +||xcholvbc.xyz^ +hao123.com##.title-wrap + .right-img +||nlhpxj.xyz^ +||xpdronhu.xyz^ +||tajdad.cn^ +@@||sjsmitaa.org/bin/showads. +||pwcegau.icu^ +||daqiso.com/ggbl/ +||vfchm.cyou^ +||fengbuy.com/recommend-new. +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.dialogJmodal +||hdickeu.top^ +||yorkbbs.ca/crm/section/v1/get/list/open +||jmipzsn.icu^ +/Runtime/Js/footer-m.js +||ps557.com/link/ +acfun.cn##.banana-ad +||oumnxiek.top^ +||er.5ykj.com^ +||on5ga.icu^ +76xh.com##.index_advertising02 +##.lyad +58.com#?#LI[sortid]:-abp-has(.jinico) +28188.com,28188.net###nav +||21uscity.com/zonelist.php +||cdndm5.com/*/default/js/ad_ +||520xingyun.com/images/188*.gif +||fogolakda.top^ +||88lm13.com^ +||pcauto.com.cn/zt/*_dialog/cjx-pc-half_ +||mebohjhh.xyz^ +niotv.com##.epg_ad_list +||23qb.com/skin/xiu.js +v.qq.com##.nav_link[href^="http"]:not([href*=".qq."]) +ca168.com##.admarket +||520xs.la/js/dianrui- +||qq.com/bbs/bbs_topgg.htm +||s.ssl.qhres2.com/ssl/ +||ip138.com/banana/ +silver.org.cn##.fixbottom_wrap_small +||wudizuqiu.com/img/dasai8/ybbj.png +||edickew.top^ +||stockstar.com/info/1200x90/ +17173.com##.js-lol-pop +4gamers.com.tw##.scroller-ads-wrapper +||delivery-pc.wasu.cn/d/frontJs/3.0$redirect=noopjs,domain=wasu.cn +||ifeng.com^*&ADUNITID= +chinaacc.com##.leftBox +so.com###e_idea_left +ifoodie.tw##.ad-container +itdog.cn##.col-12 > .card.mb-3[style="padding: 5px;"] +suopao.org##.t5[style^="margin-top:8px;"] +tmall.com##.fp-lazyload-con[data-path*="/floor-ad-"] +||nvdtdsd.xyz^ +||gg-led.com/uploadFile/uploadCompanyLogo/*.gif +||js.shunqi.com^ +baidu.com##.pauseadv +||absalomcsa.com^ +||web.51fishplace.com^$third-party +51wangdai.com##.couplet_gg02 +.mp4?*sdtfrom=&$domain=m.v.qq.com +sohu.com#?#.news-wrapper > .news-box:has(> div[id^="taboola-below-article-widget"]) +||usejj.makepolo.cn^ +||books.com.tw/web/apActivityStick? +||oeryt111.fun^ +mini.eastday.com##li[class^="recommend_news recommend_ad_hot_"] +||ysx8.vip^$third-party +@@/images/*_share.png$domain=service.weibo.com +||m.ygexing.com/d/js/acmsd +||lbjdbym.xyz^ +||ttwwzqdx.xyz^ +###appIn +||baidu.com/rmaAjax/getGame? +wdzzz.com##.zz +||freedidi.com/wp-content/plugins/death-luhubaoyu/ +myexception.cn##.c_a_3 +##.leftd + .rightd +||5ips.net/love/ +||jpysvip.net/ad/ +.m.qiuwu.net^ +goosedaily.com##.lightboxbnr +myqqjd.com##aside[id^="sponsor-"] +||molimao.top/imp/upload/vod/*.gif +||wangzhanmeng.com/link/link.html +||dhgxl8qk9zgzr.cloudfront.net/js/log.js +||ifeng.com/iframe/quickbet +chineseinla.com##.forum_banner_ads +78dm.net##.ad_logor +||gdmm.com/api.php?mod=js&bid=2111 +zi.media##body > div[style="height: 300px;"] +winshang.com##.ggwrap +159i.com##a[href*="ai69"] +@@||runative-syndicate.com/do2/*$domain=onemanhua.com +detail.zol.com.cn##.link_jd +/iframe/ss/baidu_*.html +.info/ads/ +firefoxchina.cn##.side-shping +m.babytree.com##.recommend-brand +||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg +~hupu.com##div[id][style="width: 100%;"] > iframe[scrolling="no"][src^="http"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +2345.com###leftPacketBox +||laowangblog.com^*-ad +||taoguohe.com^$third-party +||bigear.cn/cache/htmlcache/ +sg169.com###coupleft +chinatimes.com#@#.page_ad +||hboav.com/guga/*.php$domain=5278.cc +eol.cn###small_adleft +||qinxue100.com/qinxue/pc/js/add_js.js +||xeryt111.fun^ +sydneytoday.com##.news-list > .row > .col-xs-12 +@@||cdn.staticfile.org^$script,domain=movieffm.net +league-funny.com##.w336center +@@/adsense/*$domain=piseneasy.com|taobao.com +@@||stjscn.s-msn.com/portal/hp/2011/udctrack. +||jingdianlaoge.com/static/js/q.js +tigtag.com###Home280x80_A16 +||awunkse72.shop^ +36kr.com##.kr-ad-home-flow-banner +apiref.com###navbarRightAd +hupu.com##div[class*="-banner_"] +||fantuan.name^ +||yqdnad.icu^ +##a[href="/forum/"] > img[src*=".bcebos.com"] +||a.duduji.com^ +chinese.engadget.com##body #ldrBoardAd +##.imgBox > div[class^="ad"] +||kuaijuwu.net/js/abc/ +||zhainanba.org/ac/ +||nwrgdifq.xyz^ +||yhubsxmg.xyz^ +x6d.com#?#li:-abp-has(>.myad) +easylearn.baidu.com##.vip-banner-cont +||heiye.cc/js/hei +||brtzgnd.xyz^ +icourse163.org#@#.sns-link +||nownews.com/assets/js/setAds.js +2345.com###J_Banner_Special +||zeryt111.fun^ +||gszetzdm.xyz^ +||44629.com^ +yahoo.com###module-tabadsw +||jqvajfvs.xyz^ +qzone.qq.com###appCanvasTopBanner +||ruiwen.com/css_ +||m1905.cn/afp/mdsfw.js +||lovek01.com/gif/97- +ananvod.com##.rbPicAll +nfuwow.com##.adtopnewnewbox +||xiaobi*.com/layer/layer.js +drvsky.com###bz_position +eastmoney.com##div[style="width: 300px; height: 250px; margin-top: 10px;"] +cctime.com###ad_three +boniu123.cc##a[href^="http"] > img[src*="/bn_"] +dnxtc.net##div[style="width:1200px;height:108px;margin:0 auto;margin-top:15px;"] +.info/js/alls_foot.js +||vansky.com/agdg/infoRight/ +||kmruv.cn^ +||it165.net/index.php?m=poster& +||hebei.com.cn/eap/ +||bytravel.cn/images/cus/ +||mckgmkh.icu^ +xc6b.com###rightbottbox +||mtwwzqdx.xyz^ +bendibao.com###wxbox +m.mydrivers.com##div[style$="px 0px 0px 0px;text-align:center;"] +:2048/jsb? +rebooo.com###gong +||alicdn.com/kf/U0732534bf37c454e84b8378ceaa5d7c2V. +landiannews.com##.sidebar > section#block-4 +42xz.com##.xzbox-lf > ul:not(:last-child) +||hyretuu.top^ +yule.iqiyi.com##div[style="width:180px;padding:25px 0 20px 20px;float:right;margin-right: 30px;"] +hao.360.cn##.hot-word +||loli.net/2020/06/17/vGALJ4mQx26T75u.gif +||a.qunzou.com^ +||bdimg.com/site/games/yxtg/*.js +||yunzhan365.com/resourceFiles/js/weixin-share.js +123pan.com##div[style="width:100%;position:absolute;bottom:0;height:96px"] +chromecj.com##.topblock +||91avv8.com/vU18BNDYo1ktVpge.js +||t2.picb.cc/2022/08/07/6rpPj1.jpg +7hcn.com##.rCont +||bdasd.chinabig.com.cn^ +udn.com##.inline-ads +-bobo_recommend_ +7junshi.com##div[style="position: fixed; right: 0px; bottom: 0;z-index:999;width: 300px;height: 250px;"] +||isoffss.com^ +udn.com##div[class*="edn-ads"] +@@||redguide.top^*/ad.css?$stylesheet +blog.163.com###topbar_yxpArea +/fx168_ad +||eaqgsw.xyz^ +||mbfhwag.xyz^ +@@||th-sjy.com^$generichide +world68.com##.guanggao +baidu.com##.ec_wise_ad +||yxzp.net/left.js +||2rbda.icu^ +newtalk.tw##div[id^="ATS_"] +||juejin.cn/content_api/v1/advert/query_adverts? +||c-ctrip.com/images/0101r120009e1kn7oCDCA.gif +chinese.engadget.com#$#body [data-spotim-module=recirculation][data-spotim-showing-slots~="1-start-300x250"] .sprc2PlxR [data-spotim-row="1"]::before { left: 0!important; } +||b168.net^*.*?$image +||cresqoirz.com^ +kuaihou.com##.address_like +yahoo.com##div[id$="-Banner-Proxy"] +##a[href*=".bvftxy.com/"] +9miao.com###deanrlc22 +@@||pingan.com^*/rrweb-record- +~taobao.com,~tmall.com##A[href="https://s.click.taobao.com/cTAwFvu"] +@@||a1.itc.cn/pv/js/spv. +github.com##a[href="http://gk.link/a/103EK"] +||vanpeople.com/gg/ +||kdsahkln.xyz^ +pc841.com##.w1050 +zol.com.cn##.down-append-mol__pic +||aadmei.xyz^ +||94lm.com^ +||ibaglhc.icu^ +uuu9.com###top +||alu.cn/aluTrade/Fragments/ListAdvertisementProductsHandler. +firefoxchina.cn##.side-recommend +to8to.com##.common-tender-wrapper +stat-nba.com###ad_video +@@||captcha.qq.com^*?*=*=*=$subdocument +||wfjslie.top^ +||ljzcawea.icu^ +@@||ad.vivo.com.cn^$~third-party +m.07073.com##.new_heads +pcsoft.com.cn##iframe[id] +@@||dlkoo.com/down/copy0 +||ofd.meng-an.cn^$third-party +feebee.com.tw###ad_mid_module +bilibili.com##a[href$="_suning.html"] +||ixxoo.asia^ +||0351dvd.cn^$third-party +||koufqy.xyz^ +mbd.baidu.com##.related-news > section:first-child + div +sohu.com##.x-adv-band-panel +||doubleclick.ctfile.com^ +tw.news.yahoo.com###mrt-node-Lead-1-Ad +||szpbh.cn^ +||gtimg.com/adxcdn/ +||china.com.cn/statics/js/henan/ad/ +2345.com##.activity-skin-trig +qq.com###adImgHref +@@||appledaily.com.hk/admedia/ +||bba9603w.com^ +hqdoor.com##.index_newad +jkpan.cc#%#//scriptlet("abort-current-inline-script", "jQuery", "\u") +guancha.cn##.member_recruit_index +||1kqfzwd.com^ +ablesci.com##.able-container-body-right > div.fly-panel:has(> div[style="text-align: center; padding: 5px"] > img[src$="-alipay-hongbao.png"]) +||90mh.com/mip/qdbao +@@||noahedu.com/advertising/ +doubibackup.com,github.io##.guangg +||baidu.com/fanyiapp/image/wise_banner_ +##script + a[target="_bank"] > img[src*=".c-ctrip.com"][style="width:100%;height:auto;"] +||dngz.net/x/ +/aSer_$domain=9gui.net|miejw.com +bilibili.com##a[href*="cm.bilibili.com"][data-target-url*="gaoneng.bilibili.com"] +/shehuik618cn/images/k.js +.xyz/*.sdk?$script,third-party +/pop_ads. +.html|$domain=www.gamer.com.tw +baidu.com##.opr-zhaopin-ad-ctn +pqworld.com##.left-float-tx +###left_down_float_ad +||ptfish.com/*/ad$image,object +||uu22662.com^ +@@/adback.$domain=pg-wuming.com +||666aa777bb.com^ +netbardh.com###bg_left +javhope.com###havhope +moneynet.com.tw##.ads-fixed-bottom +||eqqwgw.xyz^ +vsping.com##.cell > span > a[href]:not([href*=".vsping.com"]) +sohu.com##.god-main +@@||pubads.g.doubleclick.net/gampad/ads?*&description_url=https%3A%2F%2Fani.gamer.com.tw$domain=imasdk.googleapis.com +||ad.wurangxian.top^ +##.ad-top +||gaipuzui.com^ +sm.cn###index_haodongxi +||t0sfe1.com^ +||dsbqvj.xyz^ +image.so.com##.cmitem +||zdjtxjp.xyz^ +###tr_ad10 +||52rd.com/Pic2/*_600_60 +||qzone.la/Scripts/m.js +ifeng.com##DIV[class^="enquiry_bottom"] +||aliyuncs.com^$domain=9xav.cc +@@||tt1069.com/adserv.js +||btbt.tv/dd/ +:4443/ty/x-$script,third-party +2345.com###jswbox +dpp.org.tw,shuaijiao.com#@##ad_big +/adx.$domain=~adx.uk.com|~adx.wowfi.com +meizhou.com##.adwords + div +nxing.cn##.main:nth-child(-n+6) +||kozhyf.icu^ +jingyan.baidu.com##.aside-pro-container +##.row > .gao-bg +netfly.fun,netfly.tv,netflytv.xyz##.banner[href^="http"] +supertaste.tvbs.com.tw##.ad_m_top +jinhua.com.cn##.banner935 +flyblog.cc###links > div[id] > div.hslice:not(#search):not(#counter):not(#category):not(#calendar):not([id*="-article"]):not(#latest-comment) +libaclub.com##.ui-ad +||airouba.com/public/js/global.js +||share.dmhy.org^*.*?$image +||51cto.com/iframe/get-station-ads +||eeyy.com/otherhtml/poster_js/ +lusongsong.com###main > center +zol.com.cn##.local-spe-bottom +eroacg.com##.weimg1 +mail.pchome.com.tw##.good_ad +||1328f.com/js/jquery.js +ijiandao.cn,ijiandao.com,jojf.cn##.index-ad +##a[href*="/hgcoolaa.top"] +##.room-ad-top +duba.com###top_joke +||e3ol.com/inc/ +t66y.com#%#AG_onLoad(function(){var a=document.querySelector(".tpc_content img");if(a){a=a.attributes;for(var b=0;b tbody > tr > td[bgcolor="#FFFFEE"]:has(> div[id*="ScriptRoot"]) +buzzhand.com##div[style="text-align:left;margin-top:0px;height:600px;"] +cnyes.com#?#.content-main > div:-abp-has(>div[id^="div-gpt-ad"]) +||hsutav.icu^ +dajie.com##.envelop_layer +@@||youku.com/cms/playlog/get? +||bhovrath.com^ +zhihu.com##.TopstoryItem--advertCard +chinaz.com##.scrollload-content > .single-mode:first-child +nb.zol.com.cn##.article-cont > div.zol-eshop +||nb.zol.com.cn/detail_*.html +apple.com.cn#$#html #globalnav { top: 0 !important; } +||tianshui.com.cn/newbg +ifkdy.com##.hb +||gmbbku.com/img/top.js +$domain=ads.adxadserv.com|adserver.juicyads.com|cs.adxpansion.com|olmsoneenh.info|static.javhd.com|syndication.exosrv.com +||uwursert.top^ +||xkzzz.com/zb_users/plugin/MoreLinks/MoreLinks. +||jsdelivr.net/gh/*/960x100.gif +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[id$="2"] ~ #\31 [data-click^="\7b \"rsv_bdr\":\"0\",\"p5\":"] +maomaomom.com###execphp-4 +le.com##.lay_body[style^="width:980px;height:90px;"] +||js0573.com/images/cus/ +baike.baidu.com##.pinzhuanWrap +@@||res.aidegelin.cn/dom2/js/app.js$domain=69xx03608.xyz +zhufaner.com###dist_footer +||netded.com/templets/gfan/js/global.js +||vrdxznr.xyz^ +||85566.net/js/loadjs/jquery +@@||adobedtm.com^*/satelliteLib-$script,domain=samsungmembers.cn +chinanews.com.cn###ad_right_fc1 +||bydcxdy.cn^ +cool3c.com##.col-xs-12 > [class="board board-article board-cool3c_superboard_article3 board-new clearfix"][data-board="cool3c_superboard_article3"] +||wenkuxiazai.com^*reward +dailymotion.com#@#.ad_box +||l.ykimg.com^ +||yyttmyy.cn^ +ctee.com.tw##.qxd +||ccb.com.cn/V5/images5/right0.gif +||cdnjs.mopair-erm.net^ +##.myui-extra + .noticetext +###left_couplet.close_discor +zhuanlan.zhihu.com##.RichText-MCNLinkCardContainer > a.GoodsRecommendCard +||zxqiwe.cn^ +baidu.com##.ecom_pingzhuan +hao.360.cn,hao.360.com###plane-ria +||zztxfj.xyz^ +||pvtest.zol.com.cn^ +||macx.cn/js/jquery.$domain=game.macx.cn +@@||vvic.com/monetize/ads/index/ +@@||adnxs.com/ast/static/$domain=outlook.live.com +sina.com.cn##.adH +||ifengimg.com^*/aplayer.xml +hlgnet.com##.co_ad +_ad01. +||shfq.com/wuyue +###ad_box1 +json.cn,pianyuan.org,qixingquan.com##.modal-backdrop +3987.com,drv5.cn,pcsoft.com.cn,win7w.com##.gaosu +||ddlzlr.xyz^ +||zhibok8.com/images/*.gif +||sexyno1.com/mk-banner/ +||iis7.com/ys/css2018/ggw.js +||admin25.com/ad/ +||js1.dadiniu.cn^ +||y1.spreton.com^ +||e0575.com/attachment/image/ +shejidaren.com##.ads-post-foot +ithome.com#?#.placeholder:-abp-has(> a > .plc-con > .plc-footer > .tip-gray) +baidu.com##.top-banner-ad-wrap +||movieclassic.net/templates/frontend/airav/js/*avs-0.4.js +||x2y22.fun^ +makepolo.com,mycar168.com,mysteel.com,pchome.net,rjfcw.cn##div[id^="ad"] +tw.yahoo.com##div[id^="applet_p_"][class^="dealstdv2wafer"] +||untitled.dwstatic.com^ +bilibili.com##.online + .adpos +woshipm.com##.article-topAd +||69shux.com/js/otherad. +||7car.com.cn^ +qdmm.com,qidian.com##.qdRead_redscan +||api.cupid.qiyi.com/track2 +alu.cn###sanjia +||api.cupid.qiyi.com/etx? +##.common_ad +##.ad-below-post-title +hao.360.com###left-float-animation +cnyes.com###full_ad-popup +baidu.com,bdimg.com,tieba.com#?#.l_post:-abp-has(div[class*=" fc-"]) +||slkdnlkfnskl.com^ +bingfeng.tw#$##ypaad { height: 3px!important; } +@@||huke88.com^*-tracking.js +##.ad-shine-panel +@@||alicdn.com/t/img/TB1DmcoJXXXXXavXpXXXXXXXXXX-26-26.png$domain=dlkoo.com +||bwz4e.icu^ +nownews.com##div.modal.ad +lzacg.one#?#.content-layout .zib-widget:has(> .textwidget:only-child > a[target="blank"]) +||uslsjwnk.xyz^ +###fixed-bottom-modal[style^="right:"][style$="px; display: block;"] +||zacff.com^ +||wismog.xyz^ +||yunsennet.com^$popup +||qvnbjjd.xyz^ +wenxuecity.com#?#div:-abp-has(>label[class^="adlab"]) +||tingchina.com/js/dp468 +||js-js.oss-cn-beijing.aliyuncs.com/mnpc-umeng.js$domain=dianyingim.com +@@||toolfk.com^$generichide +bingfeng.tw###adbt +csgoob.com###ADback +||zlongad.com^$third-party +||96kso.online^ +||dlkoo.com/down/copy +@@||ntu.edu.tw/modules/banner.php +||wuxibus.com/Image/title +||julefhgu.xyz^ +||eccn.com/js/gg.js +douyu.com##a[href*=".youzan.com"] +jianshu.com##a[id^="web-note-ad"] +@@||baidu.com/share/count? +8ziyuan.com##.deanadsside +/wxh_asy.js +bkill.com##.half-ads +||sina.com.cn/js/87/20140101/hongbao/ +nownews.com##article > [class^="contentAd_"] +||bing009.shop^ +baike.com###ad-xnsc +/www/delivery/* +58b.tv#$##banner { display: none!important; } +||sigjuw.xyz^ +||programmer-club.com.tw/images/uuu/ +itdog.cn#?#.card:-abp-has(.partner>a[href*=".jimcloud.net"]) +||sonimei.cn/images/gg.png +||mscbsc.com/images/5g300x90.jpg +zxzjtv.com##.container > .none +||jitashe.org/template/jitashe/image/bc/3 +||enet.com.cn/counter.php +||khcsvdc.icu^ +||macfans.org/vip/ +||baijs04.shop^ +@@||ad.kazakinfo.com^ +||pklujb.xyz^ +||imgtp.com/2023/02/18/KkRe64ff.png +baidu.com##.container_frs:has( > .voice_room_card_frs[data-url*="yylive"]) +17173.com,am730.com.hk,cdyee.com,chinaz.com,eastmoney.com,epochtimes.com,hsw.cn,ifeng.com,lantian.tv,maoken.com,phoenixtv.com,pyccoo.cn,xineurope.com,yesky.com,zdzdm.com##.adbox +||iobvmtx.xyz^ +booklink.me,p9.com.tw###ad2 +||kfvjdvjzhddhc.com^ +##.listok > a > img[src*=".alicdn.com"][width="980"][height="80"] +maiziedu.com##.msg +||djicdn.com/uploads/ad_image_file/ +bilibili.com#$?#.container > div.floor-single-card:has(> div.skeleton) { remove: true; } +tmall.com###J_Recommend +ffxiv.xin,fotor.com.cn,weiyun.com,youdao.com#@#.icon-share +@@/adview_*_ads_300x250.js$domain=yaociyuan.bid +||p8u.hinet.net^ +zhihu.com#@#.FollowButton +||sinaimg.cn/large/0076zeZ4gy1gw0if4mgwoj30tj03ptbj.jpg +m.qu.la#?#:-abp-has(> a[href*=".bcebos."]) +||kolsh.cn^$third-party +||cpgou.cn^ +dyhjw.com##.guessEntranceOpen +chinabidding.cn,chinabidding.com.cn###erweima_r +duba.com,uu114.cn###redbagRain +ltn.com.tw##div[class*="adHeight"] +news.163.com##.mod_pageh5 +||v2rayssr.com/wp-content/plugins/eazy- +tbxt.com###headad2 +hboav.com#@#.close_box0 +||easou.com/brandImage/ad/ +qq.com##.txp_ad_link +lenniu.com##.caClass +||4399.com/baiduad/ +##.adHF +||88lm03.com^ +##.textad +||v.laogu.wang/template/*/images/g_js^ +||ewaterw.top^ +||dadatuwz.com^ +haote.com###playBox +21yq.com###AD1 +/huya/main/widget/roomGg +biquge001.com###content > a +##a[href*="/?intr="] +||peryt111.fun^ +shulink.com##.er_g +||supfree.net/england/ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=video.udn.com +||htyusiu.top^ +||apptry.easylife.tw/pub/js/common/common.js +||anei.tv^$third-party +2dfan.com,galge.fun##.collapse > a[href*=".taobao.com"] +qidian.com##div[style^="width: 426px; height: 644px; background:"] +58.com##.listpage_detail +||189.cn/actpush/$popup,third-party +wantgoo.com##div[type="adv"] +||fmmirep.icu^ +##a[href*="/?INTR="] +makaidong.com###cyWallsplugin +sxqjdy.com##.gg2 +jiegeng.com,qq.com##.banner_1111 +##.chat-sysbroadcast-ad +||jable.tv/assets/images/wejo/$image +.com/logo/logoxia.js +||twqtf.boats^ +||vista.tuwan.com/s.js +||doujs010.xyz^ +||bdimg.com/brands/yxtg/source/juhe-v2.js +qingwk.com##.c-meiqia-wrapper +/cpro/ui/* +@@||soufunimg.com/count/uvbforpc.js +followme.cn##.money-box +||oxkqeu.xyz^ +@@||guahao.cn/common/js/plugins/fingerprint.js +||ykwykw.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-loan-list-card +megatime.com.tw,pchome.com.tw##.tripplead +@@||goodinfo.tw^$generichide +||uigxgg.xyz^ +fsylr.com##.plus_r +csdn.net##.advert-bg +||apic.91bixin.net/api/thirdadv/ +||badmintoncn.com/cbo_include/js/cboaaa.js +eprice.com.hk##.article__content > div[style*="text-align"] +||7junshi.com/static/red-envelopes.js +||yzs.com/d/file/2020/06/21/5358e14b4556663a91f145f0635f95de.jpg +||gtimg.com/newsapp_bt/0/1846661534/641 +win007.com##a[href^="http://www.edewin.com/"] +@@||alicdn.com/img/ibank/2019/975/700/12603007579_1230538058.jpg +fantuan.tv##.app-guide +jianshen8.com,manwa.me##.index-banner +/adpv?cn= +/frontend-jiucao/img/banner.jpg +||iddhui.com^ +sina.com.cn##.yyy-wrap-2021 +||oqnkur.icu^ +qq.com##.mod-ad-full +hupu.com###shihuo1111 +ghxi.com##.entry-content > div[style^="position:"] +||piaohua.com/js/yzz/$script +||zongheng.com/upload/recommend/game/ +||elecfans.com/webapi/advertisement/ +##.svg-icon + #player_pause +btime.com##.shop-guid +study.163.com###j-newpeople +##.ad_text +diyifanwen.com##.Hzh1 +||mp83fkx.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[class^="ecl-edu-"] +##.widget-topadding +mgbbs.cn##td[width="960"][height="60"] +||bymahuxv.xyz^ +||cjjjs.com/image/banner/ali +qciss.net###lightbox1 +9le8.com###program_play_right +||balili2024.top^ +||15tianqi.com^$third-party +ganji.com##.footer-b +www.wangjing.cn##.content > div[style*="980px;"] +||fzlol.com/images/$script +health.tvbs.com.tw##.h-\[280px\] +||53shop.com/img/*.js +bodu365.co##.bdnav + .focus_show +||starredvs.com^ +codeforge.cn##.webnotice-right +nodejs.cn###biz_center +||xinwenren.com/index.php?m=poster& +||yxrxsov.xyz^ +bmlink.com##.tg +||sinaimg.cn/cj/finance/forex/res/searchCallup.js +||cdhfvrug.xyz^ +seqing.world,singlove.com,whichav.com,whichav.net,wokao.co##.qq +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,important,domain=linetv.tw +||live173.com/BANNER/ +shejidaren.com##.widget-banner +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_frs-aside\/pagelet\/hottopic +/data/cache/myad- +||dxg*.com/img/A*.js +/bmqp6001- +||ddaixdz.cn^ +||p.eikuaitao.com^$third-party +cn-healthcare.com##.fh_ad_wrap +||otmebdr.cn^ +||dorper.cn^ +||cai110.com/js/2 +workercn.cn#@#.ad_main +/googleads. +###timedfuo +jiegeng.com##.coolsite-recommend-linked +storm.mg##.storm_magic_placeholder +pcbeta.com#?#div[class]:-abp-properties(/height: (169|171)px;/) +itheat.com##.hot_ad +||qiuw.com/static/xin-ad.js +anjuke.com##.list-item > .jx-sign +fx168.com###ImgText_01 +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[class^="EC_pla_"] +51yfx.com###tmall_1111 +||z91f4.top^ +||c4d.cn/template/iscwo_zcool/iscwo/ad/ +||3bxe2.cyou^ +||bw66.cn/template/default_pc/bbs/ +||shx11.xyz^ +||acglover.*/wp-content/uploads/*-720 +mmonly.cc###\32 vm_box +firefoxchina.cn##.ff-open +||alicdn.com/img/ibank/*_1082732848. +ld0766.com###portal_ad3 +||fdswrgg.cn^ +||ynet.com/c/js/manto.min.js +51cto.com##.suspend +||dwfdsfkw.xyz^ +/shehuik618cn/images/i.js +||555bbb333bbb.com^ +||wisealty.com^ +||zhnnaxe.xyz^ +.gif$third-party,domain=cb.wpio.xyz +||e0514.com/gglist/ +||haokoubei.top^ +||jsb.qianzhan.com^ +||hwymoyv.icu^ +portablesoft.org##.rightside > :nth-child(n+2) +||5068.com/*gg +||jijidown.com/static/img/dongcidaci/ +||fonfn.com^ +||92ghai.com/zz/ +/404.safedog.cn/sitedog_stat_new.html +cssmoban.com##.btn-host +ruten.com.tw##.side-advertise +@@||trip-jam.com/resources/js/adsense.js +||3324.cn^$third-party +2345.com##.top > .fred +btmovi.in##body > span[style] +@@||aliyun.com/scratchCardSlide/analyze.jsonp? +||pro.iweihai.cn^ +||uavejnys.xyz^ +||pniao99.com/statics/js/stat.js +||stats.chinaz.com/tool_img/ +myptt.cc##p[style="padding:0;margin: 5px 0;color:#ff0000;"] > a[href][target="_blank"][style^="display:inline-block;"] > img +||baidu.com/ecom$image,script +||bcb5.com/gg/ +zyue.com##div[id^="divad_"] +||cpwlctfk.xyz^ +tw.news.yahoo.com##.caas-body > .caas-iframe-wrapper > .flourish +||n0644.com^ +114la.com##.search_ad +||acodes.b2b.cn^ +||jxnews.com.cn/assets/js/dspshow.js +tv.sohu.com###miaozhenad +||tmlwvxae.xyz^ +baidu.com##.FYB_RD +||pwhtip.icu^ +@@||qq.com/web201602/js/ad.js +||ar611.xyz^ +||qrkhwe.xyz^ +||kyaywy.xyz^ +duba.com##.bgOpen +||1.66law.cn^ +fx168.com###SquareBanner01_01 +##.maomi-content > .section-banner +||static.doyouhike.net/partner/ +||mmeimh.xyz/static/images/ +xiushuang.com##.fix_app +taoziba.cc##.vddb2 + a +zznews.cn#@#.ad-wrapper +||achost.top/uploads/ads/ +||ahtfzhs.xyz^ +###adright +ygdy8.cc##body > a[href^="/"] +##.imgad +douyu.com##.summer_enter +/yesky/js/counter/* +||destinyssa.com^ +caixin.com##.incubator +||a32a.com.cn^$third-party +||trpyceq.cn^ +||chinaconcrete.cn/ggImg/ +||17173cdn.com^*/js/task/src/task/live/greenhand/ +||wnacg.*/zec/ +##.pcgg +||elecfans.com/static/home_ad/ +:8888/js/cctv.js +33am.cn##.bd_980_90 +/hndxweb/push$popup,third-party +||aliyuncs.com/ghdb.gif +/adhtml/* +mnw.cn##.mnw_960 +163.com##.redpacket-footer +##.player-rm > a[href*=".umtrack.com"] +||gk1.582582.com^ +||kekeshici.com/pc/images/pcAd.gif +myday.com.tw##.myday_ad_right +||btrwxz.xyz^ +duba.com,newduba.cn##.side_taobao +5278.cc###rightside_banner_top +bjd.com.cn##.screenadButtom +yxdown.com###tl_adv +||oprece.xyz^ +||xnnews.com.cn/adgl/ +||qy0.ru/data/game/ +||xytcboyz.icu^ +||china.com.cn*/ads_js/ +||iabao.com/sladewap.js +58pic.com##.activitySettings-fixedBottom +9xav.cc#$##alert_windows { display: none !important; } +||cmqxy.cn^ +||easou.com^$third-party +||tgrpzl.xyz^ +||picnewsss.com^ +t.cj.sina.com.cn###sina-cont000 +||foreveryoung.gz01.bdysite.com^ +##.ayx[style^="position: fixed;bottom"] +winwin7.com##.xzbox-lf +firefox.com.cn,firefoxchina.cn##.cont-promote +104.com.tw###aidma-job +/adsense/* +||vmr6t.icu^ +18avtube.com,adultwefong.com,aicoin.cn,aicoin.net.cn,avmimi.com,fsdpp.cn,ip138.com,mangahax.com,mm-cg.com,sports.qq.com,suopao.org,timecn.cn,txzqw.me,youxi.baidu.com###banner +kengso.com,pansoso.com,xgsoso.com##a[href*=".click.taobao.com"] +||jiangyahuir.top^ +17yy.com###addiv +||eduad.baidu.com^ +###lovexin1 +qzone.qq.com###appCanvasRightBottomTips +||alicdn.com/kf/Hbbe53cc824914cf09276b642ea8c57af3.jpg +||uymahuxv.xyz^ +e0575.cn###main > div:first-child +||zzohucf.icu^ +||52zy.com/other/js/ +||mfacelive.com/Scripts/social/openchannel_min.js +||3dh9y.com^ +||ma1.meishij.net^ +||news.cn/imgad/ +@@/show_ad_$domain=wb.qq.com +gfan.com,gfan.net.cn#@##shareBox +/web8/ad/* +||linkvans.com^$third-party +||y3600.cc/20 +onlinedown.net##.m-safedown-center +||lznfuab.xyz^ +||x23qb.com/skin/themex.js +keywin.org##.pindaolist +||aifei0755.net/123/ +||b7yy.com/ad/ +||mphhgat.xyz^ +||hlegsdh.icu^ +csdn.net##.csdn-tracking-statistics[style$="250px;"] +||gtdf33.fun^ +||qvonje.cn^ +||seectech.cn/scm/ad/list +||76e.org^ +jable.tv###site-content > div.container > section.pb-3.pb-e-lg-40.text-center +||ajffubz.xyz^ +||iask.cn^*model. +||39.net/js/wt.js +||itrdqbg.xyz^ +novipnoad.com##.ad_single_title +||hinm.online^ +||sohu.com/api/labs/mp/load? +||8maple.ru/comic.jpg +.com/sh/to/$script,third-party,xmlhttprequest +||gd.189.cn*/push/$popup +||szpwg.cn^ +||rdiono.cn^ +sm.cn##div[id^="ad_ele_"] +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.1.commercial.jumpUrl', '') +||3h3.com/gmobile/gujs/ +||static.zongheng.com^*/adClickStat.js +world68.com##.content_l_flml.zzs +||galacg.me/wp-content/uploads/*750x +zcool.com.cn#@#.advtop +||tv002.com/img/down1_ssp1.gif +||1ng2l.space^ +||play6111.com/js/ +yeyemo4.com,yeyemo5.com,yeyemo6.com,yeyemo7.com,yeyemo8.com,yeyemo9.com,yeyemo10.com##center > a[target="_blank"] > img +||dz19.net/addimg/ +/://666(7|8)[0-9]{2}.xyz\//$image,third-party +||1002.men^ +||yyddkm526.shop^ +||hxsxw.com/hx8899/ +||nczsks.com/SCWB/WebResource.axd +||bdstatic.com^*/her/static/indexher/pkg/treasure. +||alicdn.com/img/ibank/*_1409595492. +||123cha.com/counter.js +kuman.com##.guide-download-footer-box +||159i.com/sxxd.js +||mnfhxszj.xyz^ +###adUn_2 +||aeryt111.fun^ +||goupu.org/1files/*.htm +||cengqinglin.cn^ +tuwan.com##.Video-r-ad +atyun.com###r_banner > ul > li > a[href^="http"]:not([href*="atyun."]) +avgle.com###avyc +||movshow.com/*portal/ +||vdggsd005.com^ +||cbgrqi.xyz^ +||rising.cn/rxbox/ +||95590.org/v1. +worldve.com###img +||house365.com/js/fixWin.php +gfan.com##.downs +||ulukaris.com^$third-party +||m549z.site^ +/Runtime/js/play960.js +||88liu.com/data/attachment/portal/ +##.a_ssk_cn +@@||mcc.xunliandata.com/mci-reward/static/img/ad. +sina.cn##[data-href*="://sax"] +||wmbd.gamersky.com^ +||ieryt111.fun^ +||quelorimu.com^ +jb51.net##.gsdw +||awifi.cn^$third-party +alu.cn##.Tg_260x70 +epwk.com##.head_banner +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl="houses_new"] > .c-border +||wnacg.com/1sdfdc1/500_60-1.gif +hao123.com###hao123-gw11 +||imwxsu.xyz^ +mcmod.cn##a[href^="https://link.mcmod.cn/target/service-ad-vat"] +speedtest.cn##.speed-bottom-activity +jsbooks.com.cn#@#.left-ads +/analytics.js$domain=qunar.com +||imgdb.cn/item/66a73333d9c307b7e9dbb6ef.jpg +||kznizrhd.xyz^ +||itopdog.cn/itopdog/d*.js +||jscode.jbzj.com^ +@@||colamanga.com/js/*/load.js +a9vg.com###guide-download +||zcck60eqyw.world^ +/images//ads/* +huize.com##.hz-bottom-reserve-link +||jxeyhgw.cn^ +psdhtml.cn##div[role^="structure_"] +honglingjin.co.uk##.rs-side-ads +tgbus.com###neck_970 +||lafacw.xyz^ +ptbus.com##.content14 +||soduso.com/js/sat.js +||chinanews.com/ad2019/wujiu_ad.jpg +1point3acres.com#?#div[id^="portal_block"]:-abp-has(a[href*="fiverr.com"]) +pxedt.net##.index_nav_juzhong +cbmay.com##.widget +||xitonghe.com/SkinNew/js/init_g. +zhideqiang.com##A[href*="quan.zhideqiang.com"] +ruanyifeng.com###cre +dnwx.com#@#.ad_250 +lenovo.com.cn#?#.imgNewText:-abp-has(>footer>.info>.source:-abp-contains(/广告/)) +||w94.1qlgi.top^ +||yyodimq.cn^ +||13txt.net/js/ssgdd. +ekamus.info#%#//scriptlet("set-constant", "isAdsDisplayed", "true") +sports.sohu.com##.allsee-list > .bd-wrap +/qqlive/conf/playerlottery/* +itavcn.com##.topadvzone +##.yueduad1 +muzhi.baidu.com##.wgt-best-answer + script + div +||sukneyu.com^ +||ee.m08pe.cn^$third-party +||ettoday.net/style/hot-trip/js/travel-action.js +423down.com##.entry > p[style$="111"] +||ldipsuml.top^ +||alimama.com^$third-party +@@.png#$domain=3dpchip.com|9zvip.net|club.tgfcer.com|coolinet.com|d1-dm.com|digit77.com|e9china.net|upxin.net +||msdn.hk/templets/msdn/css/msdng.js +||tquspo.com^ +so.com##li[data-cpc_query] +||vecggfp.icu^ +55188.com##.wz_text +||hrjg.com.cn^$third-party +||feedou.com/nzq/style/pc/js/popbig.js +/3dmgamegzh.png +pconline.com.cn##.bk_art_banner +||sccnn.com/SF/zt.jpg +maxthon.cn###festival-fix-bottom +/baichuan/*$subdocument +||udn.com.tw/upf/2015_money/SSI/ad/ +lahoo.ca##.view_page_ads +##.google_adsense2 +jb51.net,makaidong.com###txtlink +||mb.gulongbbs.com^ +||kfpnqug.cn^ +baidu.com###exp-fixed-bottom +||pvhjkzo.xyz^ +||bestpush.pconline.com.cn^ +||1.bh5.com.cn^ +##.ad_1000x90 +||1.uc129.com^ +hao123.com##.bar-text +||pfjtgxc.cn^ +||hsoubnp.icu^ +careonline.com.tw##.wrapper > script + a[href][onclick] +awaker.cn##.good-price +||fjqcqdr.icu^ +||jmbbs.cn/sjgg/ +golinksworld.com###btn_download +cnool.net##.third-banner +||wbnbocz.xyz^ +||a.91nets.cn^ +/ad_display. +||ridirre.com^ +haojiyou.la##.iqshwad-div +||williamlong.info/script/sidebar.js +##vg-pause-ads +udn.com###mainbar > #ec.area +||1.zou114.com^ +||bidvertiser.com^$third-party +fx168.com##.jy_fx168_gjs_content_Right_advise +##._ggs +||rghqrj.xyz^ +||liuxue86.com/css/liuxue_output.js +163.com##.post_recommend_ad +||awhsaso.cn^ +||img2.win007.com/image/*.jpg +||fspddt.xyz^ +||163.com/special/*=ad_ +||pinggu.org/api/bbsgg. +://xingkong6688s.oss- +18comic.org,18comic.vip##div[data-group^="skyscraper_"] +lihkg.com#?#div[class^="_"]:-abp-has(>div>div>.adsbygoogle) +iqiyi.com###videoBuyContainer +||1.1010pic.com^ +view.inews.qq.com#?#div[class^="_"]:-abp-has(>div[data-action-id]>div>.react-swipeable-view-container) +||1342a.com/js/jquery.js +javhd.com##.benefits-list-holder +||yaojingweiba.com/inc/ +51cto.com#@#.addarea +||mnwor.xuanlishi.com^ +||fywaaox.icu^ +||qtciam.xyz^ +360kuai.com##.g4.undefined +173.192.147.21,sejie.com,sejie3.us,thesoccerline.com###wp > br +apachecn.org###coo_banner_WideScreen +/5555vipqipai.oss- +||pjtime.com/js/show_ad +||jhpxlyd.cn^ +hao123.com###bottom-be +@@||cmoney.tw/vt/js/google_analytics.js +||ulktyi.xyz^ +||downlinker.*/ads.js +||gahejiao.com^ +iqiyi.com##.qy20-h-carousel-wrap[data-focus="ad-focus-image"] .qy20-h-carousel__a +muchong.com#?#.forum_Post_index:-abp-has(nobr:-abp-contains(18)) +||abixkw.xyz^ +||iccjkn.icu^ +||cdoshbf.top^ +tw.news.yahoo.com###sda-LREC2-iframe +@@||113.com.tw/www/image/index-ad.png +360kan.com##.info-flow__ad +||jueyds.top^ +||azsqkrc.icu^ +||yxdd.com^$subdocument +||henan100.com/d/file/indexad/ +shengxinwang.net###floatDivBoxs +##a[href="javascript:GoGd();"] +eprice.com.tw##.ad-970x90-g +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ylbx_game_desc +||extopae.icu^ +news.ebc.net.tw###marquee-box +@@||inpad.com.tw/data/adv/ +||6789.net^$third-party +/1.js?ssfrid=$script,third-party +||hongi7ie8owiie03.site^ +/iframe_pfbad/* +||qmwxb.com/skins/2/images/qp001.gif +iqiyi.com##.rightLink +||ali213.net/js/3g/newsdetail.js +ilxdh.com,subaibai.com##.v-modal +zzkdhb.com##li[style*="important"] +||mdsahkln.xyz^ +/xxgg/app.js +||11.yiqig.com^ +pcauto.com.cn##.ad_onlyone +mydrivers.com##.jdong11 +mydrivers.com##a[href*=".dangbei.com"] +##.zhedangceng_ggg +||xkgttas.icu^ +||51688.cc/ya/ +||u1010.com^ +||gxx4t.online^ +@@||oiihk.com^$generichide +##.index_alert_gg +||qfjsliy.top^ +##.ad_wrap +141jj.com,99kubo.tv,jumi.su,preface.ai,r3sub.com##a[href*="bit.ly"] +##.widget-ads +||img.0279.net^ +||nzlrfdv.xyz^ +||e9377f.com^$redirect=noopmp3-0.1s,domain=eastday.com +5173.com###gg330 +###aside_cat_ad_bottom +||52dytt.net/images/bbs_btn.gif +hktvyb.com##div[style="text-align:center;"] > a[target="_blank"] > img[alt="APP"] +||faxffjo.com^ +sssam.com#%#//scriptlet("set-constant", "ads", "") +/js/ads/zuoxiajiao.js +mangabz.com###bb1 +||yigujin.cn/img/abc/ +||w51t.com^$subdocument +v2ex.com##.fr > a[href^="https://www.digitalocean.com/"] +@@.com/js/a_d/$domain=colamanga.com +163.com##.mod_ad_toutu +shejidaren.com##.AND +||imgxr.com^$domain=xiuren.org +||xls.go.sohu.com^ +||mahua.com/www/default/js/mahua_show.js +alexa.cn##.importantTop +@@||ads.tiktok.com^$~third-party +sojson.com##a[href*=".upyun."] +||sibehgtq.xyz^ +/2016v2/js/adm2.js +baidu.com##.first-card-container +hao123.com##.cjcard2017Container +bdimg.com,tieba.baidu.com,tieba.com##div[class][lgoinprompt="prompt"] +||kekenet.com/images/*/tom468X60.gif +||thztv.*/tool/ +||kyuxym.xyz^ +##.ad-below-adjacent-post +||wingsurf.cn^ +||udn.com/upf/2014_sales/testpage/Bannerimage/*x*_*.jpg +||100.pncdn.cn^ +||uznizrhd.xyz^ +##.widget-xlxba +||snalzlb.top^ +showtv.com.tw##.side-AD +||news.cn/pc-log? +/pjk/static/tp.php +##.player-news > .news-list +v.163.com###v_shapeRight_divId +ohmanhua.com#%#//scriptlet("abort-on-property-write", "__DOMAIN") +shangyexinzhi.com##.hang-baidu_adv +||eastmoney.com/cachedata/ad.js +||actitat.com^ +||bxw666.com/storage/*.gif +||ui8l2.xyz^ +||m.qhxcdmfj.cn^$third-party +||tingroom.com/skin/dy/images/enread.jpg +@@||battlecats-db.com^$generichide +||blciqbk.icu^ +###container > .item.title_normal +||tcheeter.com^ +||linuxidc.com/linuxfile/linux$script +@@||cntv.cn/include/video/js/cntv_Advertise.js +##.right-ad +xgw5.com###app-card-list +###lefttd.lefttd +@@||58cdn.com.cn/tuiguang/center/ +my0832.com##.xx_div +nunuyy3.org#%#//scriptlet("abort-current-inline-script", "$", "infoid") +/guangao/* +1010jiajiao.com##.fixedbox2 +rising.cn##.search-news1 +||jin10.com/news_service/static/config/details.config. +@@||fang.com/stats/clickm2011.js +sdzbcg.com##td[width="580"][height="279"] > table:nth-child(2n-1) +pconline.com.cn##.juletao +hotpets.com.tw##div[class^="code-block code-block"][style^="position: fixed; z-index: 9995;"] +/gg.php +##a[href*=".gaimin.gg/cn"] +pixiv.net##.ads_anchor +@@||upxin.net/advertisement.js +||qpic.cn/qqgameedu/0/cfc175896f5b4d6a9ff115b3096dcebe_ +opticsky.cn###head > .tac +pchome.com.tw###test2 +||qdipsumy.top^ +##a[href*=".xwrfr.com/"] +huya.com##.small-handle-tip +mmff30.com##.titletablediv .titletablecell > a[target="_blank"]:not([href$="html"]):not([target="_self"]) +skyarea.cn#@#.post-share +||c1.chajiaotong.com^ +jable.tv##.uu-ads +weiyun001.com##.agency-list +||12.cookcai.com^ +||techritual.com/wp-content/uploads/*/HDcource_ +||rvtfwryz.icu^ +||iqiyi.com/etx? +ecpoc.com##.arcbodyad +@@||bitauto.com/bglogpostlog.js +/fourapi/api/data/money?date=$xmlhttprequest +||mqwtgq.xyz^ +||fc.3dmgame.com^ +||ll.hudong.com^ +/zz/zuoxia2.txt +##.apd-right +||css.mangabz.com/*/mangabz/js/mobile/newyb.js +chinaxinge.com##.sy05 +mydrivers.com#?#li:-abp-has(>.titl+:-abp-contains(好物)) +||bvpqrydt.xyz^ +||gdbyhtl.net^*adfix/ +iyf.tv##.player-right +##div[onclick*=".open"][onclick*="leyu"] +||hsbianma.com/Ad/ +jmw.com.cn##.mr_1 +||itiexue.net/wap/tiexue/js/chuping/nativeshare +423down.com#?#.post-related > ul > li:-abp-has(> a[href^="http"]:not([href*="423down."])) +||imniel.com^ +big5.china.com.cn##.Advertising > a +/Code/pccpcv.php +||yemancomic.com/static/xiaomage.js +mtrend.cn##.hdlist +||bdcpro*.techweb.com.cn^ +@@||advert.kf5.com^ +||baidu.com/ndwkasp/ +taoguba.com.cn##.ct_app +zzbaike.com###topnav + div[style] +||bmjs.xzw.com^ +||forrzp.xyz^ +||xvpcjl.xyz^ +||google-js-08.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="right_chris_prize_list"] +ithome.com.tw##div[class="span4"] +||duba.com/static/*/js/min.pop.js +##a[href*="?channelCode="] > img[src*=".com"] +acg17.com##.yhq +||ahm.135320.com^ +||wzzlnld.xyz^ +||slashlook.com/_resource/html/_bloggerAdsInline1.html +amz123.com##.two-activity-style +bt1207ma.xyz##a[href*="/uuribao.com/"] +163.com##.kaola-ad +||tptp002.cfd^ +||xkesqbp.icu^ +yutu.cn###botfocus-res +baidu.com#@#.share-line +||wnacg.*/5eg/ +acfun.cn##.app-guide +apk.tw##.sitemaji_banner +creaders.net##.pinglun > .btmlist-title +9uu.com##.relate-container +||btbtdy.*/templets/btdy/js/ad +apple.com.cn##.adv-wrapper +||gtimg.com/sports/000/ +aeink.com##.widget_ui_adsf +rouman5.com##a[href*="tyrantdb.com"] +techbang.com##.google-dfp +baidu.com##.hotad-list-box +||bavei.com/img/*.png +wbiao.cn###popupImgCorner +||chexun.com/delivery? +||csaimall.com^$popup,third-party +||lefengtv.com/js/tj.js +||xbiqugela.com/js/basisc. +###piao_div_4[style*="width:140px;"] +dk95.com##.advs +chinairn.com##.bizrpt +||suresdb.top^ +||eic.org.cn^*/analytics +||wenku8.net/js/ +||taiwannutrition.com/blog/wp-content/plugins/arscode-ninja-popups/ +/\/upload\/[a-z0-9]{7}\/[0-9]+-[0-9]?\/[a-z0-9]{32}\.gif/$domain=higu.tv +||sums.suning.com^$third-party +mtrend.cn##.tjlanmu_2 +lz13.cn##.left_box3 +||foxoxn.xyz^ +||3dmax8.com/atu4/ +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=gamer.com.tw +||zisu.cn.com^ +haoweichi.com#%#//scriptlet("prevent-setTimeout", "adsbygoogle") +.com/vh2/$script,third-party +||szaction.cc/public/*/plugins/ +||qhres.com/static/4b6ab193405b6ca3.js +||syzjxz2018.cn^ +pconline.com.cn###JrightSideFocus +firefoxchina.cn##.feed-tm11 +||supfree.net/poland/mobile.js +@@||mlbstatic.com/mlb.com/video/config/mlb-vpp-aws^ +||cnwnews.com/templets/images/jccf +petrochina.com.cn#@#.ggbox +ieforex.com##.header > .left +||cnblogs.com/ajax/bigbanner/ +||doujs08.xyz^ +5054399.com###gg2 +||bznizrhd.xyz^ +##header + #main:nth-child(n+4) .container-fluid.mb-3.p-0 +||baidu.com/static/html/cbjs.html +finance.sina.com.cn##.tg_bank_top +/piaofu.js +ck101.com#?##threadlisttableid > tbody:not([class]):not([id]):has(> tr > td[id^="popin_"]) +e3zy.com##.jiacu +bilibili.com##.operate-card[data-target-url*=".miaozhen."] +uc.cn##div[data-ad_url^="http"] +/kan/ads/dl.js +baidu.com##.openAppCarsouselTpl +||fqbjzj.xyz^ +/ads2/* +423down.com#?#.excerpt > li:has(.info .cat a[rel$="tag"]):contains(产品推荐) +@@||ahhhhfs.com^$generichide +##.sxAdBox +||nyaa.*/static/js/ccheck.js +iplaysoft.com###sidebar > ul > li[class^="widget"]:nth-child(-n+3) +.club/adv/ +||ee021.com/Runtime/js/ +||hahamx.cn/upload/data/list_sidebar_ +:2048/b.js +league-funny.com##div[class^="dan_pmp"] +.com/piaozi/*.js +.cn/*-*-*.xc$script,third-party +ksbbs.com##div[id^="mimi_"] +||eyuyao.com/yyad/ +||opwoga.xyz^ +||mwqetvn.icu^ +qzwb.com###Javascript\.RightDiv +||dzvy7.space^ +xc6b.com###leftbottbox +isso.com.cn##.right-content-div > .top-div + div +||shbzjkj.cn^ +china.cn##.search_video +/images/segucrwj*.gif +||6820tp1.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###ecl-weigou-view-container +##.ads3 +@@||ttkdex.com^$generichide +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="33%"] +||udiab1.jianshu.com^ +@@/bag2?r[]=*&r[]=$domain=free.com.tw +||m.qiushuzw.com/9CB0D8A5/2dfc69b0d8a5.js +baidu.com##.adLog +||80juqing.com^ +||sogoucdn.com/app/a/200692/960_80_feedback_ +##.popup + .shortcuts-m-overlay +fastadmin.net##.panel-body > a[href$="="] +whnews.cn###gd_r +||xiexingcun.com/tyong.js +duba.com##.taobao_search +||tianyaui.com/global/dashang/vip_seat/js/ds_vip_seat.js +||wclsylk.cn^ +itkeyword.com##p[style="line-height:1.4; margin-top:8px; margin-bottom:10px;"] +cctime.com,doyo.cn###top_banner +##.ad980 +sina.cn##.sw_c0.fix_top +ddooo.com##.guoasu +911cha.com##.sideqr +||uxlvk.cn^ +||bhlntz.xyz^ +||chinaxinge.com/gif3/ +rvlev.com,t66y.com#?#[class]:-abp-has(>a[onmouseover="this.style.background='#DEF5CD';"]:nth-child(n+160):-abp-contains(/赌|娱|澳/)) > :nth-child(-n+170) +###\31 280_adv +yes-news.com###content-728-top +||static.ichehome.com^ +||kuaihou.com/c/you1.js +baidu.com##.img-adv-swap1 +||mps.wenkuzu.com^ +||atpanel.com^$image +huya.com##.ab-wrap +.adserver. +bejson.com##.t-small-margin > ul:first-child +mc.163.com###NIE-topBar-news +##.lyzm-prevent +||xu27r.com^ +@@||sdc.pingan.com^$~image +dav01.com##.adwraper +6665.com###fgdiy01 +@@||av30.xyz/cs/2.js +||btwwzqdx.xyz^ +||gsdedash9b.fun^ +||5888.tv/User_Ad/ +uc123.com##.bg-wrapper +||wuliao.chzsport.cn^ +hk.xfastest.com##.adv_v2 +lanzou.com##div[style="text-align: center;border: 1px solid #eee;"] +###bfad +||mitbbs.com/ad_ +qq.com##.qiye-Article-QQ +||l80ays.com^ +||189.cn/dns/ +###taotaole +||kjeqga.xyz^ +unikoshardware.com##.elementor-image > a[href^="https://bit.ly/"] +||v34s6r.com^ +||rjlfolk.xyz^ +||szpnz.cn^ +360doc.com###divyoulikead +jq-school.com##.setfarme:nth-child(7) +||jmcomic1.cc/iframe_v*?type=exo&idzone= +dep-family.hccg.gov.tw#@#.ad_2 +||tp4sul.jwzd.com.cn^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_frs-header\/pagelet\/head_content_middle > div[class]:not([class*="_"]):first-child +17173.com##.mod-tg1 +||oswowg.xyz^ +||oqaejin.icu^ +||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg +131400.best,vikacg.com,vikacg.xyz##a[href^="http"] > img[src*="/assets/main/"] +||d4vd.life/love/ +||lwprdv.xyz^ +||setlwsb.top^ +||mqrupjsm.xyz^ +le.com##.lbzDaoliu +||fanhaodang.org/Runtime/js/ +||91danji.com/js/lmt.js +||chazidian.com/mobile_general_ +chunyuyisheng.com###ad_modal +||cyuwkbf.top^ +||zojyob.icu^ +||lajevt.xyz^ +jinhua.com.cn##.banner465 +||ii1.chajiaotong.com^ +motobuy.com.tw##.adbig +wenku8.net###adv300 +163.com##.redpacket-subbox +##.google-ad2_fixed +||bnfhxszj.xyz^ +eworldship.com##img[height="70"] +||zhenben.cc/2000/ +@@||jianshu.com/asimov/ab_test/info +popbee.com##.adblocker +##.dabf > .ng-star-inserted +liaoningmovie.net##.list-subCont > li[style$="height: 98px;"] +||baidu.com^*/directad? +c114.com.cn###barrage_bg +7hcn.com##.pr > a[href^="http"]:not([href^="http://www.7hcn."]) +hc360.com###newAppBox +||beijingbang.top/scholar/xljsci +||bd1.click.com.cn^ +||sinaimg.cn/mw690/005uyUwYjw1eocc98cbgag30gk02ygm9.gif +fffdm.com##[style^="width"][style*="height"] +baidu.com##.player-pause-code +3g.qq.com##div[id^="feed-omgad-"] +||zeqvqb.icu^ +uc123.com##.s-left +kairos.news#?#.theiaStickySidebar > div.widget:has(> div.textwidget a[href^="https://kairos.shopping/product/"]) +1kkk.com,dm5.com,dm5.hk###beitou +||gftefmt.icu^ +ifeng.com##.topAdBox +||eraygc.xyz^ +-1325890192.cos. +diyifanwen.com##.Hzh2 +||u0071.com^ +|http://*.us/ad/ +54new.com##img[width="1280"][height="100"] +sina.com.cn##.redPacketCont +/uc123_no/*/index/js/activity. +@@||ldxinyong.com^$generichide +||zwzdjb.xyz^ +||binga07.shop^ +||tihdjd.xyz^ +||3987.com/images/ +||s-msn.com/portal/xiatui.js +@@||58b.tv/static/js/ad.js +||ndthdte125.shop^ +||zeuqmpe.icu^ +@@/advertisement/*$domain=ininin.com|midea.com|muyingzhijia.com|nmkjxy.com +||lckjqtx.xyz^ +##.sponsor_image +###container > #main.site-main > div > div > a[href^="/"][href$="/"] > img +||kfjpren.xyz^ +$script,third-party,denyallow=myqcloud.com|bytecdntp.com|pddpic.com|googletagmanager.com,domain=yjys.me +fx678.com##div[class^="fx_fa_"] +||frtnqpw837.shop^ +##.a_xsfl +||1x5jlh.xyz^$popup +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.frs_act_repost_wrapper_outter +||gixgav.icu^ +||dmzj.com/module/js/float_code.js +||22588888.com^$popup +/adshow. +sportsplanetmag.com##.adshow +pc6.com##.Advbox +fpdisplay.com##.class_adv1 +qinbing.cn##.adspic_mid2 +||1buu1.penyouw.com^ +@@||youku.com/cms/player/userinfo/ +||uweriot.top^ +||cpplay.com/inc/ +||a.bxwblog.cn^ +||sihbb.com/yang/ +||pdfbook.cn/wp-content/uploads/2017/11/049.jpg +smzdm.com##.foot-banner +||prpmdp.xyz^ +@@||10086.cn^$generichide +||gtimg.cn/mediastyle/event/20160306_music_live/img/skd.jpg +chyangwa.net,motorfans.com.cn###scrollPics +tmall.com###J_BottomSmartBanner +mydrivers.com##.yTv3AMqP +||ck33.top^ +||jdrlfn.xyz^ +||hao123img.com/v4/MB/xU/jy/VY/YX/MBxUjyVYYX.js +@@||vlist.se/advertisement.js +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:-abp-has(>ins+script) +||vwvatp.xyz^ +||bnextmedia.s3.hicloud.net.tw/dp_cp/cp_prebid +slashview.com#$##SlashviewAdDetector { display: block !important; } +||cp121.com/js2/ +||skldbklsbvss.com^ +cartoonmad.com##table[width="950"] > tbody > tr > td > table[width="210"] > tbody > tr > td > table[width="210"] +||zhangzishi.cc/cdn-cgi/apps/ +###banner_links.banner-container +||g.163.com/*&affiliate= +||polepole.cn^ +||666ppp222ppp.com^ +#%#var AG_removeElementBySelector = function(selector) { if (!document.querySelectorAll) { return; } var nodes = document.querySelectorAll(selector); if (nodes) { for (var i = 0; i < nodes.length; i++) { if (nodes[i] && nodes[i].parentNode) { nodes[i].parentNode.removeChild(nodes[i]); } } } }; +||cdn77.org^*.mp4$badfilter +##.content-video > .ads +app.n26.com#@#.bl > .gg +||mangahax.com/images/ima_ +heiguang.com##.pbAddPic +bbs-mychat.com#@#.adContent +@@||fengkongcloud.com/fpv2.js +cpnn.com.cn##.part3-adverd +||dflkndkzf.com^ +||hfwld.cn^ +||outbrain.com^$third-party +||vip1.loli.net/2020/02/17/A9jmsY41EwiUzou.png$domain=ddrk.me +vid.onlymu.site##.tips +##.content_ad_300 +18-comicfrieren.xyz,18comic.org,18comic.vip##style + div[style="cursor: pointer; position: relative;"] +yiyouliao.com##.yyl-weiruan-news-ad-item +###tr_ad3 +dy.xdf.cn##div[id^="adModel_"] +||luresdl.top^ +36dm.club,36dm.com,acgsou.com##img[width="700"][height="60"] +fuliba.net,fuliba2023.net,uliba.net###focusslide +pcccp.cn##DIV[id^="xydl"] +jiankang.com##.all_eye +@@||manhua.weibo.com/adv/ +||jiusudie.com^ +csdn.net#?##feedlist_id > li:has(> div[id^="kp_box_"]) +||avcity.twavtv.com/iframe/ +mingpao.com###photo_transition +||api.wudizuqiu.com/bocai.js +90pan.com###tt_6 +chinasmartgrid.com.cn##.ht60ad +hupu.com##.hp-header-banner +||chakd.com/images/xitie160x60.gif +fulibl.com##.widget_banner +||zhan.com^*/middle_ad_modal.js +autohome.com.cn##.activity-app-layer +##img[onclick^="window.open"][src*=".360buyimg.com"] +qzone.qq.com###QM_Container_100005 +||gavbus*.com/assets/common/js/ad.js +||akuziti.com/tu/*.js +||codeceo.com/images/*/boxuegu +nownews.com##div[class^="leftSide_"] > div[data-reactid] a[data-event-action="page-recommend-ad"] +wmzhe.com##.aibyte_ad +||gtimg.com/pingjs/ext2020/dc2017/dist/m_tips/tips.js +coderutil.com##.head-recommend-adv +##a[href*=".mamsou.com/"] +||rshsk.xyz^ +###Zi_ad_a_H +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###worldcup_topic +eepw.com.cn###hiddenLayer +||qpix.com/2021/05/20/Aqcp.gif +##.ad300left +||9g659.xyz^ +||ovnrmvg.cn^ +###container > .wrapper > .fl +||55sky.com/js/diecuo/ +hutool.cn##.hutool-top-ad +||4kwu.cc/static/js/tj.js +||51liucheng.com/js/dialogLogin.js +###ad_box +kaoyan1v1.com###showAD +||baidu.com/?action=getadsdata& +1090ys8.com#%#//scriptlet("abort-on-property-read", "adBlockDetected") +##.smcms-wrap > .group-box > a[target="_blank"] > img +@@||passiontimes.hk^*-ad.php? +upsangel.com##a[href="https://upsangel.com/check/surfsharkvpn/"] +||paopaoche.net/public/bd/article_inc.js +||aixifan.com/cms/*/w/1160/h/100 +###adBody04 +||lzzqfj.xyz^ +||tszoxhtk.xyz^ +m.biqiugege8.com#%#//scriptlet("set-constant", "lists", "undefined") +logi.im#%#//scriptlet("prevent-setTimeout", "ins.adsbygoogle") +||qiyipic.com/common/*980x +21cn.com###embed_hzh_div +||mnnmnn.com^ +163.com##.imglist-bobo-app +163.com##a[href*=".kaola.com"]:first-child:last-child +new-reporter.com##div[id^="mdl-elmt-"] +||qpesok.xyz^ +||eastday.com/jsfile/kuaiya_ +||zxrcfw.com^ +iplaysoft.com##.crumb_ad +||mlicci.xyz^ +||alicdn.com/img/ibank/*_56164670. +||962.net/show/index_ +||firefoxchina.cn/v2/json/floatBanner.json +||chinaacc.com/lamu/*dl- +||ydmnlxtu.xyz^ +@@||wl.jd.com/wl.js +/ads.php +||hotpress.info/blog/asian-javdl/wp-content/uploads/irvsxp.js +||etjui.cn^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.app_forum_top_nav_tab +##.ads-after-content +/htmm/20*.php$popup +jandan.net#?#.commentlist > li.row:has(> div > font:contains(广告)) +||hc360.com/images/14826/289x90.jpg +||jy08.shop^ +yahoo.com#?#.stream-item:-abp-has(>div>div>div>span:-abp-contains(即日熱搜)) +v.qq.com##a[href*="amway.com.cn"] +wuyong.fun#?#.sidebar-innter > section[id^="b2-widget-html-"]:has(.adsbygoogle) +||aiknx.cn^ +||webservice.360doc.com^ +||npnpxoz.xyz^ +_728_90. +/data/ads/* +csgoob.com#$##ADback { background: none !important; } +muzhuangnet.com##.widget_sentence +||dqzehgha.xyz^ +||szhgmd.com^ +360che.com##div[id^="PAGE_AD_"] +||hibj.online^ +||videojj.com/api/v1/plat_tags? +right.com.cn###hd > div.wp > div.hdc > h2 +||l.qq.com/lview? +lanyes.org##.kuanpin +||wumii.cn/ext/relatedItemsWidget +ifeng.com##.adbox03 +@@||assets.giocdn.com/2.1/gio.js$domain=saicmg.com +sogou.com##.recommend-pop +||chmueyv.icu^ +||goodvibe1.com^ +||ghost580.com/js/nei4.js +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="920"] +||dm1.zjydt.com^ +ck101.com##.bt-ad-728x90 +###bottomad +@@/pub/ad/*$domain=ruten.com.tw +oschina.net##div[data-traceid*="_ad_"] +||oclasrv.com^$third-party +ktsf.com###sow-slider-7 +2345.com###leftPacketMain +||jioed.cyou^ +||07073.com/pc/js/right-ad. +pinggu.org##.index-somelinks +chinaz.com###setPbottomMedia +||uumnxiet.top^ +||vihqpr.xyz^ +||y66xvgo5i.chuimg.com^ +bilibili.com##span[style*="height:"][data-loc-id] +.com/zz/*2.txt$xmlhttprequest +qq.com,sogou.com##.daohang-gamecenter +/adpolestar/* +kissjojo99.com##.g-adv +||iupian.com/mstyle/js/topinfo.js +||doujs07.xyz^ +||zfvtswv.xyz^ +||jrjtibez.icu^ +ifeng.com##div[class^="games_ad_"] +###rightCouple1 + #leftFloat1 +.*ryt111.fun/$script,third-party +||3gmfw.cn/js/wap/ +||szfcol.com/images/wxright240.jpg +##.head-ad +macd.cn###hbad +||9ye.com/Files/Editor/ad/ +nlc.gov.cn###lovexin12xx +adbug.cn#@#.google_ads +||qbsday.xyz^ +idanmu.ee##.entry-body > div[class]:first-child +unikoshardware.com##.elementor-widget-sidebar a[href^="https://bit.ly/"] +@@||slashlook.com/_resource/js/_js_ads.min.js +qiuziti.com##.popularize +huaban.com#@#img[width="240px"][height="400px"] +||dswcrlf.cn^ +baidu.com##.app-side-banner +le.com##.Ad +dianping.com##.J_midas-3 +||mgqtcs.xyz^ +gonglue.us,kocpc.com.tw###custom_html-6 +2345.com###J_gul_yglist +so.com###e_idea_pp +zhenbuka3.com,zhenbuka2.com,bukaivip.com#%#//scriptlet("adjust-setTimeout", "CloseAd", "", "0.02") +||chazidian.com/all/mobile_ +||mewrutx.top^ +jingyu.com##.stream-app +egame.qq.com##.pop-widget +ctwant.com##.m-adpopup +||anhuinews.com/zhuyeguanli/*ad/ +##.mylist + #topthree +||huarenjie.com/attachment/myfiles/ +bestcclm.com##.wp.cl > a +||ietlwso.top^ +lohas.pixnet.net###box785805 +58cam.com##.syads +||hwnojj.xyz^ +@@||bagehd.com/iplookup. +||sowsuwm.icu^ +2345.com##.spreadHotWords +wenku.baidu.com##.edu_class_pop_dialog +||undm.qibulo.com^ +||wnacg.*/data/game/ +cartoon18.com##.embed-responsive.position-relative > a[href^="http"]:not([href^="/"]):not([href*="cartoon18.com"]) +||200218.com^$third-party +||docin.com/jsp_cn/ad/ +||meishichina.com/v3/ +###rightCouplet +/common/ad_ +ali213.net##.zadmainholder +||192.luyouwang.com^ +@@||research.hchs.hc.edu.tw/*/banner.php$domain=research.hchs.hc.edu.tw +||58.com/demand/content? +teepr.com###topAdBlock +baidu.com##.baiduapp-ad-container +||bbs.hotavxxx.com/images/201*.gif +||15hn.net/data/content +||mmonly.cc/js/mmonlyAPP.js +mpyit.com###post-0 +/yryy/css/javatop.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_content +hexun.com###bottom_extension +||m.20mao.com/*/BOT.js +||5.ccutu.com^ +||f7fe0.cyou^ +##.textadlist +||dieka888.com/app_ad/ +/scripts/ads. +||5ydj.com/images/banner/ +crsky.com##.banner-leader +||8d07a.xyz^ +||yrr56.com/mp4/pt_720. +dailygh.com###video_fade +kocpc.com.tw##.single_ads +/include/ad/* +/xianbao_theme/script/intelligence. +@@||cnki.com.cn/cnki/images/ad/2020/1112_45711271.jpg +||u0056.com^ +sina.com.cn##.ad_main_top +||uohvxrvd.xyz^ +@@||toy-people.com^$generichide +||ypvtw.com^ +||18-comicfrieren.xyz/media/albums/*?$media +||xpyjyhny.xyz^ +||xpj08.oss-cn-beijing.aliyuncs.com^ +ifeng.com###video_p +||bdstatic.com/tb/cms/*%E5%BA%95%E9%83%A8 +||yximgs.com/bs2/adcarsku/sku1563a96c-38ca-4563-a4b5-522208113126. +||ei1s7b.cn^ +yocoolnet.in###mobile_inplayer +##.adsbygoogle +||adserve.work^$third-party +||bytupkvc.xyz^ +||hugo3c.tw^$csp=script-src 'self' * 'unsafe-inline' +||southmoney.com^*/Inc/ +||vfgajrk.cn^ +||ohkfmi.xyz^ +||jlmhk.com/images/data/ +||heiguang.com/_r/2015/js/hrBottomBar. +@@||masterkong.com.cn/adimages/ +=SOGOU_WAP_SETJSONADSLOT& +wed114.cn##.adtwo +scsjgjj.com###floatinfo +||szxf4.icu^ +||guwohvw.icu^ +||mnpkxgfp.xyz^ +@@/adimage/*$domain=scyts.com|wacom.tw +qciss.net##.d1 +newtalk.tw,phbzj.com##.ad-container +/adfiles/* +||pv.dakawm.cc^$third-party +||klmohbk.icu^ +tools.2345.com##._hb-box + .mod +/js/bocaiadv. +huya.com##.room-sidebar #public-screen-ab +###bottombanner +baidu.com##.s-tutorial-tip +||xphcrjth.xyz^ +||a.xuezizhai.com^ +sinami.com##.banner_centerLeft +elle.com.hk##.tpc-container +@@||freereceivesms.com/weborama.js +hupu.com##.hupushihuo +||nfmovies.com/pic/tu/ad +github.com##a[href="https://start.aliyun.com/"] +||baidu.com/buy/ad/home +ifeng.com##.ad08 +||vflorp.xyz^ +ifeng.com##.ad07 +||vjpgm.space^ +||javhd.com/banners-mainpage/ +||ydfhidrk.xyz^ +||jeryt111.fun^ +||appimg.0575bbs.com^ +||vansky.com/index_files/*.gif +m.youku.com##.hdwrap +douyu.com##.vcode9-sign +||51credit.com/51api/creditcard.php?mod= +=mumumoniqi-piaochuang- +||msxoux.icu^ +||c1.4qx.net^ +pinshan.com##.b_taobao +onemanhua.com##body > div[style^="position: fixed;"][style*="z-index:"] +||xqjqripb.xyz^ +weebly.com##a[href^="https://www.ebay.com"] +/js/cpc2_dl.js +||fcgxidqwcx.xyz^ +||wx.sina.com.cn/iframe/pdps/ +/r/*?_r=$object,subdocument,third-party +||ggw.watertu.com^ +||myqmgm.xyz^ +viu.com##div[id^="info"] +||wantgoo.com/wantgoofiles/banner/ +/attachment/freeaddon_banner/* +||2cnjuh34jbman.com^$third-party +||union*.365inews.com^ +chineseinla.com###weixin_ads2 +||fpvdrzx.xyz^ +sina.com.cn##.clearAd +youku.com##div[data-adext] +nczsks.com###wzyxjs +||mdfsbn.com^$third-party +/eis/diy/ad/* +||citysbs.com/no/*/650x50- +||dfan4.icu^ +.xyz:8009/11?x= +||ohopao.xyz^ +##.adDingT +||alicdn.com/img/ibank/*_1095372465. +||haiyuer.com/uc +so.com##.atom-adv +kaolashuwu.com###ZF_tanchuang_p_right +@@||ibf.tw^$generichide +||dxwksqa.icu^ +foodmate.net,weather.com.cn##.ad4 +||156.233.32.123^$third-party +weihemenye.com#$##player_div { display: block!important; } +###ads_top_video +||c1.czcol.cn^ +||qdjsiyt.icu^ +||davtvd.xyz^ +||jijidy.com/640x200down. +9y01.xyz##.in-friends +||fwsir.com/static/cpt/ +||befyah.icu^ +||guojitv.com/m/js/ad_ +||n2faw.site^ +||chzjidgc.xyz^ +@@||create.jd.com/ad/ +||lecai.com/page/zhuanti/baidu/ +||n3567.com^ +2yjw.com##.widget-tops +hit180.com##.widget_ui_orbui:nth-child(-n+2) +###ad_hf_out4 +twavking.com##.da_single_video +||fwcnex.icu^ +||stat.img-space.com^ +/adproxy. +ks.js.cn##.height200 +bbs.xmfish.com##.adv-760 +||efs604.top^ +||bdstatic.com^*/plugins/every_cookie_ +||meiyouad.com/user/admin? +tsdm39.com###ct > div > a[target="_blank"] > img +2345.com###rightXieCheng +||ifxqubw.icu^ +||80yc.com/js/yidong/ +||laogu.com/cms/images/ad +jdbbs.com###archy5 +||yl04z4v.cn^ +||ycmgeb.icu^ +||thavrils.com^ +52pk.com,hao.rising.cn,vpgame.com##.add +dianping.com##.button_bao-jia +||2048hd1.com/js/tc.js +360.com###festival-mario-screen +@@||inoreader.com^$genericblock,generichide +applefans.today#$#.tipi-overlay { display: none !important; } +bbs.my0511.com##.outertxt > tbody > tr > td[height="80"][align="right"] +:818/nowscore/ +||chubsxmg.xyz^ +oschina.net##a[data-traceid$="_ad"] +###bfad3 +||e23.cn/js/aaa.js +||lvuptech.com/wp-content/plugins/deblocker/ +||cqcrci.xyz^ +||d24fnxkxwarvg8.cloudfront.net^ +##.error > #qqs +pconline.com.cn###app-ewm-tg +.qidian.com/bgImg. +||u2w95z.xyz^ +.cloud/ads/ +chanpindashi.com##.personal-information > a[href^="http"]:not([href*="chanpindashi."]) +lenovo.com.cn##div[id^="ad_bd_"] +/js_php/ajsf.php?id=$third-party +renren.com##.toplive +||yi.ximizi.com^ +||fq04.shop^ +||ruiwen.com/js/p.js +maxthon.cn##.top-right-pop-wrapper +||jc001.cn/ci/jad/fix. +##a[href*=".hyenadata.com/"] +aa25.cn###content_head +||kyuwkbd.top^ +||jrjimg.cn/common/foot/allfc.js +||sgozmks.icu^ +/paypic/* +||wneia.iaskhot.com^ +||image.39.net/style/ +bitauto.com###dyAdv +hao123.com##.adMainMiddle-box +||imevzbn.cn^ +||cdn77.org^*.mp4| +manmanbuy.com##.app-activity-download +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_thread_list[data-field^="\7b \"id\":4756933479,"] +@@||ipstatp.com/business_center/dist/img/ad-$domain=tiktok.com +||n0544.com^ +@@||85tube.com^$generichide +baidu.com##.banner-wrapper-defensive +fx678.com##div[id^="hta_"] +||css.juqingba.cn^ +||jpwsuix.icu^ +||iiwoqm.xyz^ +||xixil.cn^ +.com/js/bnr_ +libaclub.com#?#.ui-list-item:-abp-has(>.ui-list-item-title>a[onclick^="SendAd"]) +|http://ad.$domain=~ad.cnr.cn|~ckckk.com|~jxnews.com.cn +||163.com*/special/*_ad_ +||gw2cddpt2hao.cloud^ +||pidurrmu.xyz^ +||2481e.com^$popup +hinet.net###media_ad_popup_overlay +baidu.com##.picad +heirui.cn##div[id$="MASK"] +##.adppc +||img.qxwoiv.com^ +price.com.hk###ad5 +||pv.sohu.com^$domain=chinafund.cn +||rabc1.iteye.com^ +baidu.com##.manual-spread +||zbjimg.com/static/union/ +weishangshijie.cn##.head_imgwl +||oshaq.top^ +||ekltes.xyz^ +||bp.blogspot.com^*/s1600/dealer +||js.mumayi.net/jiujiang +||jishuqq.com/images/haodian.gif +360doc.com##.ggwz +-1688-wp-media/ads/ +||hdslb.com/js/core-v5/picment. +colamanga.com#$#html { overflow: auto !important; } +||acglover.*/wp-content/uploads/*-520-245. +||ydolhlwq.xyz^ +||2345.com/js/index/activity/ +||kewaishu.org/m- +/default/ads/* +||8208tp.com^ +/images/ads/* +pchome.com.tw##div[style*="982"][style*="85"] +||huanqiu.com/ssi/show_*_mall.ssi +||izalflh.cn^ +finance.sina.com.cn###ny-link-r0 +||sass.hk/js/ggcn.js +||slit.cn/slimages/ +||dpweupc.icu^ +##.content-video > .ads-player +||ra5.xyz^ +||hefei.cc/templates/default/index_ad +@@||poedb.tw/js/adsbygoogle.js +gamer.com.tw,pili.com.tw#@#.textAd +/wap88ysw/jk/toubu.js +||nfuwow.com/static/nfuwow/source/front/new/images/ +||obdjzhq.xyz^ +||aaread.space/images/*0.gif +@@||3dpchip.com^$generichide +||runmang.vip/img/ +hqew.com##.pop-banner +||onedala.tv/uploads/banner/ +hgitv.com##.gg09 +||nlfbdgr.xyz^ +coderutil.com##.search-module + a +||xianliao.voto^ +||c-5uwzmx78pmca09x24aiux2euavx2ekwu.g00.msn.com^ +||copyfuture.com/images/zhifubao.jpg +||phpstudyimg.com/all/hrl.gif +||huohuo.huamuwo.com^ +||yahoo.com/embed/tv?site=buzzhand& +###login_wp.foot_flwp +qqyy.com##.right_dcotor_tab +ctwant.com##.l-ad__article +||phjtxx.xyz^ +discuss.com.hk##iframe[src^="yna"] +||tianshif.com/zeis/ts.gif +###tr_ad7 +||panpan.org/plus/img/ +.com/cpc/*.ashx?$script,third-party +fishpi.cn#?#.module:-abp-has(>.ad) +32r.com##.gscbtn +zhihu.com#?#.TopstoryItem:-abp-has(.Popover > .TopstoryItem-advertButton) +||vansky.com/agdg/homegg/ +||aiiaqw.xyz^ +500.com###live_top_ad +zhangxinxu.com##a[href*=".taobao.com"] +|http://*/ad_bj.js? +||people.com.cn/img/gjt/ +rjno1.com#@#[id^="aswift_"] +zol.com.cn###btmLoginLayer +||gcylkq.xyz^ +||bixingjia.com/js/hf. +bilibili.com##A[href*="cm.bilibili.com"][data-target-url*=".biligame."] +applnn.cc#%#//scriptlet('trusted-set-cookie', 'gg_info', '$now$') +/shehuik618cn/images/c.js +/template/jable/tj.js$~third-party +@@||nobugin.com^$generichide +||alicdn.com/img/ibank/*_1545027917. +xinmin.cn##span[style^="position:fixed;right"] +mjzj.com##div[id^="sidebar-top-carouse"] +||ssp.kdnet.net^ +||tzfdc.com/fdcSell/ +||csdnimg.cn^*#/preview/ +bigear.cn##a[href^="/?module=dantian&"] +##.ads_plugin +codejie.net##.s-ad-tit-box +||ovjlccs.xyz^ +hvhbbs.com##.margin-add > style + div +aaread.space##.navi +##body > div[style="width: 100% !important; margin: 0px !important; padding: 0px !important; display: flex !important; flex-flow: row wrap !important; background: rgb(255, 255, 255) !important; color: transparent !important; font-size: 0px !important; text-indent: -10000px !important; line-height: 0px !important;"] +douguo.com###dlayer +||91jbz.com/file/script/A +kaitao.cn##a[href*="/a.php?id="] +||d2tf0.icu^ +boylov.xyz,boylove.cc,boyloves.fun##.swiper-wrapper +||qhimg.com/clk.gif? +hcomic.net##div[class^="multiBanner_bannerBox"] +###bottom-gg1 +yahoo.com###ACT_crazy +||vjharl.xyz^ +||ndthdtr586.shop^ +||mrutvncx.top^ +||lzk.hl.cn/lctp/ +gamer.com.tw,pili.com.tw#@#.text_ad +sogou.com###bottom_appad +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$redirect=googlesyndication-adsbygoogle,domain=youneed.win +||vsqovxf.icu^ +||jsx.luyouwang.com^ +||90oo.com/tp/down.gif +||irutvnco.top^ +blog.sina.cn###pl-float-bar +/huijiad/huijiad. +||tietuku.com/d57c01987e74d8f8.gif +.com/js/indextop.js +||sgwsss.xyz^ +||tjj.com^ +znds.com###diy_mobanbus_view_right2 +##body[onload*="u()"] > #x +##.artad +jianhuadaily.com##.alignnone[width="1050"] +||acgbase.com^$third-party +||dup.baidustatic.com^ +||eeyy.com/templates/js/popback.js +||yiqifa.com^$subdocument +||iwatojc.cn^ +eservice.7-11.com.tw,4399pk.com,downkr.com,cardu.com.tw,cw.com.tw,hk.on.cc,share.acgnx.se##.banner +/lanye2015/images/kuan.jpg +||todayapp.tv^$popup,third-party +||acc.3gbizhi.com^ +motobuy.com.tw##.AD1 +game2.cn###pop-flash +@@||daxiaamu.com^$generichide +||ysxs8.vip/ysgg/ +||92dp.com/home/showga? +||uskoie.xyz^ +||httpcn.com/Images/banner +kocpc.com.tw##ads +||xitek.com/idzone +cbber.com,xiaot.com###diy_chart +||store.7box.vip/ad/ +##.zone_wap_banner2 +||sqszcg.top^ +/gh/91porny/* +||baijs05.shop^ +||qq.com/tencentvideo_v1/script/module/propeffect/prop.effect. +2023.allthingsopen.org#@#a[href*=".com?aff="] +||mydrivers.com/images/hongbao +||05826.online^ +@@/advert/*$domain=csxbank.com|fjgcjxgl.com|locuspublishing.com|moretv.com.cn +/addon/indexad.php +526bt.com,guojitv.com###slider +3g.baidu.com,m.baidu.com,m5.baidu.com,www.baidu.com#?#div:-abp-has(>div[id$="_1"]+div[id$="_5"]) +/js/layer1.js$domain=99re.com +||bdstatic.com/searchbox/icms/searchbox/img/*.jpg +||kantv6.com/index.php/Popularize/ +||ttavav6.com/zz/ +@@||sinopac.com/applyweb/OpenAccount/js/oas. +||cntvboxnow.com//ads_ +eprice.com.tw###goldlink +||bt.cn/bbs/newsimg/ +bbs.my0511.com##embed[width="970"][height="70"] +qidian.com##div[style="background: rgba(0,0,0,0.4);position: fixed;left:0;right:0;top:0;bottom:0;z-index:9999;"] +||nqyrywn.icu^ +||nrzzaep.xyz^ +||dm.17xuexiba.com^ +/adstatic/* +||ccav1.com/wp-content/uploads/bMShkpexGYJd/ +||btn.pchome.net^ +||inszu.com/js/qian/ +||91160.com/nykj/f=static/v4/common/tj.js +||u1055.com^ +sanv.org##.p_left +m.youku.com,v.youku.com#%#//scriptlet('set-constant', 'Object.prototype._adData', 'emptyObj') +||baiduapp.app^ +crsky.com##a[href^="http://count."][href$=".exe"] +||yaseok.com//static/src/images/loading.gif +||ifengimg.com^*/embed*.js +||m.tiebaimg.com/timg?wapp^*imgtype=0$image +||99kubo.tv/static/img/adsfree.png +||vipyearha.com/uploads/20*.gif +##.ctm_ad +news.baidu.com##.recommend-animate +@@||520call.me^$generichide +ibaotu.com##.ibaotu-md-click[ibaotu-md-value="detail_top_ad"] +||display.itmemo.cn^ +||sgk.xyz/static/js/pc.js +epwk.com##.collect-info-icon +cardu.com.tw##.diamond-txt-ad +||dai.siyuetian.net^ +liaoningmovie.net##.banner +oschina.net##div[name^="index_banner_"] +||8s8s.com/data/banner/ +m4ff.com##.content2 +||shili.wanyx.com^ +||dfcfw.com/js/news/fundfloatmedia_ +||lizijing12.top^ +||touimg.com/u/20200306/12094716.gif +.asp?wg&df=$script,third-party +52pk.com##.wxbox +||chushoushijian.cn^ +/static/ad- +||uu22332.com^ +||xonlines.com/yyh_qp_200_200.png +||wbqqo.com^$third-party +||gg.cs090.com^ +423down.com##a[href*="/go."] > img +://btt*/Runtime/js/psData. +||taosq.net/public/250x250.jpg +@@||adapi.zcool.com.cn/api/adstrategy/realtime/get_ad_info?location_id=$domain=zcool.com.cn +qxfun.com###beautiful-things +caoporn.com###bottom-gg1 +||fsijngnfsfk.com^ +daniao.org,geekpark.net,speedtest.cn##.sponsor +77kpp.com##div[style="z-index:1000000;position: fixed;top:0;left:0;"] +||vwsgmf.icu^ +||jia.com/js/zixun/zixun_ +eprice.com.tw##.ad-728x90-g +##a[href*="/kt169.com"] +baidu.com##.wa-zp-exact-new-border +/template/jiejiesao/aaaa/* +@@||ssports.com/images/resources/web/live/js/LiveAds.js +com.tw###space > a[target="_blank"] > img[width="160"] +||mydzfldt.xyz^ +so.lenovo.com.cn##.AdSite +||blueidea.com/js/ajs.js +@@/urchin.js$domain=on.cc +taiwanus.net##td[width="900"] + td[width="320"] +@@||mobinovels.com^$generichide +@@/analytics.php?$domain=xcar.com.cn +||zol.com.cn/js/ask/ask.js +||jili9.io^ +||power.adhacker.online^$third-party +8591.com.tw###active_enter +||90oo.com/tp/hg +||thisav.com/js/bioep. +||struhuts.com^ +||ihgluu.xyz^ +bbs.liyuans.com#?#div[data-widget-area="sidebar"] > div[class="panel panel-primary"]:has(> div.panel-heading > h3:contains(广告)) +jinghuasoft.com##.zhifubao +rou.video##.grid > div[class^="col-span"]:has(> div[class] > ins) +||1.codesdq.com^ +||myweb.hinet.net/menu.htm +sina.cn##div[data-adid] +||ikafan.com/js/novel.js +djljz.cn##.bottom_slide_box +||asryrzpu.xyz^ +||ams.fx678.com^ +@@||dmhy.b168.net^$generichide +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv#?#.slider-group > .nut-swiper > .nut-swiper-inner > .nut-swiper-item:has(> .swiper-page > span:contains(/^AD/)) +yd.baidu.com##.ui-distribution-bar +||qiyukf.com^$third-party +||sass.hk/plus/mytag_js.php?aid= +||bd-s.baixing.net^ +||qbhmz3.com^ +||962.net/show/down_ +||ebp.renren.com^ +||cdntxt.com/t1/ +cngold.org##.fiexdAdvsClosed +||adp.cnki.net^ +jingyingjiajiao.com##.bdgg +/includes/adv/* +520call.me#%#//scriptlet("set-constant", "all520dddaaa2022aaa", "undefined") +||gg86.pinggu.org^ +douyu.com##.BargainingKit +@@||popart.hk/newweb/$generichide +||lsnzxzy1.com/Runtime/js/psData.js +||yhbheroq.xyz^ +/adkingpro/* +##.ad_content +||cssqt.com/a/images/right +hao.360.cn###snatch-logo +||qq.com/Index/getAdsAndHotspot +||hyth74.fun^ +||66.fmx.cn/js/ +money.163.com#$#.finance_header { height: auto !important; } +/xiwang/dfumeiti.js +||lenovo.com.cn/lenovo/bid?clientType= +/cpmShopAds^ +##.float-adv-left-top +gtloli.live,gtloli.one##.sd_recpic +hkmovie6.com##.hotmobad +igo.cn##.adBG +||widget.ezprice.com.tw^$third-party +||gtimg.com/ent/final2009/dp_tebu_logo.png +||7bspu.site^ +tui18.com##.wp[style^="width:"] +||p1.zhongyoo.com^ +||baidu.com/resource/tuisong/ +||baidu.com/showbrand/banner_ +oh100.com##.mySwiperBox +exoav.com##.place +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-weigou-nav-buy +||9553.com/otherhtml/ +@@||hk.on.cc/mobile/js/lib/adbanner.js +firefoxchina.cn###promo +163.com,changsha.cn,jrj.com.cn,neotv.com.cn,sina.cn,sina.com.cn##.topad +||m8oxd.xyz^ +bccn.net##div[style*="height:90"] +discuss.com.hk##div[id^="div-gpt-ad"] + div[id] +edrawsoft.cn##.publicity-entrance +###duilian_right +hexun.com##.side618 +||jtzdld.xyz^ +ltn.com.tw##.evt.e22 +||ldvdwlt.xyz^ +:8898/ads_ +###diads +||cnzz.yifenghuyu.com^$third-party +||nsfsfn.xyz^ +||itopdog.cn/itopdog/ad.js +mitbbs.ca,mitbbs.com##.newskuang2 +ifkdy.com,ilxdh.com##a[href*=".yhm11.com"] +baidu.com##.bottom-right-dsp-ad-wrap +||80s.la/m/js/ +||mlegyu.xyz^ +gamefy.cn,sitv.com.cn##.tit > span[style="float:right; width:285px;"] +||limopf.top^ +||tdljuuw.xyz^ +||acdref117.cn^ +||wandhi.com/img/ +21ic.com##.appxb +||w010w.com.cn^$subdocument +||baidu.com/api/wikiui/getasp? +||moon.ibytecdn.cn^ +image.baidu.com###imgid > .fcimgpage +@@/cpc_cpm_$domain=ygo-sem.cn +||mestrip.com/widgets/ +||qiyipic.com/common/*/980 +m.youku.com##body > [style="width: 100px; height: 100px; position: fixed; top: auto; right: 0px; bottom: 0px; left: auto; z-index: 188;"]:not([class]):not([id]) +||count.candou.com^ +gas.goodlife.tw###leaderboard_banner +||w11.zhongkaohelp.com^ +||bphcrjth.xyz^ +@@||viu.com^*/tracking/ +||vip.luanren.com/data/*.gif +chinaz.com##.titright +||nlvwdlnhfnnw.com^ +alist.nn.ci##.ss +2345.com###sideCat +/js/db.js$script,third-party +||iid97.com/wp-content/cache/autoptimize/js/ +||backchina.com/banners/ +||yzpsb.net/js/jquery. +||tanseb.com/vads/ +reaff.com,yangmaodang.org##.entry-content > p[style="text-indent:0"] +||zvhlzb.xyz^ +51wangdai.com##.top_AD +###hengfu1.banner +xdf.cn##.popup-wrap +lihkg.com##iframe[src^="https://pb.lihkg.com/"][style^="height:"] +||osujcq.xyz^ +||fefgvh.xyz^ +fanyi.sogou.com##.survey +mtv-ktv.net###aShow +eastmoney.com##iframe[src^="//fund.eastmoney.com/trade/hqb_hq.html"] +#%#var AG_removeElementById = function(id) { var element = document.getElementById(id); if (element && element.parentNode) { element.parentNode.removeChild(element); }}; +wallstreetcn.com#@#.banner +||jke1.jianke.com^ +||soso.com/wenwen/i/ad/ +##a[href*="/register/?i_code="] > img +||yigujin.cn/faaa/ +||5118.com/g/ +||haoxxoo.com/player/ad.html +jyacht.com##.adve_4 +||imgs.cc/img/8Pl6FJY.gif +/link?c=$image +#%#var AG_removeCookie=function(a){var e=/./;/^\/.+\/$/.test(a)?e=new RegExp(a.slice(1,-1)):""!==a&&(e=new RegExp(a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")));a=function(){for(var a=document.cookie.split(";"),g=a.length;g--;){cookieStr=a[g];var d=cookieStr.indexOf("=");if(-1!==d&&(d=cookieStr.slice(0,d).trim(),e.test(d)))for(var h=document.location.hostname.split("."),f=0;f [class]:-abp-has(span[data-tuiguang]) +cnbeta.com##.wdj_box +||tongjiniao.com^$third-party +||jp.twww.sbs^ +||cb.baidu.com^ +douyu.com##.XinghaiAd +hb163.cn##.ad_panel_980 +||jqtnft.xyz^ +##.adpcc +fanyi.baidu.com##.appbanner +||t.yzwr588.com^$third-party +||rhzvlcu.xyz^ +||8feichai.com^ +||linkwan.com/gb/javascript/c5- +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.bonus_forum_aside +||2325fdrf.fun^ +||pw321.com/bulu/ +@@||sinajs.cn/open/api/js/wb.js$domain=sc.sina.com.cn +huya.com###J_roomGgTop +##.indexad4 +||mydrivers.com^*728_90. +@@/pubads_impl.js$domain=mytvsuper.com|tvb.com|tvbs.com.tw +_popAds. +/cdn-cgi/pe/bag2?*.adm.cnzz. +2.taobao.com##.download-layer +sina.cn##iframe[id^="sinaadtk_"] +||ppsj.com.cn/images/ppsj300.gif +||baidu.com/feproxy/ad/list? +finance.ifeng.com##.sConRbox +lenovo.com.cn##.daily-hotwords +||xizi.com/js/rotator.js +@@||ad.8maple.ru/8ads.gif +||ywokwlx.icu^ +wuzhuiso.com###mohe-hotnews_right +baidu.com##.s-news-banner-wrap +@@/rwd_cap.js$domain=ibf.tw +||jrzj.com/img_index/guanggao +dianping.com##.J_mkt-group-1 +||m1.nn670.com^ +||sozi.cn/images/tj/szdown +||xlrjnhxi.xyz^ +||66wz.com/eap/ +zhiyoo.com##.prompt +||uchks.com/2018/% +nowscore.com###toperBaskText +||ggdm1.nhaidu.net^ +||heryt111.fun^ +msn.com###taboola-above-homepage-thumbnails +||ewurserw.top^ +##.banner-cctv-A2 +||kyyfsw.xyz^ +||ioaiqp.top^ +||atdlbgx.xyz^ +||93692zubo66936.com^ +ditu.so.com##a[href^="https://e.so.com/"] +doubiuser.github.io,doubibackup.com#?#.custom-html-widget:-abp-has(div[style^="position"]) +@@||aobi.100bt.com/play/ad/ad*.swf +||chinasexq.com/js/tpgg +||zdqx.com/statics/v1/images/gif/ +||adx.mala.cn^ +||haolepic.com/js/ +6park.com##table[width][align="center"] > tbody > tr > td[bgcolor="#FFFFEE"]:has(> table[width="100%"] > tbody > tr > td > div.adv-6park) +||3dmgame.com/index.php?m=games&c=index&a=ztad& +||hdaidj.cn^ +7k7k.com##.pendant +/gubawap/ad/* +2cycomic.com,whnyd.com,yemancomic.com##body > a +||6699fa.cn/imagestb/ +kostool.cn#?#div:-abp-has(> h1:-abp-contains(推广)) +||imgsrc.baidu.com/*/pic/*.jpg$domain=/87[0-9]{2}ck\.cc/ +freecodecamp.cn,freecodecamp.one#@#.btn-social +||962.net/show/all.js +##a[href^="http://yunbofangbt."] +||urutvnct.top^ +ifeng.com##div[class^="layout-"] > div#subNav + div +||xilele.com^ +@@||jinyongci.com^$generichide +||kkjshsj.com^ +free.com.tw###custom_html-11 +||126.net^*analysis +||kopvx.cn^ +@@||yimg.com/ss/rapid3.js$domain=style.yahoo.com.tw|tw.answers.yahoo.com +###ad-SNSSplashAd +||duo*.top/Runtime/js/psData.js +ltn.com.tw,stheadline.com##.ad_w300 +@@||baidu.com/hm.js$domain=cainiao.com|dwz.cn|ramboplay.com|seo.chinaz.com +||oodcd.cn/pan/config/copy. +5eplay.com##img[width="1240"] +||nhbprf.xyz^ +@@/adverts/*$domain=onlychild.cn +||mikanani.me/images/Masha/ +52ch.net##div[style^="margin-top:5px; height:60px;"] +hao123.cn##.top_2_2 +||xiacaidd.com/xiacai/ad/ +||gtimg.com/qqlive/ +2345.com##.event1-hasList +focus.cn##.qhb-fixed +@@||nthu.edu.tw^*ad +||163.com/special/*_960/ +||yupoo.com/dapenti/5cfa8673/c6045c69.jpeg +douyu.com##.pendant-wrap +||manai521.com:88/bocai/index.html +baidu.com##.businessvip-wrapper +downkr.com##a[href*=".xitongzhijia."] +gamme.com.tw###bd +hao.360.cn,hao.360.com###top-full-column-tips +||gcddashb3.fun^ +huya.com###J_roomGg2 + a +feebee.com.tw###bottom-ad-after-search-result +hao123.com##.widget-topbanner +||main.jiukang.org^ +||dongtukj.oss-cn-hongkong.aliyuncs.com^ +||pipc.top^ +19lou.com##.zx-link +||hkmte.com/seo.js +||yxad.com/yxad/ +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video.min.js$domain=setn.com +||puma.com^$popup,domain=hupu.com +youku.com###ykBottomBanner +||ft.com/a.html +id97.cc##.fed-part-case > a +58.com###banjiaAD +||u0078.com^ +||9906g.com/js/jquery.js +||ifengimg.com/pmop/2017/*_w600_h793.jpeg +||jun01.oss-cn-beijing.aliyuncs.com^ +||ukkkmg.xyz^ +||iyuwkbo.top^ +||xg6hb.xyz^ +duba.com###J_BottomAdBan_bg +@@||getitfree.cn/wp-content/plugins/adunblocker/public/js/banner_ads_*.js +supportdap.online##.td-post-content > a[rel="nofollow"] > img +@@||blackmod.net^$generichide +||yigujin.cn/wp-content/themes/Three/js/cebian +win7xzb.com##.ware_gs +||gtimg.com/finance/js/st/p/cms/ce56e2f3303d17b6.js +||18av.mm-cg.com/*/7mmtv.gif +bjd.com.cn##.bjd-advertisement +btmulu.com#?#.item:-abp-has(> a[target="_blank"]) +||w7044.com^ +ouyaoxiazai.com##div[id^="cs_"] +||90vs.com:3389/zs_img/.__ +soft4fun.net###xad_mu +||78dm.net.cn/acg_201*_760 +cnblogs.com##.bannerbar +spbo1.com##td[width="100%"][height="18"][bgcolor="#ffffff"][align="center"][colspan="13"] +msn.com##.ad +||loli.net/2023/05/08/w4aGFUIVmKgOT78. +ruyo.net##.textwidget a > img +news.mydrivers.com#?#.news_info > p:has(> a[href^="https://dt.mydrivers.com/"]) +||68287zubo85737.com^ +autohome.com.cn###packetsWrap +||5jzu5t.com^ +||sd173.com/images/ +||douyu.com/member/gamegift/gameList/ +qq.com##.notice[class^="jsx-"] +||nubcdaqa.xyz^ +szhk.com###h_banner +xunlei.com##.mini-pop +||utlove02.com^$third-party +||iyf.tv/play/$xmlhttprequest +||souche.com^*.gif +ganji.com##.house-ads-img +||wrtjojn.xyz^ +||a.tainengchong.com^ +docsmall.com##.modal-connection.show +ettoday.net##amp-embed[type="dable"] +97hj.net##.widget-zfb +||hdxyj.icu^ +||itv.hexun.com +||xrrhwgj.xyz^ +||masturbation22.com/d/ +||ruliaoqi.com^ +||azyuuk.xyz^ +||eqcwpeo.cn^ +vpsdx.com##.container-fluid > .gsfha3 > .gsfha3 +baidu.com##div[style="padding: 20px 9px 20px 10px;widget:250px;height:250px;"] +||cvfgere96.cn^ +newcger.com##.banner_recom +||ffdafx.xyz^ +5iyq.com##div[class^="index_ad"] +||img.3sjt.com^ +##.AD_TAC_BOX +/ad_iframe. +||bkjia.com/bkjia/js/banner +##.main-content > .a2b3 +||kxdhrqz.xyz^ +||molimao.top/ad*.js +gasaq.com##.guanggao_ime_big +||pblymbu.cn^ +###everydayadv_mask +||bytravel.cn/images/t/usa_250_120.gif +||ssp.moeli.net^ +||28t1ya.cn^ +.com/ads_ +ifeng.com##.mr_top_box +||jia.com/js/zixun/news.js +||baixing.com/widget/ +||lgmi.com/windows/*-Advert. +codejie.net##.gg_banner +@@/fingerprint2.min.js$domain=csdn.net|neets.cc|passport.vpgame.com|shixiseng.com +||m1.we556.com^ +track718.com##.track-adsense-ad +||bendibao.com*/tuangou.gif +||tdjdpyrt.xyz^ +||diskaa.com^ +zh.moegirl.org.cn#?#.swiper-slide:has(> a[href^="https://m.tb.cn/"]) +||voc.com.cn/adsClick/ +duangks.com###a_d_sidebar +||bnalzlv.top^ +||jlwz.cn/js/xf*.js +||shangxueba.com/ask/images/woxiaoyun.jpg +m.youku.com##.cmt-more +/adPlat/adPlat_ +|http://*.in/ad/ +||f2dsex1.com/public/fb*.png +@@||dydog.org/*/DPlayer.min.js +3g.baidu.com,m.baidu.com,m5.baidu.com,www.baidu.com###banner_call + div[id] +zuoyebang.com##DIV[class^="questionQRCodeWrap_"] +gamer.com.tw#$##BH-bigbanner { position: absolute!important; left: -3000px!important; } +||kwyamu.xyz^ +healthylives.tw###contentBox > div[style^="width:336px;height: 280px;"] +olevod.com##.L1 +||thisav.com/player/video-js-banner/ +gezila.com##.tishi + dl +/hao123_api/api/cpc/* +||grondrens.com^ +xc6b.com##.chao_ggw +||jiasule.com/static/js/http_error.js +||xuehi.cn/reward/reward +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_left > [class]:-abp-has(span[data-tuiguang]) +||nsjnmx.icu^ +ithome.com##.-hongbao-container +||maxun103.top^ +.cam/ads/ +##div[id^="em"] > a[onclick^="em"][max-width] +||faloo.com/ou/site/ +ludashi.com##.div_text +baidu.com##.content-adv +||chinaqking.com/images/qkw/jobApply1.jpg +@@||cmbc.com.cn^*ads/ +###bd-hl-content +##a[target="_blank"] > img[src*=".ikstatic.cn"][style="width:100%;height:100%"] +@@||tvbanywherena.com^$generichide +||eiv.baidu.com^ +tingroom.com##a[href*="weidian.com"] +||lkiterl.top^ +||xingwangzz.com/123/ +.gif$third-party,domain=m.7ktw.com +bing.com##.OpInNwWndw +o8tv.com##.myui-panel_bd > .col-xs-1 > a[target="_blank"] > img +@@||www.ruanyifeng.com^$csp=script-src 'self' * 'sha256-0McqMM66/wAVZmxF6zXpjNsb1UMbTl4LXBXdhqPKxws=' +||daima.ssata.cn^ +msn.cn##gaming-discover-strip +iyaxin.com##.huand3 +hexun.com###videoLeftAd +||a1.99966.cn^ +##a[href*="/ads/adscenter."] +@@||ads.cdn.tvb.com^*.key +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_list_and_rank +##.gg_pc +finance.sina.com.cn##div[class^="side-btns-"] +||ctmrso.xyz^ +||dytkgl.icu^ +pansearch.me#%#//scriptlet('prevent-xhr', 'adsbygoogle') +to8to.com##.float +||s1.hanlinzhijia.com^ +||heiye.cc/js/bancity. +qq.com##img[data-module="advertisement"] +||buzzhand.com/images/$subdocument +.qidian.com/floatOpBox. +||595image.com^ +###eis_pad2 +ithome.com.tw##.ad-text-in-middle +||bcqnbge.cn^ +||sinaimg.cn/finance/ny_live*.js +mydown.yesky.com##.main_left_advertisement +oschina.net##a[href^="https://citiccard.wjx.cn/"] +gaoqing.la###sidebar-follow +||dy8c.com/JieShaoBu-secret/uploads/hongbao +chok8.com##div[onclick] +@@/sensorsdata-$domain=aixiaoyuan.cn|zkh.com +||99mst.com/upfiles/adv/main02.jpg +||dugapiece.com^ +luyixian.cn##.side +##.gpt_ads_title +91danji.com###bg_ad +||imgsrc.baidu.com/*/pic/*.jpg$domain=8727ck.cc|8726ck.cc|8724ck.cc +||haoqu99.com/d/haoqu/haoqu +baidu.com##.na-ec-waterfall +||fzpzrqou.icu^ +||gavbus*.com/assets/common/js/admenu.js +||lahoo.ca/api.php?mod=ad& +manhuagui.com##.w250 > .mt10[style="width: 300px; height: 250px;"] +19lou.com,cqmmgo.com##.ad-place-logo +firefoxchina.cn##.layout > .banner +||ulwfys.xyz^ +dujiaoshou.cn###ad1 +||um5xcgngmart.xyz^ +@@||annhe.net^$generichide +@@||ifengimg.com/a/201*Player +||assets.msn.cn/bundles/v1/microsoftNews/latest/placement-manager.*.js$domain=microsoftnews.msn.cn +||xkzzz.com/zb_users/plugin/MoreLinks*/show. +sina.com.cn##.m-p3-ad +||xmm.wxc.cc^ +||alllget.com^$third-party +douyu.com##.layout-Slide-banner:not([href*="douyu"]) +||nuhgpx.xyz^ +##a[href^="/hy-"][ontouchstart] +||yhtpsy8888.cc^ +nick20.com###body_page_sharer ~ table[width="100%"] +douguo.com##.mbs +||bootcdn.net/ajax/libs/jquery-cookie/*/jquery.cookie.$domain=zaixianjisuan.com +||107.167.22.*.gif +||bcc878.com/js/abc/ +##a[href*=".rookiego.com"] +||dsbudkwq.xyz^ +lahoo.ca###diyrighttop +ulifestyle.com.hk#$#body { overflow: auto !important; } +||11.mydrivers.com/drivers/ +159i.com##.a1d +27ka.cn##a[href*="/go/"] +pornbest.org,ptt.sex##.btn-group + .row +||zxpgfl.xyz^ +@@||newver.api.dedecms.com/index.php$subdocument +||makaidong.com/img/ +||soft.mumayi.net/images/download.gif +baidu.com##.text-link-ads +china.cn##.search_RightShow +||uqrcuxp.cn^ +##.ad990x90 +##.ad-text +/js/showgg.js +brtn.cn,btime.com##.business-item +##.bottomSponsor +/tuiguang/*$domain=~jikexiu.com|~jikexiu.vip +||ifjslio.top^ +||zrkksps.icu^ +||iqiyi.com/marketing/*/oppo. +duba.com###oneone +blog.163.com###topbar_gachaArea +||tqtqvb.xyz^ +tw.beanfun.com###flybeanfun +ebb.io#%#//scriptlet('set-constant', 'ga', 'noopFunc') +||omgnqu.xyz^ +/ab_res/pc/fixed/fixed.js +||poke88.com^ +||wckkl.online^ +3g.qq.com##li[id^="feed-omgad-"] +||tengfun.com/attachment/*/w_1200 +78dm.net##.add-980 +hao.rising.cn##.bd-lmhot +/BadwebRemindPage.aspx?param=$popup,third-party +||cosmo001.top^ +||gnyuhzd.icu^ +||mvcat.com/ad/ +||ad.52av.one^ +||nddld.cn^ +159i.com##.a4d +360.cn###weishi-alert +##a[href*="bjty"] > img[src*="imgsrc.baidu.com"] +||cpro.bdrmb.cn^ +||hoopchina.com.cn/web/ad/ +news.qq.com##.time > a[style="position: absolute;top: -8px;left: 296px;"] +today.line.me##.adModule-root +||xjtosdof.icu^ +feed.baidu.com##a[data-type="ec_ad"] +/wamobantong.oss- +||cnzz.cn/badu.gif +baikequ.com,lkyw.net###bottommob +i-part.com.tw##.newAd +||sh996.dftoutiao.com^ +/tigtag_custom/include/couplet. +||ti4la.icu^ +9u8u.com##.tc-box +baidu.com##.qb-other-answer-wmad +m4fz.com##a[data-etime] +||pic50.pingguolv.com^ +rent.591.com.tw##.listRight-ad +||ckxxbao.com/templets/default/js/wx.js +iqiyi.com##.banner3 +rjfcw.cn##li[style*="1200px"] +jianshen114.com##.index_temp +esu.moe,esu.wiki###siteNotice +||yprdmnlo.xyz^ +jd.com#@#.ads-content +||fx168.com/am.js +##script + .header_rmb +hitime5.com###gg250 +||images.sohu.com/cs/ +##.a_pb +||inping.com^$third-party +/ifeng_jdttemplate.js +||sssvd.china.com^ +/u/_sponsor/* +ssuip.com###mask +||vtbfgnf00.fun^ +||kandaju.net/js/js2. +||dwq661.biz^ +||cdncg.com^*/peiyinquan +||mysteelcdn.com/gg/ +ttshow.tw##div[id^="ad_article_"] +||lewrutl.top^ +||kuresdd.top^ +||oiu09.cn^ +pcsoft.com.cn##.gsxzdl +||luolitang.com^$third-party +hao.360.com##.licai-right +||localau.vip/plugin/ad_ +||mlzjepc.xyz^ +@@||xnimg.cn/n/apps/profile/modules/tuiguang/ +||liisex.com/images/banners/ +||qixin007.com/webbanner/ +||neess105.top^ +||tphcrjth.xyz^ +@@||pptv.com/webdelivery/webafp?cb=loadAdStatus&*sports.pp +||tufzdj.xyz^ +php.cn##.layui-show > UL > .top-img +||qqjia.com/images/ad +@@||cnbeta.com.tw^$generichide +||gaosan.com/js/b.js +||bnextmedia.com.tw/feed/fetch.js +||ca.cbsi.com.cn/rpv? +ifeng.com##.advmark +fx168.com##div[class$="_ad"] +||weiyun.com/cgi-bin/tianshu_get?position=4& +||iqilu.com/static_files/richmedia/ +||dataryon.com^ +c.biancheng.net##.ggxc-box > a[target="_blank"] > img +ggjav.com###ads_6 +##.dplayer > .tips +ziqiangxuetang.com###tutorial_btm +i.maxthon.cn##.module.tools-main[data-s-n="bottom"] +/mmday/hgame_ +||s8.pw^$third-party +1688.com###cpm-ad +evget.com###popelevencenter +sogou.com##.mobad +5217kdy1.xyz##.alert-success + center +egame.qq.com##.lurk-dialog +pcbaby.com.cn###jpopWinBottom +@@/adsystem/*$domain=adcenter.dhgate.com +||mobads.baidu.com^$third-party +ssr.tools##.asb > div[style] > a[target="_blank"] > img +fuliba2021.net,ypojie.com##.orbui-post-footer +douban.com#?#.rec_topics:-abp-has(>.rec_topics_name[href^="https://erebor.douban."]) +/pcbeta\.com\/data\/cache\/(?:common)?_[a-z]{14}\.js\?/$script,~third-party,domain=pcbeta.com,match-case +||cvmuia.xyz^ +||acfun.cn/appSpreadContents/danmuad/ +banjiajia.com##.register-ten +||a.78yx.net^ +||m1905.com/asp_js/k.js +baidu.com##.pop-manager-view-containter +baidu.com##.afd-ad +kaifu.com##.news-t-adv +jitashe.org##a[href*=".makeding.com/"] +||bmxvxl.xyz^ +eastday.com##.ssy_right +badmintoncn.com###bottomad_big +chinanews.com##a[href*=".jiuxianfeng.com"] +finance.sina.com.cn##div[id^="st01_cont0"] +52life.cc##table[style="margin-top:0"] +xiaoz.me###mygg +||rivdxb.xyz^ +||gzzkjdam.cn^$third-party +||trebleperfect.com^$third-party +kaka12345.cc###main +||m.ybstwl.com/public/tpl/m2/js/ +||mzyz.com/image*/tj/ +||qiyipic.com/common/*/250-230. +||adsage.com^$third-party +avbebe.com###content > div.single-post > div[align="center"] +163disk.com##.gg_990_90 +@@/sensorsdata.$domain=36kr.com|binance.com|by56.com|canon.com.cn|chuanglan.com|fenbi.com|guancha.cn|imooc.com|kuque.com|modian.com|saicskoda.com.cn|shanbay.com|tianyancha.com|ttcdw.cn|xinrenxinshi.com|zzjiasuqi.com +pixiv.net#@#.ad-footer +||skdunkig.xyz^ +||c114.com.cn^*/js/ad_load-new.js +||phcrjth.xyz^ +letv.com##.newyear_red_wrap +||changsha.cn/front_js/site_ad/4/site_ad_284.js +||birdmedia.com^$third-party +##.pagecon + .ad1 +||xiaoma.com/kf.php?arg= +||iask.cn^*.data. +pcauto.com.cn###PcPoPmarket +guofs.com##.style2 +tiexue.net##a[href*="game.tiexue."] +##.opt > a[target="_blank"] > img[src*=".360buyimg.com"] +baidu.com,bdimg.com,tieba.com##div.thread_item_box[style="position: relative;"] +@@/needsharebutton.min.js$domain=leetcode-cn.com +omnitalk.com##td[bgcolor="#ffffc8"] +||chinagcdxyjng.cn^$third-party +||wiwlqc.xyz^ +||maxun066.top^ +||ad.ettoday.net^$redirect=nooptext +baidu.com##.eye-catching-tpl-container +##a[href*=".bilibilitool.site"] +###lovexin12 +@@||hmvod.com.hk/website/static/skin/images/share/ +||goupu.org/1files/guidebar/ +114la.com,78dm.net,chinairn.com,chinanews.com.cn,dav01.com,qncye.com,qzwb.com,silisili.in,silver.org.cn,solidot.org,ylmf.com##.adv +hao123.com##.cn_tips +lm-us.com#@#.advertisement_above_footer +||yximgs.com/bs2/adcarsku/sku9c0e68cc-2f12-4e47-a340-a7293ee88c88. +||alicdn.com/img/ibank/*_794019354. +yyrtv.com##li[class*="baidu"] +||asserts.avple.tv/file/avple-asserts/ad.js +||dzwww.com/data/js/asp_$script +##.ad-cell +mydrivers.com###track-link +||jxjpnd.xyz^ +##.infomation + #notice_container > .event-notice +||kugoucdn.com^*?_t=$xmlhttprequest +##div[style="display:none;"] + script + #container.container +fuyang.net###portal_block_474 +chinaz.com##.adSpon +1688.com###cpm-ad-2 +u17.com##div[id^="u17-advert"] +||xltmjevd.xyz^ +xineurope.com###qmenu_menu + .wp +||newspage.xilu.com/model/visitlog.js +||vzmz.com/template/paody/aaaa/357.js +~houdask.com###kfivtwin +||entry.baidu.com/rp/home? +||33yq.org/static/1. +sgcn.com,wangjing.cn##.fad +.top/ads/ +3dmgame.com##A[href^="http://web.3dmgame.com/h5/game?"] +eastday.com##.golden_adv_1 +tbtdg.com##.s11text +###js_ads_banner_top +||toutanymm.asia^ +||qjoges.xyz^ +jrzj.com##a[href^="http"]:not([href*=".jrzj."]) > img[src^="https://img."] +||xh33g.net^ +||cntsgsd.top^ +lihkg.com#?##rightPanel div[id^="page-"] ~ div[class] > div > div[style^="display:"] ins.adsbygoogle:upward(div[style^="display:"]) +||1.yuexw.com^ +fastadmin.net##a[href^="https://www.fastadmin.net/go/"] +||w0057.com^ +/zz/*_box2.txt +||11.yiqig.cn^ +##div[align="center"] > a[href^="/url/"] > img[src*=".qpic.cn"] +foodmate.net##.zx_ad +eeyy.com##.top-bg +##.ads02 +hgitv.com##.xinwen_right_gg01 +||a.armystar.com^ +emumax.com##.tbanner +ifeng.com##.yy_right_bottom +||ulink.cc^$third-party +baidu.com##.app-side-ad +iqiyi.com##.iqiyi-shangcheng +/ad-specs. +duba.com,newduba.cn##.side_game +dzbhdm.net##img[width="950"] +_ad_images/ +||hbzjht.com^$third-party +fuyang.net###portal_block_502 +||nanaimostarkle.com^ +##a[href*="/tg.602.com/"] +||qpigoa.xyz^ +||paopaoche.net/skins/count.js +||otxlhpm.xyz^ +||zantj.com/diao +##a[href^="http://ad.doubleclick.net/"] +||zzbaike.com/main/host +||alicdn.com/img/ibank/*_392352300. +||beryt111.fun^ +||jokerlu.com/upload/vod/ +qq.com##.ad_670_90 +ilvruan.com##.site-AG +||cenyou.net/wp-content/uploads/1200-200. +@@||mcbar.cn^$generichide +h5.17k.com#$#html { overflow: visible!important; } +iqiyi.com##.mod_focus-index_list > li:last-child +||v1.kwpewga.cn^ +iask.sina.com.cn###daily_topic_flnr +||ipqajyy.icu^ +||dzfzak.cn^ +||yjcf360.com/ad. +szxx.com.cn###A1 +tuwan.com##div[style$="height:90px;"] +@@/image/ad/*$domain=gashpoint.com +360.cn###openCenterScreen +bejson.com##.alert-dismissable +wnacg.com#@#.ff-ads +ali213.net##.newright +51cto.com##.upopbg +.com/ad.$~script,domain=~ad-tuning.de +||zk.91post.com^ +yahoo.com###module-appPromoBanner +icbc.com.cn#@#.adRight +||5442tu.com/style/ads5442.js +suizhoushi.com##div[id^="sznew_ad"] +@@||javedit.com/d/js/acmsd/thea0. +||szmnk.cn^ +.tv/style/vue.js?v= +||ytse*.top/Static/Home/GongGao/img/ +||haiyuer.com/didi +||u0081.com^ +||tengzhihh.com/image/*-950x277. +cw.com.tw##.article__promotion +||ewjhic.cn^ +qiuziti.com#@#.banner +||2ccc.com/images/show/ +|http://*.tw/ad/$domain=~ruten.com.tw +##a[href*="/h91.tv"] +5119.cn##div[class="downDz"] +||rjsos.com/channel/laomo_dibu.png +||a.duanmeiwen.com^ +||as1.m.hao123.com^ +||6651tp.com^ +wantgoo.com###FixModal +manwa.me#@#.ad-area +||atm.youku.com^ +##.adv-g1 +||bebohjhh.xyz^ +qq.com##._switchad +||justapp.top^ +||static.jfrft.com/js/main_list.js^$script,redirect=noopjs,domain=dilidili.wang,important +/ad/images/* +@@||img.ads.tvb.com^ +||birgga.top^ +hao.360.com#?#.cube-container div.cube-mod:has(span.adMark) +tingfm.com#%#//scriptlet('set-constant', 'can_run_ads', 'true') +||3dmgame.com/tools/gamead? +ddl826.pixnet.net#?#.article-body > div.forward ~ div[style^="position:"][style*="important"] +duba.com##.tempAd +##.topad1 +fuliba2022.net###focusslide +||tu6767109513.cc^ +||1200555.com^ +gamme.com.tw##.post_adwrpt +||pgieqr.top^ +greenxf.com###speed-downloader +/kg2.oss- +91wenmi.com##a[href^="http://www.91wenmi.com/xiezuo/"] +||myqcloud.com/wp-content/uploads/huoxingyun. +||xoqsxdpx.xyz^ +mydigit.cn##.view-hover[channelid="aitao"] +/lenovo/pc/piaofu2.js +##.adbox-bg.adscounter +||huibaihe.net/js/dddd.js +||go2av.com/for_ad/ +baidu.com#?#.rec-item:-abp-has(> .vbox > div > .appad-relate-rectpl) +||img*.365rich.cn/image/$image +||sinaimg.cn/large/a518ed97jw1eu4mxubbe6j209q01e3ys.jpg +||daniujiaoyu.com/js/zk +||xdazjxso.xyz^ +||qcohkm.xyz^ +3dmgame.com##.Indexadd-100 +||sinaimg.cn^$domain=aotu43.com +||66wwvv.com/js/ +||javazhijia.com/skin/ +mm-cg.com##.ut1_img_content_js +sports.qq.com##a[href="http://teramont.svw-volkswagen.com/"] +@@||googleads4.g.doubleclick.net^$domain=renfei.net +pconline.com.cn##.pop-huodong +/ad.php|$popup +_ad2. +hao123.com##.treasure-game +cztv.com##.ad_003 +||tw.jav321.com^$popup,domain=ucptt.com +||rou.video/_next/static/chunks/pages/fuli- +||wbgafrr.icu^ +||qdtzbbh.xyz^ +||mbalib.com/common/a_mbalib/ +||affyun.com/wp-content/uploads/2018/10/file.gif +||a.xue126.com^ +||mydrivers.com/img/2005/202112011849.png +||bilec.xyz^ +||above.tw/blog/wp-content/plugins/popups/public/assets/js/public.js +##.ggw +||win2008.info/gongyi.gif +/wp-content/plugins/upprev/* +||nahjzx.xyz^ +mail.126.com,mail.163.com##div[id$="_AdDiv"] +||qidian.com/Images/990x40_ +t66y.com##.sptable_do_not_remove +||lixiangmo.com^ +||speedtest.cn/assets/images/ce_ +.com/discor_list.js +itdog.cn##.gg_link +||yqlxkzs.cn^ +ptbus.com,weather.com.cn###duilian +||hqol.cn/up/ad/ +||8maple.ru/dzcm$redirect=1x1-transparent.gif,domain=8maple.ru +ptthito.com#?##main-content > div[style*="margin-top:"]:not([class]):has(> .adsbygoogle) +daniao.org##.sponsor +bmcx.com##div[id^="ggwz"] +@@||ssl.o.auspost.com.au +||jingujie.com/public/js/*html.js +dianping.com##.J_mkt-group-3 +||tyaqzjp.icu^ +||itqwesk.icu^ +meitu.com###meipaiFixed +yes-news.com##.notification +/xxgg/book.js +/lapi/sign/brandapi/getinfo +xhzyw.com###HtmlMoKua_752383 +mobile01.com###_popIn_recommend_side +||egidskiw.top^ +||ghgasdt963.shop^ +##.slider-ad[adid] +||nhjnw78.fun^ +@@/adblock_$domain=xingk.cc +ofiii.com#%#//scriptlet('trusted-replace-fetch-response', '"play_ads":true', '"play_ads":false') +bg3.co###interstitial_fade +@@||qiantucdn.com/static/images/adsbygoogle.js +||3987.com/statics/tow_skin/new_img/20 +ikjzd.com##.foot-advert-box +ceiea.com##.adclass2019 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.lot_wrap +heirui.cn##.index711-mask +||xindingwealth.com/js/39. +16888.com##.cardataclass +@@||ads.alafish.cn^$~third-party +||a.qinghua5.com^ +chinanewsx.com##.side-nav +58.com##a[href*="to8to.com"] +||eastmoney.com/cp/left_index.html +||cgqwgv.icu^ +3g.qq.com###header-mlcz +||shangqun.com/webforms/embed/ +##.hp_textlink_ad +||izwmfmu.icu^ +||yyyaih.icu^ +csdn.net##.post_recommend +msn.cn#%#//scriptlet('json-prune', 'configs.*.properties.slideshowWCSettings.interstitialNativeAds configs.*.properties.fullScreenSlideshowSettings.interstitialNativeAds properties.componentConfigs.slideshowConfigs.interstitialNativeAds properties.componentConfigs.slideshowConfigs.slideshowSettings.interstitialNativeAds') +boylove.cc#?#.stui-pannel__bd > div[class]:has(> div[class] > div[class] > a[href][target="_blank"][rel="nofollow"] > img[src^="/bookimages/img/"][src$=".gif"]) +||28kys.com/cpstupian/ +||huaban.com^*/ads +@@||icbc.com.cn/Portal_Resources/Common/AdCss/ +||fpfbbn.xyz^ +popart.hk###slideshow +qdmm.com,qidian.com##.qdRead_client +||binga01.shop^ +/300x250_ +||d.win10com.com^ +laohu8.com#@#.tweet-article +24kplus.com###custom_html-3 +qq.com##.app-qrcode +||aizhan.com/images/img/ios-sign.png +dm010.com##a[href*=".apk"] +dcfever.com##.col-md-right > div[style^="margin-bottom: 20px; text-align: center;"] +163.com##.uc-fixed-ad-wrap +5ifxw.com##.gg_300250 +||gp123.cc/20*ad/ +||xvbjctqs.xyz^ +||jialingmm.net/dm/tj.js +2c2.website,2p8.space,adultgao.com,caopop.com,caoporn.com,caouoo.com,caox.cc,gao1.cc,h3e.pw,h3y.pw,k88.club,me88.pw,p5p.space,se88.space,t2p.space,tb001.xyz,te88.pw,vwan.xyz,xhao1.com##div[style="margin-top:5px;margin-bottom:5px;"]:first-child +/index.php/Statistics/ads_show? +||afzhan.com/JavaScript/ad_Couplet.js +proginn.com##div[style*="width:1000px;height: 250px;"] +matongwu.com.cn##div[style="height:90px;clear:both;"] +||xcmfu.com/cp. +letv.com##.vip_popBox +hao.360.cn,hao.360.com###left_float +||1ny3r.icu^ +/js/cpv_fm_ +/adright. +||hahamx.cn/img/x.jpg +6fzd.com,fzd3.com###tuiguang +||houyi.baofeng.net^*.html +afzhan.com##.bannerAdv +||qziuwzn.cn^ +||3400.org^ +@@||img3.126.net/ntesrich/*/adControl-indexx-$script,domain=rjno1.com +5217kdy1.xyz##a[href$="/smsf.php"] +###playerAdvLayer +||gogorenti.wang/js/m_cp +howbuy.com##a[href^="https://www.howbuy.com/advertisement/"] +chchzhan.com,xxizhan.com##a[style^="position:fixed;z-index:"] +nowscore.com###toperAd +###table1[width="468"][height="50"] +||d0.xcar.com.cn^ +tw.nextapple.com##[class^="na-ad-"] +||yiwckti.icu^ +@@||muzlan.top^$generichide +||shbzpgs.cn^ +||sdfsad562.xyz^ +@@/images/adv/*$domain=gueizu.com +cableabc.com##a[href*="/img1/"] +||9tour.cn/x2/images/czmf.jpg +apk.tw##.postlist > div > div[style="margin:0px 0px 0px 0px;width:300px;height:250px;overflow:hidden;"] +||tyaduqq.icu^ +||fengniao.com*/pv.js +||chushoushijian.cn^$third-party +vidhub.me,vidhub.tv##.promotelink +||heirui.cn/static/hb_ +mydrivers.com#?#li:-abp-has(>.titl+:-abp-contains(/推*广/)) +||huya.com/leaf/*=vodadv&$redirect=noopmp3-0.1s,domain=huya.com +@@||shmeea.edu.cn^$generichide +mianbao99.com##.downApp +||tfzah.icu^ +91.com,beihaiting.com,guitarchina.com,hao123.com,site.baidu.com,sojson.com##.banner2 +so.com##.e_idea_wenda_spread +||jrzj.com/images/bgright_ad.jpg +@@||yiqifa.com/ad_images/$~third-party +ac.qq.com##.in-hd-mod +||gwivqo.xyz^ +baidu.com###ec_im_container +||iyisloo.top^ +.lu/ads/ +##.ggtop +ettoday.net###for-ec +cmbc.com.cn#@#.adBox +||hi.xiunm.com^ +||p.qlogo.cn^$domain=jumi.tv +||qzorwe.xyz^ +docin.com##.sider_gg +jia360.com##.hjadv +aotter.net##.ag-revenue +##.below_ads +18183.com###gsBtn +||img.sex169.info^*.gif +##a[href*="/hgcool360.top"] +||kunpeng-sc.csdnimg.cn/?timestamp=$subdocument,domain=blog.csdn.net +yomahub.com##.sidebar-slot +plus28.com##div[style="width:270px; height:180px;"] +||trip.com/partners/ad/ +@@||073img.com/*,*, +@@||r3sub.com^$generichide +||saeo.cn^ +||balmoralmkt.com^$third-party +mati.hk##.banner_middle +||88448.com/images/appkai980x100.gif +||sogoucdn.com/nstatic/js/bottom_shopping. +easylife.tw,ez3c.tw,softwarebrother.com##.popup_bottom_block +dlemm.cn,isiyuan.net##.themead +||difmnd.xyz^ +||a.xixiyishu.com^ +||gfdfegg.cn^ +##script + #coupletBox +mozhatu.com##a[target="_blank"] > img[alt="ad"] +||adrs.sdo.com^ +extfans.com##.b-ad-1 +18h.avmimi.com##body > table[width="100%"]:nth-child(2) +2345.com###abanner +||1sk27.fun^ +||u22099.com^ +||ctanet.cn/aqq/JS/ +||abczxw.com/skin/bbb/pc/js/bd.js +@@/ad/images/*$domain=37-express.com|vnnox.com +||g4y7uuk.com^ +||88148.com/UpFile/a/2016040849191350.jpg +||gd.189.cn/gz/promotion/$popup,third-party +rvlev.com,t66y.com#?#.tpc_content:-abp-has(>b:nth-child(n+40)>span>a[onmouseover="this.style.background='#DEF5CD';"]:-abp-contains(91TV)) > :nth-child(-n+45) +||4paradigm.com^$domain=sina.com.cn +||jieshengit.com/1*.js +||hsvchnsvncvvd.com^ +||gizlnr.com^ +hjenglish.com,hujiang.com##.lamu_banner +||wanwan.sina.com.cn/kb/ +||loli.net^$domain=9kanqq.com|acglover.me|hdsky.me|magnet2048.com|nulltm.com +||94ab.com^$third-party +||ozolei.xyz^ +||ithome.com/file/js/lapin-load.js +blog.csdn.net##dl[id^="yd_a_d_feed_"] +||xxxx68xxxx.com^ +boylove.cc##.dzxvovcm +||gouhb.com/skin/jww/images/20141029114*.png +||xc.mydrivers.com^ +||1.isanxia.com^ +||bdcode.35d1.com^ +||pajhvd.xyz^ +||nkdgnsfsk.com^ +@@||99ybcc.com^$generichide +##a[href*=".labsda.com"] +||kjdbcjkmc.com^ +jlpcn.net##.vodAd +||sohu.com/interaction/get/ +||05pg9z.com^ +||hrjctx.xyz^ +gucheng.com##.s_news_qc +.life/ads/ +||iwerioo.top^ +stock87.com##div[id^="Javascript"] +||caibaojian.com/d/uploads/*/atop- +||dsjhcgvhjsvc.com^ +||adxxx.info^$domain=avgle.com +ebiotrade.com###pop_banner1 +||sozi.cn/images/tj/hukead.gif +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-tg-content +||kdicked.top^ +||glruh.site^ +4gamers.com.tw##.aroma-tab > a[href^="https://www.4gamers.com.tw/r/"][target="_blank"] +||stockstar.com/*DUILIAN&t= +###advertisement_box +xgw5.com##div[style="z-index:10;margin-bottom: 10px;margin-top:10px"] +js0573.com###gotopr +||feptbh.xyz^ +military.china.com##.item_list > .medialist +rrjc.com###alertBox +zhidao.baidu.com##a[class="cur"][href^="/mobile/board?"] > img +||biddingx.com^$third-party +||gfjn5.xyz^ +||ljhbhy.cn^ +||kuaishang.cn^$third-party +2345.com##.top-browser-wrap +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="job"] > .c-border +###left_up_float_ad +||bzzxyyh.xyz^ +||s.yimg.com/uv/dm/scripts/syndication.js +||jads.co^$domain=avgle.com +||kwflvcdn.000dn.com^*.flv +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_right > table > tbody > tr > td > div:not(#con-ar):not([class]) +###top-ads +@@||qcheng.cc/x/statics/js/guanggao. +##script + #strl + div[style] +/ad1. +hz66.com##div[class*="lb_gg"] +||hao123img.com/res/ecom/ +||p0w2r.cyou^ +sogou.com##.pop-tuiguang +ftchinese.com#@#.AdsBox +||qgidskiy.top^ +||av01.tv/av01/floating_video_ads +||shejiben.com/common/widgets/ui/*zb.js +setn.com###aspnetForm > .rightFloat +||faxingw.cn/js/*ad +32r.com##.gsbbtn +hao123.com###layout-guess +||xuexi.hydcd.com^ +ifeng.com###minefields_bottom +||zrljzgs.xyz^ +||stockstar.com/api/?id= +||xywy.com/gk?a= +||script302.top^ +blog.csdn.net##.blog-slide-ad-box +dzbhdm.net##a[href^="https://www.dzbhdm.com/news/"] > img[src^="https://www.dzbhdm.com/"] +=loginExtAD. +||wwhsxwow.xyz^ +luanren.com##.luanren_dbhfad +||u22088.com^ +elecfans.com###fix-tdkad +lzacg.one##.content-layout .zib-widget > .textwidget > a[target="blank"] +||6pznpz.com^ +||thisav.com/nb/ +/wwwads. +@@||th7.cn/sanda2015/css/ads.js +||fol9v.xyz^ +||efgh.5lu.com^ +/img/hgame/*_1280x +@@||icbc.com.cn/icbc/include/AD_ +wnacg.com#@#.hlol_ad +||*xav.*/guang/*.jpg +||lkdybkwi.xyz^ +@@||notafree.host^$generichide +dy.xdf.cn,haoweichi.com##.ad2 +||kyjwtxei.xyz^ +||ypojie.com/wp-content/uploads/*.js +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,domain=wuyong.fun,important +||kppt.cc/zb_system/script/common.js +javdove.com##.recommend-link +||47.100.0.249/js/thea +||diyijjj.com/data/content +||zcfhi.cn.com^ +||100xuexi.com/CssModel/botad.js +duba.com##.ad_middleModal +||ad.886112.xyz^ +dm5.com##.index-side-code +55188.com##a[href^="http"]:not([href*=".55188."]) > img[src*="/portal/"] +ghxi.com#@#.social-item +||gridsumdissector.cn/gs.gif? +||lozmtk.cn^ +||7xdown.com/idcgg/ +car16.com##.modal-overlay +ruian.com##.ad_opera +porn5f.com#?#.row:has(> div.col-lg-3 > div[style] > div.carousel-inner > p.ad-title) +qq.com##.mod_float_banner +storm.mg##div[data-addom="storm_ad_wrapper"] +##div[style="display: flex;flex-wrap: wrap;margin-right: 5px;margin-left: 5px;"] + style + .container +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.per_list.j_per_list.per_list_frs +||nfmovies.com/pic/tu/a191124004. +||kt51.com/bjl666.gif +gamme.com.tw##div[class^="topad_"] +@@/ad_file/*$domain=7-11.com.tw|pxmart.com.tw +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_cover_head_wrapper +||cifnews.com/common/js/d/d/tea.js +@@||res.aidegelin.cn/dom2/js/com.js$domain=69xx03608.xyz +||aoakss.com^ +||img8e51zy4bg.com^ +||biancheng.net/templets/new/images/index_pc/fudaoban_ +||swerilxb.top^ +||35336.net/35336.jpg +||aixifan.com/apsdk/apsdk.js +baixing.com,leiphone.com,sina.com.cn##.top-banner +easyai.tech##.sidebar-inner > .widget_media_image:nth-child(n+2) +||hxwscp.cn^ +/js/index_adfloat.js +/lapi/sign/signapi/getinfo +||mhnzhlase.xyz^ +||xpkxahje.xyz^ +hao123.com##div[alog-alias="hot-goods"] +gov.cn###ippad01 +qidian.com###tr-banner +@@||baidu.com^*&cb=BaiduSuggestion. +gugeys.cc##.am-g +||cyretuf.top^ +||52che.com/Inc/FooterComm_ +||fp.nanrenwo.net^ +t66y.com#%#//scriptlet('prevent-setTimeout', '/tpc.?[A-Z0-9].?tml/') +||hexun.com/pc/js/dataPopup. +||jingjs.top^ +easylife.tw,ettoday.net##.idleAd +wasu.cn##div[class^="play_ads"] +||cnjxol.com/jxrbPaper/pc/static/js/scroll.js +mangabz.com###cc2 +||setoniale.com^ +||rmduuv.icu^ +qunar.com##.flight_ad +##.headxx11xiaoapp +||adunite.com^$third-party +gamer.com.tw###flyRightBox +||17house.com/zt/style/pc/js/zt_ +steamstats.cn##.card-link +||chinatruck.org/index.php?m=poster& +cardu.com.tw##img[src*="/ad_images/"] +##.tmall_bg15 +boke112.com,dzbhdm.net,mzh.ren,whsir.com##a[href*=".aliyun.com"] +youku.com#$#.swiper-wrapper > .swiper-slide:has(> a[target-url]) { visibility: hidden !important; } +||vdianying.cc/img/youhuiquan250.gif +||gbqgwes.icu^ +cnys.tv#%#//scriptlet('set-constant', 'config.group', '') +||2kandy.com/js/123/ +gz0668.com###framec32DR1 +||hiao.com/node/node_27508.htm +bitauto.com###folieAdNews +789ys.com,ruanyifeng.com##div[style*="important"] +vod1769.com##.banner_img +m.07073.com##.new_heads_bg +baidu.com#$##content_left > div[style*="display:block !important;"]:not(.result) { position: absolute!important; left: -4000px!important; } +||chinaz.com/c0g/ +gmgard.com,hggard.com###blog > div[style="overflow:hidden"] +||vip.min1319.com^$third-party +||betteredu.net/js/pop_tuiguang_ +||shnpetdn185.shop^ +||abc.douguo.com^ +18h.avmimi.com##body > p[align="center"]:first-child +zhicheng.com##.sf_1 +||doii.cc/mmm/ +||mqaoweu.icu^ +##a[href*=".68hantang.com"] +423down.com#?#li:-abp-has(> .pic[href^="http"]:not([href*="423down."])) +cool3c.com##.col-xs-12 > [class="board board-page board-Cool3c_SuperBoard board-new clearfix"][data-board="Cool3c_SuperBoard"] +hupu.com###topPub +/app/pcBanner/getBannerConfig/v2 +duba.com###qq_adv +@@||digiland.tw/advert.js +||ppluoli.xyz^*.gif +||jqbddp.xyz^ +iyf.tv#$#.player-side > .block { visibility: hidden !important; min-height: 390px !important; } +||wlrjy.com/assets/images/tuidc.png +||cndzys.com/huanlian/ +cupfox.love,hcomic.net,olevod.com##.swiper +vgtime.com##.vgart_top > img +##.qzdhf +hk01.com##.md\:min-h-\[90px\] +||yxcrcc.xyz^ +##.siteAnn1 +/ggvip/*.js +||kqwerp.top^ +lqz.cn###ad_index +boylove1.mobi##.fuafxnfq +sogou.com##.tg-box-1 +||applinzi.com^$domain=soyunpan.com +||z4a.net^$domain=aotu43.com +||enifdlaw.top^ +||hwuogmusthxfpk.xyz^ +exoav.com##.table +||ysxs8.vip/js/play_db.js +caibaojian.com##a[onclick*="aly"] +onebox.mydown.com##.fcAgain +##.widget_ads +||quzmtpxw.xyz^ +||nshypdry.xyz^ +~baidu.com##a[href*="/cpro/"] +||520click.com/ad.$domain=~video.520cc.cc +||nowhern.com^ +||bd1.flfgw.cn^ +=ad_top_slider& +:11211/t.js?MAC= +||cdnny.com^ +$script,third-party,domain=happymh.com|xiaoyakankan.com|52movieba.com|audio699.com|kan-tv.com|m.supfree.net|movieffm.net|xiaoxintv.cc|xiaoxintv.com|xiaoxintv.net +||zhuashi.oss-cn-beijing.aliyuncs.com^$domain=~zhuashi.com +mpyit.com##.cboxElement + center[style=" padding-top:10px; "] +mobanwang.com##.box960x90 +||wuliao.epro.sogou.com^ +taobao.com##.J_smartBanner +@@||paypalobjects.com/pa/js/min/pa.js +||n0488.com^ +||putonghua520.com/skins/10ym/3jin.gif +lzdcctv.cn##.widget_ssr > a > img +||ysdm*.ys137.com.cn^ +dmhy.org##div[id$="_ad"] > a[onclick*="'ad'"][target="_blank"] +||alicdn.com/img/ibank/*_2021817714. +||upaiyun.com/system/post_tile/new_web_banners/ +o8tv.com#%#//scriptlet("abort-current-inline-script", "document.write", "tips") +||taizexy.com^*.gif +udn.com##.sponsor-wrapper +cngold.org##.pageAdv +125.la##.forumlist_ad +4gamers.com.tw##video[src^="https://img.4gamers.com.tw/ads-media/"] +||cdntxt.com/m1/ +letv.com##.fl_app_wrap +##.floatAd +||crxs.me/upload/ad/ +||d5.sina.com.cn^$image,domain=~www.sina.com.cn +tianya.cn##.book-box +55188.com###top-pic +||stat.download.xunlei.com^ +@@||jsdelivr.net/combine/npm/$domain=ulifestyle.com.hk +||plotafb.com^ +||a304.top^$image,domain=hihbt.com +5173.com###ggFloat +||gw2cddpt2hao.site^ +/pushstart.aspx|$subdocument,third-party +gas.goodlife.tw###widgets +||milimili.tv/template/JOELEO/*.js +doudoudm.site##a[href*=".kxyike.com/"] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="right_game_recommend"] +hao.360.cn##.applist > .app:nth-last-child(n+2) +yiyouliao.com#?#.yyl-weiruan-ads-list-item:has(> div#small1) +m.autohome.com.cn###s2205 +||mkiterx.top^ +||ifengimg.com/static/js/*Adv. +||analytics.tv189.cn^ +mydown.com##.doubleDownload_bottom +||lejshxao.xyz^ +hao.lenovo.com.cn##.right.icons +ifeng.com##section[class^="fixSlide-"] +sdo.com##.mod-public-ads +@@||doubibackup.com^$generichide +||qyoqeq.xyz^ +shangyexinzhi.com##.img2text-adv_wrapper +||0o0.ooo/2017/01/13/58787d42bbad6.jpg +||dfcfw.com/public/js/left.js +||hendehy.com^ +||ifengimg.com/ifeng/sources/ +||alicloud.b-cdn.net/1.js +||stat.ijinshan.com^ +soyoung.com##.cash_back +:8080/js/v2.1.js$third-party +||vcjczwnc.xyz^ +baomidou.com#%#//scriptlet('set-constant', '_AdBlockInit', 'noopFunc') +xchina.co##div[style*="width: 300px;"][style*="height: 455px;"] +||521000.com/co/ +gametower.com.tw###tableAD +||7791.com.cn^ +qidian.com##.games-op-wrap +wnacg.com#@#.google-ads +8se.me##.push-bottom +233.com##.gads +@@/adimages/*$domain=p9.com.tw +||zhihucloud.xyz^ +0597kk.com###kk_content1_left_ad1 +2345.com##div[class*="act-navspec"] +||js.kt250.com^ +||qqyy.com/js/commAdv +/adhads. +||mvxz.com/img/ +||wyuwkbe.top^ +||kebi1.top^$third-party +||eaezoi.xyz^ +||baidu.com/api/wikiui/guesslike? +fenghuo.in##.mimi +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##style[id^="s-"] + script + div[id] +||picsuperfast.xyz/imageUpload/images/*AD_ +||yuntue.com/zb_users/plugin/MoreLinks*.php +||ssylieb.top^ +||bdasd.chdbook.cn^ +##.indexad3 +||l0ix1.site^ +||sahqoo.com^ +||magedu.com/wp-content/uploads/*/xwzx +||pimg2023.com^ +||beyers.cn^ +||douban.com/?unit=dale_movie_trailer_after_play& +tingroom.com###play_ggr +ganji.com###recommend_storeg_div +58.com###erweimaAd +||duomai.com^$third-party +||blntzf.xyz^ +ixueshu.com##a[href^="https://adapi."] +||wuxingruoyin.top/public/*/plugins/ +||hgyouxi.com/data/hgyouxiad/ +@@||mmstat.com/eg.js$domain=1688.com|taobao.com|tmall.com|tudou.com|youku.com +||uzelzfnj.xyz^ +m.youku.com###banner +||120askimages.com/ask/js/q +||log.mtime.cn^ +||inalzlo.top^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,wefan.baidu.com,xingqu.baidu.com##.tbui_aside_float_bar + .clearfix +blog.csdn.net###kp_box_www_swiper_ban +||mgzjin.cn^$third-party +##img[src$="/img/tianbo.gif"] +||qqvlsr.icu^ +||txmeeqz.icu^ +sigure.tw##.Ads-Sidebar +gamersglobal.de#@#.gg-box +||qqfby.com^*ad +user.qzone.qq.com##div[id^="fct_20050606_"] +hybbs.com##div[class^="adtop"] +vipthz.com###fwin_content_imc_attachad [style="WIDTH: 100%; padding-left:10px;"] > div > a[href][target="_blank"] > img +18-comicfrieren.xyz,18comic.org,18comic.vip##a[href*="//"]:not([href*="comic."]) > div[style] +||sd1v.yitongwl.cn/site/ +/V.aspx?Bln=$script,third-party +58.com#?#tr[sortid]:-abp-has(> .t > .ico.accurate) +onemanhua.com##div[id^="rn_ad_native"] +||t6.china-xian.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##body > div[ad-dom-img] +zzbaike.com##.left > .bottom[style] +hcbbs.com###framec9562h +||xyj321.com/static/zx/js/zx-con-jsq_ +||wttuuyd.cn^ +||tebohjhh.xyz^ +mydown.com##.advertisement_pic +@@||wenxuecity.com/include/editor/*/media/ad/ +/wagnzhantuiguang366.oss- +||ylgvlvbc.xyz^ +@@||hdslb.com/u_user/$~object,domain=bilibili.com +md.hkgolden.com#?##viewpage > .post:has(> :is(div[id^="div-gpt-"], .hkg-ad)) +||yhlpshi.xyz^ +malimali5.com#?#.container > .section:has(> a[href^="https://www.odancool.com/"]) +@@||douyucdn.cn^*-share-master/ +||aili.com^$third-party +ekamus.info#$#.adsbygoogle { height: 1px !important; } +||44jui.top^ +gamefy.cn,sitv.com.cn##.area > div[style="float:left"] > a +||vk922.com/img/ +360kan.com##.eb-mini +@@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl$domain=ff14angler.com|logi.im +||boylove.cc/static/js/yymh.js +||price.com.hk^$domain=discuss.com.hk +taiwancall.com##.gad +||p.zol-img.com.cn^ +@@||genshuixue.com/??/*/counter/action_ +||1cjzfyb.com^ +/banner468x60_live173. +pc841.com##.w300 +midifan.com##.top-aaa +||ebioweb.com/newsf/js/inpic.js +hqew.com##div[class^="g-ad-"] +###ad_text:not(textarea) +##.article-pop-up-ad +||xudarl.xyz^ +###ads_right +||bkxpph.xyz^ +huya.com##.tt[style*="1200px"] +oneplusbbs.com,wstx.com,xiaot.com###diy4 +||evkzqs.xyz^ +||gd.189.cn^*.htm?SP=$popup,third-party +||code.ditiezu.net^ +||gdwudmv.icu^ +house365.com###ft-login +##div[style*="jczunp.xyz"] +##a[id][target="_blank"] > img[src*="help-ol.bj.bcebos.com"] +||houvxliu.top^ +||aaaf.info^$script +||chongdiantou.com/wp-content/uploads/2019/02/pzb.jpg +wenku.baidu.com##.service-entry +||hwerilxu.top^ +||kycxhgrp.xyz^ +||16sucai.com/ads/ +##.ad-5 +||sooopu.com/js/contentad330.js +||gg.kugou.com^ +||86uk.com^$subdocument +||baigh8eosmgie02.site^ +le.com#%#//scriptlet('set-constant', 'isAdLoaded', 'true') +||uljoifw.cn^ +/html/709/*.js +jb51.net##p[style$="text-align: center; padding: 0px; margin: 20px 0px;"] +porn5f.com##.position_fix_bottom +duba.com###leftHot +||bvdenx.xyz^ +||hy90.cn^ +@@||tkec.com.tw/api/ad/ +||uaiosio.top^ +nick18.com,nick20.com###sex +||iuou.myadobe.cn^ +||soufunimg.com/imgd/viewimage/*/640x210 +wenxuecity.com###adt +##.indexad2 +qlwb.com.cn###scroll_box +||qnvod.net/qna/ +douyu.com##.PrivilegeGiftModalDialog +123.com.cn##.img-banner +uc123.com###right_elevator +||a.tbcdn.cn/s/tb-tracer-min.js +||happyhongkong.com/images/client/ +cl.wpio.xyz##.tpc_content > a[target="_blank"][onmouseover] +cartoonmad.com##table[width="737"] > tbody > tr > td[valign="top"][height="100"] +baidu.com,cntour2.com##.topBanner +auto-online.com.tw##div[style="width:336px;height:280px;margin:0;background:#000000"] +danyang.com###global-hd > div[align="center"] +fanyi.youdao.com##.dict-download-guide +acglala.cc##a[href*=".jigdh.com"] +appinn.com###sidebar > .widget:first-child +o8tv.com#?#.container > .row > .myui-panel-bg:has(> .myui-panel-box > .myui-panel_bd > .myui-vodlist > .col-lg-8 > .myui-vodlist__box > a[target="_blank"]) +||xkd*.com/layer/layer.js +goodcome.com.tw##.Phase2_BigAdbox +chajiaotong.com##div[id^="cjtad_"] +||citysbs.com/no/*/1190x60- +||127.net/external/js6public163_ +||iyf.tv/a/$xmlhttprequest +the-sun.on.cc#@##ContentAd1 +cztv.com##.ad003 +||lyuwkbl.top^ +||aty.sohu.com/v? +360che.com##.adver300_150 +news.hf365.com##.main-r > div:first-child +77mh.nl###bdtopbot +||oxkyaq.xyz^ +##.container > #dhshtml +bmvc2020-conference.com#@#div[id][style="width: 100%;"] > iframe[scrolling="no"][src^="http"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +17173.com##.pic[href*="Room"] +51xiazai.cn###xzbtn1:nth-child(2) +weather.com.cn##.ggt +||daima.wenkuwenku.com^ +://www.*.js|$script,third-party,domain=159i.com|r3sub.com|thisav.com +||rkxy.com.cn/js/text_ +##.ad300 +###cpro_container +:88/lighttpd/default/ +||uqwbcm.xyz^ +runoob.com#?#.sidebar-box:-abp-has(.re-600160) +||a1.sumiaowang.com^ +gaokao.com###J_fixed_popbox +edu.sh.gov.cn#@#.short-ad +58b.tv##div[style^="width: 300px; height: 250px;"] +||qekgcdcjr000.fun^ +||my4700.com/js/*.js +||qqhuhu.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###ecl-temai-general +###rightCouple + #leftFloat +##.assort-ad +blog.csdn.net##div[style="min-height:250px;"] +||m1905.cn/images/vod/vod*-90.jpg +||cdunwi.xyz^ +news.tvbs.com.tw##.sidebar_div:has(> div.nolazydiv) +@@||dayanzai.me/image/ad/$image +||16888.com/ajax/loadcardata.php +||hjfile.cn/site/hj-lzs/ +||bhktalt.cn^ +bibgame.com##.topicContent > font[color="red"]:last-child +||azkrya.xyz^ +ruten.com.tw###AdRelatedTitle +||56img.com^*/baidu-promotion.js +||n.baminw.com.cn^ +13tv.top,freehao123.com##.box +tiexue.net##.reloadCont > div:first-child +msn.cn#%#//scriptlet('json-prune', '*', 'list.*.link.ad list.*.link.kicker') +msn.cn#%#//scriptlet('inject-css-in-shadow-dom', '.ad-container, .vd-ad, cs-native-ad-card-no-hover, display-ads, .display-ad-container, .display-ads-container, .views-right-rail-top-display, #entry-point-hp-wc-banner, .me-stripe-title-subtitle, #displayAdCard, a[href*=".booking.com/"], a[href^="https://amzn.to/"] { display: none !important; }') +sogou.com##.tgad-box +itavcn.com##.mb_right > .mt8:nth-child(3) +||hjfile.cn/analytics/site/TrackEvent.js +##a[href$=".cc:8443"] +||jnlc.com/www/fund/newsmarket +##.wrap + #midBox +||ycwuoq.xyz^ +||abcd.cnhuoche.com^ +||enokouv.icu^ +||cdn.xiuting.cc/js/go016.js +sina.com.cn###ad_blk_fixed +||ctags.cn/9/j2.js +doyo.cn###article_top_down +||igo.cn/liuxue/js/slideBar +xiadele.com##.details-small-carousel +booktxts.com##div[style*="position:"] +||alicdn.com/kf/Hd5708bb280a64af781d74222ad3d8005w.jpg +/floatcaopron.js +||huya.com*/cache1min. +||chuantu.biz^$domain=aotu43.com +||ad-survey.com^$third-party +||69t49.com/floating/layer.js +image.baidu.com###imgCmsAdPart +douyu.com#?#.SharePanel:-abp-has(> .SharePanel-content > .SharePanel-contentTitle:-abp-contains(福利)) +||sina.com/rm/ +||srootshare.com/otmyjs/ +||ecma.bdimg.com^ +/alljs/alldl.js +||b7sw62.pingshu8.xyz^ +fang.com,soufun.com##.add1200 +gg-led.com##.regg +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_search\/pagelet\/search_ad +||tyisloi.top^ +||hgthpj.xyz^ +||1.pncdn.cn^ +||catwalkoutled.com^ +||pites.cc/js/top.php +/huya_promotion_content_ +||awoudsoo.xyz^ +/dayu2.html?channelCode=$csp=script-src +||brixel.cn^ +||vutjnt.xyz^ +||cidianwang.com/js/right +##a.hengfu > img.hengfu +||tuyiyi.com/tuyiyi/m.js +kpzpw.com##.header-pic +@@||16668tu.com/css/ad.css +||dingniugu.com^*public. +||itc.*^prod=ad& +smzdm.com##.side-stuff +pcdown.net##.bzxz +##.before_playing_cctv.yc +||pstatp.com/growth/mobile_list/image/bonus_ +||book118.com^*/js/crm. +||zutevd.xyz^ +qqyouyue.com##.table-responsive +stoneip.info###text-57 +123.sogou.com,web.sogou.com##.m-12[pbflag="guess"] +iqiyi.com##.m-hotWords-bottom +/xiwang/fumeiti.js +||ertlisw.top^ +jinti.com###mei +||netease.com/fz/interface/frontend/fz.do?pos=tongyong- +17travel.net##.ui_adblock +17yy.com##.t2_3 +||cnvmhzt.cn^ +###dy_card_dy +||mstkvnya.xyz^ +||aymwiq.xyz^ +gotrip.hk#?#._more_content_ > div._page_:has(> div.oath-lrec-player) +longzhu.com##.pop-up-button +cww.net.cn##.adlinkR +hao.360.cn###festival_baijian +163.com##.gkk_bj_yw +||live173.com//AD/ +tieba.baidu.com##.j_post_list_item[data-info^="\7b \"un\":\"\\u623f\\u4ea7\\u5c0f\\u7ad9\\u957f\""] +/cpc/*.ashx?u=$script,third-party +||ssjv1.com/dm/ +||z4a.net^$domain=9xav.cc +hk01.com##.min-h-\[250px\].mb-3 +||mitbbs.*/servicedata/static_ad.php +||liuxue86.com/js/ideng/liuxue-show +plus28.com##div[style="margin: auto;width: 960px;margin-bottom: 10px;"] +news.mydrivers.com#?#.news_info > p:has(> strong:contains(双11红包活动推荐)) +99kubo.tv##table[width="970"][height="260"] +||tuwan.com/events/courseiframe? +32r.com##.gsdbtn +||jiaoben.ganji.cn^ +||dangbei.net/img/db/downdangbei.gif +/script/ads. +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###replyBusinessImg +@@||88box.com/images/ad_images/ +||htrurb.xyz^ +||ithome.com/images/1068.jpg +||jinhua.com.cn/ad_pic/ +hcbbs.com###fwin_dialog +##.broadcastMe[style="width: 1200px;"] +||7vnkf.online^ +ifeng.com##.newAdImg +so.com##li[data-id^="cm_display_init_text_"] +||ivbgpax.cn^ +##a[href="/ht.html"] +||a.huocheba.com^ +||5251.net^$third-party +||qeedaa.xyz^ +||vfxrpl.xyz^ +||90oo.com/tp/msn.jpg +||edler.cn^ +3g.qq.com##.template_gdt_div_blue +chinaz.com##.kwLink +||acggd.com/4d22b/ +||xxsmad1.com^ +||vdggsd001.com^ +enews.tw##.newsCardForLeftAdGadCode +||8585go.com/recommend +ldqk.xyz,masuit.com##.ibox-content > .wow[id] +||juzi6.com/js/dp.js +||3337738.com^ +jingangjing.com##.free +||fenxi.com^$third-party +weibo.com##div[ad-data] +||sinaimg.cn/wap/project/blog_to_news_banner/ +||caixin.com/file/content/js/mobile_news_app_banner.js +||ydttxdqe.xyz^ +ifeng.com##.vAdbox +elecfans.com##div[id^="new-listAd"] +~h5.dilidili.wang,dilidili.wang#$#a[href*=".11h5."] img { position: absolute!important; left: -3000px!important; } +fsdpp.cn##.sidebox > a > img +||panpan.org/templets/ad/ +/tanad.js +1010jiajiao.com##.sbox +||tencent.com/developer/api/common/getAds +niutuku.com###downAD1 +||pajtll.xyz^ +house.yahoo.com.tw##.content_r > .rbox:first-child +||antpedia.com/include/js/view_news/l_banner_js.js +||xbiquge99.cc/js/dj +ruanyifeng.com#%#//scriptlet('prevent-setTimeout', 'checker') +||bnifdlav.top^ +||jingdianlaoge.com/static/js/360-displaywindow-advert.js +||api.dmcdn.net/all.js$domain=gotv.ctitv.com.tw +||javhoo.net/pop/pop.jpg +##.col-md-10 > .banner-table-block +tiexue.net##div[id^="g_d_"] +137.175.73.220,xnxxw.net##a[target="_blank"][rel="nofollow"] > img +hgitv.com##.index_gg01 +/img/ad. +##a[href*=".bsy3.xyz"] +nivod5.tv,nivod8.tv##.qy20-h-carousel__li:nth-child(-n+2) +jingdianlaoge.com##.leisure-popup +docin.com###docindex_ad +36kr.com##.kr-ad-home-flow-article +hmoeh.com#%#//scriptlet('set-constant', 'google_tag_data', 'emptyObj') +/pcswf/pcswf.js +||mrtlisx.top^ +||ezprice.com.tw/js/*_ysm_ +||analytics.21cn.com^ +right.com.cn##a[href^="https://jd.dangbei.com/"] +||penxiangge.com^ +||asfklgnbvx.com^ +downkr.com##.address-right > div > a[target="_blank"] > img +4399.com##BODY[bottommargin="22"] > TABLE[width="100%"]:first-child +||xpwlctfk.xyz^ +||wdoshbe.top^ +@@||tui.click^$generichide +||vjzjpt.xyz^ +ifeng.com##.yiyuan +pjtime.com###Couplet_l_small +dhaomu.com##.ceo-footer-h +wenku.baidu.com##.header-wrapper > .fixed-activity-bar +||easyliao.com^$third-party +||picgd.com/images/*.gif +firefoxchina.cn##.popup-small +las.ac.cn###img +###appad.cate +||tuqnwz.icu^ +##body.page > .popup +||rnwenpn.icu^ +@@||cmechina.net^$genericblock +||wnacg.*/1sdfdc1/ +.com/core/js/the_pf.js +auto.163.com##div[class^="ga ga"] +||dfsgppz.icu^ +ck101.com###wp > .videoAdWrapper +e-learn.cn###block-gyouer +dj92cc.com,djkk.com,tingqq.com#@#.share_list +jxedt.com###footer +taoguba.com.cn###tbgzInstallBG +||duba.com/dhads?id= +||kgymoc.xyz^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=linetv.tw +||s1.tuzhaozhao.com^ +tieba.baidu.com##.tl_spread +||yigujin.cn/tp/*_hengchuangfuwqi. +||krtlisd.top^ +||piksrie.icu^ +@@||ad.ourgame.com^ +||dmg-dd.oss-accelerate.aliyuncs.com^ +@@||seyise8.com^$generichide +||meishiba.com.cn^$third-party +||qqddc.com/homeSite/news/js/newsad.js +||hjapi.com/v1/pageSoftText? +||yhdm44.com/123.html +$websocket,domain=wap.yushuwu.cloud +||goutong.baidu.com^ +niusnews.com##a[href^="https://www.niusnews.com/index.php/main/gotoBanner/"] +udn.com###simplemodal-overlay +||163.com^*/boboData +duelmeta.com##.single-top-html +||vdggsd016.com^ +||live800.com^$third-party +gzmama.com###zone_banner_1_new +ip.sb##.rivencloud_ads +sci-hub.org.cn##.gs_red[style="color:#EB7F00"] +iqiyi.com##div[id^="div_theatre"] +||zdf3q.xyz^ +||xueaaaw.cn^ +||vupsnx.xyz^ +||zn46.com/images/*0x +||1.201980.com^ +||hao123img.com/res/js/common/erjiAdv. +||uvklgw.xyz^ +||szhongzi.com/js/ +@@/store_ad/*$domain=pcstore.com.tw +||f1.zaojv.com^ +||88lm07.com^ +||wnmoobz.icu^ +wandhi.com##.table-bordered +bilibili.com##.gg-floor-module +baidu.com##.invoke-app-san-container +wd.znds.com##.dxb_bc +##.ml_ad5 +tvboxnow.com##td[style="width:15%;height:100%;"] +@@||sax.sina.com.cn/video/newimpress? +||variflight.com/carnoc/ad/ +||gougou2018.com/js/item +||segmentfault.com/sponsor/ +||hoopchina.com.cn/topn +###lovexin14 +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=news.now.com,important +||xklrsj.icu^ +||acg.youku.com/webfile/*.jpg +||9fum.ifeng.com^ +||ads.yeeyi.com^ +wendangxiazai.com###ft_hb +||agefans.top/js/wap2-jm-ms.js +104.com.tw###aidma_588 +cwyuni.tw###banner > h2 +||avgle.topgirlsdating.com^$domain=avgle.com +||qcvf.ifeng.com^ +||ielgag.top^ +||zjliloveyou.ixiunv.com^ +||hixutb.xyz^ +||kncrya.xyz^ +alexa.cn##.importantList +||v.center^$third-party +/xxgg/pppp.js +||piclect.com^*.gif$third-party +||cctv567.com/b/ +||easyicon.net/gg2019/ +codejie.net##.h--banner +||blinxmi.icu^ +~fishmsg.net,~briian.com##.a_pt +||ad.byfuh.com^ +||3g.cn/baidualading/ +||hnyishidengbao.com^$third-party +||ac*.pingguolv.com^ +||zhev.com.cn/file/weixin/ +||hinet.net/radio/getAdcode.do +guba.eastmoney.com##.redian +51.ca##._51_a_c +||anjneia.xyz^ +niuacc.com##.yure +touzi.com##.pop720-box +||yzz.cn/global_gg/ +##a[target="_bank"] > img[src*=".360buyimg.com"][style="width:100%;height:auto;"] +||oyksoft.com/show/b. +autohome.com.cn##.union-ad-placeholder +||boplgt.icu^ +||kuaizhan.com^$domain=yuese46.com +taoguba.com.cn###joinTGB +159i.com##.a2d +2345.com###sidel_lvy +briian.com##div[class^="hentry-gad-mobile"] +||sina.com.cn/131/20150515/266.js +gebi1.com###fwin_dialog_cover +||serengeseba.com/static/view.js +/sxgg/12.js +:8891/v*/$script,third-party +/file/ads/* +||pv4b.com^$popup +4399.com,sxrtv.com,yundaex.com###ad1 +||i2wq4.icu^ +||kdgjsf.com^ +||sinaimg.cn/finance/hq_finapp_ad/ +||lw881.com/public/js/gw.js +cangku.moe##.slider +chinaz.com##.adfixbug +###tr_ad2 +##.vodads +||xvbnrh.xyz^ +||shouji.com.cn/static/v1/js/appinfo.js +||yinghua8.*/bar/ +||bjhockey.org/public/pc/video/test.mp4 +/afd/entry +cnbeta.com.tw##.cbv:not(#cb_share) a +miercn.com##.show-img-box +chajia123.com##.foot_dybox +cnfol.com##.allAd +||tw.beanfun.com/bfweb/NEW/commonlogin +sspai.com##.content hr:nth-last-child(-n+4) ~ p +qq.com,sogou.com##.cs_dropbox[pbflag="xialaresou"] +||ysont.cn^ +||22pixx.xyz/l/ +abbao.cn,tt1069.com#@##adcontent +||cnblogs.com/group/T2 +||kdoshbd.top^ +||mzhhdn.com/hongbao.jpg +||bd1.szhk.com^ +||cache.ltn.com.tw/js/cache_ads_h1.js +/AD2v1.1.js +guancha.cn##.full_nav1 +||hmwang.icu/skin/images/*.gif +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv###video-container + ul[style^="width:"] > li > img +||nyfstb.xyz^ +||kuakao.com/index.php?m=content&c=index&a=show_ad +manhuaren.com###lb-win +||mikuclub.*/pub/ +||xwvnhe.cn^ +gongkong.com###dull_left +###left_adv +||qqyjis.xyz^ +||33dav.com/static/js/banner.js +||8961.jianbihua.com^ +house365.com##.left_fudong_ad +||88lajs6.com^ +ac.qq.com###qgirlRefreshLead +||jiayu.net/comiis_ad/ +||xpicj6.cc^ +/delivery/al.php +||icqeou.xyz^ +ali213.net#@#.subscribe-container +/1xhtml?$script,third-party +||szdgl.cn^ +/pushstart.aspx?$popup,third-party +stock87.com##div[style^="position:relative;width:1000px;height:90px;"] +@@||softwarebrother.com^$generichide +czsp12.com##.iswindow +uc123.com##.header-push-container +||niubixxx.com/seo/ +duonaolive.com##a[href][rel="nofollow"] > img[onclick*="track"] +||1.gunsuo.com^ +nfuwow.com##div[style*="width: 1160px;"] +ifeng.com###optimusPrimeContentId +cnfol.com##.Ad310 +||rising.cn/js/haoAdData.js +||longdidi.top^*.js +||bjmantis.net^ +hao.360.cn###festival-theme > .left-entry +28hse.com###floating_left_div +###sign-ad +||vupload.duowan.com^ +ifeng.com##.ad200-2 +||upaiyun.com/wp-content/uploads/2016/12/wenzhangyouce +maguays.cc##.animate-bounce-up +||pengtu.cc^*.png +@@||xxxxx520.com^$generichide +juksy.com##div[ad-uid] +/cp2.gif?*=qc_ +||qhres.com/static/*/common/seed.js +||outbrain.com^$domain=wenxuecity.com +@@||static.hdslb.com/ad-images/$image +||phk.nmkstcrt.xyz^ +||yefu365.com/rebo/function.js +baidu.com###spage-top-banner +/gigi/ad/* +||shbzqgs.cn^ +||photo.*/native?tk=$third-party +||jdipsuma.top^ +423down.com##.content > h3 > a[rel="external nofollow"][target="_blank"] +||jd100.com/cwmpc/ +nick20.com##table[width="702"][bgcolor="#D1DDAA"] +search.bilibili.com#?#.video-list > div.col_3:has(> div.bili-video-card a[href*="//cm.bilibili.com/"]) +://abc.*.js?adv= +bbs-tw.com##table[ondragstart="window.event.returnValue=false"] +so.com##.js-busi-item +@@||wenxuecity.com^$generichide +ksbbs.com,kshot.com##div[id^="read_ad_"] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[id^="ecl-pc-game-"] +||kiiepofl.xyz^ +||chinaacc.com/upload/*_mjy_ +@@||gooogle.how^$generichide +@@||alicdn.com^*/tanxssp.js$domain=dlkoo.com +##.gg-one +hao123.com###append +||yahoo.com/gdsale/gdsale.asp$domain=beephone.com.tw +||i-gamer.net/promo_ +moe.best##.alert +=window.awall.adblockwalltemplatefetchdef& +x3cn.com#?#body > div#qmenu_menu ~ div[style]:has(> a[target="_blank"]) +||sexy-more.com^$third-party +99.com.cn##.hzh_botleft +php.cn##a[href*="/go."]:not([href*="Fwww.php"]) +||bian-min.com/javascript/a/detail.js +3dmgame.com##.fell_left_advertisement +||0hq6k.site^ +||so.com/com/ads? +17ce.com##a[href^="http"]:not([href*="17ce.com"]) img +||show.kc.taotaosou.com^ +||sc4mh.cn^ +||591hx.com/zyrk_dy/gwjl.html +||uqueae.xyz^ +qq.com###ay-tips-close + h2 +||ydstatic.com/fanyi/fanyi-ad-place/ +@@||hanjuwang.com^$script,~third-party +||hj8gf.icu^ +||imgoss2255.top^ +||xxsmad3.com^ +csdn.net##.fourth_column +||pcbeta.com/data/cache/_djwbhgprrtnmby.js +||q1.yyxwzx.com^ +###adv-2 +||ydazjxso.xyz^ +||vdggsd015.com^ +hao.360.cn,hao.360.com###header-patch +||gtxkze.cn^ +||ygh5.cn^ +||chinaz.com/imagead/ +airav.cc###air_top_banner +@@||pv.sohu.com/suv/ +||baidu.com/xda? +.cc/ad/ +||eiegkg.xyz^ +/gg54.oss- +hsex.men##div[style="margin:0 auto 10px;width:900px;height:250px"] +||ggcode.2345.com^ +||wdickee.top^ +||sjbaiduadv1.redou.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-health-pagelist-wrapper +||fkhxlz.xyz^ +qciss.net###lightbox +||bianxianmao.com^$third-party +/koukoku/*.gif +cnfol.com##.wid595AdBox +bt.cn,lotour.com##.btad +/web_ads/* +wenku.baidu.com##div[id^="html-reader-AD-"] +||hblarn.xyz^ +||16m.cc^$third-party +/xiazxvbgyjw220923.js +||uxxux.com/js/zd.js +||jkzbjv.xyz^ +||b4dg.life/love/ +||a3.jandan.net^ +ifooday.cn##.myzs +||guanjiabo.net^ +||jzb.com/website/fe/pub_js/dbclickshow.js +||cdfhidrk.xyz^ +v.shensgo.com##body > div[id][class*="animated"][style*="position"][style*="z-index"] +||pstatp.com/large/pgc-image/e8bd997e82874259a66207d2f77f0c6c +||11dyw.com^ +||geddsashb3.fun^ +||doujs07.shop^ +##.ad_headerbanner +home.firefoxchina.cn##a[title][track_key="sites_saoma"] +||hotavxxx.com/images/*96 +##a[href^="/archives/"] > .post-card > .blog-background[style*="gif;base64"] +||diaoyu123.com/cpro/show.js +-*-*-*-*.alpha^$script,third-party +1010jiajiao.com##.bdgg +||rntdqwc.xyz^ +||akjdbjkcbacj.com^ +||ky595images.com^ +cnforex.com##.mleft > a +||haowenwang.com/js/Header.js +24k99.com,fx168.com##.yy_guangao +||chinanews.com/fileftp/2016/08/2016-08-04/U194P4T47D36220F967DT20160804155100.jpg +||51yhzp.com^$third-party +duba.com,newduba.cn###J_FloorWave +||caqreg.xyz^ +||tyretui.top^ +user.qzone.qq.com##li[id^="fct_20050606_"] +##a[href*=".sudun.com/"] +pc0359.cn,pc6.com##.ad-download +||leryt111.fun^ +||ttgbnmk.top^ +e23.cn##div[id*="adv"] +world.huanqiu.com##.ad_bot +brushes8.com##.zjianad +@@||livew.l.qq.com/livemsg?pf=H5&ad$domain=m.v.qq.com +briian.com###main > div[style="width:100%; height:auto; margin: 5px 0 15px; background:#FFFFFF; text-align:center; padding:7px 0 10px 4px;"] +baomidou.com##.sidebar-content > astro-island +###kp-mid-sport.fed-back-whits +life.tw##div[style="width:630px;height:700px;"] +ltn.com.tw##.C3.boxTitle +##center > p > a[target="_blank"] > img[width="728px"][height="90px"] +###rightCouple1 +zol.com.cn###official_url +||rltdxt.com/files/h5/ +||poiejdhmkjcnd.top^ +||ihhmh.com/mg/show +douxie.com##.ndxBanner +||woaidu.org/images/20180802/3.jpg +||txzqw.me/attachment88txzqw/*.gif +||r.trwl1.com/s1/$subdocument +e0575.com##.tg1 +shouji56.com###gg_top_banner +||dzuht.cn^ +||zhimg.com/80/v2-503830bc48217331677fc5c7b67eee12. +||dshangyan.com/pc/advertising/ +||tom.com/adsender/ +supertaste.tvbs.com.tw###lightbox--ad +85tube.com##.block-album > .table > .opt +||913mj.xyz^ +csdn.net##.blog-column-pay +||a1.tbuz.com.cn^ +||googlesyndication.com/safeframe/$third-party +5054399.com,hitime5.com###gg +||cdazjxso.xyz^ +jable.tv#?#div.col-6.col-sm-4.col-lg-12:has(> div.video-img-box > div.img-box > a[href*="?banner="]) +||2529.com^$third-party +||buresdv.top^ +ct.999wan.wang#?#.container .card:has(> .card-body > .flex-fill > #ad_text) +mamibuy.com.tw##.content-ad-spa +||lixonj.xyz^ +||9duw.com/pic/ +qiushibaike.com##.shopwindow +||bdimg.com/static/wkview/widget/download_after_activity_new/download_after_activity_new_ +.xyz/o.js +||cm.baidu.com^ +##div[style="position: fixed; top: 0px; overflow: hidden; z-index: 2147483647; background-color: rgba(0, 0, 0, 0.5); height: 110%;"] +||ktyusid.top^ +chinamedevice.cn##.ads_img1 +||bdx.playnext.cn^ +||romiyee.icu^ +||ssp.hinet.net^ +weishangshijie.cn###wad_left +||88lajs4.com^ +##.mainbg > #s11navtop +||everyonepiano.cn/Public/*0x +sac.net.cn###rightDiv +||bosw.net/js/bos/*960 +||ycgfdf.cn^ +||irgxwk.xyz^ +xiuren.org###menur +||rkwxfi.xyz^ +||dytt8.com/js1y/ +||zzlong14.cn^ +||16sucai.com/images/*0 +kdslife.com###ad_swip +||a1.syfj.net^ +##.a_oscar1 +||lnifdlal.top^ +||kfqizu.cn^ +##.xzbox-gh +||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.news.yahoo.com|tw.stock.yahoo.com|tw.yahoo.com +||oppnfev.xyz^ +playzuan.com###ShouYe_ShangBu +||pwbuhb.xyz^ +||ltbyw.top/data/images/*.gif +||img.zuowen8.com^ +##a[href*="?register="] > img[src*=".douyinpic.com"] +||a4bj6.xyz^ +ifeng.com#?#.box_list:-abp-has(.tuig) +###videoADPIC +##.ads > #video_playr_sider +cocomanga.com#%#//scriptlet('prevent-setTimeout', 'loadErrorTip') +yahoo.com##div[data-content="廣告"] +@@||590103.idv.tw/advertisement.js +||muoizbtl.xyz^ +fwxgx.com##.baibaoxiang +hao123.com###leftbannerv2 +||zdw.w8.com.cn/p.ht? +||chinalawedu.com/js/zxkf.js +||dmr.cnhoney.com^ +||fl6n.com/adtop/ +easyicon.net##.page_big_adv +||18183.com^*.php? +||zgwvcv.icu^ +||duba.net/skins/2009/images/db300_250.gif +kdslife.com##a[href*="kds.2144.cn"] +||pupudy.com/images/wxrj.gif +||hanadrmc.xyz^ +||cdntxt.com/node/doit. +||p.junshifuxin.com^ +||itmsc.cn^*ad0 +||n2wqmr4lmaummar.xyz^ +mtrend.cn###morecontent > .morecontent_next[style] +1616.net###stool +ting89.com,tingshuge.com##.banner688_1 +://a.ads. +crsky.com##.Adown_v_gs +hao.360.com##.right-nav-bar-hd +playno1.com###m7 +||baigamp.icu^ +/assets/banners/600x100/* +itmo.com##.right-side-pop +5184.com##.fixed_bgg +||xmcdn.com/storages/97b8-customerservice/E7/5E/GKwRIJILApO8AALGLwMrioMa. +@@||cdn.bootcss.com/fuckadblock/3.2.1/fuckadblock.min.js$domain=share1223.com +hao123.com##.browsertip +||crfjxfoe.xyz^ +lenovo.com.cn##.coffee-top +sojson.com##a[href^="https://www.sojson.com/ad/"] +ishuhui.com##.a_xx_d +||kafuzcxr.xyz^ +lgn.yy.com##.m_left +ifeng.com##.h_top_box +###cat_intro_first_ad +||suiyishop.cn/zhuangxiu_ +||uczfl.com/data/content +1905.com##.mobile_ad_promote +.com/ad/$~image,third-party,domain=~mediaplex.com +||static.chinatimes.com/scripts/2019/ad2019.min.js +||159i.com/nd/b_slest.php +netfly.*,netfly.tv##.content > div > [style="display: flex; flex-direction: column;width: 100%;"] +downkr.com##.download-btn > .text-right +##.player-tt-rm.rm-list +||soaspx.com/images/iiszj.gif +jjdong4.com##div[style="width: 80%; text-align:center; margin-left: auto; margin-right: auto"] +fx168.com##.zixun_ad +tiantianzhibo.com###sliderb_container +acfun.cn##.right-activity +##.qpdb + a[href] +baidu.com##.sfc-image-content-ad-container +||super.bad996.com/*ads.js +||lsjxs.cc/js/html +||cww.net.cn/include/show.asp?boardID= +yxdown.com###highdown +niotv.com##.right_ad1 +||ggxwb.miguvideo.com^ +||xiaopi.com/statics/new_js/15.js +||7k7k.com/js/bg-img.js +xhzyw.com##.ads_bottom +poedb.tw#%#//scriptlet("abort-current-inline-script", "document.getElementById", "/#myModal'\)\.modal/") +mail.pchome.com.tw##.sceng +||eoof.net/PicZone/qzgg +dataguru.cn###bg +@@.adserver.$domain=litv.tv +douyu.com##.tab-content.promote +||1.feihua.net.cn^ +tw.yahoo.com###abu-live +fuliba2022.net##li[style="margin-top:5px; "] > a[target="_blank"][rel="noopener"]:not([href$=".html"]) > img +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > div[class][style]:not([id]) +||776.jstatic.xyz^ +||cdilm.cn^ +||thgthgfg.cn^ +||hexun.com/pc/img/diversionToWXBottom_ +40407.com##.con_tj +||news.99k.tw/open/open*.php +||lleo.top^ +||same.chinadaily.com.cn^ +motocity.com.tw###rotator +xuite.net###single-ad-300-250 +||r3sub.com^*0.gif +autohome.com.cn##.vocalcon-btn +##.leo-container .ssr1 +||3399.com/act/$third-party +mwrf.net##.uc1_focus_pics +###ad_banner +||orbxiul.xyz^ +||chubun.com/uploads/pic/img +||a2.xinhuanet.com^ +||j.sdqoi2d.com^$third-party +||histock.tw/ad/ +3d66.com##.down-adver +###__ads_dp +22vd.com##.widget_custom_html:last-child +toy-people.com##.article_insertAD +||ca.yangshengtv.com^ +/RenderLapinBlock? +||cwmlm.com^$third-party +||yueipaoo.xyz^*.gif +###header_ad +||dfejqmh.cn^ +||cqisam.xyz^ +starbaby.cn###top_ad_show +||diyifanwen.com/siteimages/jiqiren +||xchina.click/upload/*.webp +##.b_pr +acfun.cn##.pause-display +||cnzz.trafficmanager.net^ +##.box_con[style="border-radius:10px;background-color:#ff0000;padding:15px;"] +||ov8ct.icu^ +||bbxyxt.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_couplet +||dyguo.com/pc/nr336.js +||qheose.xyz^ +yahoo.com#?#.js-stream-content:-abp-has(a[href*=".promotions."]) +##.toy52_outer +||3987.com/skins/*201 +||fuoo1.top^$third-party +||gowinxp.com^$third-party +||241hs.com/js/jquery.js +||faxingw.cn/js/detailgcbox.js +baidu.com##.rightAd-skin +@@||show.g.mediav.com/s?type=$script,domain=miercn.com +||js.entm.top^ +||isky.ltd/skin/js/ad.js +rfidworld.com.cn##div[style="width: 100%;position: fixed;top: 0;margin:0;"] +feebee.com.tw###afsh_bsearch_list_top +||360buyimg.com/babel/jfs/t1/209256/22/21888/60206/627b7a6aEa5f2d78b/219868beb169203f.jpg +||eastday.com/assets/js/resources/detail/ +||to8to.com^*_bottom_ +###ads_inner +||90oo.com/tp/90232.jpg +||chaospace.fun/wp-content/uploads/*/tg- +nicekkk.com,briian.com###custom_html-4 +liantu.cn##.side > .h250 +mumayi.com##.clientBox +||ax1x.com/2020/06/14/NSoyHe.png +||npbtnl.xyz^ +||alicdn.com/img/ibank/*_1794478205. +/api/aaaac/list +||ygfgzmzo.xyz^ +||ip.sb/assets/images/*_ads. +###left_float + #right_float +||static.gaomaer.cn^ +iqiyi.com###middle_banner_ad_bk +||amuguu.xyz^ +||ruqwgb.icu^ +||jypvzd.xyz^ +wealth.com.tw#?#div[class]:has(> div[class] > div[class^="rytass-ad-manager-"]:only-child) +||fmkipgm.icu^ +||chahua.org/aimg/ +||0755rc.com^$third-party +nxpaaq.com#$##mainContent { display: block !important; } +xiuting.cc#$##chaptercontent { filter: unset !important; } +||huaren.us/Adverts/ +.com/a_d/ +##.adHF6 +wantgoo.com##.fab-ad +||njenlz.cn^ +.tv/js/ads/ +||jatfugios.com^ +duba.com##a[w="topad"] +baidu.com##.redenvelope-small +||chazidian.com/Statics/xly/huorezhaosheng.png +@@||gov.cn/scripts/Comm/AdRotator.js +###adv-fixed-square +||sofseo.cn^$third-party +||ytqeavc.icu^ +51live.com###waterMark +dailygh.com##.div_removeable +||yt-adp.nosdn.127.net^ +/ggao/* +##a[id][href*="/?aff="] +3yan.cn##img[style*="300px"] +@@/adx.$domain=tanx.com +jingyanlib.com##.adToastWin +||jsdelivr.*/npm/@bootcss/*/assets/img/aliyun +my0511.com###duilianrightdiv +sina.com.cn##[data-info^="ad_"] +chinaz.com##.txtAdBox +||runsky.com/phpstat/ +||bbuni.com^$third-party +?adunitid= +xinmin.cn##span[style^="position:fixed;right"] + a +||thcdy.co/baidu2/foot.js +||fqtljn.xyz^ +591hx.com##.banner_w +hamivideo.hinet.net#%#//scriptlet("set-constant", "myPlayer.adDisplay", "undefined") +||jxtest.bolecdn.com/player/*.gif +my0511.com###duilianleftdiv +||iuuwuk.xyz^ +/js/aa.htm$script +/jquery.modal.$domain=1909.me|8se.me +||k6syi.space^ +||dmzj.com/js/m_BtmApp.js +||xianzhenyuan.cn/data/attachment^$image +||1708t.com/js/jquery.js +||99zuowen.com^*/gg.js +||cadizer.com^ +||999db.cn^ +hao123.com###shortcut-box > .tip +##.ad-right-down +||xzrhvv.xyz^ +cnblogs.com##.c_ad_block +so.com##.g-a-noline[data-md*="sad"] +2345.com###kz +||dns.chuzushijian.cn^$third-party +||imgoss1380.top^ +||jmcomic1.me/exads +||huimg.cn/e/hd.e.wap. +||fuvbbjl.xyz^ +16fan.com##.item-newad +@@||ads.tiktok.com^$generichide +||tietuku.com/b975a9f7c494738b.gif +foodmate.net##.m[style="height:40px;"] +dizhanw.com,jiangjunzy.com##div[style="background: #fff;padding:5px;"] +||54new.com*/da/ +##.ad04 +||baijs011.xyz^ +||onxeacj.cn^ +||airav.cc/iframe/ +||av6k.com/templets/default/video-ad/ +||dm.zuowenku.net^ +news.pchome.com.tw##div[class^="adnewlist"] +||shbzhgs.cn^ +||autohome.com.cn/api/platformData/getFinanceBanner +firefox.com.cn,firefoxchina.cn###thside-left-banner +||me360.com/swt/swt.js +csgoob.com#?#div[class^="dark:shadow"]:has(> a[href^="https://www.k7csgo.com/"][target="_blank"]) +cocomanga.com,ohmanhua.com,onemanhua.com#%#//scriptlet("set-constant", "__jsadsuccess", "true") +||jgmywh.icu^ +/advertise/* +@@||gamer-cds.cdn.hinet.net/vod/gamer/*.m3u8^$domain=ani.gamer.com.tw +image.baidu.com##.sample0 +||law-lib.com/wstyle/images/gffirm.jpg +||17123.net^ +||pengwei168.com/addons/321.gif +||qdoeki.xyz^ +||demaxiya.com/v4/dd/ +finance.sina.com.cn##.f_app_screen_wrap +||1.yac8.net^ +djljz.cn###toolbar +it165.net##.adv728b +xxxsm.vip##.ad280x165 +||to8to.com/assets/wap//common/widgets/appGuide/appGuide. +||9j9zo.cyou^ +||x1fyw.icu^ +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=hoy.tv +||jmcomic1.me/static/resources/lp.php +||imgme.me/images/*.gif +||mediav.com^$third-party,domain=~dev.360.cn|~g.360.cn +||154.7.80.158^ +image.baidu.com##.imglist > .fcImgli +||m.yhdm.so/bar/yfgg.js +||hf365.com/0/14/31/00/14310068_933922.png +||cilimao.*/amaod/ +||k366.com/images/smxs^ +###bgframe[style^="position: fixed;"] +/m/i.php?id=$script,third-party +howbuy.com##.topBigAd +||tw.partner.buy.yahoo.com^$domain=cool3c.com +qianzhan.com##div[id^="baidu_ad_"] +##img[src$=".gif"][style="width:100%;max-width: 960px;height:45px;margin-bottom:2px;"] +||mldzwmt.xyz^ +beephone.com.tw##a[href^="http://www.beephone.com.tw/adlink.php?id="] +liba.com##.ad-split +||ytelc.com^$third-party +faayoo.com###footer_fd +im286.net##.im286-t +||3dmgame.com/page/img/shangcheng +||chengtongled.com/gg/ +###ad_right +@@||costco.com.tw/jsps/website/zh/images/location/AD +||hs.cnfol.com/Cm/Imgs/Load.gif +||127.net/external/js6public126_ +||uetlwst.top^ +iis7.com###QTGG +msn.cn#%#//scriptlet('json-prune', '*.*', 'adFeedbackData adType adServedUrls') +||ceisip.com/static/js/plugin.js +||66zhuang.com/public_2017/js/count-gou.js +||7dusx.xyz^ +||a.yellowurl.cn^ +zhujicankao.com##.eboxx +/lapi/sign/phonegameapi/getinfo +###playerJsvLayer.jsv-layer +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":50012654,"] +ltn.com.tw##.Slider > li.L1ad +||mmtalk.net/images/banner +||pincai.com^$third-party +hao.rising.cn##.baidu-banner +ncnews.com.cn##div[id^="ban"] +||2008xxx.com:888 +###netease_mail_footer +||baijs07.shop^ +||0575bbs.com/updateimeags/ +||tu3921276844.cc^ +66huacai.com##.soft-downUrl-list.underline +||chinanewsx.com^$csp=script-src 'self' * 'unsafe-eval' +@@||cdn.runative-syndicate.com/sdk/*/n.js$domain=onemanhua.com +||qkitery.top^ +brtn.cn,btime.com##.promo-item > a[href^="http"]:not([href*=".b"]) +||baidu.com/tb/cms/game/*_banner_ +||mifengtd.cn/ad- +||hhausq.top^ +||cycyw.com/qdj/ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [class] > [id*="00"] > ul +||dio66.net/images/*.gif +||tagtoo.co^$third-party +||ftchinese.com/a.html +##.subject_link[href$="/thread-index-fid-1-tid-12848.htm"] +||aryici.xyz^ +||bdad.123pan.cn^ +cnblogs.com##.h_ads +||eypqbjju.xyz^ +||xghylt.com/api.php?mod=ad&adid= +sina.cn#?#.page_main > .specSlide2Wrap:has(> div > #midThreeAds) +ifeng.com##.pic1000 +||zanghaihua.org/js/ +||zagyjnn.cn^ +##.spon-img[src*=".alicdn."] +.sinaimg.cn/large/008qC0LFgy1hutqvck5ufj30qe02i74t. +@@||media.jd.com/static/*/ad +||ktvtxir.xyz^ +||my0832.com/xyz/xx/ +||qpic.cn/wwpic/471270_J6SyU3sDRNuKUnZ_1680798399/0 +||rsvvfx.xyz^ +||szjjzs.com/js/piao.js +so.com##.garllery_ad +v2ex.com#?#.box:-abp-has(>.inner>div>span[style]:-abp-contains(Sponsored)) +naifei.im##div[style="position: fixed;bottom: -10px;right:0;z-index:999;width:250px"] +touzi.com##.pop720-bg +||hboav.com/guga/ +qingdaonews.com##.da66050 +||vvadz.cc^ +?key=$popup,domain=verystream.com +||egesdashb8.fun^ +blog.sina.com.cn##div[style*="WiDTH: 200px;"][style$="HeiGHT: 300px"] +||hulichuang.mobi^ +||twlmq.space^ +20-0.net###biedamadeyouchongtule-aa +@@||csdn.net/static/static/js/apps/popShow.js +/FduttjAlivqpo/* +/iframe/baidu_*.html +52pk.com##a[onclick^="ga"] +||iqiyi.com/player/common/adflash +||loveshang.com/api.php?mod=ad&adid=custom_ +||krutvncd.top^ +||fanyi.baidu.com/ait/config/cms/list? +||cdn.galacg.me/img/*.jpg +.cc/js/ads/ +@@||piccool.com/2home/phpAdsNew/ +||2ccc.com/images/sdo.jpg +||vhotcvp.xyz^ +porn5f.com##.aa-dd-body +@@||haoweichi.com/Public/js/ads.js +.com/cpv/*.ashx?$script,third-party +cpnn.com.cn##.leftewm +/manduan-dev.oss- +||img*.win007.com/image/*.gif +||huaren.us/bbs_ads/ +/xxgg/pf*.js +cheetahfun.com##.guide +hall123.com,hi.people.com.cn##img[width="1000"] +bmlink.com##.Tg_190x70 +32r.com##[onclick*="@"] +||pchome.com.tw/iframe/$domain=mail.pchome.com.tw +douyu.com##.adcontainer +##.video-player > .gg-bg-cover +||snueirk.icu^ +chinaz.com###loc.Mnav-right02 +||grewash1b.fun^ +qianhua.biz###framelzHoHY +||su.bdimg.com/static/dspui/js/ +||egadfe.xyz^ +esdict.cn,eudic.net,frdic.com,godic.net###bodycontent > style + div[id] > :nth-child(n+2) +/main.js?v=*&sp=*&ty= +||cxy88.friok.com^ +||grihaith.com^ +businessweekly.com.tw##.Single-hot-news +||lsntzzy3.com/Runtime/js/psData.js +sporttery.cn###newDiv +||zhuys.com/js/ysmm. +703804.com##.hotad +||gt.yy.com^ +||chengzijianzhan.cc^$subdocument,third-party +@@||520cc.cc^*/ad.php +qiannao.com###downTb + div +||fdyacma.icu^ +||miwpkk.xyz^ +~05wang.com##.a_pr +aliyun.com##.yq-main-left > a:first-child +||iolsrikq.xyz^ +||astrill.com/bnrs/ +58pic.com##.activitySettings-Fixed +91porny.com##.row > div.colVideoList:has(> div.video-elem > a[target="_blank"]) +win007.com##td[id^="Ad"] +||hh.jiankang.com^ +778772.com##a[href^="http://www.yh988y.com"] > img +##.leftadv +||stat.ts.cn^ +/789syy/* +hao123.com##.wm +ditu.so.com##.label-ads +$image,third-party,domain=lady1.top +ahtv.cn,sexbarss.net##.r1 +||xiaobaipan.com/tb.html +||abcd.5lu.com^ +||tdlyfz.xyz^ +||mitbbs.com/img/app +||lyz.radio366.com^ +||ctrip.com/Domestic/tool/AjaxGetCPTList.ashx?advpositioncode= +||lsyliel.top^ +||fgwerg.top^ +iqiyi.com##:not(.qy-index-page) > div[id^="100000"] +downxia.com###gaosu_div0 +||ttdpxh.xyz^ +xgan.cn##.container center > a[target="_blank"] > img +||imgoss511.top^ +/adsys/* +||scoldak.com^ +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:-abp-has(>ins+style) +pconline.com.cn##.twentieth +brushes8.com###flxgg +weibo.com##div[feedtype="ad"] +udn.com##.more_ad +teachinghand.com##.actions__wrapper +hxnews.com##.banner-90 +abmedia.io###block-12 +163.com###yjj_pop_wrapper +||tt1069.com/bbs/zgg_ +baidu.com###wgt-ad-right-fixed +159i.com##.aa +||sdd.hi1718.com^ +epinv.com##A[href="http://www.epinv.com/post/10450.html"] +||yhgfoe.xyz^ +||yitongkan.com/splash.xml$redirect=noopjs,domain=yitongkan.com +netbardh.com##.js-static[data-position="3.3"] +@@||bookwalker.com.tw/images/p_img/pc_ad*.png$~third-party +||titan007.com/js/indexshow. +||zhihu.com/api/v4/commercial/ecommerce +csdn.net##.toolbar-redpack-advert +||aoji.cn/static/js/pushadv.js +||loublil.top^ +||tq.cn/floatcard? +||212ehae.fun^ +||n0499.com^ +||cpro.xixiliya.cn^ +lkong.com##.lkong-ads +m.07073.com##.main_content_tit + div +##.post-title + .metadata + .entry > div > div > a[href^="/"][href$="/"] > img +@@||swsc.com.cn/download/ad_images/ +||738atf.xyz^ +||bilibilijj.com/image/right_bottom.gif +###adrights14 +||lesasfp.icu^ +itxueyuan.com##a[href*="guanggaowei"] +||lianmeng.la/cde/text.js +###gg300 +||sravga.xyz^ +||xulizui6.com^ +m.baidu.com##a[href*="m.lecai.com"] +||9i8i.com^ +##.col-ad +||av6k.com/shop/a4.jpg +brushes8.com##.baidugg580 +tieba.baidu.com##.hongbao_page_pop_common +||fv77e.icu^ +h5.17k.com#$#body { overflow: visible!important; } +sm.cn##.crumb-link + .other +||ieymhkx.icu^ +||9527yy.com/images/02/9527.jpg +||skdaj.cn^ +people.com.cn##.ipc_none +||koolearn.com/v2/js/wxewm.js +||samoryinaner.com^ +||kekenet.com^*/zhike +||tingchina.com/js/*220- +netfly.fun#?#.content > div:not([class]):has(> [style="display: flex; justify-content: space-between; width: 100%;"]) +gohome.com.hk#@#div[id^="div-gpt-ad"] +mydown.yesky.com##.leftGg +@@||share1223.com^$generichide +||shen4club.com/style/*.js?v= +qyer.com###zpui-head-ad +||quge66.com/jdjd/ +tieba.baidu.com,wapp.baidu.com##a.fixed_bar +##.ads_mobile +hao123.com###ecom +/pd2.js$third-party +ahtv.cn,duhama.tv,frdic.com,huasing.net,it168.com,qinbing.cn###ads +||ye120.com/swt.js +##.promtlink_[style="position:relative;width:100%;height:100%;"] +||guhai.com.cn/AD/ +neihanshequ.com###pageletBottomBanner +||img1.eywdf.com^ +avbebe.com##.sidebar > .xoxo > li[id^="execphp-"] +52youpiao.com##div[style^="position:fixed; right:40px;"] +||zlyk.com/Runtime/Js/m_footer_top.js +apk.tw#@#.google_ad +||tencent.com/developer/api/common/getOneAds +jav777.xyz##iframe[src^="//ads.exoclick.com/"] +||4438x*.com/Runtime/js/ +###fc_foot > #f_skyf +||er1h4.icu^ +||ddielv.cn^ +||hz.shouyoutv.com^ +||clypzbzs.xyz^ +||it168.com/pv.js +||xnfhxszj.xyz^ +faayoo.com##.qr_code +breathofthewild-link.com#?#div[id^="cc-matrix-"] > div.j-htmlCode:has(> ins.adsbygoogle) +||unecne.com/wp-content/uploads/*ad- +||178.com/glr.js +||yvudqzoa.xyz^ +ruanyifeng.com##a[href*=".kaikeba.com"] +||iykig.cn^ +||591hx.com/js/floatbox.js +||888aa222bb.com^ +||cmbmtpjm.xyz^ +lspdfrcn.com###cancms_float_bar_fixed_bottom +||taobao.com^$popup,domain=52movieba.com|btee.net|ck180.net|friok.com|iqiyi.com +||owyame.xyz^ +||bdstatic.com^*/static/itemrep/afdTuJiTuiJian/ +hyperallergic.com#@#.ad-above-footer +auto.sina.com.cn###bottomInquryBar +playno1.com##.eis_adv +zjhlcp.com##.middle_list +||myfenxi.com^ +fwwang.cn###n_s_300250 +||wnacg.*/data/ds/ +10fang.com##.tfy-ab +||mnpzrgz.xyz^ +##a[href*=".mhtimes.cn"] +||mypianku.net/ajax/MyJs/ +90pan.com###tt_xker +18comic.org,18comic.vip,18-comic.work#?#.col-xs-6 > div[data-show][style]:has(> p:only-child > a[target="_blank"] > img) +epubee.com##.reader-to-vip +163.com##.topnav_ad +||5s98.com/img/ +xiazaizhijia.com##.down_list +baidu.com###couplet-left +.com/gg/*?x=$script,third-party +.info/ad.js +baidu.com##.openAppCommonTpl-100 +baidu.com##div[id^="toast"] +||1722t.com/js/jquery.js +||catbox.moe/bb5wdv.jpg +/videoad. +||uoosqk.xyz^ +ifeng.com##div[class^="slideBannerBox"] +||xvgrszkg.xyz^ +||hgxwhpba.xyz^ +||88lm12.com^ +##.jsv-layer > .image > a[href^="http"] +||owkmmo.xyz^ +||gaofuwu.org/js/dd2.js +18av.mm-cg.com##.ut_ad_box +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="ecl_health"] > .c-border +tigtag.com###Home1000x70_A29 +||onosyej.icu^ +||kaoyan.com/__pub/shop_book.html +||haolepic.com/blz/ +||iia1.pikacn.com^ +||ynfxxbp.xyz^ +51.com,55188.com##.couplet +twinsyang.net,free.com.tw###custom_html-7 +||property.hk/js/adside.js +||maodh.com/admin/up/*.gif +||ofjslik.top^ +tieba.baidu.com##.frs_pb_leadapp_pop_show +||dahe.cn/indiboy/ads/ +###ads_left +rfidworld.com.cn###divTopContainer +@@||tangdou.com/sample/share/advert?$domain=tangdoucdn.com +56.com##.sohu-app +||ed2000k.com/ad/ +||5dmail.net/image/$object +/img_ad/* +360game.360.cn##[class*="banner"] +||bd.ahsrst.cn^ +||crtlisf.top^ +chunyuyisheng.com##.ad-modal-left +##.partialViewSlider-outerwrapper +###windlocation +v2rayssr.com##.single-top-html a[target="_blank"] > img +||xgjidt.xyz^ +||rdbd.xsread.com^ +redian.news##.bottom-0.fixed +||tongj.xilu.com^ +||rbhunp.xyz^ +xcar.com.cn###show_car +||199.180.100.185/love44^ +||storm.mg/ad? +||lemida.xyz^ +udn.com###ec +||yckamq.xyz^ +chinaz.com##.HeaderAdvert +ddooo.com#?#span:-abp-has(>p:-abp-contains(高速)) +gucheng.com##a[href*=".liaogu.com"] +nick18.com,niko18.com###mov > .content +china.com##.baidu +autohome.com.cn##.monkey_box_big +||28.com/count.js +||mybjx.net/theme/default/js/common/bjx_service_ +moxing.net##.pic_txt_list +2345.com###corner_a +talkfx.co##.slidebox +@@||book.com.tw/image/getImage? +||115img.com/static/115tj.js +renfei.net#$#.ant-modal-root { display: none !important; } +||96382zubo66756.com^ +5555op.com,router.houzi-blog.top##.img +@@||atanx.alicdn.com/t/tanxssp.js$domain=alimarket.tmall.com|www.taobao.com|www.tmall.com +||jianxun.io/ad/ +baiten.cn##.JS_advertisement +||bt1.patexplorer.com^ +||sam*.baby-kingdom.com^ +@@||webmail.smartlinkcorp.com/dotrans_20160909.php +||dnpz123.com^$third-party +itavcn.com##img[width="722"] +||uiuaey.xyz^ +cartoon18.com,pornbest.org,ptt.sex###links +niaogebiji.com##.adImgBox +so.com###mohe-360pic_ext--normal +||sky.dunsuan.com^ +2345.com###J_hot_event +||xhd.cn/topic/leyu-piaofu/ +/dongaogg/* +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_l_post:not([data-field]) +||gsdpw.com/file/script/A +||wan.liebao.cn/zt/ +qq.com##.AdBox-Article-QQ +||oweriok.top^ +||yuwqsk.xyz^ +||okmwfq.xyz^ +51zxw.net###video div[class^="adlink"] +solarbe.com##.RT_banner +||renwai.ren/cdn/pic/ad +uc123.com##.side-hot +:99/js/ads/ +tigtag.com##div[id^="Home942x70_"] +gongkong.com###dull_right +||byuwkbv.top^ +boyoushe.com##a[href^="http"]:not([href*=".boyoushe"]) > .j-lazy +||youy14.com/js/tj.js +||taozi888.com/a*.js +itdog.cn##.pic_gg +##A[href="http://t.cn/A6hQCVsv"] +bilibili.com##.is-rcmd > div:only-child +||jingyanlib.com/home/data/getAdOnlineList? +||guilin-ly.com^*.gif +||qq.com/getadv. +firefox.com.cn,firefoxchina.cn##.sd-promote +||bkill.com/css/js/abcbl.js +||zeddjv.xyz^ +ettoday.net##.top-sky +@@||quanzhi.cn/v3/images/index_ad/ +||qqyy.com/js/public_end_add.js +/960x60. +||sinaimg.cn/tech/*/sidebar.js +||ppxscy1.cn^ +||bewrutv.top^ +##.ad_960 +88448.com###ad_forum_banner +||bvnjeqa.xyz^ +/tops/fmt.js?v= +||hxsxw.com/hx8899/$image +||syuwkbb.top^ +||fidelius.cn^ +||imp.zol.com.cn^ +||nz04com.com/aabdd/ +1688.com##.sm-offer-item[p4p*=".1688."] +1688.com.au###pop-up +memexie.com##div[style^="width:9"][style$="#C8E4F0"] +/mfad/* +/dy_66jjss/* +||c1km4.com/mobile/app.js +||bd.ershenghuo.com^ +||umwcyw.xyz^ +:8888/mb1/pc_ +kt51.com,nfstar.net##.bottom_fixed +||js.shangxueba.com^ +||8xtm6i.cn^ +://m.*.cn/*/*.js?ssid=_ +||8mg050.n3cdn1.secureserver.net^*.gif +ks.js.cn##.height70 +58.com###infolist > .recycleInfo +@@||sinaimg.cn/ad/adimage/50x50_ +ghoffice.com,ksbbs.com,kshot.com##[id^="ads_"] +##.flex-row > #propagandaLeft +||superfish.com^$third-party +||abc.hkepc.net^ +||luofk.xyz^ +@@||nvidia.cn^*-300x250- +62422.cn##td[width="760"][height="75"] +||ewxufqs.cn^ +||d1.handdiy.com^ +alibabacloud.com##.b-alicloud-bottom +rising.cn###pageflip +@@||gamersky.com/Common/GetHits.aspx? +bbs.nga.cn##div[style^="background:#423d35;box-shadow:"] +qhnews.com###xwyc +sohu.com#?##allseeList > .allsee-item.bd-wrap:has(> div > script) +||z3p9f.xyz^ +||99496.com/static/ +||eastmoney.com/tghtml/ +||amazonaws.com/91/ads_ +eastday.com##.news-promote +||1999019.com^ +||mesh.if.iqiyi.com/portal/lw/search/$xmlhttprequest,removeparam=ad +||chnvgdkw.xyz^ +||bdstatic.com/static/article/widget/left-promo/ +mpyit.com##.cboxElement + a[target="_blank"] +baidu.com##.intro-adv +||dytt8.net/js3/ +@@||scyts.com^$generichide +||expreview.com/baba/ +whcykj.cn###BDBridgeInviteWrap +||cprdmnlo.xyz^ +||zlclgzs.cn^ +/js/wlfloat.js +||youle55.com^$third-party +||upload.cc^$domain=141jj.com|mizhiav.com +@@||cdn.bootcss.com/fuckadblock/3.2.1/fuckadblock.min.js$domain=1090ys8.com +/advertisement. +||cfdvd779.fun^ +||3dmgame.com/templets/common/show_js/show_js.js +@@||googletagservices.com^$script,domain=creaders.net +finance.ifeng.com###box_img +||uuuzuu.xyz^ +/ggdata1. +pharmnet.com.cn##.ad9502 +||static.xshuyaya.com/m/d.js +||*/ad/$redirect=noopmp3-0.1s,domain=huaren.tv +||prettyvirgin.com/images/banners/ +##.bottom-adv +##.clearfix.col5.row > #listBox +||bbtta91.shop^ +||ww7814.win/pic +||funshipin.com/v1/js/footerhongbao.js +||lianmeng.la/cde/image.js +weather.com.cn##div[id^="adpos"] +sg169.com##.Mappdiv +||3h3.com/js/show/ +sm.ms##.advertising_1 +||aesxgy.xyz^ +||reqwevf3.fun^ +||qnqtgyq.icu^ +||img.911787.com^ +||wtyusie.top^ +@@||google.pn/translate_$media,third-party,xmlhttprequest +&xhtml?$script,third-party +||bdu1.coozhi.cn^ +||acgshenshicha.cn^$third-party +biz.ifeng.com##.riodel +||xlwrdnrw.xyz^ +wnacg.com##a[href^="http"]:not([href*="wnacg."]) img +playno1.com##.sd.pph +@@||wuyou.com.cn/Js/ad.js +||bdstatic.com/img/image/su/ +163.com##.idx_top_ad +##style + .topd + .bottomd +||lunhua5.com/images/more.gif +||qhocciks.com^ +||z.tudouxy01.com^ +ck101.com##.adfixWp +||ydstatic.com/dsp_website/ +||elphhrj.xyz^ +||axutongxue.*/js/yes. +@@||3d66.com/??*ad- +||aiyuke.com/position_js*_*_ +anjuke.com##div[class$="-poster"] +alu.cn##.Tg_390x60 +/haojio/images/KF-ZL.jpg +/adjs. +@@||adcdn.pingan.com^ +image.baidu.com##.tjad +||lewhrzv.xyz^ +||0op8kh.cn^ +qq.com##.m[pbflag="guess"] +@@||changyan.sohu.com/debug/cookie? +||315che.com/tree/ad.js +pc841.com,zol.com.cn##.today-hot-layer +141jj.com#?#li:-abp-contains(/贊助|推廣/) +ifeng.com##.slideImg-lGG7Uta- +||wlxww.com/html/analytics/ +/ad_unified_access? +flyblog.cc,maxfoodfun.com#?#.article-body > div[style]:has(> div[style] > div[id] > ins.adsbyfalcon) +||ithome.com/js/lapin/hot.js +/js/ads/youxiajiao.js +||tdhnxf.xyz^ +jiayongluyou.com##.widget_image_myimg +||87uq.com^ +||enalzlw.top^ +||longzhu.com/i/api/playpage/recommendPop? +||2345cdn.net/js/index/activity/ +||aspku.com/z/ +@@||translate.googleapis.com/translate_ +||uwsaqoi.icu^ +||vrnblp.xyz^ +||cjw123.com/jx/static/picture/ +/advert/* +##.twavt-ads +||dalipan.com/api/taobao +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="25%"] +||aiuw.com/images/*?from=ad +/shangvsnhfbrq220923.js +||uwumr.cn^ +###alert_windows > .q-dialog__backdrop +||0j775d.cn^ +||sinaimg.cn/finance/app2018/js/appbar.js +tmioe.com##.widget_image_img +@@/advertisement.$domain=gametower.com.tw +||44180055.cn^ +cjw123.com##a[href="http://tb.cjw123.com"] +cnblogs.com###cnblogs_c1 +@@||vodjk.com/offlights.js +##.main-ad-r + .topad +fanqiangzhe.com###news-include + .text-center +yesky.com###flayer +||aniede.xyz^ +||ff.psd8.com^ +||yhdemu368.shop^ +||igidskio.top^ +@@/adjs_pic_$domain=168gamer.net|slit.cn +##.jsv > .mobile-adv +ifeng.com##a[href^="http://yemei.tv/"] +||ustv123.com/images/axd.js +||a.4aqq.com^ +||163.com/special/*/bobo.html +||dmzj.com/js/ad/ +18comic.org,18comic.vip##div[data-group^="photo_center_games_"] +||ad-api.cnblogs.com^ +money.163.com##.ad1200 +||urqwzbu.cn^ +fx168.com##.jy_fx168_home_default_Mcontent1 +jianshu.com#?#div[id]:-abp-has(> .ad-badge) +||qq.com/vfpage/visual_focus_page. +4399.com##.setlide a[href^="http"]:not([href*=".4399."]) +||ipad.pc899.cn^ +jmcomic1.me##div[style^="max-height: 600px"] +yingav.com##.spots +99meijutv.com##.follow-qrcode +yufile.com##.lo_box +h-ciyuan.com##.aligncenter > a[target="_blank"] > img +mobile01.com##.dable-side_theme +||bjswhpy.cn^ +agmov.com,huaban.com##.promotion +ihome99.com##.ad-980x60 +||a.shenchuang.com^ +||loli.net/2019/04/24/5cc0027b4f2f1.png +@@||golangnote.com^$generichide +.m.fhxiaoshuo.com^ +##.ads03 +52av.one##div[style^="text-align:center;"] > a[target="_blank"] > img +||g.cnzz.cn/Static/js/*- +##.adv-couplets +||wkrhel.icu^ +||lioyfmp.cn^ +||vdoqomz.icu^ +chongbuluo.com##a[href^="https://cn.udacity.com/"] +||ip.tianqiapi.com^ +||icao4.com/uploads/pic/2.jpg +sinolub.com##.gg_cen +fuliba2022.net#?#.sidebar > div.widget:has(> div.textwidget > ul[style] > li[style="margin-top:5px; "] > a[target="_blank"][rel="noopener"]:not([href$=".html"]) > img) +@@||dnbus.com.tw/AD/tab_route.html +i8k.cc##.module-adslist +/js/mob/cpc_bottom.js +##.container > .t-img-box:first-child +||lalabaos1021.top^ +58cam.com###huyou_nologin +||guokr.com/apis/flowingboard/item/m_ +||003store.com^ +||jxdown.com/statics/js/all.js +||ithome.com/images/hb1212/ +||henan.sina.com.cn/iframe/7/ +||gfdfgfgr.cn^ +||kwgqaqf.icu^ +||uuiaoq.top^ +||3.cjcp.cn^ +||jcfnbhqo.icu^ +||sprewcereous.com^ +health.tvbs.com.tw##.ad_desktop_top +||icnkr.com/cnkradv/ +||yun.baidu.com/act/api/activityentry? +kekenet.com##.h_news_c +||treferty33.fun^ +||tmjwlmhc.xyz^ +||adwordsing.com/img/1.jpg +xc6b.com##.activity-box +pixnet.net##div[style="width: 620px; height: 250px; padding-bottom: 10px;"] +||vsjrnh.xyz^ +||cojvur.icu^ +##.comiis_ad +_ad6. +##.b_oscar1 +libaclub.com##.ui-adsame +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#(function(){window.eval=new Proxy(eval,{apply:(e,c,n)=>{const o=Reflect.apply(e,c,n);if("object"==typeof o&&o.banners)try{o.banners.forEach(((e,c)=>{e.commercial&&(e.commercial={})}))}catch(e){console.debug(e)}return o}})})(); +||wdakda.cn^ +||shandian.biz/wp-content/themes/inove/js/comment.js +ditu.so.com##a[class^="index-bcItem"] +||czouthy.cn^ +ssr.tools##.widget_custom_html:nth-child(n+2) +@@||520call.me/jspopunder. +||ejdhmed.xyz^ +v.ifeng.com##.keyword +||img.vim-cn.com^$domain=522dy.com +##a[onclick*="open"] > img[src*=".dailygn.com/"] +||mtnwxhjv.xyz^ +/live173/640320_ +||enviousinevitable.com^ +||eweriow.top^ +yahoo.com###module-tabadktw +hao123.com###topbeWrapper +||rfrhfh.xyz^ +||moqdy.icu^ +||kkkkdm.com/js/comic- +cw.com.tw##.cw__advertising +||dms.xuexxing.com^ +sina.com.cn###J_forAutoShow +||php1.cn/uploads/huayun.jpg +111os.com###btmBox +qinzhou360.com##.Txtadv-show +acfun.cn###bd_ad1 +manhuagui.com##div[style^="width: 300px; height: 250px;"] +mydowndown.com##p[style="color:#ff0000;"] > a[target="_blank"] +||fwsfwef2.fun^ +/adpic. +||uuoizbtl.xyz^ +pixnet.net##div[class*="-ad-"] +hmoe.one#?#.widget_text > .inn-sidebar__widget:has(> .poi-panel__header > .poi-panel__header__title:contains(赞助商)) +||uaoaig.xyz^ +msn.com###displayAdCard +||adutp.com^$third-party +||stlpnom.xyz^ +||aiqks.top^ +||huoxun.wang^ +/skin/header.$domain=iimanhua.cc|iimh.net +||aqdy.net/js/tj.js +##header + #main:nth-child(n+4) > div[id^="po-s"]:not(#po-shd) +/loooyu.js +/ajds/* +||ddgjjj.com^$third-party +##img[onclick="window.open(this.url)"][src*="qq.com"] +||e3c7.com/dh/ +xgan.cn##a[href^="https://www.jspp9.xyz"] +sunofbeach.net##div[id$="-ad"] +||gumgo.cn^$third-party +||lh168.net^*/attachment/portal/ +||lvse.cn/output/block/html/ +zuowen.com##.cj +||mahua.com/api/$subdocument +||yc444.cn^ +||kuaidi100.com/assets/ext?method=mainprofile +btbtt18.com##.wrapper_bg_c +epubit.com#@#.article_share +||dzmanga.com/s/page_runtime_v5.js +||dm.wenshenxiu.com^ +xitonghe.com##.sidebar-wx +||cdftizu.xyz^ +||twj6s.icu^ +||heiviek.com^ +jiangjunzy.com##img[style="height:75px;width: 100%"] +||18comic.*/templates/frontend/airav/js/*1_2df4.js +||offcn.com/index.php?m=dbsource&c=call&a=get&id=75 +||gtimg.com^*/ad/ +instrument.com.cn,tool.lu##.swiper-container +||molpmh.xyz^ +||hznzcn.com/moban/youxiajiao.js +360doc.cn###artnewdiv +cwyuni.tw###links-row-1 > div[id^="box"]:not(#box32499):not(#box1026387):not(#box34614) +image.baidu.com###relEcom +jyacht.com###zyc1r_05 +://*:*/yeyue.html?k=$csp=script-src +||dzdnffs.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.live_show_aside +subaibai.com##.el-dialog__wrapper +/sxgg/13 +#%#var AG_abortInlineScript=function(g,b,c){var d=function(){if("currentScript"in document)return document.currentScript;var a=document.getElementsByTagName("script");return a[a.length-1]},e=Math.random().toString(36).substr(2,8),h=d();AG_defineProperty(b,{beforeGet:function(){var a=d();if(a instanceof HTMLScriptElement&&a!==h&&""===a.src&&g.test(a.textContent))throw c&&console.warn("AdGuard aborted execution of an inline script"),new ReferenceError(e);}});var f=window.onerror;window.onerror=function(a){if("string"===typeof a&&-1!==a.indexOf(e))return c&&console.warn("AdGuard has caught window.onerror: "+b),!0;if(f instanceof Function)return f.apply(this,arguments)}}; +@@||tianxun.com/min/f= +||vzdkngmf.icu^ +weibo.com#?#.wbpro-side-panel:-abp-has(span[class^="wbpro-icon-search"]:-abp-contains(商)) +||sjluuom.icu^ +||ugbler.icu^ +##.wwads +||savionl.com^ +##.ads1 +techug.com##a[href*="/222.html"] +69vj.com###nta +dyxs23.com,dyxs20.com,dyxs15.com,dyxs14.com,dyxs13.com,dyxs12.com,dyxs11.com###player_pic +.js?ssid=_$script,third-party +||motcmn.icu^ +||crxs.me/scripts/my_ +haorooms.com##.right_guanggao +||uctutu3789.xyz^ +yes-news.com##.new-sidebar-today-300ad +/advert2. +123-bt.cn###mianze_mask +||cnr.cn/s?z= +||nanfengyl.com/static/js/zdad.js +kuai8.com###right_Ad +sex8.cc###nv > ul.cl > li > a[href^="http"] +||17house.com/zt/style/*_bottom_module.js +##a[href*=".xyz:"] > img[src*=".qlogo.cn"] +||jackdd.xyz^ +||ac1.pingpingw.com^ +||jdbstatic.com/ads/ +##a[href*=".bjty7.vip"] +||cvudqzoa.xyz^ +||api-a.ganjingworld.com/*/adsserver/get-vast-xml/ +||wap1.laogu.wang^ +union.58.com#@##advertise +##.maomi-content > a[target="_blank"] +e3zy.com##img[style="height: 80px; width: 100%;"] +@@||mmff30.com^$generichide +||securepubads.g.doubleclick.net/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=line.me +||img1.leyun365.com^ +||bdmjs.xywy.com^ +||hitoxx.xyz^ +||videowood.tv/popjavascript +||51bczx.com/images1/ +getrelax.cc#?#.nav > li.dropdown:has(> ul.dropdown-menu > li > div.mega-menu-content > div.container > div.row div.blog-grid > a[href^="https://getrelax.cc/ad"]) +htmlsucai.com,sucai8.cn,ui.cn#@#.adv_img +/floatingcontent/*$third-party +||bdcode.qinglm.com^ +###appqrcode +||xflybplr.xyz^ +||icourse163.org/dwr/call/plaincall/CommonBean.obtain.dwr +api.so.lianmeng.360.cn,pos.baidu.com##body +discuss.com.hk###ab_div_px1 +||fxjnfn.xyz^ +||qunar.com/js/ga.min.js +||h6295.com^$popup +##.ksads +wealwomen.com##div[data-cptid] +||1.zw3e.com^ +||28.com/public/js/w3c_float.js +||qifake.com^ +baidu.com###activateGuidePopupOuter +ctwant.com##.l-ad__wrapper +@@||tbskip.taobao.com/json/ +/getAliyunAdv. +||clqjyw.xyz^ +||alicdn.com/kf/Hd502cbfb24a74a469a3f70f010818498m.gif +/acmsd/*$script +||socos.gitee.io/ss/poster/ +###leftFloat1 + #rightFloat1 +||cndns.com/incs/js/website_mobile.js +||fpb*.51edu.com^ +porn5f.com##.alb_320x250 +||right.com.cn/forum/static/image/common/logo*.gif +cnpingpang.com###forum_rules_1 +||fwffa.cn^ +baidu.com###ggbtm +pinshan.com##.b_adv2 +douxie.com##.ndxChdjBox +||rxrdjb.xyz^ +###qj960a +hao123.com##.guess-recommend +t66y.com##a[href^="http://www.viidii.info/?https://po88_"] +/adcode/* +##center > a[target="_blank"] > img[style="padding- bottom:5px;width:960px;height:60px;"] +||xdf.cn/v4/js/leyus/ +dcfever.com##.trading_top_banner +lan-sha.com#?#.post-list > li.post-item:not(:has(> div.post-item-container a[href^="https://www.lan-sha.com/"][href$=".html"])) +||17ok.com/focus/3j_right_jdt.shtml +||yidengfe.com/launches/01/yd.png +||ocryndsu.xyz^ +||mzelzfnj.xyz^ +||hkljed.xyz^ +||owurserk.top^ +afzhan.com,cngold.org,hbzhan.com,panjin.net,qq.com,tongxiang.net##.advs +$script,third-party,domain=torkitty.com|torrentkitty.app|torrentkitty.asia|torrentkitty.cam|torrentkitty.ink|torrentkitty.io|torrentkitty.live|torrentkitty.lol|torrentkitty.net|torrentkitty.one|torrentkitty.se|torrentkitty.tv|torrkitty.com +||bdcm.kandianla.com^ +world.huanqiu.com#@#.ad_all +uotan.cn###fuck-ads +@@||eden.org.tw^*/ad_banner/ +||rakuten-static.com^$domain=cwyuni.tw +||okbmf.com^*950_120 +jmnews.com.cn##div[id^="couplet_"] +.com/dibudaohang/dibudaohang.js +md.hkgolden.com##.hkg-ad +gkstk.com##.layui-layer-shade +jmcomic1.me#%#//scriptlet('remove-node-text', '#text', '中間廣告') +wcjbb.com###frameo834m9 +ithome.com.tw##.span4:nth-child(5) +=AdCode_sjdb +sina.com.cn##div[class*="farmpop"] +&adsrc= +||jsdelivr.net/gh/supfree/supfree/top.gif +||ourusababy.com/bsj.js +.net/adv/ +:8080/advserver/ +||2efgcdcjr000.fun^ +||a.qsjiajiao.com^ +512ms.com##div[id^="fy_"] +||loldyttw.com/blr.js +microcontrol.cn###body > table[width="758"] +##div[id^="ad_thread"] +||kekenet.com/images/*/app +||2024114t.shop^ +firefoxchina.cn##a[track_key="sites_saoma"] +/caoaa5.js +||opticsky.cn/images/2015/gy-px201 +||23.231.151.252^ +/demo_l.php?id=$script,third-party +||vfvdvd99.fun^ +.728x90. +||utewyc.xyz^ +51xiazai.cn##.downgs +||qiyipic.com/common/*/250230. +||postimg.cc^*-960x60. +||bfjsliv.top^ +##.common-topad +||mlhtr.cn^ +2345.com##.mainbg1 +||msstatic.com/huya/main3/widget/DiyActLayer/DiyActLayer_*.js +||dota2.uuu9.com^$subdocument +xbgame.net#@##google-ads +||ipeen.com.tw/js/frame/ad-actions.js +||jwerilxa.top^ +wnacg.com#@#.RMss1 +cztv.com##.drop_down_ad +tgfcer.com##.portalbox +||jingalbundles.com^ +maxthon.cn###festival-bottom-wrapper +duba.com##.slidebar + .extend +||xiongdong.com^ +||bqg23.cc/js/hf +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###encourage_entry +redocn.com##.small_vip_gg +avgle.com###nft +@@||anyknew.com^$generichide +||iqilu.com/static_files/multiads/ +||uoqsxdpx.xyz^ +||hongi7ie8owiie02.site^ +||shopping.udn.com/mall/cus/cat/OutWebAd.do? +||osanyc.xyz^ +dngz.net##.tongji +3h3.com,downxia.com##.bendown +###popup.t +thepaper.cn###head_ask_app_down +hao.rising.cn###bbTao +##.item-ad +||pjy55d.com^ +cankaoxiaoxi.com###qihupic +||sbdvjsbjslkv.com^ +||nyahentai.pw/js/check_cat.js +||videowood.me/assets/js/popup.js +||yangpinwang.com/wp-content/uploads/*E5%B9%BF%E5%91%8A. +firefoxchina.cn##ul[track-key="adv_links"] +doc88.com##.dk-side-gif +||rczudr.xyz^ +||anixwallpaper.com^$csp=script-src 'self' * 'unsafe-inline' +||189.cn^*/push/$third-party +||amazon-adsystem.com^$third-party +40407.com,lzep.cn,qudong.com,xitong8.com##.top_banner +||2345.com/images/activity/20180618/search-actimg +ldqk.xyz#@#.google-ad +yznnw.com##.content > div[id]:has(span + img[src]) +||meiqia.com^$third-party +oeeee.com##.homeAD +zol.com.cn##div[style="width: 300px; height: 250px; position: fixed; right: 0px; bottom: 0px; z-index: 9999; display: block;"] +hy5.com.cn##.toppicad +smzdm.com##.feed-stuff +||mmgap.cn^ +olevod.com##.L4A +||fxgkktj.icu^ +||v1.phb123.com^ +##.rotate-adv +||u2tu4.icu^ +||dm.lianzhixiu.com^ +fnjiasu.com##.layui-layer +newxue.com##.dashuggtop1 +@@||zaixianjisuan.com^$generichide +@@||40017.cn/cn/min/???/ +||courtoyz.com^ +/nordvpn/autoptimize_ +hao.360.cn##.small-obj +||ykxwn.com^ +yzl333.com#?#.row > div.col-sm-6:has(> div.well > a[href^="https://jump.9118ads.com/"]) +||vjie.com^$third-party +hcbbs.com###frameXM5QbM img +@@||seyy66.space^$generichide +||forex.com.cn/index.php/Invoking/tanchukuang +||5q7eb.website^ +||w3wci.site^ +||1ketang.com/Runtime/js/play +tangrenjie.tv##div[class$="_acmsd"] > a[target="_blank"] > img +mydrivers.com##.vwE9JmqU +@@||tce.alicdn.com^$domain=alimama.com +gz.bendibao.com##.content_r_ad300 +china.cn##.extension_ul > .special +hao.360.cn###background.festival +##.anniversary-wrap-2018 +/r/video/*$domain=youxi.baidu.com +sex8.cc##.a_oscar1 +||cp2.eastmoney.com^ +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###questionnaire_contianer +##.wzad +||vsping-*.myqcloud.com/ggw/ +||video.qq.com/checktime? +||gamecps.com^$third-party +||hgfutf.xyz^ +||kmqianneng66.com^ +||ssb.ah499.com^ +||4l903.com^ +||ryhkft.xyz^ +bioon.com###ad_tb +steachs.com##.sidebar:first-child +chongbuluo.com##.search > div[style="width: 607px;margin-top:30px;"] +||matwbp.iask.sina.com.cn^ +||50bang.org^$third-party +/secureserver.net\/.*[-\/]\d+x\d+\.gif/$domain=h-ciyuan.com +##a[href*=".com?intr="] +||meteor.today/ad/ +||zol.com.cn/pvn/ +||yimg.com/no/$domain=~yahoo.com +/xxgg/xsggs.js +so.com##a[data-log*="cpc"] +###mui-player + #player_pic +lanrentuku.com###divjdgg +||js.yjbys.com^ +||downxia.com/dgjs/download.js +.com/json/cctv.json?v= +##div[class^="module-"] > a[href="/index/voddetail.html?id=1"] +@@||friday.tw/backend/uploadpic/adindex/ +hea.cn###top_slides_box +yiche.com##.h-middle-gd-box +||fmjjvb.xyz^ +||s1-a1.dnvodcdn.me^*.svg +||jitapu.com/inc/adv +||mzzfree.com/file/upload/202109/14/180421861.gif +||mybjx.net/theme/default/js/common/duilianchn.js +||uiakq.top^ +cnbeta.com.tw##[class^="cbv"] +hlgnet.com,sina.com##.tad +||ukbbjtfp.xyz^ +||fpelfyeesuoivy.com^ +||onetad.com^$third-party +ettoday.net###pc_inread_overseas +||dnn1300.top^ +nasyun.com##img[width="970"] +genshin.honeyhunterworld.com#@#.a_p +||wei2008.com/js/*0. +/banner/*$domain=leiphone.com +/\/\w{8}\/\w{10}\./$script,~third-party,domain=00ksw.com|0794.org|114zww.com|123du.vip|123wx.cc|126shu.org|12zw.net|13txt.net|147xiaoshuo.com|17k.com|1biqu.com|1kans.net|1pwx.com|23hh.com|23qb.com|23qb.net|23sk.net|23us.tw|23wxx.com|23xstxt.net|2kxs.info|33yq.org|360xs.com|3yt.com|477zw.com|4xiaoshuo.net|50zw.co|50zw.com|50zww.net|52xs.net|56shuku.info|59xs.com|6666xsw.com|67shu.net|69kshu.win|69shu.org|69zww.com|7017k.net|777zw.net|77xsw.cc|81book.com|91zww.com|93xscc.com|99mk.net|9tiefu.com|a6ksw.net|aiwx.info|aixiashu.net|aixs.la|aikushuge.com|b520.cc|b5200.net|bamxs.com|bbiquge.cc|bbiquge8.net|bequmo.com|bimixsw.com|biqiuge8.cc|biqudd.com|biqudu.tv|biquge775.com|biquge98.net|xbiquge99.cc|biqugecd.com|biqugesc.org|biqugewu.net|biqugse.com|biquka.com|aidu123.com|biquluo.net|biququ.info|biqusk.com|biqutsxs.com|biquzw.info|boquku.com|bqg999.net|bqwxg8.com|bshuku.com|bxwx.live|bxwx00.com|changduzw.com|chenkuan.com|damengzhu1.com|ddbqgtxt.cc|diyibanzhu9.pro|dizishu.cc|dobiez.com|doupocangqiong.info|dpcq1.com|dpcq1.net|fxsc6.net|gaofuwu.org|gdbzkz.com|gdbzkz.org|hongyeshuzhai.com|huanyue1234.com|ibiqu.org|ibiquges.com|ibiquta.net|ibotaodz.org|idzs.org|ijjjxs.net|imianhuatang.info|ishisetianxia.com|ishubao.org|xvipxs.net|iwurexs.info|ixs.la|jcdf99.com|jieshengit.com|jiezhong.cc|jingwubook.com|jmshuwu.net|kanshu5.net|kanshushi.com|lewen123.com|lewenge.info|lewxs.com|liewenn.com|liudatxt.org|longzu5.net|luoqiu.io|maxreader.la|mcmssc.net|mingrenteahouse.com|mqxs.com|nuanyuehanxing.com|paoshu8.com|paoshuzw.com|piaotian.la|pksge.com|prpcoin.com|qiqidu.net|qishula.com|qishuta.info|qqxsnew.net|qqxsw.so|quge66.com|ranwen.la|rizhaoxs.com|roushuwu6.com|sbooktxt.com|sdhear.com|shanhaimiwenlu.com|shenshuxs.org|shenzu.org|shu008.com|shubaowang.cc|shumi.la|shumil.co|shuquso.com|shuyy8.com|silukex.com|siluwx.org|sinodan.cc|sjks88.com|soduha.la|sthuojia.org|stxsw.com|sxcnw.net|sytxt.cc|ting56.cc|tpsge.info|trxs.cc|tutengzw.com|txtduo.com|txtwan.com|tysk.cc|u33.cc|u33.me|wenxuem.com|wenxuemi.cc|whzh-xs.com|wodexiaoshuoh.com|wolaidu1.com|x23us.us|x81zw.co|xbiqugela.com|xbiquke.com|xdingdian.cc|xhytd.com|xiashuyun.com|xiaxs.info|xinremenxs.com|xiushukong.com|xs5200.com|xs7788.com|xsb-xs.com|xstt5.com|xszww8.net|xuanjiezhimen.org|xuanshu.org|xuessex.com|xxbiqudu.com|xygwh.cc|xyuanzunxs.com|yemancomic.com|ygshu.com|yingsx.com|ymxwx.com|yqd6.com|ysxs8.vip|yunxs.info|yuyougu.com|zhuishubox.com|zydu3.com|zzs5.info +||c114.com.cn/default_inc/a/images/ +qiniu.com##.extra___2cdPz > div.pc___3nUEX.extraBlock___1mGPY +chazidian.com##.ggin +||xzji.com/data/block_js/softShow_ +stheadline.com###jetso-wrapper +/xxgg/goodad.js +||szmtd.cn^ +||replays.net/j/pinglunshang.png +/static/js/aall.js +hcbbs.com##table[width="100%"][bordercolor="#CCCCCC"] +exoav.com#%#//scriptlet('abort-on-property-read', 'exoNoExternalUI38djdkjDDJsio96') +.com/ads. +phpvar.com##.post_content_linkad +codeceo.com##div[style="width:970px;margin:0 auto"] +||qq.com/mp/cps_product_info? +boce.com##div[class^="money"] +||frgre33.fun^ +||edoshbw.top^ +###lt-ad-radio +##.hao123-unionad-pic +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.head_middle > div[class]:first-child +||btmovi.in/static/js/xf.js +smallpopo.com##.fabox +||fgdkfr.xyz^ +baidu.com###search_bottomad +koding.work#?#.sidebar > .widget_text:has(> .textwidget > .adsbygoogle) +||macoms.la^ +pupudy.com##.sidebar > .widget-textasst:nth-child(n+3) +guancha.cn###ewm_app +qinzhou8.com##div[id^="v4ad-"] +||myretux.top^ +yigujin.cn##a[href^="http"]:not([href$=".html"]) > img[src*="/tp/"] +||sinajs.cn/t6/home/js/pl/guide/bigday/ +##.kjk-flo +hgamefree.info###text-7 +||sinaimg.cn^*/everyoneReading.js +||uoowu.com/a/zh*.js +||baomihua.com/yy/ +minwt.com##.g-336-280 +||lrtlisl.top^ +douyu.com##.noble-up-guide +/adimg/* +yes-news.com##.new-index-main-ysm +mcdulll.com##.header-fixed-area +||dnpalh.xyz^ +||a2put.chinaz.com^ +||kdh095.cn^ +/getad.$domain=~getad.pl +||up.qingdaonews.com/up/$object,script +bbs.my0511.com##div[style="margin-left:auto;margin-right:auto;text-align:center;margin-top:5px;"] +3dmgame.com##.adshop +baidu.com##.ad-vip-close +gameinns.com##a[url^="/api/ads?"] +||hsbianma.com/content/images/*-ad- +||mmo2350.top^ +gaodun.com###LRdiv1q +###nav + .slider-spons +||zjxc.com/source/plugin/e6_xc_ad/ +||mw6.me/images/*.gif +||p.pstatp.com/origin/$domain=pianba.tv|pianba.net +##.main-ad-l +||ehrhrrx.xyz^ +weishangshijie.cn##.head_0905 +dysfz.cc##.adv_f +||fpbone.ihowguide.com^ +||idns.online^ +###adtop1 +hifidiy.net###part_left2 +jrj.com.cn##.jrj-ad +yxdown.com##.pc_down +to8to.com##.btm-float +||om.cn/api/ad-om/ +||i-part.com.tw/js2/newShineStar +||0uyt5b.cn^ +||oschina.net/promotion/ +||ttroytj33.fun^ +||eabvmue.cn^ +###img-txt-wrapper > #title_desc_div +/runtime/hu/*.js +jingdianlaoge.com##div[style="width:970px; height:130px;"] +||ctfile.com/img/*ssp +||tudxhzj.cn^ +/banner468. +baidu.com###sning3 +||78dm.net.cn/acg_201*_250 +yaofangwang.com##.bad +||aliyuncs.com/public/v1/js/ad-config. +##.heg > .div-list +||gamersky.com/g/gamerskyflash.js +||graesol.com^ +||auisaoa.top^ +xiaoz.me##.gg5 +bilibili.com###b_app_link +||uyretut.top^ +##.tab-content + .col-pd +||biancitiao.com^ +erji.com,erji.net##.black.y-style +mtrend.cn##div[style="float:left; width:100%; margin-bottom:25px; text-align:center;"] +olevod.com##.swiper-wrapper > div.swiper-slide:has(> img[src^="https://static.olelive.com/uploads/file/"]) +||liujiahao6.cn^ +##.ad.mi_btcon +2345.com###xxl_game-new +haokan.baidu.com##.page-top-rightinfo-popover +eastmoney.com###zwbtextlink +goodav17.com###sticky_ads +cool3c.com##.board +vjmedia.com.hk###author-spotlight + .clear + div +||uojoqx.icu^ +xc6b.com###sidebar > .box-b img +||yu.dlxxjsh.top^ +||ra1.xyz^ +||meiju8.cc/js/m_ban_ +||ogznfgl.cn^ +##.mod-ad +||qpyrqg.xyz^ +##.ggad +||jc001.cn/img/yhj.gif +freejavbt.com##div[data-selector*="ai-insert-"] +@@||51img1.com/??*/adsys. +||c9qh3.website^ +sohu.com##.lottery-box +||jsdelivr.net/gh/diyibanzhu/ +tyenews.com##div[id^="custom_html-"] +##a[href*=".com/Register/?a="] +tiexue.net##a[href*=".junp"] +||manqian.cn/async/adLocationConfig +opticsky.cn##.p83_gridC > .cc +||rnpkxgfp.xyz^ +ck101.com#?#.readingList > ul > div:has(> li > span:contains(PR)) +adguard.info,adguard.com,adguard.app##.hello_from_adguard_chinese +##.pasuAD +ghxi.com##.ad_single_12 +||qoubliy.top^ +axutongxue.net##body > article[style] +autohome.com.cn##.fixqbot +||21sq.org/js/downloadbanner.js +image.baidu.com###plz-albums +||szapaqi.cn^ +##.apd-home +||imgdb.cn/item/6098ab56d1a9ae528f16192c.jpg +dasai8.com##.L > font[color="#0000FF"] +||u.xogu.cn^$third-party +cnlinfo.net##.guanggao-right +||cvtbdap.xyz^ +sm.cn##div[id^="dl-banner-"] +||iqilu.com/static_files/zones/ +||m4pgay.com^ +/o.js$domain=tptoon.com +qq.com##.mian-ad +||jhnnnb.xyz^ +shejiben.com##.bottom_zb_box +||126.net/2022/0315/c82ed9e0g00r8seoy015pd00104003cp.gif +||p1.360soucha.com^ +tvmost.com.hk##.main_ad_b +||gjjskhdnm.top^ +/topad. +||55726zubo56686.com^ +2345.com###topHf +||9669.cn/jsam/play_ +che168.com#@#[data-adid] +||alicdn.com/img/ibank/*_368737028. +@@||securepubads.g.doubleclick.net/tag/js/gpt.js$domain=line.me +/indexpc.html?agent=$popup,third-party +||epxfjcb.xyz^ +@@||cntv.cn^*_ad.js +/moneymaker/js/videoplayer.js +huanqiu.com##.adindexList +/js/easyAD2.js +||sinaimg.cn/news/diversion/index2/static/js/index. +||unifdlat.top^ +||chinaz.com/tools_img/ +dict.cn###tjcd +||uosxdmk.cn^ +cnplugins.com###pop_div +||baidu.com/tbliveact/data/xiu8/ +||a1.shusanqi.com^ +||airav.cc/static/js/*_ad.js +||jsdelivr.net/gh/a901361/ +chinanewsx.com##.card-body > .my-3:last-child +xitongzhijia.net##.btn-dl_swift +gz0668.com##.deanad +##.adInfo +||timecn.cn/image/alipay.jpg +kuke99.com##.index-dialog-mask +@@||ad.8maple.ru/close.png +||ag1.zuszw.com^ +||bobo.com/special/mod-follow/ +||obgekjz.icu^ +/remix_banner.gif +||ykgfcs.xyz^ +||video.itxueyuan.com/1672473525178992.mp4 +brandsales.58.com#@#div[id^="ad_"] +ithome.com##.related_buy +||gueikw.xyz^ +9upk.com,ouyaoxiazai.com##.ad_show +js0573.com###gotopl +||chinaqking.com/images/newPage/JLW.jpg +cb.wpio.xyz##.tpc_content > a[target="_blank"][onmouseout] +baidu.com##.wapAd +||avseesee.com/htmls/vlinks.html +||quresdy.top^ +##.ads-1 +||muyxmmz.cn^ +youku.com##.sub-slides-wrap .swiper-wrapper > .swiper-slide:has(> a[target-url]) +tw.yahoo.com###tabTemplate +||ifengimg.com^*/red2018icon. +||counter.pcauto.com.cn^ +||oeya.com^$domain=myptt.cc +qidian.com###banner3 +||thpte.cn^ +sohu.com##.sogouService +||pixfs.net/module/fullPage/dist/ad-full-page-enter-fly. +||poco.cn^*_info_banner +||jcrb.com/ZYW$subdocument +||bdasd.wmxa.cn^ +chinaz.com##.newsMainBox-textad +163.com##.quickmark +||qq.com/livemsg? +||kzpizjp.cn^ +16rd.com###quick_pub_form +||dm.pw0.cn^ +qixingquan.com##.zdm +guilinlife.com##a[href*="adclicks&"] +||jd.com/static/js/cpc.js +ouyaoxiazai.com##div[id^="cs_"] > * +||birtw.cn^ +zhihu.com##.Pc-word +/api/Video/GetAdsDataList? +114la.com,ylmf.com###GameAdv +6park.com##img[width="980"][height="90"] +||jsdelivr.net/gh/*/%E7%89%9B960-80.gif +wenxuecity.com#@#.otherposts +##.ad250right +duba.com###J_S11 +360kan.com##.js-welcome +chinaxinge.com##.sy07 +||xunsfr.xyz^ +||googleads.g.doubleclick.net/pagead/ads$subdocument,redirect=noopframe,domain=rjno1.com,important +||booking.com^$domain=honglingjin.co.uk|sunnylife.tw +baidu.com##.adTopImg +ifeng.com##.conRgg +bing.com###bingBrand +||8684.com/local/bdadv. +/mydisplay.$domain=400gb.com|bego.cc|ctfile.com|pipipan.com +ruanjianxia.com###gaosu_downloads +||trutvnci.top^ +||rydyvv.xyz^ +||aliyuncs.com^$domain=5kym.com +||oq6ry.com^ +||kmmgoogle.oss-ap-southeast-1.aliyuncs.com^ +18avinin.com##a[href^="http"]:not([href*="18avinin."]) > img[src*=".18avinin.com/wp-content/uploads/"] +||kaoyan.com/school/js/yz.school.packed.js +||vrinqop.icu^ +sogou.com###sogou_vr_21222401_wrap_0 +baidu.com###adMainTopRight +##a[href="javascript:;"][onclick^="iwjfewufewekjr"] +/PushSystem/attached/image/* +||360.cn/int/getadurls? +||hoteastday.com/newspc/show? +69story.com##aside#secondary > section[id="text-2"] +.m.bookben.com^ +||meitulu.com/css/*showgg.js +minecraftzw.com##.e3lan-top +||qkikkg.xyz^ +@@||cdnjs.cloudflare.com/ajax/libs/fuckadblock/3.2.1/fuckadblock.min.js$domain=papalah.com +dayanzai.me##.stopban +||78dm.net.cn/acg_201*_980 +/guanggao. +ynet.com###ynetG_B1 +||jsdelivr.net/gh/vip888vip/*960x80 +@@||cruisecenter.com.tw/data/ad/ +||52rd.com/Pic/Click/ +||bdlm*.hc360.com^ +##a[href^="https://adm.beimg.com/"] +zuoyebang.com##img[class^="bottomBanner_"] +123.sogou.com,qq.com,web.sogou.com##.cs_right_hw +368015.xyz##div[style="height:60px;width:100%;"] +21ic.com###IC2008Ad +||qiming360.com/mingJs/xmKu_ +||9831tb.com^ +||laod.cn/wp-content/uploads/*/ad- +||crodfnyk.xyz^ +.xyz/vh1/$script,third-party +elecfans.com###company-ad +lzacg.one#?#.sidebar .zib-widget:has(> .textwidget:only-child > a[target="blank"]) +||uerbgnkas.com^ +||kvkcei.xyz^ +xtuan.com###foot_zhaobiao_bar +fx112.com##div[class*="floatap"] +||12img.com/ad/ +huanqiu.com#%#//scriptlet('set-constant', 'AD_SURVEY_Add_AdPos', 'noopFunc') +||mggzah.icu^ +###breadCrumb + .t[style="margin-top:8px"] +||kkeojk.xyz^ +||56ads.com/js/main.js +||chinairn.com/Template/*/upload/ad +||script-bd.baixing.net^ +bh.sb##.large +iqilu.com##.kejie_ad +||qetlwsy.top^ +||bbyfsfo.cn^ +yicai.com##.gg_preview +klyingshi.net##.row > div.url-card:has(> div.url-body span.badge-danger) +||static.meijiacun.com^ +||gg163.net/js/163bbsad.js +tieba.baidu.com##.client_ad_topBanner + .statistics_img_view + li[class] +||sinajs.cn/t6/home/js/pl/guide/adforfqy/ +foodmate.net,ksbbs.com,kshot.com,oschina.net##.banner_box +finance.ettoday.net##.all_news_text1 +||csdn.net/msg.popup.js +fun48.com##.margin-big-bottom +||wangjing.cn*/upload/com/ +pixiv.net##.multi-ads-area +so.com##.res-mediav +||xiumb8.com/js/lm_ +###bannerAd +||jgvkxp.xyz^ +##.ad336left +||ofweek.com/pop/ad/ +aiyuke.com##.GGad +||ceryt111.fun^ +@@||gameflier.com/ad/ +@@||google.rs/translate_$media,third-party,xmlhttprequest +py91.net##.widget_textads +affyun.com##.text ~ a +baidu.com###fengchaoad +bcbay.com,creaders.net##.syzx +||7xdown.com/bz/ +||yiihuu.com/assets/common/yh/js/yh.ad. +qq.com###AdRight-Article-QQ +||mvcat.com/api/wx/follow.js +##.ad03 +/img/skin/tao$domain=firefox.com.cn|firefoxchina.cn +||poster.weather.com.cn^ +||beijing-air.com/images/a/j +dianping.com##.bottom-contrainer +ping.chinaz.com##.sth > .col-red +yzzk.com##.promo +||ssp.zf313.com^ +||drummers.cn^ +||zx.docin.com^ +||iwursero.top^ +imeee.cn##.DA336 +||json.cn/d/dt/ +eprice.com.tw##.ad-970x250 +||bing005.shop^ +@@||shine.cn/showadcode2.asp?posid=68& +##.wumii-bottom-popup +||oneinstack.com/images/oneinstack- +||apiimg.com/huaer/xiahe. +||maxthonimg.com/v6/festival/ +||gedafdshb7.fun^ +##.ad_640x90 +.cn/js/ads/ +||games.ifeng.com^$subdocument +||zylizz.xyz^ +||jp1357.com/addon/ +||kxmusic.cn/tc/js/script.js +||awcdst.icu^ +hcomic.net##div[class^="horizontalBanner_"] +aimazu.com###gotoTop +||crs.baidu.com^ +||dragon-guide.net/pic001/pic/shangcheng/ +.one/ads/ +||rouman5.com/cps/*.gif +90oo.com###right > div[style^="height:60px; width:750px;"] +ifeng.com##.ad1000_2 +||cwssfg632.shop^ +4gamers.com.tw##.vue-portal-target > div[style="min-height: auto;"] +||yvbjctqs.xyz^ +oschina.net##.recruitment +wnacg.com#@#.pcd_ad +||gzzza.com/html/ +||hjjshv.xyz^ +v.qq.com##.module-image[style*="width:1100px;"] +/pagead2. +||mcighme.icu^ +ettoday.net#@#.iframe-ad +edrawsoft.cn##.activity-banner +21yq.com##div[style^="width:980px;height:80px;"] +||monnsutogatya.com/himg/monst/ +||mvevgi.xyz^ +||gg.blueidea.com^ +hao123.com##.hao123-search > .notice-fixed +||u78s.top^ +||iaosua.com^ +||sodhef.com^ +@@||doubleclick.net^$xmlhttprequest,domain=yyets.click +jingangjing.com##.free-popup +@@||123dhang.com/supo/advertisement.js +||news.ssp.qq.com/app +zhujiwiki.com##.ssrtop +||yy8090.vip/js/abc/ +||dffy.com/static/popUp. +lalulalu.com###overture-side-bar-ads +dacota.tw#?#section[class*="widget_text"] > .widget-wrap > .textwidget > div[class^="Zi_ad"]:upward(3) +||drpsjp.xyz^ +||183yf.cn/img/nz.png +||jp2468.com/api/vip/vipshow.php +||plnbnd.xyz^ +||rupmlh.cn^ +@@||jsdelivr.net/gh/bde4admin/*/prebid-ads.js$domain=bde4.icu +csdn.net##.toolbar-advert +x9av1.com,jsav2.com##.row > div.colVideoList:not(:has(> div.video-elem > a[href^="/video"])) +||irqaci.xyz^ +rjno1.com#@#main > div[class^="qnb"] +csdn.net,itboth.com,iteye.com,itkeyword.com###ad_pop +ntm.gov.tw#@#.ad-left +##.ad-pc +baidu.com##.ggbtm-vip-close +||dytt.com^*yb.js +||uessnah.icu^ +||qncye.com/ads/ +||aiyidu.com/aiyidu/adver/ +mafengwo.cn###float-pannel-gloable +||zoom.zshu.net^ +w3cschool.cn##.abox-item +||79181531227.com^ +qyw0.com##.s11 +##.ad_pc +||qedgcxi.cn^ +@@_ads_cpc_$domain=90lover.cn +||4gamers.com.tw/ads- +##.a_fl +@@||adobedtm.com^$script,domain=sonystyle.com.cn +###table1[width="812"][height="60"] +cangjige.net##.wp[style="height:36px;padding-top:15px;"] +chinanews.com,chinanews.com.cn###dingtong +/bbhd_*_kkis.js +||2005net.net^$third-party +#%#var AG_each = function(selector, fn) { if (!document.querySelectorAll) return; var elements = document.querySelectorAll(selector); for (var i = 0; i < elements.length; i++) { fn(elements[i]); }; }; +||xhsdwjes.xyz^ +||1dcbzuv.com^ +||qbhjokk.xyz^ +ifeng.com###optimusPrimeContentId_left +||mydrivers.com/m/images/v1/kkjapp_down.gif +xdf.cn##.middleadv +||bxlmrl.xyz^ +2345.com##.mzdh_bottom +||gdd08.com^ +||lzep.cn/ep/sda/ +||httpwwwdcom.com/js/aaa/ +||360.cn/index/showjokes?callback= +##.pccb > .ng-star-inserted +||fyexyd.icu^ +||bt121.net/ats/ +1x6666.com,365kl.net,3qled.com,52ch.net,bbs.qbaobei.com,chinafix.com,cnyw.net,cqsq.com,gz0668.com,hcbbs.com,i5qs.com,mahoupao.com,mcncc.com,qilindao.com,susongbbs.com,xsool.com,xydai.cn###diynavtop +ldqk.xyz,masuit.com#?#.panel:-abp-has(>.panel-body>a>img) +||3987.com/all_site/ +||yktj.yzz.cn^ +||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg +||taoguba.com.cn/res/js/tgbgg/ +ifeng.com##.vAdImg +jishulink.com##.invite-code-dialog +jinbaodm.com##div[style^="position:fixed; top"] +||hahusa.top^ +||zol.com.cn/active/*guomei +||ilxdh.com/navig/2020-09-08/1599538164_1474.png +||static-cn.plista.com^ +||ejxo0.online^ +iqiyi.com##.qy20-h-carousel_con-gray a[href^="http"]:not([href*="iqiyi.com/"]) +||novipnoad.com/bd/ +jsphp.net##.widget_tuijian +||d1.1ppt.com^ +crx4.com,galacg.me,moneyweekly.com.tw###carousel-example-generic +bilibili.to###yytf +||b1.91jucai.com^ +159i.com#?#div:-abp-has(> img+a) +mcdulll.com,mcdulll.pixnet.net###box1989082 +||tmall.com^$popup,domain=eyusky.net|iqiyi.com +||dayujs.top^ +58.com#?#TR[logr]:-abp-has(> .t > .mt-p-tit > .jingpin) +/advideo.$domain=~advideo.pro +||w3cschool.cn/index/*Advert +||o1.jyjyj.cn^ +||xs.houyi.baofeng.net^ +||hthvc.icu^ +||cbttnmo.xyz^ +kanman.com###\5f _acgn-virtual-coin__ +||bilibili.com/html/ads-index.js +###tr_ad1 +/cm-pop-up-banners- +||onalzlk.top^ +webkaka.com##td[id$="_SPONSOR"] +yahoo.com###crazyad_mask +/plugin.php?id=popad_7ree& +ixigua.com##.banner-section +iqiyi.com##.video-ad_right +webjx.com###middleimg +ithome.com##.sb_list > .bx +ddzimu.com###popup +||mito03.top^ +||itc.cn/activity/activity_js/changyan_config_ +||mianwww.com/wp-content/uploads/2014/05/insigmaedu1.gif +||wanfumei.net^$third-party +health.tvbs.com.tw##.ed-hidden.ed-xl-block +||wuiqiq.xyz^ +hao123.cn##.llc +news.ebc.net.tw##.inline_text.has_marker +||wdcigo.xyz^ +douyu.com##.his-sign-cont +qinbing.cn##.logo_right +||ettoday.net/ad/*_action.js +##.pause-ad +hamivideo.hinet.net###overlays-ad +||ruian.com/img/y13/ +jdyou.com###popWrap +2yjw.com,fuliba2021.net,itdog.cn,zhujiceping.com##.orbui +skydy.top##.swiper-slide[style="width: 1170px;"] +cb.wpio.xyz##.tpc_content > span > span > a[target="_blank"][onmouseout] +baidu.com##.reader-pop-manager-view-containter +||ecmb.bdimg.com^ +.php?zoneid= +gov.cn###ippad02 +||60.190.139.164^ +zrblog.net##a[href^="http://u.zrblog.net"] +||hentaicomic.*/data/game/*/wap.gif +@@||sozi.cn/images/ad/tj +3dmgame.com#?#.downl_list:-abp-has(style) +##.tmall_ad_container +||44pd.com^*xds/ +||fzjbsvgz.icu^ +btyingshi.com##.aside > .card:last-child +@@||cgmodel.com/plugin/share/ +||lgidskil.top^ +csdn.net##.passport-login-mark +mcbbs.net###lsform + .y +firefoxchina.cn##.engine-jokes +@@||udp2p.com^$generichide +||yerhfnytky.top^ +52movieba.com,acglala.cc,awaker.cn,bimiacg4.net,bimiacg5.net,ccav1.com,cgown.com,cn163.net,comicat.org,cosersuki.org,dzbhdm.net,epinv.com,eroacg.com,galacg.me,gmgard.com,haochi123.com,hexieshe.cn,hexieshe.com,hexieshe.xyz,hggard.com,hmghmg.com,hmoe11.net,idanmu.ee,ifenpaidy.com,jitapu.com,jitashe.org,kelatv.com,kisssub.org,languang.co,llss.bz,mtrend.cn,mydrivers.com,mzh.ren,nxing.cn,oyksoft.com,souxue8.com,speedtest.cn,tingroom.com,touchgal.org,whsir.com,xxshe.info,xxshe.xyz##a[href*=".taobao.com"] +58b.tv#$#.playmar > .playl { visibility: hidden!important; } +6park.com,club.6parkbbs.com##.adv-6park +||baidu.com^*/getrelatedbusiness? +||jishulink.com/images/content/visitor-footer- +swoole.com##.swoole-resource +hqyman.cn##a[href="https://hqyman.cn/taobao/"] +||chenjiayu.cn/gg.js +||bceapp.com/jj/1716mid.js +19lou.com,ihome99.com##.ad-190x60 +||bzvhgbr.xyz^ +||shbxugs.cn^ +dl.pconline.com.cn##.dlTips +||cc.8181zx.com^ +2345.com###header-news +@@||sogou.com/adpub/cfg/sendmsg. +##.top_box > #indextop +||jy04.shop^ +@@||jpush.cn^$domain=jiguang.cn +||tptoon.com/skin/js/tjtjkk. +||yuayku.xyz^ +||ssgg.chazidian.com^ +rjno1.com#%#(function(){const b=function(d){const a=Math.pow(10,d-1),b=Math.pow(10,d);return Math.floor(Math.random()*(b-a)+a)}(12);window.addEventListener("load",function(){window.google_image_requests=[],window.google_global_correlator=b,window._hmt=window._hmt||[],_hmt.id=b})})(); +gcxa.cn###edu_ad63 +||ze5.com^$third-party +||facebook.com/v2.6/plugins/video.$domain=storm.mg +ofweek.com###fixedADWrap +360kuai.com##.taskbar +@@||google.it/translate_$media,third-party,xmlhttprequest +aoshitang.com###msg_win +||imnks.com/ad2023/$image +world68.com##.zzs_ad +duba.com###ad-zongyi +porn5f.com###dprecommend +||ayxz.com/images/$script +58b.tv#?#.datal.main:has(> table div[id^="revive_zoneid_"]) +cw.com.tw#?#.adActive > div[class^="leaflet"]:has(> div[id^="div-gpt-ad"]) +/css/gg.js +||qingsedhh.com/images/gg.gif +||zca31.com^ +baidu.com###fengchao-dialog +||miningzhizhong.top^ +||fdtlfl.xyz^ +abmedia.io##a[href^="https://www.okx.com/"] +||xchina.*/ad/ +||i9klo.com^ +||eastmoney.com/banner/ +chexun.com##.attr-outside-ad +autohome.com.cn,sina.com.cn##div[class*="game"] +###asx_text +feebee.com.tw###fsa-srp-top-container +91rb99.com##.top +||tvgkatu.icu^ +/images/content/1436/*$domain=chineseinla.com +||szaction.cc/public/1/assets/js/custom/tt. +10086.cn###bottomBigBanner +tbtdg.com##.reveal-modal-bg +10jqka.com.cn,hepan.com##.onead +@@||momovod.com/js/momo/adsbygoogle.js +toutiao.com#?#.has_action:-abp-has(> .icon_ad) +3g.qq.com###template_gdt_div1 +9uu.com##.gao-bg +iqiyi.com##.rm-header-ad +||mvbvvch.xyz^ +55188.com##a[href*="/gg-link."] +finance.sina.com.cn##.downLink +baidu.com,bdimg.com,tieba.com##.fengchao-wrap-feed +||dabajd.xyz^ +||ad-img.diyidan.net^ +||rapfdf.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###j_worldcup_info_banner +||tyodot.icu^ +yiche.com##.right-box > div[class^="ad"] +||chinaz.com/newshome/ +||bb1nn.com/js/i.js +||mycodes.net/js/*.js +||mrthav.xyz^ +||a.52wubi.com^ +aura.cn##.left-zc +||zhenbuka*/statics/js/toastr/jquery.toast.js +||ydhfvrug.xyz^ +||szbxw.cn^ +||zjplnz.xyz^ +silver.org.cn##div[class^="ads_"] +||elecfans.com/images/*/675x90. +||tgwfaz.icu^ +qciss.net##div[style^="border-style:solid;"][style*="border-width:2px;"][style*="width: 80%;"] +v.shensgo.com##brde[id][style*="height"] +educity.cn##.content_relate:nth-child(5) +||z1.o8h7d.cn^ +hjenglish.com###uzt-mask +ddooo.com##.gadat_list +/template/hei/js/1.php +||xiaoxiuapp.com^ +||hccoeutg.com^ +apiref.com,iodraw.com,matools.com###popAd +###bottomAD +boo.tw##.blockUI +@@||camerabay.tv/ads/entry/camerabay/fullbk/bg.jpg +/cari/daybanner/* +##.edtj +||akqipai.com/m/Tpl/v3/js/indexbottom.js +@@||anime1.me/ads.js +qq.com##.business-Article-QQ +||facai383.oss-cn-guangzhou.aliyuncs.com^ +||btyhnbmn289.shop^ +||gtimg.com/finance/js/st/p/news_ad_ +@@||s.tgfcer.com^$generichide +||vrosqolcg.com^ +||qhtdmlf.xyz^ +||av30.xyz/cs/ +||xayjbz.com/static/images/apc. +||jrutvnca.top^ +image.baidu.com###only-lady-sec +ltn.com.tw,ctwant.com,mobile01.com##div[id^="_popIn_recommend"] +3h3.com,downxia.com##.gaosu_down_div +||oryhic.xyz^ +||shipostrich.com^ +||pcgames.com.cn/g/ +||img.ferlie.net^ +/media/fitad/* +###ad > #h2_player_prevideo +psnine.com##center[style="overflow:hidden;"] > a > img +ifeng.com##div[class="adbox02"] +@@/jquery/*$domain=sobooks.cc +vpser.net##.ab_cpr +sea-group.org###text-7 +/html/ad/* +||jdrnpei.xyz^ +||mm.jbzj.com^ +||whrwlxg.icu^ +||nzhzzd.xyz^ +||img1.hblds.com^ +||dm.sanwen.net^ +cnr.cn###gtop00 +liaocao.tv##[onclick] +hk.xfastest.com##.adv-side-wrap +weiyun001.com##.g-side-r > a[onclick^="onLogs"] +||boce.com/statics/img/img27b.png +html-js.com##.ad-blank +###floatAd-left +vjmedia.com.hk###text-33 +16sucai.com,bbxxbbs.net##table[width="960"] +||mweriox.top^ +sohu.com##.godR +||tvpqrydt.xyz^ +||kkacrgx.icu^ +||51ztzj.com/res/web/img/download_sign +/clicktotal/ClickTotal.js +||fptbdr.xyz^ +||tnvnnn.xyz^ +pixabay.com##div[class*="sponsoredWithResults"] +duba.com,newduba.cn###J_FloorWrap +||stats.chinaz.com/tool/ +/moneymaker/js/player/vast- +ifeng.com##.blockR.ipad_none:nth-last-child(2) +2cto.com##div[style^="float:left;width:300px;"] +||kxxfdwt.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.opr-xmas-game-container +||firefoxchina.cn^*_topbanner +jijidown.com##div[style="position: fixed;right: 0;bottom: 0;"] +||xzxforn.xyz^ +||dwstatic.com^*/sidebar.js +||uyohyy.xyz^ +8727ck.cc,8726ck.cc,8724ck.cc##.stui-vodlist > li:has(> div.stui-vodlist__box > a[href][target="_blank"]) +||oyotqp.icu^ +||kfpicimage.xyz^ +||sspai.com/attachment/sponsor/ +yam.com##.axdBox +##.bm.a_c +||guokr.com/apis/flowingboard/item/guokrapp_ +||dshjbn.xyz^ +||88p2p.com^$popup +##.player-box > [style*="flex; justify"] +||cmiega.top^ +eeyy.cc##.ads650 +laowang.vip###frameYl5IOf +||wkitere.top^ +china.cn###pic_banner +||wdff.buzz/hengf. +cw.com.tw##.ad--video +||doujs06.xyz^ +||u33011.com^ +||5vdd.com/mobile.jpg +||3.5646.cn^ +sogou.com##.js-ad-item +/getGG.php?key= +c114.com.cn###barrage_ad +||188soft.com/js/PCsoftDetailAD.js +||bmp.ovh/imgs/2020/09/3e4e11ecc19c4bd6.png +||89hdn.cn^ +douyu.com##.imageItem-wrap[style="width: 1200px; height: 120px;"] +||360kan.com/v1/block?blockid=544& +maxfoodfun.com###links > div[id] > div.hslice:not(#search):not(#qrcode):not(#category):not([id*="-article"]):not(#latest-comment) +/zz/wenzi2.txt +esnai.com##table[width="960"] > tbody > tr > td[height="90"] +byxx.com##.cataAD +78dm.net##div[class^="couple-"] +52pk.com##.down_adv +baidu.com###asideLeft +##img[src*=".jd.com"][style="width:100%;height:70px;"] +baidu.com##.result-op[tpl="b2b_prod"] > div > .c-border +ifenpaidy.com##.btn-copy + .btn +||baidu.com/newspage/api/getimagelandafd? +||ithome.com/file/js/money/ +||jdbeht.xyz^ +yfsp.tv,aiyifan.tv,iyf.tv#$#.bg-overlayer { pointer-events: unset !important; } +gzmama.com###zone_left_couplet +17house.com##.suiping +||shbzkkj.cn^ +||antpedia.com/viewnewsrightboxtop. +baidu.com##.home-app-promotion +||weike87.com/images/*0 +1kkk.com,dm5.com,dm5.hk##.adform_1 +||lianyexiuchang.cc/js/ +chinanews.com###dt_advert +||1s8pj.cn^$third-party +w3school.com.cn###fttg +qingwk.com##.l-red-packet +hqew.com##.js-ad-tips +yahoo.com###hp-ad-right +/pcode.jsp?uid=$script,third-party +/kan/js/dian.js +###QQ_Full +||jcodecraeer.com/plus/fuckblok. +getrelax.cc#$#iframe[src^="https://syndication.exosrv.com/"] { display: none!important; } +##.bottomd > .closebox2 +||guyhok.xyz^ +ysgc.fun,ysgc.tv##.swiper-slide > a[target="_blank"] +wenxuecity.com##.otherposts > ul > li > a[target="_blank"] +dngz.net##.listright > a[target="_blank"] > img +||2sfpy.icu^ +today.line.me##div[id^="ad-module-"] +||alicdn.com/img/ibank/*_775661713. +taobao.com###J_shopkeeper +4c.cn##div[id^="mid_ad"] +aishoujizy.com##a[target="_blank"] > img[src^="/upload/1/"] +19lou.com##.ad-980x40 +||rvnaxwqe.icu^ +sohu.com##.adv_960 +baidu.com##.wgt-ads +yahoo.com#?#.js-stream-content:-abp-has(div:-abp-contains(雅虎搜尋)) +/img/hgame/*_600x +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##li[data-daid] +||agogo.tv/images//uploads/ad/ +qq.com##div[class^=ad-type-] +tuliu.com###red-envelope +||bianshengruanjian.com/tu/%E6%89%93%E8%B5%8F. +||mobile.sina.cn/public/files/image/600x150_ +||26gg.bnq86.com^$third-party +csai.cn##a[class^="gg"] +sina.com.cn##A[href*="/comfinanceweb."] +||alicdn.com/img/ibank/*_755908572. +||igo99.cn/js/freetest.js +phpvar.com##.qrcode-swiper-container +/k300g250. +h-ciyuan.com#?#.gridview-featured-posts-area > .widget_media_image:has(> .gridview-box-inside > .wp-block-image > figure > a[target="_blank"]) +##.widget_ui_textaub +||6v4.cn^$third-party +sysin.org##img[src^="/img/promotion"] +||autoimg.cn/bi/mda/ahas_body. +muchong.com##.xmc_green + a[href^="creditshow."] +||xonlines.com/upload/gg/ +||downhot.com/Res/js/arc.js +ccoo.cn##.n_adbox +||6park.com/parks/$script +chajia123.com###dy2 +||tv699.com/Templet699/js/ +##.area > .tuiguang +||cwerilxf.top^ +sina.com.cn##DIV[class^="side-btns-jifen"] +gamer.com.tw##.a-mercy-d:not([href*=".gamer."]) +10086.cn##.advertisingOther_img +www.17173.com##.pn-tg +###div_top_ads +||sx.fakjkwp.cn^ +||juresda.top^ +cnyes.com#?#article > div:-abp-has(>div[id^="div-gpt-ad"]) +||kjacgk.xyz^ +so.com##div[id^="guang-"] +##.content > a > .topline +||cnki.com.cn/cnki/js/adimgdetail.js +.com/m.aspx?action=$third-party,script +||dkvakldvnsv.com^ +###apprecom2.apprecom +||sweriob.top^ +58b.tv#$#.playmar > .playr { visibility: hidden!important; } +||cdntxt.com/t2/ +@@||a.alimama.cn/tkapi$domain=ieeee.com +jianshu.com###web-note-ad-1 +mobile01.com##.u-ad-image +||weike87.com/images/*1 +||iwmigu.xyz^ +||4oz4n.icu^ +163.com###bobo +szxx.com.cn###A2 +chinanews.com.cn##.wap_adv +||www.china.com.cn/node_$domain=news.china.com.cn +.net/vh1/$script,third-party +||jmesxbe.icu^ +||autohome.com.cn/vr/*?pvareaid= +jisilu.cn##div[style^="height:60px; width:960px;"] +||kwongwah.com.my/wp-content/plugins/dibs_engine/js/dibs_popup.js +hackhw.com##.entry-banner +cupfox.app#?##outer-container > .model:has(> .model-content > a[href*=".jd.com"]) +@@||icbc.com.cn/Portal_Resources/Common/AdRes/ +423down.com##.menu > .menu-item:nth-child(n+6) +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > .result ~ div:not([class]):not([style]) +||guifudi.com^ +||8zkt7.xyz^ +disp.cc##.ads_bot_block +||hackhome.com/js/zt.js +52ch.net##.chn_pb +fx110.com,fx110.uk##div[id^="ghz"] +||cjn.cn^*/ad/ +||ghgasdb365.shop^ +ksbbs.com###main > div[style^="height:65px"] +/adsrich. +so.com###js-mh-news-sdk-sad +@@||guancha.cn/ad/m_ +||wmnraj.icu^ +||stat.xgo.com.cn^ +||ijinshan.com/images/gk/game +||xvorpqz.cn^ +||ljnrjt.xyz^ +||emdcadvertise.eastmoney.com^ +163.com##.bobo-area +poedb.tw###head_toolbar + .text-center +||cmdcdacq.xyz^ +||evscnfj.cn^ +cnfol.com##.wid325AdBox +||ersjnpwf837.shop^ +5588.tv##.ringhttu +||putonghua520.com/skins/10ym/baicai.gif +||xoimg.com^$domain=18board.com|18p2p.com +||m1.kuanff.com^ +@@||mens1069.com^$generichide +.js?advertID= +moerats.com##div[style="box-shadow: 1px 1px 5px 5px rgba(17, 150, 196, 0.35);border-radius: 15px;"] +||1615vip.com^*.jsonp +||xlam.cn^ +||ldb.cc/js/top.js +516qq.cn##.w1100 +.top/upload/ad.js +tw.nextapple.com##[id^="lrec"] +###table1[width="794"][height="60"] +||ghabnq.xyz^ +fznews.com.cn##.kuang100_right +||dotuij.top^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_left > [style*="important"] +||yhutou.xyz^ +porn5f.com###main_video_block > .m-t-5.pull-right +||zhimg.com/80/v2-c991beef44875fa5971c6bbfc6dc0ad2. +/1982/java/static/js/*headad.js +qq.com##.tb12-activity +||hhffks967.shop^ +||bd9wv.icu^ +cnfol.com##.FixedRight +ltn.com.tw##.list > li[id^="newest-native"] +||panmeme.com^*/common.js +||js.yanyue.net^ +||koyi.pub/wp-content/plugins/dh-anti-adblocker/ +##.wrapper > #asxv +###hellobox > .mylist +/lapi/sign/web/getinfo +||8jkx.com^ +||eastmoney.com/js/*Share.js +douyu.com###js-live-room-recommend +guokr.com##.side-adv +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(div[class*="head-info_"]>img[src^="data"]) +makaidong.com###bdcs +@@||wwads.cn/js/makemoney.js$domain=baomidou.com|nodejs.cn +plus28.com##div[style="width:960px;margin: auto;"] +jingyan.baidu.com##.activity-entrance +||zhy333.com^$third-party +@@||hkjc.com/bannerad/ +||qxvp6.site^ +||kreisis.top^ +||fq07.shop^ +||ytoeyxz.icu^ +gucheng.com##.fixed_img +v.qq.com##.slider_item[href^="http"]:not([href*=".qq."]) +baidu.com##.ad-block-1 +||ye120.com/zool.js +||301848.com^ +||m28458.top^ +||tonghuacun.com/js/uc.js +/advertisement/* +th7.cn###PcPoPmarket +||mongoosejs.net/docs/images/lagoujika.jpeg +@@||exoclick.com/iframe.php?*=2596969&$domain=jav777.cc|jav777.xyz +||775mz.com/js/jquery.js +||tenmax.io^$third-party +wdzj.com###ggao-article-bottom +/js/cpc2_i.js +techbang.com##.ad_grey_floor +##a[target="_blank"] > img.king +||ezprice.com.tw/ezysm/ +pchome.net###rightbar +||shewang.net/images/*/banner +nownews.com###ads-footer-bar +||xvideo.cc/etology2.js +||zuowen.hydcd.com^ +||58file.com/down/xyk. +||riju.com/pr/$domain=jpfans.com|jpseek.com +###photo--content-title-bottomx--foot +||tuicool.com/images/upload/aliyun +##a[href*=".wzfqitm.com/"] +mop.com##.post-content[href*=".taobao.com"] +/ad_footer_ +@@||cnzz.com/z_stat.php$domain=newsite.sherpa.com.cn +||kanjuwo.com/js/6 +/tres/recommend/*$domain=ifeng.com +iqshv.com#?#.post-list-item:-abp-has(.thumb-link[href^="http"]:not([href*=".iqshv."])) +_btbttme/fox/img/QT_ +||chinaz.com/section/ +qq.com##.dongfengad +hao.360.com###sidebar +gamme.com.tw##.adread +||ylkdbbvy.xyz^ +||zq.lansedir.com^ +||hello-jm.com/foot.js +||*.$image,redirect=1x1-transparent.gif,third-party,domain=rmdown.com +||linecg.com/uploads/banner/ +||168gamer.*.php?mod=js +/jianshen8/images/plan_banner_ +||mail.pchome.com.tw/img/classifieds/300120.gif +||ga1.3dmgame.com^ +||2d4f.com/love/ +||kvhtsvy.xyz^ +||hvlitr.xyz^ +10jqka.com.cn##.top-bar-fl > .top-hot +||qouvxliy.top^ +/guanggao2. +||iuytfvhl.top^ +nick18.com,niko18.com##.list_ads +||uu8811uu.com^ +||jianpian.vip^$third-party +ilvruan.com##.n2-section-smartslider +sina.com.tw###cboxOverlay +||wbiao.cn/common/adapi/ +||m1.81312.com^ +||gblxtlo.xyz^ +subhd.com##.container > div[style="margin:0 auto;"]:not([class]):not([id]) +xmfish.com##.advert-entry-list +||knifdlad.top^ +||retinaesprent.com^ +cngold.org##.ag_fwindow_ywp +eastday.com##a[href*=".uugtv.com"] +flyzy2005.com##.widget_kratos_ad +||m7i1k.fun^ +||imgs.cc/images/ad_ +iyf.tv##vg-player.ng-star-inserted > vg-pause-ads + div.caption.show > .inner +||uvekyvs.icu^ +csai.cn##.keifu +||iapolo.com/myjs/ +2345.com##.top-lvy +##.ad-group +||tcfgtd.xyz^ +yodu.org#$#body[style] { overflow: auto !important; } +talkfx.co###frameff1Hu9_left +||qsyliey.top^ +||chinacloudsites.cn/api/promotion? +://m.*.pw/*.js?ssid=_ +/js/lm.js$script,third-party +||sogou.com/wap_ask_service? +||eastday.com/gg_channel.html +||baidu1.codejie.net^ +9tour.cn##a[href^="http://union.zhuna.cn/"] +kxmusic.cn,kxmusic.top##a[href*="smsf8.com"] +||sqevnrb.com^ +||moegirl.org.cn/insight/MoegirlInsight. +||kmf.com/da/do +win7w.com###xldz +||aourgk.xyz^ +||1mxabnt.com^ +||douyucdn.cn/dyfelocal/act/*/ad.png +||c1d8i3p6.com^ +.com/js/LAD.js +||iy.com.cn^$third-party +060s.com###header4 +||gold.szonline.net^ +timedg.com##.crossAdvertise +bbs.liyuans.com##div[class="panel panel-infot"] > a[href^="https://www."] > img[height="100%"][width="100%"] +||fekpcd.icu^ +||qeuckn.icu^ +||yliffnsc.xyz^ +||ixstng.cn^ +||ejieban.com^ +fuyang.net##.eis_fbox_260:nth-child(n+3) +||gewqashbwq.fun^ +15w.com###rec +||dajiahao10.top^ +||sogoucdn.com/nstatic/js/tmallskin_ +elecfans.com###diy_company +bella.tw##.hide-mobile[style] +||eewrutw.top^ +||kaixin001.com.cn/js/cpm- +||cngoldres.com/advservice/ +||pcauto.com.cn/zt/halfprice/ +editcode.net##.fwinmask +||qwerioy.top^ +bilibili.com###slide_ad + .ad-report +||huuocxu.icu^ +/showadcode. +||ifengimg.com^*/100-100- +##.archive > a[ontouchstart="this.click();"] +tw116.com###t365 +||iwerilxo.top^ +||4btbtt.com/slade.js +esu.moe,esu.wiki##div[style*="position: relative; max-height: 400px;"] +159i.com###top > div[class]:first-child +||ali213.net/js/common/zpro/zprotxtpicurl.js +zuowen.com##.dialogP +hao123.com##.top-test +||s.so.360.cn^ +||rfidworld.com.cn/js/RFID.js +||zzc.cn/b1/live_b_ +||vyriglq.cn^ +mabiji.com##.celan +iqiyi.com##.banner980 +firefox.com.cn,firefoxchina.cn###promote-top-list +discuss.com.hk###gamepage_banner +portablesoft.org##.downcenter +##.bdyp-sygg-ul +||dun8qk8.lkmxqq.com^ +/js/btdigg.js +||cdmyeg.xyz^ +jijidown.com##div[style="height: 462px;"] +bnext.com.tw##div[id^="sponsor-"] +||kdeh.cn^ +||xitong8.com/theme/default/images/725x90.gif +||hahamx.cn/images/float-ad/ +||wm.mipcdn.com^ +||galaxymedia.xyz/app/images/banner.gif +||sogoucdn.com/dhfe/ +waerfa.com##section > div.content > p > a[href*="taobao.com/coupon/"] > img +||hxqu.com^$third-party +hao123.com###top-anim +||zkfojr.xyz^ +||stnew.xyz^ +||58.com/show/ads? +||bdstatic.com^*/js/m.js +||a.hbf23.cn^ +/fshow.php?id=$script,third-party +v.youku.com##.laifeng +||fxsc6.net/js/ +orsoon.com###new-actentry +||nkjkvn.xyz^ +5icool.org##.ads300_show +||jeepyy.com^$third-party +||bowvses.icu^ +###rip[href*=".taobao.com"] +.top^*-960x80-*.gif +||aknkvallbfml.com^ +||osyliek.top^ +||judthih.cn^ +||xrmfjzqo.xyz^ +/dngz.net\/g\d+.js/$domain=dngz.net +||eng24.com/js_new/copyright_float. +||hewrutu.top^ +||aixuntupian.oss-cn-hongkong.aliyuncs.com^ +||lvse.com/9 +||90oo.com/tp/188jj.gif +aipai.com##.video_gg +||dhukul.com^ +||rc.ie13.com^ +||5173.com/__tra.gif? +||78dm.net/acg_201*_1680 +||ifengimg.com/a/*_w300_h250. +jianshu.com##.aside > div[aria-label="3rd-ad"] + div:last-child +6665.com###fgdiy09 +||jhlnlt.xyz^ +so.com##.e_idea_wenda_detail_spread +360kuai.com###content_top_gg +@@/prebid-js-$domain=mytvsuper.com|tvb.com|tvbs.com.tw +||tgb1l.icu^ +/EZ-YAHOO/*$domain=ezvivi.com +aiyingshi.tv###ADmask +||yxad.com/baidu/ +||pconline.com.cn/intf/hot_ +myhack58.com##.adv32 +||upload.cc^$domain=99re.com +acgking.com,dbtmn.com##.asst +huya.com#?#.item-pic:-abp-has(>.img-tips) +||ktzhk.com/file/adv/ +||nfptyfk.xyz^ +||czpnpjrg.xyz^ +v.163.com###v_shapeLeft_divId +@@||renfei.net^$generichide +@@||dlkoo.cc/down/Copydown1 +||a.baidinet.com^ +||qhimg.com/static/5dcd236fc857be9c,5b391c33a0748022.js +subaibai.com###note +qq.com##.father-ad +||xn--sssy7vrppusjyv0a.com^ +||zol-img.com.cn/detail/js/module/app-download-float/script.js +.com/rs/shto/$third-party +chinatp.com.cn###FloatRb +macdaxue.com##.content > div.asb +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.dialogJ.umoney-promotion-dialog +power.baidu.com,zhidao.baidu.com##.wgt-clew[data-type="goods"] +||18comic.vip/templates/frontend/airav/js/92_81c7.js +_300_250_ +||sina.cn/cm/sinaads_ +m.kuaidi100.com##.adsbygoogle + a +||bzhanyy.com^*.gif +js0573.com##.gg_bnr +||21.zhaozongjie.com^ +||zc173.com/173fee/ +||kukuplay.com/upload/*.swf +||ggtp-1255424916.cos.ap-chengdu.myqcloud.com^ +coolaler.com###hd +news.china.com.cn##.Wrapper > div[style] +weibo.com###pl_common_ali +_click*(com? +||ksrgsc.xyz^ +||pqzjki.cn^ +||jia.com/js/common/jia-common.js +||caoav.net/img/*.js +||tahznx.xyz^ +@@||jandan.net^$generichide +123pan.com##.advBanner +th-sjy.com##.banner-post +||ac*.faxingchina.com^ +||baidu.com/WerbungAjax/getTonglan? +||oodcd.cn/pan/config/history. +xiaolz.cn###zzbuluoled_sx +##style + .need_grid_img +dxqck.com##.myadswiper +lenovo.com.cn##.hotAd +###right_up_float_ad +segmentfault.com#?##question-wrap > .row > .col-xl-auto:has(> #first-ad:first-child + #gridAd + #second-ad:last-child) +msn.cn##cs-native-ad-card +||faaqgje.icu^ +||bjhhbox.xyz^ +chinatimes.com##.l_ad +/js/wahha/* +||adp.cnool.net^ +||gtimg.com/www/mobi/js/app-bar- +||xrllybr.xyz^ +nivod9.tv,nivod8.tv,nivod7.tv##.nav-ads +||muresdx.top^ +||ip138.com/banner/ +###header-top + .advertisement +||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js +||xrrxodz.xyz^ +/js/cpc_i.js +||baijs08.shop^ +||btmao.cc/Public/yd/ +||zzsky.com/images/a_d_ +juksy.com##.ad__wrap +qunar.com##.list_promotion_bar +sasadown.cn###float_mask +llysc.cn###fbi-top-fixed-ad +aotu43.com##center > a[rel="nofollow"] > .king +159i.com##a[href^="//159i.com/tz/"] +gameflier.com#@#.adbanner +ifeng.com##.ad_09 +||tui.cnzz.net^$third-party +d1net.com##div[style="width:1000px;height:90px;margin:15px auto 15px auto;"] +164580.com##table[width="950"] > tbody > tr > td[width="105"] +mmbang.com##.footer_adver-warp +||ali213.net/images/bg_lt.jpg +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-health-poplist-wrapper +||zhiyoo.com/mplus/images/banner.jpg +||admaimai.com/inc/adv +||qusfybj.cn^ +@@||hoy.tv/wp-content/themes/vodi-child/videojs-event-tracking.js +||470kk.com/js/config.js +m.tvsou.com##.story_ad_android +wenxuecity.com##label[style*="darkgrey"] +||sykzow.xyz^ +||c78zf.xyz^ +/gTool.js$domain=51live.com|52waha.com|ccav5.com|zhibo7.com +@@||lesports.com/pc/??*/click_statistics/ +pengbocloud.com#@#.ad-bg +||wowfan.net/static/js/index. +pixnet.net###pixblogad +##.bl > .gg +w3cschool.cn##.abox-content +baidu.com##.w-question-list[data-sign] +@@||shopeesz.com/shopee/*/modules/ads/ +||sv5nm.icu^ +||maoskk.com^ +###right_couple + #left_float +china.com.cn##.Banner_left +/js/tpolknm.js +@@||8891.com.tw/js/v3/blueKai.js +||25662zubo23739.com^ +||pics.wanlibo.com/js/pagemodulestat.js +||lulgef.icu^ +douyu.com##.double-festival-pop +||eastday.com/jscss/v4/js/lib/DSPload.js +||kgdyoh.icu^ +/Runtime/Js/lianmeng.js +##div[class^="ps_"][value="20"] +||sina.cn/interface/*_game_wap_home_mid_list_in. +||af29.com/banner/ +.*roytj33.fun/$script,third-party +antpedia.com###luxury_car +||042.cn/adver/ +qqaiqin.com#@#.ad_468 +@@||video.520cc.cc/ad.php| +slashlook.com#$##mdAdsAnnouncement { display: none!important; } +##.newstyle > a > img[src*="img.com/i/"] +/uploads/*/*-860x250*.gif$domain=aipa551.com +||797sun.com/include/js/common_footer. +||baidu.com/game/asset/common/performance. +##div[onclick*="?i_code="] +||img999.com^$popup,domain=tt1069.com +||ifengimg.com/a/*/yemei +/html.ng/* +qq.com##.mod_ad_main +||bbs.gmbbk.com^*.js +||wqcfg.cn^ +china.cn##.feeds +||ryhuzj.xyz^ +||sentcss.com/get/cors/spread/ +||sunofbeaches.com/ast/assistant/ad-item/ +||f8dy.tv/template/m1938/js/b +kaixindy.com###pege_ad1 +/template/gg.js +~dongman8.com##.pc_acmsd +mtrend.cn##.new_right > .morecontent_next +||sohu.com/adgtr/ +@@||rltdxt.com/files/h5/app.js +@@||4399sj.com^*/adview_pic_ +||d5.sina.com.cn^$object,script +enews.tw##.gadRightP +||kpbqlqv.cn^ +||cnpingpang.com/banner/ +qidian.com##.qd-game +||laosiji.com/static/js/lib/od_statistics.js +||mafengwo.cn/uva/i.gif? +||r3sub.com/images/ccc/ +###asdw2 + img +@@||republicbharat.com/_app/immutable/assets/FloatAd.*.css$domain=republicbharat.com +e10000.cn###imgFloat +||mninoq.xyz^ +||nen.com.cn/eap/ +@@||mediav.com/js/feed_ts.js$domain=china.com|mini.yyrtv.com +sina.com.cn##.ad_01_right +||hackhw.com/ckjs/ +fanyi.baidu.com##.hot-link-middle +12306.cn##.fix-yh +@@||adoi.cn^$generichide +##a[href$="/xha77.com"] +||bfgtfxd.com^ +xiaozhongjishu.com##.apd > a[target="_blank"] > img +cartoon18.com#?#.row:-abp-has(.badge:-abp-contains(ad)) +||kovvild.com^ +520cc.me#$##acornerinner1122 { position: absolute!important; left: -3000px!important; } +bilibili.com#$?#.container > div.feed-card:not(:has(> div > *)) { remove: true; } +||kggikf.icu^ +||dqlhuf.icu^ +||ppshk.com^*banner/ +||bjtgds.xyz^ +||3boys2girls.com/templates/default/2013/randlinks.js +||downmn.com^$popup,third-party +sm.cn##.ad-wolong-container +||20mao.com/js/sj. +bilibili.com#%#//scriptlet('json-prune', 'data.cm_info.ads') +secretmine.net##div[id^="secre-"] +csdn.net##.pulllog-box +||bzthxv.xyz^ +||sgsosi.xyz^ +||links.cn/mmshow +/td_ads_ckbeck.js +||xrdqdd.xyz^ +hao.360.com#?#.cube-list-recommend > div.cube-mod.cpc-card > div.cube-bd > div.cube-card > div.dh-cpcad-container:upward(div.cube-mod.cpc-card) +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv##a.focus_title_inner[href*=".ad_click"] +###mv_ad_dom +@@||tt1069.com/dfp. +lihkg.com#?#div[data-body-portal] > div[class^="_"] > div[class^="_"] > div[class^="_"] > div[class]:has(> div[class^="_"] ins.adsbygoogle) +subhd.com##div[style="position:fixed;bottom:20px;left:20px;"] +||bd.beimap.com^ +||itavcn.com/images/2013/ad_ +duonaolive.com##*:not(.carousel-item) > a[href][rel="nofollow"][onclick*="track"] > img +ruian.com##div[class^="gg_"] +||kdopag.xyz^ +||k1.wendahu.com^ +||vulitd.xyz^ +nicekkk.com,c4dm.live###custom_html-2 +||u22066.com^ +lenovo.com.cn##.BottomBar +qq.com,sogou.com##div[pbflag="coolsitefeed_ad"] +.net/vj1/$script,third-party +##.AdTop +||chinesean.com^$third-party +github.com##a[href^="https://cloud.tencent.com/redirect."] > img +speedtest.cn##div[class^="speed-twoads"] +@@||yantuchina.com/gg/tmp/hong.gif +anny3805201314.pixnet.net##.header_web_to_app__container +||totheglory.im/pic/business/ +||wenxue.weimeifan.net^ +jsphp.net##.rightAdBtm-wrap +||zol-img.com.cn/ad/ +anhuinews.com###ewm +||88lm02.com^ +||klkk66.fun^ +||kiees.cn/jm.png +||xliuits.icu^ +bde4.icu#$#a[href*="/entry/register/?i_code="] { position: absolute !important; left: -3000px !important; } +||2hpg0.fun^ +||statis1.mama.cn^ +cw.com.tw##.bottombar +@@||pchomepay.com.tw/share/js/ +mobile01.com##.admicrobtn +||888bb555ww.com^ +||2021.dxsbb.com^ +ipcfun.com###sidebar > ul > li[style] +||9191.site/ad.js +guandianzhiku.com##.jconfirm-open +||avjj26.com/api/?d=pc&c=advert& +pptv.com###installApp +so.com###rt-interest-list +||cs.37see.com^$third-party +dan-teng.top##.nav +gamemei.com###ft_right_bottom +||chunmiaosh.com^ +||tfg2.com/images/upfile/AD/ +||swarku.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [id*="00"]:not(.result):not(.result-op) > tbody +||laowang81.com/getfuolist +@@||weiyun001.com/banner_ads.js +||dqzsteel.com/Website/Image/Index/ytgg.gif +czbj.js.cn#@#.adArea +tianshui.com.cn##td[height="420"] +sina.cn##.dfz_sd_news > a[href*=".10086.cn"] +hcbbs.com##a[href*="&adid="] +world.huanqiu.com##.img_flow.ad_all +6park.com##a[href*=".php?key="] +gd163.cn,itavcn.com,jmnews.com.cn###msg_win +||dftoutiao.com/dfpcitv/pcitv?type= +getrelax.cc#$#iframe[src^="//adserver.juicyads.com/"] { display: none!important; } +makepolo.com##div[class*="_ad"] +###container > a.block +huaban.com,start.firefoxchina.cn##.extra +gamme.com.tw##[class^="sidead_"] +m4ff.com##.index_gg_wz +||wujinzy.com/images/ok.gif +||dada8828.com/js/aaa/ +w3cplus.com###block-block-49 +3czol.com##[class^="ban_"] +hcbbs.com###framerG6o99_left +||linkhelper.cn/mmshow +@@||koyi.pub/wp-content/plugins/fuzqing-ad-plus/assets/js/*.js +||yjyc-ask.com/res/ads/ +yfsp.tv,aiyifan.tv,iyf.tv#%#//scriptlet('remove-class', 'publicplay', '#main-player') +##a[href*=".sng.link/"] +||bdimg.com/static/m-question-new/widget/ad-union- +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.advertise_right_index +||mhzftye.xyz^ +cntour2.com##.txtPicAd +3dmgame.com##.downl_list + script + div +tgbus.com###guide-download +||at885.icu^ +||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg +/dibun5nodnbmp.js +sd.ifeng.com##div[style="width:1000px; margin:10px auto 0 auto;"] +||0460.com/js/txtrec.js +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:not(body):-abp-has(>script[src*=".realsrv.com"]) +||fh21.com.cn/js/passport/createQuickMenu.js +tieba.baidu.com##.j_feed_li[fid="3665221"] +baidu.com##.wgt-ad-bmc +api.guailie.com#@#.google-ad +://dmhy.org^*.*?$image +php.cn##.zwwad +58.com##.zhiding-border +||mdipsumx.top^ +/adv.php +||0ghijkl.com^ +||azureedge.net/wp-content/uploads/*-AD0 +||mipujia.com^$third-party +/conch/asset/js/atop.js +||sa669.com^$popup +360.com###channel-game +@@||em.hk/wp-content/uploads/*_300_250. +||cls.cn/v2/web/ad? +||dsikpuv.icu^ +18183.com##.down_url +||alicdn.com/kf/H831ca346aac84070b2461d27b22a382ah.jpg +shoubozhan.com##style + div[id] +||smbx8.net^ +||app-g.39.net/NNN/ +##.pcd_ad +poedb.tw#?#div[id]:-abp-contains(ad blocker) +||uwants.com^*_prod.html +||bimiacg*.net/template/JOELEO/asset/js/jquery.leeleo.js +maxthon.cn###festival-center-wrapper +h-ciyuan.com#%#//scriptlet('abort-current-inline-script', 'document.write', 'adbyunion') +iqiyi.com#%#(()=>{let e=!1;window.qyMesh=window.qyMesh||{},window.qyMesh=new Proxy(window.qyMesh,{get:function(a,t,d){return!e&&a?.preload?.Page_recommend_1?.response?.items&&(a.preload.Page_recommend_1.response.items.forEach((e=>{e.extData?.dataExtAd&&(e.extData.dataExtAd={}),e.video&&e.video.forEach((e=>{e.adverts&&(e.adverts=[]),e.data&&(e.data=e.data.filter((e=>!e.ad)))}))})),e=!0),Reflect.get(a,t,d)}})})(); +||jwursera.top^ +||rigengjihua.cn/banner/ +||vrnrpzy.xyz^ +ttshow.tw##div[id^="ad_index_"] +@@||g.alicdn.com/??*/criteo +###bottomNavad +xuite.net###side-special.special +nfstar.net##a[target="_blank"] > .img-responsive +||nanrenvip2021.com/old.html +||bianzhirensheng.com/img/banner.jpg +||888bbb555www.com^ +yibian.hopto.org###no-adblock-box +||tuxpfiok.icu^ +3d66.com##.King_Chance_LayerCont +##.page-wwads +tropica.cn##.bm.a_c1 +||cnbd1.appmobile.cn^ +3987.com##.c-gg +||bollenhurkle.com^ +huya.com###ab-item +mydrivers.com##.fbh_float +||good8866.com/js/*.js +onebox.mydown.com##.fcGg +tigtag.com##div[id^="Show300x"] +||2345.com/right/site/like/gul_ +||163.com/special/*_netease +/picad/*$domain=~ychr.com +||kydzfldt.xyz^ +||atmcdn.com/www/*.js +||u0079.com^ +||boubliv.top^ +||xiyouence.com^$popup,third-party +||en8848.com.cn/js/lianxi.js +@@||l.qq.com/lview?$domain=888.sports.qq.com +news.sohu.com,www.sohu.com#?#.list16 > ul > li:-abp-contains(广告) +||so.com/index/advertise +||ismuwcm.icu^ +##.adv-300-250 +tw.stock.yahoo.com###ysmcm +/guang/mhys.jpg +||chinanews.com/fileftp/2016/06/2016-06-13/U194P4T47D35171F967DT20160613093733.jpg +||69shuba.cx^*/shu.js +@@||zjjcxy.cn^*/ad.css?$stylesheet +||ntlzvrv.xyz^ +cnxz.cn##[class*="-ad"] +r3sub.com##div[class] > a[href^="show.php?id="][target="_blank"] > img +apk.tw#@#.ad300 +huanqiu.com#%#//scriptlet('set-constant', 'AD_SURVEY_Add_AdPos_Simple', 'noopFunc') +zhidiy.com###festival_float_bottom +vidhub1.cc,vidhub.me,vidhub.tv##.promolnk +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.play_list_panel +||kuaidi100.com/images/kuaidi/201612081*4 +||skfda5.com^ +##.callApp_fl_btn[onclick^="open_app"] +||pconline.com.cn/jrzcz/*/intf +hahamx.cn##.article.mt-20 +||sina.com.cn/other/src/app/SFANewVersionPop.js +||18comic.*/media/albums/*?$media +||cai75tp.com^ +edutt.com##.foot-fixed +||hi.xiunm.cn^ +m.lelekan.com#$#body { padding-top: 0!important; } +@@||520click.com/ad.php$domain=520cc.cc +@@||cmbchina.com/ads/ +sinolub.com##div[id^="bs_"] +##img[src*=".sinaimg."][style="width:1025px;height:80px"] +||inlishui.com/index.php?m=poster& +||1990tu.com/i/*.png +bbs.fobshanghai.com##.maintable > div:nth-child(7) +iqiyi.com##.dove_banner +||mop.com/newIndex/gg.html +kehuan.net.cn##.bread_728x90 +##.player-bottom-gg +@@||edmondpoon.com^$generichide +||tdsahkln.xyz^ +qzone.qq.com###top_tips_seat +yahoo.com###my-adsHPSPON +military.china.com#$?#.slide_doubleimg > .baiBox { remove: true; } +smm.cn##.top_taishan_jinzhu +||hevctt.xyz^ +@@||jsdelivr.net/gh/bde4admin/*/prebid-ads.js$domain=52bdys.com +kuakao.com##.addTQBar +www.kafan.cn##.comeing_show_box[style="padding:10px;"] +||xinshijue6080.com/Runtime/js/ +fx168.com##.yjl_fx168_focus_TodayNews_jiasheng +||fanpingbi*.gaokao.com^ +||17173cdn.com/a/oms/oms-data. +netfly.fun##.player-box-main ~ [style^="display: flex; justify-content: space-between;"] +7k7k.com##.skin-link +||oyuwkbk.top^ +xcar.com.cn###eMeng +19lou.com,ihome99.com##.ad-980x90 +docsmall.com#@##google-ads +qq.com###image_ad +||uyuwkbt.top^ +||lianaiyx.com/d/js/cst/ +||ark.letv.com/t? +||alicdn.com^$domain=pianba.net +||m.20mao.com/*/TOP.JS +||f11.hackhome.com^ +enews.tw##.divADFrame +sogou.com##.tgad-title +||kikinote.net/iframe +||cdttxdqe.xyz^ +lvmama.com###centerDialog +baidu.com##.ec_im_container +||delivery-pc.wasu.cn/d/js/ +||b1.51scw.net^ +image.baidu.com###relecom54 +||btbuluo.com/uploads/*.gif +qingwk.com##.c-meiqia-Air +||chinaxinge.com/gif4/ +gameapps.hk#$#body { background-image: none !important; } +/A-Tian/Tian-*-good.js +||gkeolwi.icu^ +||zbxtcwi.xyz^ +||video231.oss-cn-beijing.aliyuncs.com^ +5ykj.com##.ls-b-large-margin +cocomanga.com,ohmanhua.com,onemanhua.com#%#//scriptlet("prevent-setTimeout", "checkSiteNormalLoad") +steamstats.cn##.v-window +||138vps.com/image/ +yxlady.com##.game_wrap +aguitar.cn##img[width="470"][height="60"] +||100yangsheng.com/a1/a.js +||dianyingim.com/statics/recommend/ +##.topSponsor +||yxdown.com/cj/ +kekenet.com###weixinwz +||uyislot.top^ +dm5.com,dm5.hk##.cl970 +||ooejkd.xyz^ +||cloud.tencent.com/developer/api/common/getOneAds +||ithome.com/js/recommend.js +||vhzivz.xyz^ +gamefy.cn,sitv.com.cn##div[style="float:left; width:220px; padding-top:15px;"] +pjtime.com###Couplet_r_small +||maolihui.com/wp-content/themes/miaonew/images/adb +||sv2fo.icu^ +taobao.com##.rb-op +hjenglish.com##.module-recommend-course +###googleAd +||zsjjob.com/user/member/google.htm +news.cn2che.com##.banner01 +||wkzsmj.icu^ +||img.scupio.com$domain=briian.com +||tpzatf.xyz^ +@@/wp-content/themes/radio-hub/static/js/adpro.js$domain=tingfm.com +||huaxia.name^ +douyin.com#?##douyin-right-container > div[class] > div[class]:has(> ul[class] > li[class] > a[href][target="_blank"] + div:contains(广告)) +||macos.space^ +bilibili.com#$?#.van-slide > .item:has(.bypb-icon) { remove: true; } +24k99.com##.jy_24k99_suspended_ad +||aqburrae.xyz^ +@@||cdn.staticfile.org^$domain=00ksw.com|147xiaoshuo.com|91zww.com|biququ.info|bxwx.live|lzbao.net|shenzu.org|tianz.la +||jisusoft.com/ads/ +doyo.cn,lgmi.com,people.com.cn##div[id^="gg"] +###search > a[href="/top1.html"] +||bdstatic.com^*/tam-ogel/ +susongbbs.com#@#.ad_banner +||fytpft.xyz^ +v.baidu.com,v.duba.com##div[id*="categoryPageColumn"] +||lihuasoft.net/images/ad_ +firefox.com.cn,firefoxchina.cn##.side-notice +||irulws.xyz^ +||jjvzqjh.xyz^ +qyw0.com##.iad +||wr.yiyouliao.com^ +jiyingw.vip##div[style="text-align:center"] > a > img +wdzzz.com##.zz_nr +||hqdoor.com/Web/ +||mogtrmjz.xyz^ +||qtyusiy.top^ +||yiqiv.com^$third-party +||3wk.cc/images/*.gif +||ltfpbp.xyz^ +itdog.cn##.div-tg +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###attention-game-wraper_dialog +@@||jav777.xyz/advertise/ +iqiyi.com##.headerLink01 +||7down.com/static/js/foot_ +timedg.com##.middleCrossAdvertise +muchong.com##.viewad +@@||api.ads.tvb.com^ +||cifnews.com/ajax/adrequest/ +uuu9.com##.c_box +||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html +||guang1.zhakao.cn^ +||bp.blogspot.com^$domain=avmimi.com +||lbjekygz.icu^ +||esqzwq.xyz^ +||q2usj.icu^ +99a21.com##.wrap-head-spots +||ntdtv.com/assets/themes/ntd/js/article_ads.js +||ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg +hao123.com###headJoke +||baidu.com/tb/zt/$subdocument,domain=tieba.baidu.com +cqmmgo.com##.ad-230x60 +||fq67.top^ +||88lm08.com^ +||abcqq36q.vip^ +||hjfile.cn/lib/uzhi/uzt. +||eapect.icu^ +bestopview.com###pubtextnone +||88lm04.com^ +##a[href*=".asd245796.com:"] +image.baidu.com##.mod-promo +hao.360.cn##.icon-text-nav +jd.com###toolbar-qrcode +||pgcciax.icu^ +liaoningmovie.net#$#.c-ad-103 { height: 0 !important; } +houdao.com##a[style^="background:url"] +||alixixi.com/adsview/ +firefox.com.cn,firefoxchina.cn##.btn-email-show + p +maxthon.cn##.tmall-nav-v2 +||1684sm.com/js/1684/ +##.a_sxmu +@@||ez3c.tw/js/adblockDetector.js +jable.tv##a[href="http://uus52.com/"] +th7.cn##.main > .mb5 +ruanyifeng.com#@?#.asset-content > p:-abp-contains(/二维|助教|0 元|报名费|原价/) + p + p > img +163.com##.a_topad +tgfcer.com##.ad_text +boylov.xyz,boylove.cc,boyloves.fun#?#:-abp-has(>.adsbyexoclick) +||ikstatic.cn^*.gif +/ads/js/* +18-comicfrieren.xyz,18comic.org,18comic.vip##.row[style="display: flex;flex-wrap: wrap;"] +||373nn.com/java/ +le.com###a_title_11628 +baidu.com##.c-container.ec-container +||zdcj.net/html/weibo +||fjxstt.xyz^ +i-part.com.tw##.googleAD160x600 +/flashad. +||zwdtvx.xyz^ +39.net##.banner_g +||nljrvdh.xyz^ +prts.wiki##.nomobile[style*="810px;height:240"] +cna.com.tw#$#.fb_fanpage_inpage > .other_news_box_2 { padding: 0 0px!important; margin: 26px 0!important; } +##a[href$="/hjdt9.com"] +||zol.com/index.php?c=ZolShopIndex +youneed.win#%#//scriptlet("abort-on-property-read", "daau_app") +fastadmin.net##.text-center > .carousel +baidu.com##.ec_sma_im +||zuiacg.com/images/client/ +kkj.cn,mydrivers.com##div[style*="width: 1"][style*="height: 90px;"] +hb.qq.com##div[style*="width:960px; height:90px;"] +.com/myjs/alljs.js +xmfish.com##.readCon_right +||liepin.com/event/jobadver/ +||zztongyun.com/static/js/sh.min.js +autohome.com.cn,jdzj.com,loveshang.com##.advbox +0594.com##div[id^="PCMSAD_"] +/ad_tag. +52bdys.com##center[style*="background"] +json.cn###shuangshi1Modal1 +##.right > .content > .ads +52che.com##a[href^="http://count.52che.com/goto.html?"] +||88tm6.cc^ +image.so.com##.sc-similarcm +/Runtime/Js/guding_top.js +gamer.com.tw###flySalve +||wew.dushiwenxue.net^ +||mohvxrvd.xyz^ +||bflybplr.xyz^ +ipcfun.com###sidebar > ul > div[style] +sg169.com###couprigth +wacowla.com###home-top-narrow +kdslife.com###tao +||pvk2e.icu^ +||hdapp1003-a.akamaihd.net^ +v.youku.com##.youku-advertise-layer +baidu.com##.fc-ad-line +||roxwusak.icu^ +||eyyqwd.icu^ +||chromeba.net/wp-content/uploads/ +||avivid.likr.tw^$third-party +500.com##a[href*="sanyol.cn"] +||gucheng.com/2016/ggimg/ +||muzisoft.com/static/*_f.js +cgown.com##.banner-gg +@@||macauo2o.com/advertise/ +||c.tvsou.com^ +##.top-read-ad +icourse163.org##.promotion-banner-wrapper +||rouman5.com/a2/*.gif +||exqvak.xyz^ +beanfun.com#@#.ad-slider +||q6gub.website^ +||douyucdn.cn/butterfly-java/*?width=242&height=489& +||aassy4.com/dm/ +||go2tutor.com/lifebox.asp +||ruanyifeng.com/9he/ +||ifengimg.com^*couplet$script +||autoimg.cn/Space/help/HelpRdTask.js +ganpapa.com###wrapper + div +###j-new-ad +||jpg1.oss-cn-beijing.aliyuncs.com^ +||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- +baoliny.com,gasaq.com,hgitv.com,ifooday.cn,nen.com.cn##.guanggao +||ifeng.com/ssi-incs/ +||wfiles.hcomic.net/indexSwiper/*_*x*_*_TC_gif.gif +85wp.com###a3_diy2 +league-funny.com##.widgetBox.w300600 +thecatcity.com##.article-page__ad-block +/300x250- +pixnet.net##div[id*="-Ad-"] +silver.org.cn##.logo_dsaas +||4399.com/loadimg/loading.htm +||arhnuin.xyz^ +||chengdu.cn/acts/phoneqss/openCornerWin/ +||vxdpmxw.xyz^ +##.m1938-container +||iwwmaq.xyz^ +hjenglish.com###bottomBar +||hubpd.com/hubpd/images/dingtong +||yuedu.baidu.com/hybrid/wkrec/search? +enjoymore.fun##a[href*="urlto.pw"] +6789.com,hao.360.cn,hao.360.com###daily-hotwords +@@||mmaa99.xyz^$generichide +/as/d/*.js$~third-party,domain=xnxxw.net|137.175.73.220 +###doyoo_mon_mask +##div[style=" max-width:990px; margin:0 auto;"] > a > img[height="60px"] +my0511.com##div[id^="topad"] +csgoob.com##.lg\:basis-1 +olevod.com##.pc-ads +pan.baidu.com##.decrease-active +chinatp.com.cn###FloatL_2 +yufile.com##.fb_r > a +||qujishu.com^ +||365kl.net/data/attachment/portal/ +torkitty.com,torrentkitty.app,torrentkitty.io,torrentkitty.lol,torrentkitty.net,torrentkitty.se,torrentkitty.tv##a[href*="/aff_"] +||bavkvoks.xyz^ +||51wady.com/me.php?id= +elecfans.com###AdHtmlRight +||eoucxzw.icu^ +@@||easylife.tw^$generichide +/js/mangoIndexBanner.js +||dogfight360.com/Usbeam/*_ad/ +||wbnlwyj.xyz^ +423down.com##.entry > strong > p +wenxuecity.com##.sidebar > .banners +||bpxbzps.xyz^ +||alicdn.com/g/mm/afp-cdn/JS/ +liaoningmovie.net#$#.main_ad_head_wide { padding-top: 0 !important; } +||cnwnews.com/images/kgt +baofeng.com##.ad-bar-l +||dqlrfmwp.icu^ +bodu365.co##.top_show +||qiyeb.iaskbus.com^ +/css_js/*$domain=aiyangedu.com|duanmeiwen.com|jy135.com|oh100.com|qunzou.com|ruiwen.com|unjs.com|yjbys.com|yuwenmi.com +||ishisetianxia.com/tb.js +msn.cn##.game-advertise-container +||apis301.com^ +||uakxkb.icu^ +||sinaimg.cn/tech/zcapp2018/zcapp.js +||zyzo.cn^ +sina.com.cn##.ad_01_left +##a[href*=".hg63222.com"] +newsmth.net###ban_ner +/ad_right. +cww.net.cn##.ggbar +||analyse.weather.com.cn^ +hao.lenovo.com.cn##.IconLink +guitarchina.com##img[width="420"][height="60"] +hao123.com###mingzhanresource +ip138.com###banana +/GetAdForCallBack? +jikexueyuan.com##.pewm3 +@@||bdimg.com/static/wapwenku/static/common/widget/share/share_ +||autoimg.cn/club/v1Content/images/young +||php.cn/hezuo/ +||ccsshn137.shop^ +||ysxs8.vip/js/bd_top.js +##.adboard +||mgidskix.top^ +hao123.com###puzzleBox +shmet.com##.spb-biz-cont +zhibo8.cc##.ad_box_250 +lihkg.com#?##rightPanel > div[class^="_"] > div[class^="_"] > div[class^="_"] > div[data-post-id] + div:not([data-post-id]) +51.com###game_advlayer +btime.com##.top-bar +52bug.cn###index-code +||jiawen88.com^$third-party +||baidu.com/resource/ads/ +||h1.wk2.com^ +||pics.xgo-img.com.cn^ +||taobao.com^$popup,domain=dlkoo.cc +gebi1.com##.offical-account +@@||acgbenzi.com//dist/images/top.png +||yingshizxw.com/js/tc/ +||lzvjtxe.xyz^ +/adkingpro- +||agufoi.xyz^ +##a[href^="/ad/"] > img[id][src*="hdslb.com"] +||qixingquan.com/partner/ +||ahyyqq.xyz^ +||qbhzghb.xyz^ +||aotu43.com/templates/defboot/js/duilian.js +nmgnews.com.cn###div_ad4 +element-plus.org##.toc-content > div[style="margin-top:16px;"] +linovelib.com#$##byspider { display: none !important; } +||beephone.com.tw/ad-middle.php +||ctlacnh.icu^ +setn.com##.header-left-banner +880sy.com##.foot_gg +hao123.com###\5f _wgt_0_1 +xxxsm.vip##a[href="ilupian8.html"] +||zzzyk.com/js/ +smm.cn##.ad_front_container +||cos1999.top^ +||bdstatic.com/tb/img/icon_coo_operation_ +||tfcdn.jingmiuyyds.com^$all +||a1.99933.cn^ +||suning.com/getCpcDatas? +.org/ad/ +||kebohjhh.xyz^ +||geqshb22.fun^ +/adpuba/* +||yugqqqq.icu^ +0594.com,164580.com,2234.cn,appinn.com,appledaily.com.tw,china.com,chinamedevice.cn,cnodejs.org,danyang.com,doyouhike.net,e3zy.com,haokan5.com,hc360.com,helloavgirls.com,hkjunkcall.com,meiyouad.com,moe48.com,qq.com,sina.com,sogou.com,tongren.gov.cn,uc123.com,up01.cc,wokao.co,yeeyi.com##.ads +thinkphp.cn##.a6 +taian.com##.ggtp +36dm.club,36dm.com,acgsou.com##img[width="250"][height="250"] +ifeng.com##div[class^="middleAd"] +||hongyingbbs.com/jj/ +typecho.wiki##span[style="height: 17px;margin-left: 10px;background: #000;border: 1px solid #000;"] +morningpost.com.cn##div[style="margin:0;padding:0;width:648px;height:345px;overflow:hidden;background-color:#fff;"] +||sogou.com/img_logo/wp.js +xingkbjm.com##.d_textbanner +||market.178.com^ +freedidi.com##a[href*="/bittly.cc"] +douyu.com##.row.row-3 +||hibiquan.com/uploads/images/ +||qhimgs1.com/t029762bc960d5104ef.jpg +ce.cn,chenjiayu.cn,chinabidding.com.cn,eastmoney.com,ieforex.com,laod.cn,likefont.com,shangyexinzhi.com,zp365.com##.advert +/adscript. +aizhan.com###home_text_content +shuowan.com##.side_flash +baike.com###newsfix-on +||vrdfxioe.icu^ +||vsojfsoj.com^ +17173.com##.slide-list > li[style]:has(> a[href*="&ad_code="]) +duba.com##.plane_ads +//*.emgrt.com^$third-party +nodeloc.com###wghtml +cmhello.com##.gpost-above +||arojgi.xyz^ +||niuza.com^$image,subdocument,third-party +163.com###layout-love +||1905.com/data/js/*.json?pwd=*?fr=videoplay_*&rand=$xmlhttprequest +i.qq.com##.linwei-txt +cm.k366.com##.rightpart td[width="300"][height="270"] +||jxwqu.cn^ +||lcxw.cn/i/*dl.js +||0j91h.cyou^ +lxapk.com,lzacg.one##.custom-html-widget +baidu.com##.index-module_drawerHand__aRhcO +||godlu.com^ +itavcn.com##.ad_wordxin +ddooo.com##.gs_list +||zhongyoo.com/shuju/ +zhihu.com##.MBannerAd +||hxbt.alading123.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###baiduweishiDown +789ys.com,fffdm.com##ul[style] +||newpgqnfapkamg.xyz^ +ks.js.cn##.height80 +||c1ecda.com^ +/koukoku/list?positions= +||iummqg.xyz^ +@@||pro.gooooal.com/ad/ad_2.js +||yxgqgq.xyz^ +51cto.com###ADsList +||szbhb.cn^ +||zjib0.icu^ +||bkzmtp.xyz^ +/ggg530.oss- +jisuxz.com##.dl_gaosu +mydrivers.com##.drivers_right > div[style="padding-top: 10px;"] +xclient.info###pop_business +||news.ssp.qq.com/ad +huawei.com#@#.ad-wrap:not(#google_ads_iframe_checktag) +51yfx.com###widget-gouwu +360kan.com##.js-playicon[href*="wan.360.cn/"] +hc360.com##a[href^="http://e.cn.miaozhen.com/"] +carrotchou.blog##.item > a[href^="http"]:not([href*=".carrotchou."]) +||shbxukj.cn^ +###modalgg +/iscar.svc/getadvert? +firefoxchina.cn##.bottom-0 +||diendh.xyz^ +boke112.com##.hotspot +||xtnwxhjv.xyz^ +||ithome.com.tw/media/serve? +||shbzkgs.cn^ +drv5.cn###xzq +||mipcdn.com^*/mip-*ad. +||zrtlvtsy.xyz^ +miercn.com##.hongbao +ccoo.cn,hackhome.com##.adn +@@||192.168.*.1/$generichide +||ol-img.com/channel/tuku/js/tukuPopup.js +||yaolan.com/ylk.mini.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###activity_countdown_head +caibaojian.com##a[data-href*="aliyun"] +||vansky.com/agdg/middle/ +~allthingsopen.org##a[href*=".com?aff="] +###left_ad +5imx.com##.ad4:first-child +||pojdnf.xyz^ +||js.tlt.cn/js/ +||kan98.com/images/*.gif +||po2qgo.xyz^ +90bifen.com##div[id^="ShowTopAds_"] +||amocyq.xyz^ +duba.com,iduba.com,newduba.cn##.left_slidebar_con +||bdstatic.com^*/QSURrcmRKV.js +||tv7box.com/Runtime/Js/ +@@||alicdn.com/t/img/TB1tWvVJFXXXXc_aXXXXXXXXXXX-40-26.png$domain=dlkoo.com +baidu.com##.top-ad-cont +##.postmessage > #googleFirst +||bytmfj.xyz^ +zuowen.com##.couplet_left +tieba.baidu.com##.j_post_list_item[data-info^="\7b \"un\":\"\\u8d34\\u5427\\u89e6\\u70b9\\u63a8\\u5e7f\""] +||hjfile.cn/site/js/pop_gift_plugin.js +##[class][onclick^="window.location.href"][onclick*=".yueshuapp.com"] +||cifnews.com/yuguo3.0/live_dynamic/js/live_dynamic.js +/tianya_recommend? +zuoyebang.com##div[class*="moreDialog_"] +||apsgo.com/go/ +/downloads/nmgg.mp4 +firefoxchina.cn##a[track_key="outside_right_bottom_adv"] +so.com##.map_business_con +/mobilegame/getroomapp? +||esqhsm.xyz^ +huya.com##.huya-ab +ifeng.com##div[class^="coupletBox"] +||alicdn.com/img/ibank/*_456388. +bodu365.co##.top_s_ad +@@||panjiachen.github.io^$generichide +||ymwjwe.xyz^ +7654.com##.dh2_bottom_wrap +duba.com###oneTip +||kanjuwo.com/js/8 +||gmbbk.com/bbsgmbbk/ +||abds.pingpingw.com^ +wanmeikk.me##a[href="http://qq.wanmeikk.me/index"] +||qyuwkby.top^ +/69tang6_*/html/abc/image/* +||mianbao99.com/a/mianbao +||tieba.baidu.com/game/markConf? +||javhub.net/img/r18_banner1.jpg +||537images1.com^ +||ucjevgue.xyz^ +##.adNone +anjia365.com#@#.adv_bg +||hgidskiu.top^ +##header + main > div[class$=" block"][id="rd0"][data-v-app] +||xlypzbzs.xyz^ +||119xiazai.com^$subdocument +77bike.com,ghoffice.com##.tac[style="border-top:1px dotted #ddd;line-height:1;"] +||iocoder.cn/alert/js/alert.js +antdv.com##.main-menu-inner > div +||img.175532.com^ +bodu365.co##.side_g_seat +||163disk.com/static/images/51 +||jy010.shop^ +||nfydd.com/template/wap1/js/dd.js +.com/java/youxia.js +@@||passiontimes.hk^$generichide +cna.com.tw##.ad_336_2 +ziqiangxuetang.com##a[href="/j/coding/"] +x3cn.com##div[style="margin:3px auto"] + table +||168img.com/a/ +@@/fingerprint.$domain=abchina.com +duba.com##.ad_leftTip_out +||eiuoom.xyz^ +eastmoney.com##.fund-pop +/k120g270. +||zhizhizhizhi.oss-*.aliyuncs.com^ +||cklithuw.xyz^ +@@||cpro.baidustatic.com/cpro/ui/cm.js$domain=ali213.net|bigpixel.cn|tangdoucdn.com +wenku.baidu.com##.dialog-ad-hd +@@||firefox.com.cn/media/img/mozcn/spread/468-60- +##a[href="/gghtml/tyc.html"] +gpsuu.com##div[style="margin:0 auto; padding-bottom:10px;width:960px;height:60px;"] +||xdnice.com/themes/xdnice/public/assets/images/xdnice.png +gamer.com.tw,pili.com.tw#@#.pub_300x250 +||uooyoo.com/hz/*str.js +guruma.net##.s_body_top +hupu.com##div[class*="ad240-200"] +||zmk.pw/zfb.png +gter.net##.bottom +||thcdy.co/baidu2/index_top.js +@@/hitCount.$script,domain=on.cc +||w18.9939.com^ +||cna5.cc/skins/js/ +woego.cn#@##topAds +||yclxrj.top^$third-party +fx168.com###ImgText_03 +||ccccc66kkkkk.com^ +||lutouwang.net/static/js/mv_ad +163.com###js-ep3rdRank +||rrjc.com/home/seo/ad/ +||dtjpihv.xyz^ +epwk.com##.collect-info-wrap +oschina.net##.index-ad-wrap +ghxi.com#$#.wpcom_ad_wrap { position: absolute !important; left: -3000px !important; } +||sznews.com/s?z= +laozuo.org##.s_ad125 +eastday.com##.yxxf-warpper +||sina.cn*/view? +||webkaka.com*/click/$image +@@||udndata.com/ndapp/ads/$~third-party +||pexels.com^*/sponsored-media/ +##.adlistcss +ys168.com##div[style="position: fixed; width: 200px; top: 330px; right: 20px; font-size: 9pt; text-align: left;"] +||utxmb.cn^ +hao.rising.cn##.activity-gt +pconline.com.cn##.artBtmForCustom +downkr.com##.banner-right +||bnhorn.xyz^ +||zhihu.com/node/Banner? +firefoxchina.cn##.sbottom-banner +@@||tansuo.cntv.cn^*/tansuo_Advertise.js +dajie.com##.register_layer +tropica.cn##.a_mu1 +soft-down.net##.box-top-xiazai +@@||ware.shop.jd.com^$genericblock,generichide +||zlyk.com/Runtime/Js/footer.js +||huresdu.top^ +911cha.com##DIV[style^="width:200px;overflow:visiable;position:fixed;"] +||toptoon03.xyz/app/tuijian.html +avple.tv##.jss13 +9game.cn##.guide-app-fix +jr31.xyz##a[href^="ad."] +||inte.sogoucdn.com^$domain=~index.sogou.com|~zhishu.sogou.com +||iecmca.xyz^ +||168gamesf.*/olist- +winandmac.com,nicekkk.com###custom_html-3 +||ttad125.com^ +c4dsky.com##a[href*="ibaotu.com"] +ruanyifeng.com#?#.asset-content > p:-abp-contains(/二维|助教|0 元|报名费|原价/) + p + p > img +ifeng.com##div[class^="ad_box"] +/cdn-cgi/pe/bag2?*.overture.com +||nen.com.cn/service/js/beitou +||tjappzvz.xyz^ +||ganjistatic1.com^*/adm/ +||u22011.com^ +||yzldy.info^ +ddav.org###adv-2 +||yuanmengbi.com^ +||gexing.com/j/??zmask.js,easing.js? +||fm44f.space^ +huaban.com###top_promotion +||btyhnraw653.shop^ +||dwtkuzo.cn^ +bbs.wps.cn##.topic-recommend-top +||xiaopi.com/statics/skin_js/jquery.posrj.js +ifeng.com##.ad_12 +_dasiqq315. +ksbbs.com,kshot.com##.slideAdvert +popo.tw#@#.header_ad +||img1.126.net^ +iviewui.com##.ivu-alert +||dyhjw.com/Public/v3/appdown/images/AppEntrance.png +|http:$script,subdocument,third-party,domain=dlkoo.cc +iqihang.com#$#.app.padding { margin-top: 0 !important; } +||wsyliee.top^ +32r.com##span + p + div > dt +webkaka.com##a[href*=".simcentric."] +||hahamx.cn/images/market/ +||waymom.xyz^ +t66y.com##.tips +.vip/html/hfv.js +caibaojian.com##.aliyun-inner +tianya.cn##.qhb-Box +||gamdus.xyz^ +||a*.chajiaotong.com^ +mobile01.com#@#.googlead +||fzasx.cn^ +wealth.com.tw#?##root div[class]:matches-css(position: relative) > div[class]:matches-css(justify-content: center):has(> div[class]:matches-css(width: 300px)) +||gg.miinaa.com^ +||opszt.com^ +||taxoxz.xyz^ +900.la##.banner_ad1 +jjmhw.cc##div[style^="position:fixed; bottom:"][style*="z-index:"][style*="background:"] +-1321533417.cos. +||wap.hfoyjg.cn^$third-party +##.nav-area + .wrapper .tuiguang +||mflybplr.xyz^ +||olmnvbgufy.top^ +360game.360.cn##.advertising +my0511.com###shiyonggjad +||first-hufu.oss-cn-shanghai.aliyuncs.com^ +sports.qq.com##.focus_con > .item > a[href^="http"]:not([href*=".qq."]) +xuite.net##[class^="ad-mid"] +lofter.com##.js-promote-itm +||yg006.com/attachment/xjdb.jpg +yfsp.tv,aiyifan.tv,iyf.tv##.video-player > .dabc > .ng-star-inserted[style="position: relative;"] +##.ad-couplet-common +91porny.org,jstv600.com,x9av7.com###main > div[id^="rd"] +||5399.com^$third-party +||1.yxzw.com.cn^ +eworldship.com###d1 +||ztzdvv.xyz^ +||m.9wx.org/statics/js/new.js +||xufyxhiu.icu^ +||f8dy.tv/template/m1938/js/foot.js +||jibn12.jintang114.org^ +hcbbs.com##.a_cn_pb +@@.gif#$domain=b168.net|cnprint.org|huhupan.com|tgfcer.com|wgun.net +laogu.cc##.rowIvy +||wnacg.*/data/game/*/wap.gif +||itxueyuan.com^*.mp4 +51cto.com###list4 +mzyz.com###idTransformView2 +wenxuecity.com##.topbannerw +chinaz.com###topTxt +economist.com##.adComponent +jandan.net###random-ads +||alicdn.com/img/ibank/*_!!2210231227621-0-cib. +cnjxol.com##.linked +||bdm.911cha.com^ +@@/static/ad/main.$domain=bbmei.top|bbmen.top +||thrzbf.xyz^ +||chinalawedu.com/js/weixin/weixin.js +@@||mcmod.cn/images/banner/ +.site:20443/*.js^$script,third-party +||v.icbc.com.cn/userfiles/ADResources/$domain=icbc.com.cn +||ketlwsd.top^ +jyacht.com###zyc1r_03 +||res.pinpai8.cn^ +/xhfloatAdv. +@@||alicdn.com^*/click_track.js +hao.360.com###bottom_hotsite +||vm.aty.sohu.com^ +||qwoofao.top^ +||aqlife.com/data/attachment/portal/ +baidu.com##.ec-ads-container +.work/ads/ +mobanwang.com##.teagg +fx678.com##.img_tips +||cdybwjpa.xyz^ +china.com.cn,foodmate.net##.ad6 +||p.udn.com.tw/upf/*_banners/Special/ +||bmp.ali213.net/js/ +/CodeFiles/*.aspx?placeid=$third-party +||emailservcesonline.site^ +backchina.com##div[style^="width:300px; min-height: 250px;"] +.bid/ads/ +||elas666.pics^ +kaifu.com##.adv_slide +||newyx.net^*/down_yd.js +###sponsored_links +pcauto.com.cn##.fix_sinup_box +||kjxhd.cn^ +/wp-content/themes/iMovies/js/tc_ +||d1.yingyongge.com/qmoshe.js +||igkgag.xyz^ +||ituba.cc/uploads/allimg/201610/603/ +||sinaimg.cn/jslib/kuozhanad.js +||fjlqqc.com/common/api/v1.0/slot-code/ +||sxeimg.com/u/20191108/13082210.gif +||dagumanhua.com/style/mdagu.js +||dasda64.fun^ +##.hongbao_hd +||kksjoa.com^ +zhijia.com##.adb +||g-years.com/gy/ +###textggs +||wbiao.cn/common/newsbannerAds/ +||eeaczcf.icu^ +chinaqking.com###cnt-ad +udn.com##.ad_mask +myk3.com##a[href*="?aid="] +||dgaxrjj0jwpwp.cloudfront.net^ +camerabay.tv##.popupad +3g.163.com##.ne_rps +iplaysoft.com##.entry-content + div[style="margin:-10px 0 0 0;overflow:hidden"] +||qznjujv.xyz^ +||szbpf.cn^ +||eol.cn/e_images/gk/jnc +||cnzz.991yue.com^$third-party +||sudupan.com^*.gif +tianya.cn###a_qiu +##.jq_mediav_ad_report +weibo.com##div[class^="HotTopic_doticon_"] + div[class^="HotTopic_tit_"] +/floatad.$domain=~fwxgx.com +##.gg_tp +||20mao.com/52 +ipcfun.com##div[style="height:280px;width:336px;margin:-10px auto 20px auto"] +@@||bdimg.com/libs/$domain=00ksw.com|147xiaoshuo.com|23xstxt.net|24kxs.cc|8181zw.com|b520.cc|b5200.net|biqiuge8.cc|xbiquge99.cc|biqugecd.com|biqugewu.net|boquku.com|bqg999.net|bqwxg8.com|bxwx.live|ddbqgtxt.cc|gdbzkz.org|huanyue1234.com|msxsw.com|paoshu8.com|piaotian55.com|quge66.com|shuyy8.com|sytxt.cc|txtwan.com|u33.me|xqianqian.cc|xxbiqudu.com|xygwh.cc|ygshu.com|ymxwx.com|yuyougu.com +||kuaihou.com/c/shuoming.js +||teryt111.fun^ +##.index-top-aassd +||g.lznews.cn^ +||youdao.com/market/banner/banner +||jetlwsa.top^ +/float_r.js +##.float_bot_right +@@||valf.atm.youku.com/vf?site=1&rst=mp4& +||dr.mlcuzee.cn^ +||mydifile.com/view.php/*.gif +douyu.com###js-fix-download +sokoc2.com##.rHHc +aoji.cn##.xiaoxi_phone +element-plus.org##.page-sidebar-top +portablesoft.org##.sidebar-box +||yzgid.cn^ +/bmqp6002- +pansci.asia#@#.ad-container +ifeng.com###wx +||310v.com/images/lingdai.gif +||suibiankan.co/Runtime/Js/ +##.adv-6park +||baoliny.com/js/jing.js +eccn.com###sem_online +news.cnyes.com##.content-main > div:empty +||bmhept.xyz^ +news.yahoo.com###module-mktBanner +||jqtkzuco.xyz^ +||jable.tv/assets/*0.gif +~laifeng.youku.com,youku.com##a[href^="http://cps.laifeng.com/"] +||hailfi.top^ +||skdncksklsv.com^ +techbang.com##div[class^="techbang_inline_"] +techbang.com##.post-side > .related-article +|http://*/js/tc.js +||mydrivers.com/2018/ad/ +||eqkvks.xyz^ +outofmemory.cn##.iloveoutofmemory660 +senfun.net##.player-recommend +||hkb123.com/plus/show.php +||vcugbgu.cn^ +ld0766.com###diy4 +||pgpufyzi.xyz^ +greatwuyi.com##.main_ad2 +||gccnntq.cn^ +qiuziti.com##.search_wordimg +edrawsoft.cn##.new-year__cn__master +||efhis.cn^ +m.youku.com##.cmt-more-cont +ncno1.playno1.com##.eis_box_s > div:first-child +/source/plugin/mama_tips/* +||geilicdn.com/img*_960_60. +||shewang.net/images/*/CHD +/diantan.js +cool3c.com##.board-sidebar +itdog.cn##.lantern_left +@@||qianpanso.cn/other/*.js$domain=cilimao.co|cilimao.one +gamme.com.tw##a[href^="https://www.gamme.com.tw/redirect.php?id="][target="_blank"] > img +###adRightFloat +||eol.cn/e_busi/ +||yuwenbin.host^ +||coolpc.com.tw/home/img/right2.html +cyol.com,hc360.com##div[class^="AD"] +##a#wrapper_left_bg +19lou.com,cqmmgo.com,ihome99.com##.ad650-60 +divcss5.com##div[style*="width:336px;height:280px;"] +||163.com/wap/special/article_cooper_piapia/ +||lxbjs.baidu.com^$third-party +antdv.com###right-bottom +msn.cn##div[class^="nativeAd-DS-card"] +/adspace. +199it.com,softwarebrother.com##.adsbygoogle +weiyun001.com##.bg-box > .slide-box +firefoxchina.cn##.theme-618 .theme-side-bg .mod +olevod.com##.B1R +pan.baidu.com##.photo-banner +benxiang.com##.ad_duilian +makepolo.com##.cpc_tgs +||xitongzhijia.net/theme/2020/js/10033_ +.com/jsbjl/zhanqun +bilibili.com##.adblock-tips +||maopu.tv/d/file/p/2019/07/6ac50c702cf9e6a9a7910a510c40cb73.jpg +eepw.com.cn###popBox +/mysql/count/*$script,domain=ts.cn +taobao.com###mainsrp-shopstar +teepr.com##body .ucfad_async +jiaodong.net###rightBanner +@@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 +cam4.tw##.subfoot-section +7junshi.com##.videoads +tieba.baidu.com##.j_post_list_item[data-info^="\7b \"un\":\"\\u623f\\u4ea7\\u5feb\\u8baf\\u5927\\u7ba1\\u5bb6\""] +||taobaocdn.com^$image,domain=cnblogs.com +||aiboav.vip/wp-content/uploads/ad/ +/adpic/* +gameapps.hk##.ad-full-screen +lenovo.com.cn##.bottom_ad_fla +##.adtop +||huiagun.com/template/common.js +||tznizrhd.xyz^ +||ezrcowa.icu^ +sohu.com##.left-bottom-float +smm.cn##.common-jinzhu-wrap +85tube.com#%#//scriptlet('prevent-addEventListener', 'DOMContentLoaded', 'document.createElement') +huanqiu.com##.r-hqFashion +iqiyi.com###scrollWrap-vipbuy +||ldvnehc.xyz^ +||arnhhwo.xyz^ +mail.qq.com###plp_ad_container +||imgtuku.com/images/20*.gif +vod1769.com##div[id^="a"] +||files.jb51.net/image/ +||cergbwa97.shop^ +docer.com##.popup +||cpms.now.com^ +/ty684.oss- +bbs.pcbeta.com###diynavtop + style + div[class] +dep-family.hccg.gov.tw#@#.ad_1 +/ys_77jjss/* +##.newstyle > .container > a[target="_blank"] +yiche.com##div[class*="-adv"] +||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html +house.qq.com##.bm +iyf.tv##vg-player div.vg-bg +_ads.js? +||1.15lu.com^ +||localau.vip/tccenter/ad/ +sogou.com##.trans-side-banner +##.maomi-content > #main-container > .row.mob40 + .row +xiaolz.cn###masonry2 +v2ex.com##div[style][onclick*="geekhub."] +igo99.cn##.adBG +||ipip.net/loveapp/ipip/tools/theme/partner/ +js0573.com###adv1 +etest8.com##.subtop2right +##.afc_popup +@@||85po.com^$generichide +cngold.com.cn##.myGuangGao +fanqiangzhe.com###mobile-bottom-ads +||qiyipic.com/common/*%E9%80%9A%E6%A0%8F +||unpkg.com/sejie +||qwmamh.icu^ +||8d8d.me/images/dealer.gif +||isine88.com^ +||djljz.cn/Plugins/Template/XJLY/js/app. +sina.cn##.module-finance-client3 +||js.oh100.com^ +aibing.cc##.adsense +/adcg/* +||bcquan.me/front/home/render +||yfoega.xyz^ +qq.com##.tl_ad +yunduanxin.xyz###adb-mask +||videojj.com/api/v1/adsTags? +ac-room.cc#?#.waterfall > div.waterfall-box > div.waterfall-item:has(> div.ad) +||211xd.com/js +jiaodong.net###leftBanner +||games.ifeng.com^*.shtml?v= +||lanrenzhijia.com/Public/images/sucaihuo_ +hotpets.com.tw##.banner-area +bing.com#?#li[class="b_algo"]:-abp-has(.b_attribution[data-partnertag]+p[class]) +||ozhmig.cn^ +libvio.me##.hidden-log +news.163.com##a[href^="http://g.163.com/"] +||cr173.com/skina/ +||arbbj6.com^ +ifeng.com##.trade +tgfcer.com#@##content_adv +sac.net.cn###ad +||ahuys.net/Runtime/js/ +hao123.com,sohu.com,tieba.baidu.com##.advertise +||ithome.com/file/js/win*china.js +@@||taobao.com/go/app/tmall/login-api.php? +||analytics-union.xunlei.com^ +52wmb.com###popContent +/nfhry32_78.js +sina.com.cn##.side-btns-2wm +||dabaoku.com^$object,script,subdocument +||elisium.cn^ +###fwin_popad_7ree +||baxbyfn.cn^ +||feijied.xyz^ +||threrlak.com^ +/page/index.php?s=$third-party +||qlbbowx.xyz^ +||3520.cc/js/3520/ +##div[onclick^="window.location.href"][onclick*=".bcebos."] +||m.ailezhai.cn^$third-party +||xn--1qwynp09f.net^ +baidu.com##.quality-elinks +||wnstug.xyz^ +||vftvbx.xyz^ +@@||img.zcool.cn/ad_manager/location/$domain=zcool.com.cn +||rmioswx.icu^ +.men/ads/ +0439.com###kanfang +||anoneko.com^*.*?$image +hahamx.cn##.joke-list-anecdote +||51wan.com/img/js/xyadjs_ +@@||jsjiami.com^$generichide +||hrnvfp.xyz^ +nfmovies.com##[onclick^="openurl()"] +||ettoday.net/banners/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_listLiveTvCnt + .listBtnCnt + #listTalkCnt +oschina.net##a[data-traceid="explore_right_bar_70"] +/baha/*$subdocument,domain=gamer.com.tw +||dbw.cn/eap/js/hl/hlj_ad +dongtw.com#@#.post-share-container +||sp.dnqc.com^ +@@||upaiyun.com^*.js$domain=cilimao.co|cilimao.one +qqjia.com###myadsL +www.jin10.com##.l-main_info > div[class]:not(.jin-declaration):not(.jin-qq-cooperation) +||qjwvwu.xyz^ +||vdggsd017.com^ +||bdstatic.com^*/resource/tuijian/widget/guesslikesite/guesslikesite. +||962.net/show/bt.js +||img*.bet007.com/image/*.gif +||073img.com/*/| +||ifengimg.com/6e0e559e19f25e8b/2013/1226/shoucheng +||hltqsbl.cn^ +||hdc.maxli.cn^ +||tingroom.com/tingroom/ad/ +||pmblrt.xyz^ +||dms.fx678.com^ +baidu.com##.invoke-app-floating-tips +@@||sinaimg.cn/dy/deco/*/js/require.js +||ceiuip.icu^ +||407mp3.com/js/*.js +downg.com##.download-list:first-child +||sdjvbsjbvas.com^ +||photo.*.html?tk=$script,third-party +cloud.tencent.com##.cdc-commercial-swiper +ifeng.com###qrCode +||udnfunlife.com/mall/cus/cat/OutWebAd.do +||cyjqgpf.top^ +||asfybkiy.xyz^ +udn.com##.mag_topic > a[href^="https://goo.gl/"][target="_blank"] > img[src*="_banners/BD/"] +||bdad.gaotie.net^ +||udykkl.cn^ +114la.com#?#.sortItem:-abp-has(> dIV[class] > .FeedADClose) +||niu07.com/gg/*.js +||tcvmtp.xyz^ +||sbo8.com/static/theme/js/bottom. +||9938.net/video/tvg/footer.js +||pwhkfd.xyz^ +||gxqzz.7766.org^ +wezhicms.com##.activity +###app > .publicAllContentBg > .bigBannerBg +sm.cn##.c-container > div[data-sc*="etao"] +.xyz/upload/ad/ +apple.com.cn#$##ac-globalnav { top: 0 !important; } +||bda1.ayule.net^ +||djponj.xyz^ +studygolang.com###ad-right1 +||kdjdpyrt.xyz^ +zol.com.cn###downBoxGaosu + a +||gbgedashb8.fun^ +||swoole.com/_images/w7.jpg +/tourl.html?url= +||bonbonme.com/js/g1313166/ +##a[onclick^="_czc."] > .ads +||img.ferlie.net^$domain=wangchao.net.cn +||zrdga.cn^ +||jsdelivr.net/gh/*/960x60. +||rz261.cn^$third-party +##.adbottom +||cnblogs.com/group/C1*-T2 +||dmzj.com/public/js/app_banner.js +baidu.com###adMainTopLeft +cpnn.com.cn##.duilians +||shbzlkj.cn^ +||imeee.cn/DA_HTML/bottom_960x90.html +||cdn.vidcrunch.com/integrations/*_Responsive_Floating_DFP_$domain=discuss.com.hk +||aiboav.vip/wp-content/uploads/uu-chat/*.gif +||coolaler.com/index_ads/ +||dftoutiao.com/jrdftt/static/javascript/ad/ +||sina.com.cn/js/*/AdvertisingByNewIndex_ +||sinaimg.com^$domain=dayanzai.me +||sxlmggx12.com^ +ruanyifeng.com##a[href*=".100offer.com"] +||wei2008.com/js/t_ +||hf365.com/0/15/64/87/15648725_922274.jpg +@@||cstnet.cn/r/cms/cstnet/zh_CN/ad/index/ +91porna.com##.row > div.flex-container:has(> a[href][target="_blank"] > img) +taoguba.com.cn###tbgzInstall +||a1.qqan.com^ +##.w100b > .m_adv +||okwkaa.xyz^ +speedtest.cn##.speed-bottom-ads +||kjrspnbf.xyz^ +@@||microsofttranslator.com/translate? +yisu.com##.coupon-get-link +||techug.com/aatb/ +mg21.com##a[href="https://www.mg21.com/zunjiazq"] +sina.cn##.p_newsmore +||kfctds59.shop^ +||xmhszb.xyz^ +||yxamkm.xyz^ +libaclub.com##.merchant-link +||wtroytj33.fun^ +||ysxt9.com^ +haoxxoo.com##.nrad1 +||a.imgso.cn^ +||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg +@@||autoimg.cn/bi/common/pvevent_all. +||efjsliw.top^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###j_star_bus_before +ytbbs.com##.ftop_ad_2016 +duba.com,newduba.cn##.pro_r_t +||gg.*.com/tonglan/tonglan.js +||lianle.com^$third-party +ttsp.tv##.play_list_adbox +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_right > table > tbody > tr > td > table +163.com###layout-shop +/js/bpolknm.js +###video_playr_side.video_playr_sider.videoplayerside +||vdggsd009.com^ +5eplay.com##img[width="290"][height="360"] +||moerats.com/usr/affpc/ +ithome.com##a[href^="http://e.cn.miaozhen."] +codeleading.com##div[id*="ads"] +@@||izo.tw/wp-content/advert1.js +||aapubcti.xyz^ +||ujappzvz.xyz^ +||zqkxlf.com^ +.in/js/ads/ +||qpb*.sohu.com^ +||alibaba.com/async/b2bad. +firefox.com.cn,firefoxchina.cn##.theme-side-bar-priority +||files.xtpag.top^ +||ugolue.xyz^ +||chinatimes.com/ads/ +blog.51cto.com##.ac-box +sinolub.com##.erjlogo > .fl + .fl +||cjdby.net/Public/home/images/advImg/ +||doubanio.com/view/photo/l/public/p2891976611. +@@.com/ad.aspx|$domain=xdingdian.cc +||apsgo.com/assets/js/union. +||999xx999kk.com^ +||jandan.net^*/699pic/ +##.vg-overlay-pause +pythonthree.com##.astra-advanced-hook-7063 +||awuvcq.xyz^ +423down.com##.content > a +||kjjjusb.xyz^ +||share44.com/adad2014/ +@@||cloudflare.com/ajax/libs/fuckadblock/$domain=seselah.com +||pubads.g.doubleclick.net/gampad/ads?*&output=xml_vast*&url=http*.4gtv.tv$script,xmlhttprequest,other,redirect=noopvast-2.0 +###bottom_qr_code +##.rightadv +||qianzhan.com/qiye/images/qcm_ +||npdbxf.xyz^ +@@||show.g.mediav.com/s?type=$domain=v.360kan.com +.com/vj2/$script,third-party +||xmlgzr.xyz^ +||webkaka.com/ad/ +hao.rising.cn##.shop-site +||88362zubo95838.com^ +||free-cdn.oss-cn-shanghai.aliyuncs.com^ +||pixfs.net/module/fullPage/dist/ad-full-page. +||phtivr.xyz^ +getrelax.cc#%#//scriptlet('abort-current-inline-script', '$', '#adisblock') +/static/common/js/djlib_ +manhua.weibo.com###p-nav-fix + .p-area.w980 +zol.com.cn##.zol-eshop +||firefoxchina.cn/img/201912/7_5de5c6289dd340.png +||ieforex.com/r/cms/www/red/red2/images/*0. +||83133.com/api/ +||ctrip.com/amd/*960x90. +||lrutvncl.top^ +||nerydw.xyz^ +cnyes.com###full_ad-screen +||chinatimes.com/analytics/ +||difhil.icu^ +@@||doubleclick.net/ddm/trackclk/$popup,domain=hongkongcard.com +||0kkbb.com/js/i.js +stheadline.com##.section-popular +.club/ads/ +cnki.com.cn##.adList +click108.com.tw##.AD_300250 +##.wemziguanggao +yshw1.com###diynews_ad1 +||utwwzqdx.xyz^ +||daweijita.com/201*ad. +||windowszj.net/d/js/list/click +||qqxiazai.com/index.*adver& +||dceuhnpc57.shop^ +/adlink. +aguitar.cn##.banner7 +||htxwzp.xyz^ +netfly.lol##.module-tglist +/addon/assets/common/gg.js +91porny.org,jstv600.com,x9av7.com##.footer + .block +briian.com###post-wrapper div[style^="width:"][style*="height: auto; background"] +@@||avgle.com/embed/$genericblock,generichide +||a.epinv.com^ +||sdkjkbsjkbvjkscv.com^ +.gif$third-party,domain=1024pa.com +||hrutvncu.top^ +efu.com.cn##div[class*="banner-"] +||ycgmnpp.icu^ +||sikaq.top^ +||kiees.com^$image,subdocument,third-party +||idv.st/dns/bar.htm +stockstar.com##.much_ad +||aeyyck.xyz^ +||cjyun.org/assets/js/analytics.js +||7mmtv.tv/js/ad_js/ +@@||adnxs.com/prebid/prebid.js$domain=demo.ama.pub +@@||myssl.com/scripts/analyze.js +||kygso.com/js/lrtk.js +tophub.today##.ax +/ad_img/* +||runoob.com/images/re/ +||qiuyi.cn/Baojian/ +||ad.zui.com^ +||epxprfk.xyz^ +||huaerdadi.com^$third-party +||mydrivers.com^*/xianshitehui.png +||soulu365.com/images/zhuce.jpg +sm.cn##.ad-dot-container +||axjbt.com/dbxf/pctc.js +kekenet.com###weixinwz1 +||zhenjiang365.cn/*/ad_ +mgtv.com##.ad-fixed-bar +abbao.cn#@##adContent +17jita.com###wp > .wp > .pbm +||meiyouad.com/static/pc/img/111.gif +360kuai.com##.detail__top__title__under +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.qipai_thread +||huobaowang.com/meeting/js/hbchat. +||inte.sogou.com^ +||vpqrydt.xyz^ +7654.com###gg_top +tingfm.com#%#//scriptlet("prevent-setTimeout", "adblock") +jianhuadaily.com##.alignnone[width="800"] +firefoxchina.cn##a[track_key="outside_left_adv"] +||fydisk.com/images/showvip.gif +||koublid.top^ +||myunion1.tupians.com^ +||itc.cn/mdevp/*-advert/ +||apis.pchome.com.tw/js/idlead.js +.com/uploads/*-860x250.gif +||kxmusic.top/tc/js/script.js +le.com##.gamePromotion +gaoqingw.com###sidebar a[href^="http"]:not([href*="gaoqingw"]) +||daysou.com/images/huaweicloud.png +netfly.*,netfly.tv##.player-box > div.player-tt-rmm +baidu.com##.banner-cover +||agrantsem.com/js/ag.js +||totheglory.im/pic/ttg_ +/see200vipghajq/* +||dadxnl.xyz^ +.m.muyuge.com^ +5nd.com##.songAds +?ad_ids= +news.lyd.com.cn##table[cellspacing="5"]:nth-child(3) +cnpingpang.com###diycity1103 +||kfjslid.top^ +yaociyuan.bid##.board a[target="_blank"] > img +||kiuee8.com^ +||jab88.com^ +ssr.tools##.asb +||klandmart.com/K-Landmart_0011.jpg +macfans.org###portal_block_180 +||b1.cdn.mh3666.com/html/ +lihkg.com#?#div[id][class][data-post-id] + div[class]:not([id]):not([data-post-id]):has( > div[class]:only-child > div > div[id^="gam-"]:only-child) +.org/ads/ +/ad.php? +baidu.com##.text-advertise +||fklgndklbngg.com^ +||abcache.com/youlaohu/ +||qsfbmol.cn^ +@@||dydog.org/*/DPlayer.min.css +mafengwo.cn###smartGuideFeng +disp.cc###ads_page_r +duba.com,newduba.cn##.top_ad_tmall +||imgbaiduxz.xyz/jsjsjs/ +||249999.xyz^*.gif +house365.com###marryD +@@||qq.com^*?ADTAG= +||ghreha.top^ +||qetskupyka61.shop^ +||china-netwave.com^$third-party +||17173.com/actapi/qiyu/ +3dmgame.com##.Gmaeinfobtn + span +baidu.com##.slide-bner-adv-ret +||158zm.com/top.js +/jun0120211102193659. +||ngnxyub.cn^ +||chuapp.com/wp-content/Picture/2017-08-14/59917b959139f.png +||az697jylm.cc^ +hk.on.cc##div[id^="google_div_"] +/js/huath_2.js +||img.scupio.com/js/ad.js +||wswxsk.xyz^ +||pkvs.com/public/as.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.spreadad +||ergeapp.com^$third-party +||yatemy.cn^ +||uouvxlit.top^ +_bannerad. +@@||xnimg.cn^*/nx/ugc/share/js/hotlist.js +ithome.com##.rm-modal-body +||vozftn.xyz^ +##.b_sxc +||bqg126.com/js/hf +wiki.mbalib.com##div[id^="p-ad-"] +##a[href*=".cgn8j9f4j3g.com:"] +||denjpl.xyz^ +@@||nowscore.com/script/common/adHelper.js +@@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com +photopea.com##.flexrow > div[style^="padding-top:"] +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.1.commercial.mediaUrl', '') +423down.com##.content > p[style] +||daima.aixiaola.com^ +||offcn.com/index.php?m=dbsource&c=call&a=get&id=77 +||docin.com/docin_adv/ +||music.163.com^$domain=mvcat.com +gpsuu.com##div[class^="top_96"] +||saohu*.com/config/json/cctv.json? +||avseesee.com/amandison.php +||g3f3.com/love/ +||256856.com/fei-ad/ +dhaomu.com##.sidebar > .slide +@@/fingerprint2.js$domain=fangcloud.com|fx678.com|gxpf.cn|hnair.com|pop-fashion.com +||looyu.com^$third-party +qzwb.com##.qzw_live_img +||qiyipic.com/zongyi/*Banner01.jpg +/hunter/alog/* +||youdao.com/www/banner.html +||cp.jfcdns.com^ +/template/*/ads/* +||66huacai.com/d/js/v/hc +||3hufi.site^ +anjuke.com##.adver-content +_ad_iframe. +||9duw.com/js/sj +/proxy.htm?id= +||kbbrptv.xyz^ +ruanyifeng.com##a[href^="https://ke.qq.com/"] +vpsdx.com##.gthfdsa +||kjubky.xyz^ +liaoxuefeng.com###x-sponsor-a +e0838.com###float-bot +||btschool.net/images/*/HDYGR +||bd11.nipic.com^ +||adminbuy.cn/images/ +||imgs.cc^$domain=fun1shot.com +/tuiguang366.oss- +||baidu-taobao-av.com^*.gif +||uyyquln.icu^ +/AdPreview/* +##div[style^="width: 100%;"][style$="z-index: inherit;"] iframe[scrolling="no"][src*="//"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +###crazy_ad_float +xfastest.com##iframe[src*="//ads.xfastest.com/"] +||csdsa22.fun^ +bilibili.com##.bili-video-card__wrap > a[href^="http"]:not([href*=".bilibili.com/"]) +9xav.cc#?#div[class]:not([class*=" "]):has(> span[class*=" "] > a[href^="https://"][target="_blank"]) +##.div-search-box.col-lg-offset-2.col-lg-8 > a[href^="http"][target="_blank"] +||muyys.com/img/ +playno1.com##.eis_mtm[style="border-top:1px dashed #CDCDCD;padding-top:10px; padding-bottom:15px"] +toolfk.com##.top > div[style="font-size: 12px;text-align: center;margin-top:6px;"] +||pnez8.rut6m.xyz^ +||liwupuba.com/livead/ +||9t51o.icu^ +pixnet.net##body div[class*="-ad-"]:not(#style_important) +||douyu.com/japi/sign/web/getinfo +||111cn.net/gg_ad/ +||sinaimg.cn/large^$domain=fcw45.com +||iptuy.cn^ +||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com +so.com###e_idea_wenda_leftBox +||3czol.com/ad/ +@@||alicdn.com/retcode/log/log.js +||933m.com/1.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.u9_aside +kdnet.net##a[href*=".tmall.com/?spm="] > img +xuite.net##div[id^="index-ad-mid"] +||hppmy.cn^ +bigpixel.cn#%#//scriptlet("set-constant", "killads", "true") +jieav.com##.b300 +||alicdn.com/kf/Uc565e19948944fdb860e6847fb145811t.jpg +||dsads55.fun^ +.*ouvxli*.top/$script,third-party +chinaz.com###toolsIntro +||win0168.com/images/item.gif +eeyy.com###float_ad0 +||39.net/ask/sg. +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div:not([id]) > style[id^="s-"] + style + div + div[id] +||bdstatic.com/pc_static/detail/game_promotion/ +/adload. +||ibf.tw/js/jquery.blockUI.js +tiexue.net##body > div[onclick] +1909.me,8se.me,crxs.me,xchina.biz,xchina.co##.media +||p1.chinakaoyan.com^ +||upload.cc/i1/*.gif$domain=ddav.org +##center > a[target="_blank"] > img[style="padding- bottom:5px;width:960px;height:120px;"] +hz66.com##div[style="width: 300px; height: 250px; float: left; position: relative;"] +itdog.cn##div[style="border: 1px solid #dadada;padding: 6px 10px 5px 5px;background-color: #ffffff;"] +||iincon.icu^ +wiki.mbalib.com##.tool-bar > a[target="_blank"] +gaoqing.fm##div[style^="height:258px;background-image:"] +manhuagui.com##.gg_950 +@@/adsbygoogle.$domain=moa.tw +/adsence. +.com/dongcidaci/ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.res_top_banner +ifeng.com##div[class^="rightContent-"] a[href^="//health.ifeng."] +subhd.com#%#//scriptlet('set-session-storage-item', 'hassession', '1') +ithome.com###con > div[style="text-align:center"] +17k.com##.baiduBox +91lai.com##.D_guanggaotu11 +douyu.com##.firstpay-modal +||azhibo.*images/leisu.png +||voc.com.cn/static/web/js/creattwo11.js +||jishuyl.com/_skins/*/ad_ +my0511.com###renmenzwad +||daslethv.com^ +5ewin.com##.erweima +dpp.org.tw#@##ad_small +/templates/bootadult4/js/text.js +@@/adview_*_ads_300x250.js$domain=itbaoku.cn +520cc.cc#%#//scriptlet("prevent-setTimeout", "location.href", "3000") +jin10.com##.top-ad +zhujicankao.com#?##ez-toc-container > div.ez-toc-right-container:has(> div.ez-toc-rigth > ins.adsbygoogle) +||znnfzx.xyz^ +||tu2024020388.com^ +324324.cn##.link_header +||orbnarb.xyz^ +###container > .sectionBanner +||gsiawq.xyz^ +||874547.men^ +###appBottomIn +/moneymaker/js/tmpp.js +:9875/vh2/ +||dayfund.*/images/uds/ +cw.com.tw##.emailorder +jiumodiary.com###forum-panel +||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg +||xkyn.com/imgs/js/al.js +###googleAD2 +||hao123.com/ifeed/cpc? +||cdndm.com^*/js/newtc.js +||bocenamesingle.xyz^ +||mangafuna.xyz/static/ads/ +ikjzd.com##a[href*="/redirect-ad-url?"] +||jz5u.com/public/js/t$script +||ll.ibiqiuge.com/m.js +@@||baidu.com/h.js$domain=19lou.com|baomihua.com|ihome99.com +||pinlue.com/error/bangolike.js +||dajiadu8.com/17mb/script/gg. +||ebiotrade.com/jslibrary/js +||lianmeng.la/abc/ +||yiucfif.icu^ +@@||58b.tv^$generichide +||qksapp.net/gif/ +briian.com##.entry-data-wrapper > div[style="display:table; margin: 0 0 15px 0;"] +||lu228.com/ajs/ +||sunofbeaches.com/shop/recommend/ +pujia8.com###recommend +/300_250_ +||uiqcf.cn^ +bcbay.com##.discuss + table +gotv.ctitv.com.tw##div[class^="code-block code-block-"][style="margin: 8px 0; clear: both;"] +||jrzj.com/img_index/*adv +eastday.com##.ad-foot-right +||efg.zle.com^ +||china.cn/js/common/local_hydn/ +||39.net/creative/ +||xevzdl.xyz^ +_ad3. +dianping.com##.bao-jia-form +iqiyi.com##a[href*=".banggo."] +ltn.com.tw##A[href*="draw.ltn.com.tw"] +qq.com#@#.adsbox +im286.net###diyflash +@@||mccc11.com^$generichide +||ogouawc.cn^ +eyny.com##span[id^="ads_ads_"] +||okbmf.com/imgad/ +||layuicdn.com/layer/layer.js$domain=hanjutvn.com +moonbbs.com##.dm-header-ad +##style + .vdgdo +||vwmjkl.icu^ +||uutytp.com^ +||dj155.com/gg/ +||chusan.com/js/m*_ +||hahamx.cn/upload/data/detail_ +dmhy.b168.net##div[align="center"] > a[href^="https://www.baidu.com/?mm_sycmid="] > img +qq.com##.site_words +@@||yunjiema.top/static/js/wpsafelink.js +163.com,zybang.com##.top-banner +baidu.com##.sam_iebrowser_banner +||union-wifi.com^ +.baigh8eosmgie*.site^$script,third-party +||8gra3.icu^ +eastmoney.com##div[id^="flow-ad-"] +lightnovel.us##.author + .poster +###popadv_popmenu +nownews.com###crazy-video +pinggu.org##.indextop-r +||pstatp.com^$domain=5217kdy1.xyz|ahah3.com|i5qs.com +sohu.com##.x-adv-pause-nonlinear-panel +easou.com###ec-results-c +||rqroytj33.fun^ +qzone.qq.com###idQbossHotbar +||jy06.shop^ +||hov15.icu^ +element-plus.org##.page-sidebar-row +airav.cc###Panel_GambleZone +||156xsw.com/css/js/tools. +ydss.cn##.indexAd +||baidu.com/event/img/zwdzjs.jpg +||goproxy.cc/api.php +@@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn +lzacg.one##.sidebar .zib-widget > .textwidget > a[target="blank"] +||dm.zjut.cc^ +/images/mobileads*.jpg +||shumilou.co/style/html5.js +##a[href*=".com/Register.aspx?aid="] +/xxgg/ddd*.js +||tweezesmalanga.com^ +||picyq.com/index.php/Home/run/get_ad/ +||yddrqwq.xyz^ +sdzbcg.com##table[height="41"]:last-child +||webkaka.com^*x50. +||mxeq.cn^ +bilibili.com##.ad-f +||zk6.me^ +@@||bdstatic.com^$domain=17k.com +2345.com##.s11-side +||1.sj33.net^ +duba.com##.ss_sider_list[href*=".wan.liebao.cn"] +||p2p.v.yyclouds.com/crossdomain.xml +zhihu.com##.MHotFeedAd +xc6b.com##.navbar + .clearfix +||pvpdbth.xyz^ +||nychinaren.com/houbei/ +_fioiwhfo_ +kdocs.cn##.business-list-wrap +360kan.com##.b-ifradjx +baidu.com###sning1 +||holdntlc.com^ +||52tian.net^*/xuanfu.js +maplestage.com##div[class*="-page-module__right"] > div > div[style="margin-bottom:20px;padding:16px 10px;box-sizing:border-box;width:100%;background-color:#eee;border:1px solid #ddd;text-align:center;"]:first-child:not([class]):not([id]) +bitauto.com###bitAd_floatFlash +##.mbads +##.dabc > .ng-star-inserted +||livku.com/g1000/ +||80s.so/9*.JS +fnjiasu.com##.swiper-container +||xwbxsw.com/js/app_wap. +##.readmidad +##a[href*="/dsf66.cc"] +weibo.com#?#tr:-abp-has(> .td-03 > .icon-txt-recommend) +neon-pet.com,easylife.tw##.popup_bottom_ad +||lyretul.top^ +||pjcijbv.icu^ +/yy_transv/js/cmp.js +||57see.com/js/ +weather.com.cn###adtop_r +||uzrxoxd.xyz^ +rvlev.com,t66y.com#?#[class]:-abp-has(>a[onmouseover="this.style.background='#DEF5CD';"]:nth-child(n+150):-abp-contains(/赌|娱|澳/)) > :nth-child(-n+155) +||stq89.icu^ +||81book.com/static/scripts/common. +##.ec-ad +||baidu.com/videoui/api/videoads? +||citysbs.com^*/650x60- +##.scupioadslot +libvio.cc,libvio.me##.t-img-box +china.com##object[width="360"][height="300"] +pan.baidu.com##.wp-side-options +###leftCouple1 +duba.com##.oneone-search +jjckb.cn##div[class^="g"] > a:first-child:last-child +||gyjgrvd.cn^ +sohu.com##.wrapper-box > div.god_header +pinggu.org##.banner2015 +baixing.com##.refashion-listing-banner +~sports.qq.com,~work.weixin.qq.com,qq.com#%#//scriptlet('json-prune', 'ad') +esnai.com##.tlgg +||shnpetdb638.shop^ +v.baidu.com##div[id^="adv_asp_"] +||httpcn.com/m/tg/ +chongbuluo.com###add +||fotao9.com^ +||lyckery.com^ +||thisav.com/0*.js +||s.zixuntop.com^ +||carstat.bitauto.com^ +360kuai.com###task__modal__container +||xxdm.in/js/union/ +tvyb03.com,yemancomic.com,zkk78.com##div[style^="position:fixed;"] +||zuoyebang.cc/static/question/question/resource/QRCode_ +||opqnkw.xyz^ +cctv.com##.anime_ewm +||static.zongheng.com^*/ad_click.js +hao4k.cn##.lineC_right +setn.com##.header-right-banner-b +||76fengyun.com/70070.gif +||thjwxz.xyz^ +##.self-gg +###imgs5[height="60px"] +||swaterb.top^ +||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|ac88.info|aisex.com|cnnice.biz|go543.com +.xyz/?channelCode=$csp=script-src +||nenmu1obbi.info^ +||qmgria.cn^ +huya.com##.end-ab-banner +mangabz.com###cc1 +/content.php?id=148&type=g|$xmlhttprequest +cnool.net##.meilai_box +||ypyjyhny.xyz^ +3dmgame.com##.tonglona_4 +||sfkldbkldgdgh.com^ +||dianxin.com^$third-party +||xehodv.xyz^ +||api.wudizuqiu.com/72nba +ahtv.cn##body > table[style^="text-align:center; width:960px;"] +tsdm.live###ts_sidebar_base +||962.net/show/cms_$script +hahamx.cn##.mobiles-banner-des +||newsres.cn/temp/tempad +sina.cn##.j_article_cutpic +##.top_ad +game735.com##div[id^="ysmAD"] +hackhw.com,qqjia.com##.hengfuad +eastmoney.com##.advertisement +cartoonmad.com##table[width="877"] > tbody > tr > td > a[href^="https://fun8.us/"] +||d3g4a.cyou^ +jiegeng.com##.picBt +guailie.com#@#.google-ad +||ipssss.com^ +@@||zxmee.com^$generichide +/pj98co.oss- +##.gpost-below +:800*/d/*t=$script,third-party +||pbvdlb.xyz^ +||iqshw.com/d/js/m/thea +||atwqyor.cn^ +||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png +zt5.com##.gg_bt +||ymauoo.xyz^ +||888aa111bb.com^ +###tripadvisor-ad +baidu.com##.ad-platform-tips +||21edu8.com/js/mymoney/ +||yinghuavideo.com/bar/ +jieav.com##ul[id^="jieav_"] +nipic.com##.vip_show +firefox.com.cn,firefoxchina.cn##.theme-side-bar[trace-key="ad_theme_skin_link"] +||books.com.tw/exep/ap/$third-party +/code/cpm.asp? +||danmeixsw.com/js/mwap.js +||kfc.com.cn^$popup,domain=iqiyi.com +||ax.*.ifeng.com^ +baihe.com##.scrollULeft +2cto.com##.adv980box +linkedin.com#?#.core-rail > div > div[id^="ember"]:-abp-has(.feed-shared-actor__description span:-abp-contains(/促銷內容|广告/)) +||xvudqzoa.xyz^ +||beephone.com.tw/ad-yahoo.php +tahua.net###frameJjnBIp +xineurope.com##.adft +/bcgg/* +qiuziti.com##a[href^="https://www.hellofont.cn/"] > img +||loli.io^$domain=kisssub.org +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_right > div:-abp-has(.ec-tuiguang) +||youy14.com/js/zz/nr.js +gucheng.com##img[data-mv-ad] +360kuai.com##.mid-right__operate-adv__container +iqilu.com##.gg580140 +iqiyi.com##.thumbnail_item[href^="http"]:not([href*=".iqiyi.com/"]) +||prhfziq.xyz^ +gamer.com.tw,pili.com.tw#@#.pub_300x250m +xiaoz.me##.gg6 +||mysteelcdn.com/common/*/js/img_ad. +||126.net/ntesrich/*/suning- +dapenti.com###center > div[align="center"][target="_blank"] +||n7181.com^ +||hltkl.fun^ +||dfcfw.com/zndh/ +###cs_left_couplet +mm-cg.com###ioshowAD +||mylikechat.com^$third-party +xvna.com##.articleAD +||qiyipic.com/common/*/banner.jpg +1010jiajiao.com##.xiti_content + .xiti +||miwifi.com^*ads/ +jin10.com##.l-main > div > .jin-timeline +||mnvxdkd.xyz^ +wmzhe.com##.downloader +5119.cn##.xzbtn_new + .xzbtn_new +||mixer.sina.cn^ +newtalk.tw##.extend_ad +moorzon.com#%#//scriptlet("json-prune", "*", "nativeConfig") +||hptyp.icu^ +||ajoqu.cn^ +zcool.com.cn##.main-wrapper-advlong-top +||tk.504pk.com^ +115.com##li#js_common_act-enter +sina.com.cn##.article-botton-slide +elle.com.hk#?#article > div.block-default:has(> div.content-wrapper p > span:contains(Cosmart)) +@@||lib.baomitu.com/axios/*/axios.min.js$domain=69xx03608.xyz +||xtvrtrya.xyz^ +||static.youku.com/*/js/cps.js +||tu4038097360.cc^ +@@||changyou.com^$generichide +||576tv.com/Scripts/home.js +@@||netded.com/plus/ad_js.php?aid=3| +weibo.com##.UG_bn_a +taoguba.com.cn##.NewH_top_left + .left +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=news.tvb.com +.xyz/99x/ +*$script,third-party,xmlhttprequest,domain=cnbtspread.xyz +qq.com,sogou.com##div[class^="page-bottom-banner"] +@@||atanx.alicdn.com/t/tanxssp.js$domain=taojinbi.taobao.com +||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com +/gg7f5kv/* +||bvubasnf.com^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=4gtv.tv|881903.com|ani.gamer.com.tw|appledaily.com|ha365.com|hamivideo.hinet.net|line.me|linetv.tw|litv.tv|mytvsuper.com|nextmedia.com|now.com|tvb.com|udn.com|ulifestyle.com.hk +||knpkxgfp.xyz^ +tianya.cn##.slider_box +||ypffkbpq.xyz^ +pconline.com.cn##.ivy > a +3g.cn##.statistic[href^="https://jumpluna.58.com/"] +##.appdownload_ad + .hider +||voxirf.xyz^ +||dianping.com/wedding/pro/jsonppage +passiontimes.hk##.rectAd680 +||fundingchoicesmessages.google.com^$third-party +/vbvb_*_pmpm.js +||cctv5.name/data/js/ +||baijs010.shop^ +||mygeek.cn/pic_$domain=dapenti.com +||bitscn.com/js/a2 +v2ex.com#?##Rightbar > div.box:has(> div.inner a[target="_blank"] > img[src*="cdn.v2ex.com/assets/sidebar/"]) +||e3inu.space^ +36.cn#@#.mainAd +@@||ad.10010.com^ +/center?advId= +:9875/vj2/ +anhuinews.com##div[style$="height:40px;overflow:hidden"] +2345.com###leftSideBar +||yalingba.com/ggtxjs/ +popdaily.com.tw##div[class^="ad-delimiter-"] +slashlook.com###AdvertismentInline +caq98i.top#%#//scriptlet('abort-on-property-read', 'alertadmodal') +||wrsikq.xyz^ +###miaov_float_layer +##.guruin-ads +||firefoxchina.cn^*_couplet +||bdjs.daziba.cn^ +||to8to.com/yezhu/zxbjWidget. +###bl_mobile_float +||youivr.com/image/*-960x80 +mcar.cc##.showhide > video + div[style="background-color:#FC0;margin-top:1px; width:500px; height:90px;"] +||zhongkaowu.com^$third-party +||baidu.com/videoapi/?*_ad_promote& +6park.com##table[width][align="center"] > tbody > tr > td[bgcolor="#FFFFEE"]:has(> div.adv-6park) +||linkwan.com/gb/javascript/a +||dnxtc.net/images/xiaobing +||dljzcl.cn^ +@@||gboku.com^$generichide +##.bottomd + .leftd +||czresus.cn^ +||gameone.com^$third-party +##a[href*="/yfj8159.com"] +koolearn.com##.news_pf +||miiepofl.xyz^ +||pwfqjp.xyz^ +duba.com##.cool_textlink +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'detailParams.is_ad_play', 'false') +||jubbkon.top^ +163.com,55188.com,csai.cn,miercn.com##div[class^="gg"] +autohome.com.cn###ad-top-1111 +||medsci.cn/images/wyg.jpg +m.nownews.com##a[href^="http://ad1.nownews.com"] +||jable.tv/assets/images/*-slider. +||bvrzwnq.xyz^ +100ksw.com###ad_move_sg +3jy.com##.Rad +focus.cn##.shequn-code-img +tuliu.com##.info-recommend +||lafirx.xyz^ +qyun.vip##a[href*="/ad."] +silver.org.cn##.fix_bottom_position +||baiten.cn/images/weInternation/ +~cityheaven.net###gg1 +||dblijd.xyz^ +||eol.cn/images/*1000- +soyunpan.com###qblad +||xxle.cn^ +@@||dictionary.search.yahoo.com/beacon/sc?&ajaxdd=tabsCard& +||wenku.baidu.com/browse/interface/getrec? +||fc2fan.net/js/check_focus.js +||bchina-1.xsfaya.com^ +jingdianlaoge.com##.baidu +##.nr_all > .m_f_a.sw_sp +bttop.net###top_bottom + div[style="float:left;width:100%;"] +###xinnxi +||lctcbtly.xyz^ +||f780f.space^ +/footer_ad. +||yerecpa.cn/uploadsb/app_adv/ +.me/ads/ +enews.tw##div[id^="adFrame"] +cari.com.my##a[href="http://banner.cari.com.my/daybanner/?page=promotion"] +||3boys2girls.com/templates/default/2013/life/160b5.js +||manwa.me/static/custom/files/300X250.$image,redirect=1x1-transparent.gif,~third-party +###rightad2 +||qiyipic.com/common/fix/rebull_ +###wrapper > div[style="padding:3px;"] > #pic +||displink.com^$third-party +||aaknmt.icu^ +||langya.cn/2014html/2014ad_ +qq.com###iwanAD2 +||wnifdlae.top^ +##.float-adv-right-top +to8to.com##.whan-ad +##.wp.a2_h +acfun.cn##a[href^="https://click.dsp.com/"] +wjx.cn###ctl01_ContentPlaceHolder1_divProMsg +ithome.com##a[href="/html/363216.htm"] +||e0575.com/index.php +||guang.sdsgwy.com^ +theav.xyz,69xx.one,theporn.cc#$#.q-body--prevent-scroll { position: static !important; } +||soduso.com/js/so.js +hexun.com###tonglan_1 + .layout +||d1.3158.cn^ +||cbthkumwa96.shop^ +||d.dgzj.com^ +||kuaidi100.com/mobile/mobileapi.do +secretmine.net###main-content > center +||chnci.com^$third-party +||3ndra.icu^ +||a.miyudaquan.top^ +wnacg.com#@#.ctm_ad +steelcn.cn##.new_fixed +||bd-js1.2345.com^ +kekenet.com###bottomlink +m.91zww.com#%#//scriptlet('abort-on-property-write', 'delCookie') +||mvcat.com/sitefiles/services/cms/adv/ +||playtv.com.cn/Pictuer/ +||dsfh2.icu^ +||tjfbh.icu^ +||thisav.video/v3/nb/ +blog.51cto.com##ul.Navigates > li.first > a[href][target="_blank"] +wybg666.com##.container div[id$="ad"] > a[target="_blank"]:only-child > img +dytt5.net##body > div[style="overflow: hidden;"]:nth-child(3) +||bd1.jinbaozy.com^ +||myiryc.xyz^ +||vggg5.space^ +gameapps.hk###top-ad-right +||albdbsk.xyz^ +||de.as.pptv.com^ +||adm.6park.com^ +psahz.com#@#.ad_960 +||pc841.com/show/ +neihanshequ.com###appDownload +ipv6.baidu.com,xueshu.baidu.com,www.baidu.com,www1.baidu.com#?#div:not([id]) > style[id^="s-"] + style + div[id] +knowmore.cc##.ins +||rfnvqpo.xyz^ +gamer.com.tw##.goAPP +image.so.com###starlist +#%#var AG_setConstant=function(e,a){if("undefined"===a)a=void 0;else if("false"===a)a=!1;else if("true"===a)a=!0;else if("noopFunc"===a)a=function(){};else if("trueFunc"===a)a=function(){return!0};else if("falseFunc"===a)a=function(){return!1};else if(/^\d+$/.test(a)){if(a=parseFloat(a),isNaN(a)||32767 section > div[style] > div[data-index]:has(> div[class] > div > div[id^="div-gpt-ad"]) +hao123.com##.insertad_wrapper +zhongce.sina.com.cn##div[class^="side-btns-jifen"] +||eiqsky.xyz^ +vip.diaoyu18.com##.container > a[target="_blank"] +fcw45.com##.bottom-adv +my0511.com###forumtextad +||vrrw.net//templets/default/js/ad.js +baixing.com##.guide-video-app +###bfad1 +sto520.com#?#.content > div.book > div[style^="text-align"]:has(> ins.adsbygoogle) +.cn/gg/$script,third-party +||9wcn.com/gcld/500.gif +zhujicankao.com##.topsss-111 +###bottom-ads-container +||177o.com^ +:701/Pus/pus.js +@@_300_250.$domain=nanrenwo.net +@@||baidu-taobao-av.com/js/jquery. +||sinaimg.cn/finance/*/hqMainTopBanner.js +||onx8.com/theme/tange/add/ +@@/ads-api.$domain=moneysave.info|zxmee.com +||hur.cn/AhurD/*.gif +||doujs05.xyz^ +6park.com##table[width="89%"][height="60"] +@@/api/ads?$domain=nmkjxy.com +playtv.com.cn##table[id] > tbody > tr > td[colspan="2"][width^="32"] +nongjitong.com##.ad_sms +5000yan.com###cebianlan > div[style^="background-color:"][style*="border-radius:"] +||bdstatic.com/??/tb/_/diamond_mall_frs_aside_*.js +ifeng.com##.luckybag +||adasdz.cn^ +c4dm.live###text-21 +kaoyan.com##.floatQrcode +||stgowan.com^$third-party +firefox.com.cn,firefoxchina.cn##.main-promote-sites +||svncowt.cn^ +meizhou.cn##.tuwengg +ccav1.com##a[href="http://duan.es/1v"] +||sggu.cn^ +papalah.com#%#//scriptlet("abort-on-property-read", "adBlockDetected") +ifeng.com##div[class^="adList"] +||pfp.sina.com.cn^$script,subdocument +||v4dwkcv.com/html/click/ +||zkrdzn.xyz^ +||xuldtcip.icu^ +99kubo.tv##table[width^="9"][height="90"] +jia360.com##.news_adv:nth-child(3) +###body > #left-promotion +8bo.com##.mad +###__long_gg_container +ac-room.cc##.ad.v-card +||tcmap.com.cn/js/b_ +||51testing.com/templates/default/images/jx2_a.jpg +||songsongyun.com/ads/ +dahe.cn###adsg +###right_ad +ifeng.com###js_red +pixnet.net#?##main > div.header-fixed-area:has(> div#header-ad-fixed) +||512ms.com/webggwhtml/ +||qunar.com/vata?chan= +||jowkkzx.icu^ +||scru.cn^ +||cliffnsc.xyz^ +mmff30.com##.top_box +||idddlon.xyz^ +##.ad-block-cn +36kr.com##.home-ad-flow-banner +/ettoday/gemini/* +||m5.66077.cn^ +taobao.com#?#.item-ad +||jisuxz.com/180226/b180226.js +blog.sina.cn###pl-ad-after-comments +||i3z.cn^$third-party +||xn--w9q675dm1p7em.net^ +hkwb.net##.leftadv2 +||oaqrui.xyz^ +||u0075.com^ +xuite.net##.articleExtAd +/ikanfan/b.js +iyf.tv##.player-side > .block > * +@@||jav777.cc/advertise/ +/cjs/cprt.js$domain=dailygh.com|xgcartoon.com +||xsvkfwth.xyz^ +@@||chuangkit.com^$generichide +zhihu.com##.QuestionAdBanner +||gaoimg.xyz/images/ +taobao.com##.recomand-item +@@||70.86.24.120:8060/*/ +||xdhfvrug.xyz^ +||lutrbr.xyz^ +||udeias.xyz^ +pokemonhubs.com,free.com.tw,daybuy.tw##body .code-block +wenxuecity.com##div[id*="gg_"] +1ydt.com###head +||btmulu.com/assets/*/ad02.gif +||xiuska.top^ +@@||youaima.com/zz/play_ +ganji.com##div[class*="-recommend"] +||ndysxhs.icu^ +||zjgfq.com^$third-party +pcauto.com.cn##.ivy-250 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###union_mod +hao.rising.cn###change +58b.tv##.listri > .ad +/assets/dayu/ainfiniteactivity- +ubmcmm.baidustatic.com +||xhfxtqt.xyz^ +||uyaeco.xyz^ +hao123.com##.siye +||geekbang.org/public/serving/ +||pvlnjwr.xyz^ +sg169.com##.jy-pos-3 +iwatchme2u.com#%#//scriptlet("adjust-setTimeout", "video-ad-timeout", "*", "0.02") +||159i.com/video/usr/uploads/1- +||sauyv.top^ +||imgoss820.top^ +||acsegt86.shop^ +llss.bz###secondary img:not(.avatar) +||forex.com.cn/statics/images/ewm.jpg +||quqtone.cn^ +||yui-nya.com/wp-content/uploads/2016/12/37011.jpg +/ad_display.php?ad_pos= +||hiido.com^$third-party +17travel.net,fun01.net,itislooker.com,lookerpets.com,17goforward.com,lookforward.info,happyday543.com,starfocus.news##.ui_adblock +||cctvpic.com/photoAlbum/templet/common/*/game_ +||mvcngm.xyz^ +||cdipsumf.top^ +||keywin.org/templates/kw_v2/images/youbianad.png +##.bn728-100 +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="950"] +epubee.com##.vipNoteBar +||soublib.top^ +||17k.com/jump/uh +||mp999.net/wp-content/uploads/*zgg +/meitui.org\/[a-z].js/$domain=meitui.org +le.com#%#//scriptlet('set-constant', 'Object.prototype.noAD', 'true') +hupu.com##.topPub +wanqu.co##.left-nav-panel:first-child +/js/utils51.js +cnki.net##.translateOutAdLink +||wyoaij.icu^ +wealth.com.tw#?##root div[class]:matches-css(padding-left: 70px) > div[class]:matches-css(column-gap: 30px):has(> div[class]:matches-css(align-items: center)) +/qd/js/index/bannerTop. +||a.xywy.com^ +qzone.qq.com##.app-recommend +@@||abchina.com^*ad +.m.wenxuemi.cc^ +kingkong.com.tw##.room-banner-wrap +||cuaeblh.icu^ +||juji.tv/Runtime/js/ +cool-de.com###fwin_popadv_cover +||meijuck.com/js/dfw.js +@@||sohu.com/cityjson$domain=51credit.com|castech.com|eduyun.cn|ems.com.cn|jdboshi.com|jialingmm.net|lcm88.com|mop.com|platinum-pen.com.cn|shouji.com.cn|skk.moe|vivo.com.cn +||naajie.com/float.js +||mvcat.com/script/ad.js +||fdc.com.cn^*adv +||39.net/test/k.js +17173.com##a[href*="&ad_code="] +bukaivip.com##img[onclick] +/myzgg. +sm.ms##.advertising_2 +||vrr.name^ +he-games.com###he_banner_ad +||ktoioo.xyz^ +||pxrs6.cn^ +||ad.ccement.com^ +||3g.cn/index.php?s=Index/adv& +/assets/sidebar/*$domain=v2ex.com +##.ad_btn +discuss.com.hk,uwants.com###right_column +||boylove.cc^*/img/20*.gif +@@||mail.td^$generichide +cb.com.cn##.box > a[href^="http"]:not([href*=".cb."]) +||126.net/caipiao/js2/dialog.js +1kkk.com,dm5.com##.swiper-container[style*="760px;"] +||nefrpt.top^ +gamefy.cn##.tonglan +||5icool.org/uploadfile/poster/ +||other.v.duowan.com^ +##.container > .index-ad +meijuxingqiu.com##.fixed-bottom-bar +hanjutv2020.com##a[href*=".hujiang.com"] +||kanqiuba.net/js/ +sina.cn###promotionCover +||n0611.com^ +##a[href*=".com/?Extend="] +dnwx.com##.mt5_23 +###my_dp_a +||gamersky.com/wap/js/gs/gsAllOpenAppBtn. +||antdv.com/kaikeb +hao.360.cn,hao.360.com##.mbar-bd +@@||cdn.bootcss.com^$script,domain=59xs.com|biqudd.com|u33.me|xbiqugela.com|ysxs8.vip +_ad.php? +||c114.com.cn/js/channel.js +||soufunimg.com/common_m/m_public/js/wa +ksbbs.com,kshot.com###banner2_top +ipcfun.com###crumb_r +@@||captcha.su.baidu.com^ +##table[style="border:#7D8C8E solid 1px;height: 30px;text-align: center;"] +/cdn-cgi/pe/bag2?r[]=http%3A%2F%2Fope.tanx.com +||eyjvq.xyz^ +||jianshen114.com/images/Advistings/ +||aqc.gucheng.com^ +2345.com##.comp-logo-wall +thmz.com###floatdivids +||edu-30130.sz.gfp.tencent-cloud.com^*.gif +baidu.com###content_right > div > div[id^="m"] +||whgh1.icu^ +/api/ads? +wnacg.org##a[href^="https://l.tyrantdb.com/"][target="_blank"] > img +||emynwlz.xyz^ +||meitu.com/js/floatxiuxiu.js +layui.dev##div[style*="sentcss.com"] +||0575bbs.com/js/float.js +/svr/popwin.aspx?$third-party +||aeaw.cn^ +.194007.com/4058.gif +||8t9he.cyou^ +||5891344.xn--j1amh^ +@@||360buyimg.com^*?? +zn508.cc###klp_hdp +||btime.com/api/weblog? +.m.zineworm.com^ +||imgtp.com/2024/03/17/LXqznsUs. +###floatAD_l +||sojson.com/ps/list. +66huacai.com,kuaihou.com##.orange +||cnwnews.com/templets/images/artpangu.gif +||szjjzs.com/js/cs*.js +rrys2020.com##.corner > LI > A[href*="yyets."] +||rfidworld.com.cn/js/a.js +2000fun.com##.single-box +muzhi.baidu.com##.rightnest +gamer.com.tw##.iframe:last-child +@@||haiwai.com^$generichide +||wmcbld.top^ +||crayon.meishichina.com^ +||edipsumw.top^ +@@||cdn.theguardian.tv/ad/*.m3u8$domain=theguardian.com +||xwbmjb.xyz^ +hgitv.com##.index_main_top_zhong_02 +@@||mmuu22.link^$generichide +||uu11881.com^ +||l5kt1.icu^ +ibf.tw###top_d +||piaoliang.com/js/gg.js +66law.cn##.consult-bottom-fixed +||pingwest.com/wp-content/uploads/*/ad.jpg +med66.com##.coach_pic +||bitauto.com/bglog.gif? +v2rayssr.com#?#.sidebar-innter > .widget:has(.adsbygoogle) +||vbgr7.cn^ +||baidu.com/article/ajax/getmarticlestepdata? +||udjdpyrt.xyz^ +||dxg*.top/img/A*.js +zhufaner.com##.book +ylnet.com.cn##.ad-con +offcn.com##.jlstc +||qhdlz.net/uploads/glxs/980x120.jpg +||jieshimaya.xyz^ +hao.360.com###large2small +/121sdw/*$script,third-party +/CoNTent*(com? +/cms-gg.js +520call.me,av99.us,yocoolnet.in###inplayer +||vdggsd007.com^ +||caikuu.com/ckimages/*_gg +||txzqw.*/js/float.js +on.cc##.appinstall +||anbkzt.xyz^ +||news.cn/2021detail/js/booklist.js +||58cdn.com.cn/*.gif$domain=mmff30.com +@@||tt1069.com/adbrite.js +##a[clickmode="ad"] +_advert. +maoken.com###siderAd01 +||7676.com^$third-party +##.TqAdShow +alu.cn##.Tg_230x80 +@@||kfcclub.com.tw/web/*/ad +sohu.com##.x-adv-flogo-panel +tianyancha.com###banner_web +##.propa_bottom +51yfx.com###widget-test +||house365.com/js/analyze.js +||choujue.net/script/ +av.movie##.pop-up-a +||gt.duowan.com^ +bilibili.com##a[href*="cm.bilibili.com"][data-target-url*="gaoneng.bilibili.com"] + .bili-video-card__info +yasem5.com###cdaas-rand +||160.com/statics/statics/js/code_13.js +v2ex.com##.sidebar_units +@@||lnk2.cc^$generichide +asp300.com,asp300.net##.tit01 > a +||kaezakkjt.com^ +ipv6.baidu.com,xueshu.baidu.com,www.baidu.com,www1.baidu.com#?#.c-container:-abp-has(.t > a[data-landurl]) +f2dsex1.com##a[href="https://kf2828.com/"] +85tube.com##.block-video > .table +||hcgbhq.com^ +||djs.baomihua.com^ +/ggtp/* +tencent.com##.cdc-commercial-swiper +||zqgixxp.icu^ +mitbbs.ca,mitbbs.com##table[width="336"][height="280"] +||weacdf411.cn^ +||spl.ztvx8.com^$third-party +1point3acres.com###portal_block_479 +##.js-cui-pt-item[data-qhb] +##.pggb > .ng-star-inserted +to8to.com##.ad-commom +||hk-pub.com/forum/images/2009/gifbanner +||cimg.cnyes.cool/prod/adContent/$image +/adsense. +/ajjsjfsk/* +||xyryjt.xyz^ +||mdzwjra.cn^ +_300_250. +pianyuan.org###myModal +|http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|ac88.info|aisex.com|cnnice.biz|go543.com +tuliu.com###siderbar-join-form +||1017.cn^ +||myabcd.cc^ +@@||astyle.alicdn.com/?? +jiemian.com###ad_header_top +||hpzktd.xyz^ +_468.gif +fuzhou.baixing.com#@#.ad-title +||wuresde.top^ +||mqznjujv.xyz^ +||wsgayq.xyz^ +||uuajq.top^ +||bdipsumv.top^ +||sowx.cn^ +||clrjnhxi.xyz^ +bkill.com##.xiangguan-ad +||m.20mao.com/*/Head.js +zhihu.com##div[data-type="ad"] +||alicdn.com^*yksdk/*sdk.js$script,domain=youku.com +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[class^="ecl"][class*="game"] > .c-border +||q02orc.cn^ +@@||colatour.com.tw^$generichide +||alicdn.com/img/ibank/*_!!2212029770429- +||push.zhanzhang.baidu.com/push.js +ruanyifeng.com###gd1 +sina.cn###j_toTop ~ .fl_suspension_template +||2ccc.com/images/WebXone.gif +||bpbfymv.xyz^ +@@||toolfk.com/tools/js/share/js/jquery.share.min.js +||raxetyrw.xyz^ +||img599.net/images/*0x +51cto.com###upopbox_mid +###toptb + div[align="center"] +||jz5u.com/public/new/ +||dlngft.xyz^ +||cjgymo.xyz^ +feeds.qq.com,lenovo.com.cn##.game +||img.eol.cn/images/ed/$~image +@@/wp-content/*/social_$domain=servercat.me +||json.cn/js/aliWindow.js +eprice.com.hk##.ad-end-article +||mcncc.com/yeyou/*.htm +sogou.com##.pz-widget-flash-container +@@||baidu.com/location/ip?$domain=dominos.com.cn|saicmg.com|tanmizhi.com|tianqi.qq.com +||izmiua.xyz^ +||ac-room.cc/images/ad_ +yimenapp.com,sssam.com##.widget_html_ad +iwan.baidu.com###j-ditu +||cvujac.xyz^ +mydrivers.com##div[style^="position:fixed;left:50%;bottom:200px;"] +rouman5.com##a[href*=".tapdb.net"] +||aobtwv.icu^ +cartoon18.com#?#.container-fluid > .row > .item:has(> .card > .card-body > .lines > span.badge:contains(/^ad$/)) +m.hao123.com##.tuizhan +||2zzt.com/images/ +yxdown.com##.gsdown +fanqiangzhe.com###popupModal +||1.hao123.com^ +##a[href^="http://affiliate.godaddy.com/"] +||analytics.techweb.com.cn^ +||cheshi-img.com/js/pv.min.js +/caches/poster_js/* +||pg2bk.icu^ +||khzyojb.cn^ +||ogmjhve.cn^ +||90oo.com/tp/h8877.gif +||udsahkln.xyz^ +newxue.com##.left336280 +gvm.com.tw##.promotion > .sp-txt +qq.com###ad-fullscreen +||flasmr.top/leb. +huanqiu.com##.aa_250 +||i472x.fun^ +||b.kouke5.com^ +58b.tv##div[style^="width:300px; height:250px;"] +||vpzohx.xyz^ +autohome.com.cn##.monkeyicon-br +@@||ms332.com^$generichide +hinet.net###pop_media_ad +163.com##.topnews_ad +mayi.com###floatingLayer +gmw.cn###ysp_gmrbAppLayer +qidian.com###app_download_blank_show +||snux.cn^ +||sjmlmk.xyz^ +2345.com##.tip_stopXP +||1l1.cc^ +idanmu.ee##div[class^="g "] +microsoftnews.msn.cn#?#.riverSections-DS-EntryPoint1-1 > div[style^="display: grid;"] > div[style^="grid-area:"]:last-child > .card-DS-card1-1 > div[class^="nativeAd-DS-card"]:upward(2) +||qw9cu.cyou^ +@@||scorecardresearch.com/beacon.js$domain=hktvmall.com +mumayi.com##.h80 +cnyes.com##a[data-proj-ga-category="FloatingBTN"] +@@||mnighthk.net^$elemhide +a-i-l-s-a.com,buscodepto.com##div[style^="position: fixed;"] +||spanking.wiki/morning-bread- +cnblogs.com###div_digg +@@||omtrdc.net/m2/hsbcbankhase/mbox/ajax?$domain=hangseng.com +acommunity.com.tw##.ai_widget +||uwerpyh.cn^ +vdianying.cc##div[style^="display:block !important;"] +||8bo.com/template/default/8bo/j/app.js +recruit.com.hk##div[id^="banner"] +lenovo.com.cn##.ad-calender +||caixin.com/s?z= +2345.com##.act-openJ-mask +||wvwqywz.cn^ +||oxoucm.xyz^ +||ugvbsrbht.xyz^ +||duoying.vip^$third-party +||imusye.xyz^ +pixabay.com##.show-gtty-item +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###thread_list > .j_thread_list + li[class]:not(.j_thread_list) +||localau.vip/plugin/show.php +||qdickey.top^ +aguitar.cn##.news_b +djljz.cn###djl_hdhb +||checbox.cc^ +2345.com##.activity-skin-rtrig +||ww9874.com/asset/playerInit.js +||adlhxwb.xyz^ +baihe.com##.scrollUpf +###header + #topBox +chaicp.com,qiuyi.cn##.Advertisement +@@||tui.click/js/ads.js +baidu.com###couplet-right +sunnylife.tw##.post-entry > div[style="min-width: 300px; min-height:300px;"] +goosedaily.com##div[class^="ad-area-"] +marieclaire.com.tw##.adInnerMpu +||apistat.gao7.com^ +||price.com.hk/dfp_price.php? +||so.com^*baike/ads? +||theporn.xyz/static/tmp/ +||vps234.com/resources/images/hosting-promotion/ +djljz.cn##.left_fixed_ad +||n55ylc001.vip^ +||rgdcrt.xyz^ +189.cn#@#.adLink +##.static-a2d +zhihu.com##.RichText-Ecommerce +||jg1668.com^$third-party +||ycqbgm.xyz^ +pconline.com.cn###JnoLoginFixedBottom +||dgrgr34.fun^ +@@||icbc.com.cn/ICBC_ADJS/ +||gtimg.com/comic/richmedia/ +ifeng.com###client-spread +||63007.com:82/haodxi.js +igo.cn##DIV[class^="leyuBg"] +||qtroytj33.fun^ +redircdn.com##.al +||srutvncb.top^ +1keydata.com#%#//scriptlet('abort-current-inline-script', 'document.querySelector', 'window.getComputedStyle') +||molibaike.com/images/ads/ +||g1.taijuba.com^ +blog.sina.cn###pl-adtop-bar +fwxgx.com##.float_ad +ishangman.com#@#.bottom_ad +||muntfd62.shop^ +###dip[href*=".tmall.com"] +||5pub.com^ +||60jxn4.xyz^ +sina.cn##.article-sax +||iyjqgpo.top^ +cilil.cn,magnet2048.com##.hotwords +||bd1.365qilu.com^ +||t*.baidu.com/it/u=*,*&fm=76$third-party +hao123.com##.pagetop > .popup +zzkdhb.com##p[style^="width: 100%; margin: 0px;"] +||cvdfvdfv90.fun^ +||jpfans.com/jpfans.jpg +##script[src$="/base.js"] + #couplet +||ghwqbii.icu^ +tieba.baidu.com###j_light_see_index +huawei.com#@#.ad-section +sogou.com##.sr-adv +||58cdn.com.cn/resource/xxzl/xxfw/ +pconline.com.cn##.ivy > .ivy-wrap +||jcppcmqa.icu^ +||citysbs.com^*/800x90- +axutongxue.net###uuuui +||m.lelekan.com/sp/ +ifeng.com##.foot_top_box +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.tb_poster_info.poster_success +_tm11_pmt_ +fastadmin.net##a[href$="=="] +423down.com##.entry > p > strong +/adspaces. +qzone.qq.com###app_ads +||qhemphox.com^ +/alljs/allfoot.js +||ifengimg.com/a/2016/*600. +52pk.com##.hz_adv +mail.126.com,mail.163.com##div[id$="_FooterDiv"] +~sinaimg.cn##a > img[width="960"][src*=".sinaimg."] +||gjwxy.cn^ +||playstats.v.duowan.com^ +||pbbhhxm.xyz^ +@@||qq.com/json/mms/nativeads/rankings.json +||adzp.cn^ +||580bk.com/ceshi/ +news.baidu.com###favoriteTips +5278.cc##.pct > div[style="width: 600px;"] +||vdggsd011.com^ +||bu1.vvvdj.com^ +bilibili.com##.banner-card +/templets/yycms3/img/* +||g.3lian.com^ +||shilian168.cn^$third-party +hsex.men###container > div:not([class]) +csdn.net##.recommend-ad-box +||cpu.baidu.com^$third-party +||hcdjy.xyz^ +91lai.com##.D_guanggaotu2 +911cha.com##.adbox +||zmbmoxij.icu^ +||gcssem.xyz^ +chinanewsx.com##a[href="/about/"] +||pefufv.xyz^ +/ezprice_ad.js +||hk-pub.com/forum/images/banner/ +||googletagservices.com/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=ani.gamer.com.tw +||by4d.com/dh/ +@@||520cc.cc/ad/520cc/images/logo3w.png +||aqrokdw.cn^ +muchong.com##a[href^="http://muchong.com/bbs/a"] > img +||idffhq.cn^ +||cewrutf.top^ +chinaz.com##.red[href*=".wsisp.net/"] +||star-seo.oss-ap-northeast-1.aliyuncs.com^ +||bjxty88.com/js/foot.js +||wopvmmy.cn^ +@@||poedb.tw^*ad$script,~third-party +||jinzige.cn^ +||js131.cn^ +||hahaql.top^ +daohangtx.com,jojf.cn##.indexgg +@@||jjkmn.com^$generichide +||fanyi.baidu.com/pc/config +avmimi.com,mm-cg.com##.UT_thread +||a.exam58.com^ +||nawpyd.icu^ +tmall.com##.mui-mbarp-qrcode +up01.cc##div[style="position:fixed;width:468px;left: 50%;transform:translate(-50%,0);height:60px;background:#fff;bottom:0px;text-align:center;z-index:9"] +163.com##a[href^="http://popme.163.com/"] +||10fang.com/static/skin/tfy/layer/layer.js +image.baidu.com###ecomContainer +javlibrary.com##.bannerqq +||bookben.com/js/m/wap.js +@@||pass.1688.com^$subdocument +||swwdke.xyz^ +||ballive.*/addm/ +@@||cctv.com/js/cntv_Advertise.js +eeyy.com##.gg_bg +league-funny.com,coco01.net##.scupioadslot +||tnzjrj.xyz^ +||jsinfo.net^$third-party +.tv/ads/ +||51cto.com/edu/blog/*box.js +||to8to.com^$subdocument,third-party +||rxys.cn^ +||jy147a.com^ +sex8.cc##a[onclick^="window.open('/dasp.php?"] +dapenti.com##a[href*="cashier.iqiyi.com"] +||484r.com/images/flash/gallery_ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [id*="00"]:not(.result):not(.result-op) > div +###ad > .pre-img +||yvwuesh.icu^ +ifanr.com##.popup-app-download +ifeng.com#?#div[class^="index_yaowen_center"] div[class^="index_news_list_"]:has(a[target="_blank"] + img[src^="https://x0.ifengimg.com/feprod/"]) +@@/img/ad/*$domain=exp.qq.com +||94itv.app/casino/ +acggd.com##a[href*=".apk"] +||mekmhvbb.xyz^ +pornbest.org,ptt.sex###fullPageModal +zzbaike.com###topnav +||javbooks.com/52toy/ +g-years.com,ghoffice.com,gpsuu.com,mydigit.cn###main > .textMes +||qwblog.cn/localfile/20200612230036.gif +webkaka.com##a[href*="/click/a_d_"] +@@||nceea.cn/Content/images/ad/ +dnxtc.net##.header > div[style*="margin-top:"] +@@||ananas.chaoxing.com^*video/ad/ +@@||cnprint.org^$generichide +25xz.com##div[style*="724px;"] +jiangjunzy.com###index-lb +bonbonme.com##.topbannerer +@@||xiaoyuanzhao.com/adservice/$domain=shixiseng.com +||2pwja.cn^ +||nplahh.xyz^ +||qqjia.com/dan.js +||nroeoxk.icu^ +||aliyuncs.com/gg/ +||yigujin.cn/wp-content/themes/Three/js/yierlin +||baidu.com/source/getinfo? +zqzq.com###wAdTop2 +||picsuperfast.xyz/imageUpload/images/*.gif +downyi.com##.bzYouDao +||bd1.xiby.cn^ +||higyoe.cn^ +||d.line-scdn.net/*/torimochi.js/*/torimochi.js$script,redirect=googletagservices-gpt,domain=line.me +||yii666.com/ad/dynamic- +||otbeksf.cn^ +||62422.cn/ggimg/ +||663008888.com^ +||bdstatic.com^*/mip-*ad +||zhibok8.com/js/scroll.js +||web.900.la^ +qq.com##.player-side-ads +||rlhtnnm.xyz^ +ctfile.com##a[href*=".henghost.com"] +||qy1.ru/data/game/ +||321mh.com/v1/getadvertise? +jandan.net###sidebar > div#box +ali213.net##div[id^="ali-ad-js-"] +||fdfda.zhuzhai.com^ +||codejie.net/wp-content/uploads/*/1120-50. +||hrtlisu.top^ +||jscode.acg68.com^ +@@||flyert.com/plug/socialShare/js/social-share. +zuhaowan.com##.zhw-bottom-ad +||0mnopqr.com^ +||fzpchome.com/txt/$script +||cnwnews.com/ad-nrtop/ +acg.d1dm.top##.module-adslist + a[target="_blank"] > img +||bqnmxza.cn^ +@@||dlkoo.com/down/Copyright.js +zhujicankao.com##div[style*="padding:0px"] > a[target="_blank"] > img +||img.kuai.xunlei.com/js/statistics.js +||nrsfh.com/neirong/ +10jqka.com.cn##.wbanner +||dreuaxk.icu^ +||s1.wesiedu.com^ +pixnet.net##a[onmouseover*="_openBrWindow('https://goo.gl/"] +||rfidworld.com.cn/js/RFIDExec.js +/tencentvideo/script/webtips/* +||pdweoyw.cn^ +##.long_ad +||ettoday.net/funfuntrip/ +||tianmu.com/DA201 +.com:12289/$script,third-party +||d67p.com/love/ +qq.com###bottom-sponsor +/js/ads/dui.js +rising.cn###shuangshiyibid +92sucai.com##.adtg2 +||baidu.com/xpage/form/getform?id=wk_pc_skin +||xznizrhd.xyz^ +##.main-container > #dhxhtml +dict.baidu.com##.tran-download-ad +$image,third-party,domain=258zw.com +||bytravel.cn/js/ad_ +||nrbqgf.cn^ +||bjjabc.com^$third-party +chinafix.com###diy_col_1-3 +apowersoft.cn##.activity-poster +||baidu.com/xpage/interface/inforservice? +/Runtime/Js/haojio_ +||kvhee.com^ +||uskecsx.icu^ +tvsou.com##.sogou-temp-hidden +@@||softblog.tw^$generichide +||n5725.com^ +icanzc.com###contbot +||nvjqtz.xyz^ +mtrend.cn##a[href^="http://tao.mtrend.cn/"] +mydrivers.com#?#li:-abp-has(>.titl+:-abp-contains(/广*告/)) +||creative.141live.com/widgets/Spot/ +||m1905.cn/data/suspension_ +soufun.com##.danmu_inbox +/gg_details_ +||1.11467.com^ +###asdw2 +###movieInfoRight +||zhongwangmy.cn^$third-party +cool3c.com##div[id^="gpt-c3c_all_side_"] +hexun.com###videoRightAd +eprice.com.tw##.emome-ad +live.bilibili.com##.container-wrapper[style="height:180px;min-width:1280px"] +axutongxue.com,axutongxue.net##[style^="height:58px;"] +||imgmin133.top^ +||ganimg.com/images/*.gif +||vvttpn.xyz^ +||tigtag.com/images/*1000x +5156edu.com##table[width="770"][bordercolordark="#FFFFFF"] +fusetter.com##a[href^="https://mahoyaku.onelink.me/"] > img +||f4nfg.site^ +||nwxaxx.xyz^ +zhihu.com##.MRelateFeedAd +duote.com##.dl-banner +||shejiben.com/common/libs/layer.js +||dfcfw.com/project/gubawap/ad/ +/template/chiav/img/*.mp4 +||dioimg.net^$domain=t66y.com +||huanqiu.com/statics/*/dist/js/detected_block.js +||glgoo.*/gimage/ad/ +||fredum.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[data-click="\7b \"rsv_srcid\":49516\7d "] +493428493428c.monster##div[style^="width:728px;height:90px;"] +||jtyusia.top^ +appledaily.com###ebBannerTopDiv + A[href^="http://bit.ly/"] +||i3zh.com/wp-content/plugins/cm-pop-up-banners/ +||dawdlealmonry.com^ +site.baidu.com##.pstr.mt10 +||c-ctrip.com/train/201611/yqh_270-280.jpg +||kltmjevd.xyz^ +ucptt.com#%#(function() { window.open_ = window.open; var w_open = window.open, regex = /tw\.jav321\.com/; window.open = function(a, b) { if (typeof a !== 'string' || !regex.test(a)) { w_open(a, b); } }; })(); +bing.com###BottomAppPro +||kaipuyun.cn/count/ +||pstatp.com/origin/fef20000e7013b3511b6 +wuzhuiso.com###side > div.download-browser:last-child +##[class][onclick="window.location.href='https://www.suyuexs.com'"] +##body[ontouchstart] > #topBox +||ubeaui.xyz^ +||mydrivers.com/2020/news/8/kkj_msi.gif +###slide_ad +||aguo.com^$third-party +mobile01.com###ad-control +sohu.com##div[data-spm-content="promotion"] +||mlcbgw.xyz^ +||n.sinaimg.cn/sinakd10117/*/bd54-kentcvx6065228.png +iqiyi.com##.content-wrap > .ch-res > .ad-ef +gasaq.com###guanggao_left +||bnextmedia.s3.hicloud.net.tw/dp_cp/mt_programmatic_ad.js +/meitui.org\/[a-z][a-z].js/$domain=meitui.org +@@||tgfcer.com/advert.js +||msmcoa.xyz^ +pixiv.net##a[target="premium_noads"] +||wbkaqly.cn^ +||57573zubo36833.com^ +colamanga.com#%#//scriptlet("prevent-setTimeout", "loadErrorTip") +sina.cn##.callApp_fl_btn +/shangyk1z5o3o.js +muzijie.com##div[style="height: 280px;"] +||lxapk.com/wp-content/uploads/*.gif +||nlxgjwye.icu^ +||1.i999d.cn^ +||lenosoft.net/js/ad +theage.com.au,smh.com.au#@#div[id^="_"] > iframe[scrolling="no"][src^="http"][width][height][frameborder="0"] +||tt1069.com/or_pu_0604.js +||frtnqps358.shop^ +||byretuv.top^ +ettoday.net##.ad_in_news +||gywb.cn/cs_mulu/ +sports.qq.com#@#.txp_ad_center +c114.com.cn,chemicalbook.com,china.com.cn,foodmate.net,hibiquan.com,qingdaonews.com##.ad2 +||aixiaoju.com/dbxf/*.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.wanle_tab_tip +||liebaovip.com^ +||jishuqq.com/wadsb.gif +||img599.net^$domain=18board.com|18p2p.com +gameapps.hk#$?#.pc-header-video > a[class^="top-ad-"] + .youtube-container { remove: true; } +2345.com###mzBrowserWrap +||wangbase.com/blogimg/asset/201806/bg2018060604.jpg +eastmoney.com###fundtg-fb +baidu.com##.ecomad-banner-loading +||876920.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_tab +||retintsmillion.com^ +||1024wanzhai.$popup,third-party +||iask.cn^*.param. +1905.com##.zx-small-pic +||shulihua.net/js/topcen.js +||doujs010.shop^ +||aaa.tumanyi.com^ +||wenshenbang.com^$third-party +acgbuster.moe##.tg-inner +5ewin.com##.jjb-slide +@@||lncn.org/ad.json +@@/pub1/??$domain=banggo.com +||ifeng.com/statics/comment_baidu.html +@@||360buyimg.com/ads/$domain=jd.com +vidhub1.cc,vidhub.me,vidhub.tv##.adwap +tianqi.com##.xcx_erweima +||fastadmin.net/uploads/store/tencent +nownews.com##a[href^="https://goo.gl/"] +||uuzsfpju.xyz^ +asp300.com,asp300.net##.tit02 > a +||adv-sv-show.focus.cn^ +@@||citysbs.com^*/swfupload/ +cartoonmad.com##table[width="100%"][cellpadding="0"] > tbody > tr:nth-child(3) table[width="100%"][cellpadding="2"] +macapp.so#$##m2 { height: 5px!important; } +i.maxthon.cn##.site-ad-container +||tns.simba.taobao.com^ +douyu.com##.video-info-download +baidu.com##.banner-active +||1ppt.com/ad$image +/AdverJS/* +.qidian.com/bgOps. +##a[href="javascript:window.GoTp();"] +it1352.com##.glyphicon-certificate + a +sina.com.cn##.zhitou-wrap +bbs.hupu.com##.hp-ad250-250 +||cggyyi.xyz^ +||250sy.cc/gg/ +||kanjiantu.com/images/*.gif +leiling.org##.ad__single-double-rectangle-wrap +||pjcn.org^$third-party +###arBRyGHxuDYU +||trafficjam.cn^$third-party +||nnfalf.xyz^ +apk.tw##.login_bg > .ad300 +/pj5303.oss- +||cr173.com/show/ +||szmns.cn^ +||xinmin.cn/framepage/foot1.htm +@@||jjjgame.com/plus/ad_ +||ali213.net/images/ycq.mp4 +||gtimg.com/sports/000_AD/ +||ebpex.space^ +pilifx.com##.home_row_1 +51credit.com###leftLayerDown +@@||wx.qq.com/c/=/mpres/*/video_ad_ +###adUn_1 +xitongtiandi.net##.sidebar > a[target="_blank"] > img +nnhanman.net##div[style="width:728px;padding-top: 8px;"] +||4k123.com/data/attachment/portal/201712/20/194208ao9pevvvg0xr0n1p.jpg +olevod.tv##a[href^="https://www.yywhale.com"] +5imx.com###diy_mxad06 +@@||creaders.net^$generichide +520cc.cc#%#//scriptlet('prevent-setTimeout', 'myModal') +firefox.com.cn,firefoxchina.cn##.pm-crack +||p.junshi881.com^ +||qixingquan.com/api.php?mod=ad&adid= +||uidwyx.icu^ +||superjj.online^ +||huhwllvk.xyz^ +||ifmccdn.icu^ +qq.com,yxad.com##.l_qq_com +m.babytree.com##.wrap > section[class*="9"],.wrap > div[class*="9"] +||bdoshbv.top^ +ifeng.com,sohu.com##.ad950 +||cxapio.xyz^ +infoq.com##.ab_detect +storm.mg#@#.btn_fb +oops.udn.com#?##wrapper > #mainbar > .area:not(#story):not(#comments):has(> h3 > a[href]:contains(商品推薦)) +||zfp32.buzz^ +ilive.lenovo.com.cn#@#.adTop +emome.net##.source_advertising +##style + .topd +||n5n5s.icu^ +/upload/site/tbgg/*.gif +||yy18.info^*thanks$popup +@@||buyad.bi-xenon.cn^ +@@||pttplay.com/js/momo/adsbygoogle.js +||jmcomic.asia/iframe_*&idzone= +||juweixin.com/static/spk +sm.cn##.article.ali_row + #sc ~ .article.ali_row +oschina.net##a[data-tracepid^="index_banner_"] +##.itopbar + .container +||szftg.cn^ +###chs_bannerArea +||jdiekknmcb.com^ +iwan.baidu.com###banner-box +mamecn.com##.jjMain_bg +power.baidu.com,www.baidu.com,zhidao.baidu.com##style[id*="s-m"] + div[id^="m"] +csdn.net##.box.hot +||news18a.com/image/ad_ina/ +zybang.com##body.m-question > a[href^="https://www.kuaiduizuoye.com/"][target="_blank"] > img +i-pass.com.tw#@#.homead +.com/adx/ +||82zcb.icu^ +||cadcc.icu^ +||count.pcgames.com.cn^ +||laozuo.org/wp-content/themes/weisaysimple/js/sidebar +||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif +||pmwofrq.icu^ +||bjxfnn.xyz^ +||0460.com/images/ad/ +jiemian.com##.nav-next-ad-views +hmoe12.com##.poi-container > div > a[href^="https://www.hmoe12.com/wp-admin/admin-ajax.php?action="][target="_blank"] +1010jiajiao.com##.fixed-bar +||xqbjjh.xyz^ +/fn666/shouye.php +laoliublog.cn,ruyo.net,winandmac.com,zhujiceping.com,zouaw.com##.widget_custom_html +||etroytj33.fun^ +||eastday.com/static/js/kancookie.js +##.baiduad +||ltn.com.tw/js/ad_door.js +ithome.com#$?#.t-b.sel > ul.nl > li:has(> a[href*="/lapin."]) { visibility: hidden !important; } +||whranc.cn^ +||baidu.com^*/app/banner_ +.fun/*_*_rony.js +||v16rs.cn^ +520cc.cc#%#//scriptlet('set-constant', 'all520dddaaa2022ccc', 'true') +||kpmsoq.xyz^ +###rightCouplet + #leftFloat +minepay.top##.sponsors-container +pixnet.net##.article-inread-ad +##.smcms-wrap > a[target="_blank"] > img +||ctc.weather.com.cn^ +||udheansv.com^ +home.firefoxchina.cn##a[track_key="sites_mingzhan"] + a[title="VIP"] +||nnrbyty.xyz^ +||hylaxngo.xyz^ +chinabidding.com.cn##.train +||xuzhi.net/uploadfile/poster/960x50.jpg +@@||gitee.com/HServer/ +###leftFloat + #rightFloat +awaliwa.com##.bottomAdsBox +||1.11130.com.cn^ +||51credit.com/bbs/js/bbs-end-layer.js +||adnetworkperformance.com^$third-party +||cdn.upthinking.cn^$third-party +||zxw51.com^$third-party +###guanggao2[style^="position"] +||avseesee.com/twad +sunnylife.tw##.Zi_ad_a_H +4399.com###defaultbglink +wenku.baidu.com##div[id^="html-reader-banner-"] +||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com +||endolift.cn^ +douyu.com##.ScreenBannerAd +im286.net##.qybj +@@||linetv.tw^*/scripts/ads.js +##.text-ad +||2345.com^*/activity/20171 +||hdchina.*/styles/topshow/AD/ +||999bb222ww.com^ +||booktxt.net/js/mangoIndexBanner.js +||lbx777.*/css/lbxgg02 +dzbhdm.net##a[href="https://www.biqudao2.com"] +||gmmlmo.xyz^ +9game.cn###btInfo +##a[href*="://mgzs.cdn.bcebos.com/"] +||xkjmjj.com^ +||1.51dongshi.com^ +||imgopen.vip^ +dilidili3.com#?#.body > div.body-wrap:has(> div.mod-box > div.mod-title > h3:contains(友情链接)) +||meiju8.cc/js/tpcode.js +v2rayssr.com###b2-widget-html-12 +||cnr.cn/cnrxwph/iframe/tpdy/ +##.side_ad +||gg.egouz.com^ +wendu.com##.head-banner +||ptyw.yiche.com/ssp/ +||wpdaxue.com/img/*/txy- +/avple-images/ad. +element-plus.org##div[class^="page-content-"] +/Runtime/js/top980.js +@@||ikea.cn^*/img/ads/ +||dnfnpff.xyz^ +||jianke.com^*/jquery.ppt. +@@||wancaibb.com/share/js/share.min.js +||wutsldsk.xyz^ +oschina.net##div[name="floatAdbox"] +~shenguangai.com##a[href*=".shenguangai.com/"] +||autohome.com.cn/news/$script +##a[href*="/75333cc.com:"] +||edghkc.xyz^ +||haiwaiyy.com/B970X90.gif +||zzz4.com/JS_AD/ +##a#wrapper_left_bg\ llll +@@||gtimg.cn/images/nz/cp/*/adimg.png$domain=qq.com +whnyd.com##div[style*="height: 115px"] +||tingyun.com^$third-party +||dytt.com/pc.js +mongoing.com#?#.widget_custom_html:-abp-has(> .custom-html-widget > a[href^="http"]:not([href*="mongoing.com"])) +||gamemale.com/static/js/valida.js +||easyai.tech/wp-content/uploads/*-576x1024. +.com/tonglan2.js +applealmond.com##div[style*="height: 260px;"][style*="text-align: center;"] +||zxfdbr.xyz^ +baike.baidu.com###J-union-wrapper +||irtliso.top^ +/videoJS/video-conrtib-ads.js +||2345.com/cnxh/ +||xvbcjh.xyz^ +||mwrf.net/images/js/*mrf.js +||rykhukxt.icu^ +||youdao.com/tl? +||shewang.net/images/*/900x +yahoo.com##.crazyad +ikjzd.com##.wv-head-img > .wv-head-item-img:last-child +cnki.com.cn##.ad-right-default +||huohuo1.huamuwo.com^$domain=knowbaike.com +yxzp.net##img[width="770"] +2345.com###J_go_erweima +188soft.com##.down_gaosu +zhanqi.tv###js-room-flash-banner-panel +ettoday.net##.sharebox:not([id]) ~ .iframe-ad +##.mlad +||share44.com/300 +cool3c.com##.sticky-inner > [class="board board-side board-cool3c-home_300x250_2 board-new clearfix"][data-board="cool3c-home_300x250_2"] +||elemea.xyz^ +/bookxiaoshuo.oss- +/templates/bootadult4/js/bottom.js +||css.zmjm.com^ +||liu16.com/vip.png +5278.cc#%#//scriptlet("prevent-window-open", "88p2p.com") +||lkqaq.icu^ +||ad.12306.cn/res/*.html +||yddbysa.xyz^ +|http://gg.$third-party,domain=~guagua.cn +||steelcn.cn/img/bj_*_146_315.jpg +939394.xyz##.j_m_ad +||bjrspnbf.xyz^ +efu.com.cn###ad4 +###player_pause[style^="position"] > a[target="_blank"] +||hfjsliu.top^ +@@/api/ad/*$domain=pinduoduo.com +@@||3gmfw.cn/js/wap/8.js +sogou.com##.side_adv_wrap +followme.cn##.fm-banner-social +gamersky.com##.downLoadGame-2 +||dlkoo.com/down/$subdocument +||antpedia.com/images/advimages/ +||7xi9g1.com1.z0.glb.clouddn.com^ +||local.hniux.cn^$third-party +hh010.com##.a_hong_c +||ahejtw.onelink.me^$third-party +||img8e94zy4bg.com^ +image.baidu.com##.recom +||ab.rejushe.com^ +||qq.com/mobi/js/app-bar- +||record.kuai.xunlei.com^ +||asiav.cyou/myupdatelist. +||kpyerxzn.xyz^ +07073.com###Vsss00 +bdimg.com,tieba.baidu.com,tieba.com,wapp.baidu.com###pblist > li[class]:not(.j_post_list_item) +||js.jialingmm.net/dm/history.js +blog.163.com###topbar_randShowArea +@@||kf.cn/ad/css/*.*. +eprice.com.tw##div[class*="-popup"] +||js.xz6d.com^$third-party +@@||wavse.com^$generichide +ikjzd.com##.wv-right-content > .imgTop-right +/caoaa| +2345.com##.v_picConBox.height214 +/yksmartbanner. +||xgo.com.cn/pv.js +||s1-a1.dnvodcdn.me^*.mp4 +/ads/ad_ +sojson.com##.banner1 +huamu.cn##.midle-ad-list +tangdoucdn.com#%#//scriptlet("set-constant", "Object.prototype.ad_switch", "0") +||fxjs.2541.com^ +||ifeng.com/a_if/ +firefoxchina.cn###advBlock +boke112.com,ruanyifeng.com##a[href^="http://t.cn/"] +||alicdn.com^$domain=t66y.com +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:-abp-has(>script+ins) +||att.ydss.cn/attachments/portal/ +/cdn-cgi/pe/bag2?*p.tanx.com$domain=~hdwan.net +piaoliang.com##.hot990 +zybang.com##.top_download +douyu.com##.index-common-1-rrh +||olgame.tw/home/attachment/ +||amfhby.cn^ +||jxpjlb.xyz^ +##a[href*=".zxzja.com/"] +gzmama.com###zone_index_fullcolumn_2 +##.ad_notice +||wkybwa.xyz^ +||lalabaos1025.top^ +||nbfsvreu.icu^ +kk200300.com##.xuanfu +||caoads.com/images/ +||7160.com/js/tiaozhuanquanju.js +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,xmlhttprequest,redirect=googlesyndication-adsbygoogle,important,domain=haoweichi.com +||union.591.com.tw/cpt? +||dhgfhedxx.xyz^ +||mtime.cn/tg/ +gdrc.com#@#.midAd +||dfprljx.xyz^ +##a[href*=".com/tg.html?id="] +||hefei64.com^ +||goto.www.iciba.com^ +||im286.net/286/ +||fdc.my0511.com^$script +:63666/960x150. +@@||hh010.com^$generichide +forum.hkgolden.com##div[id^="Super Banner"] +||swurserb.top^ +##a[onclick^="javascript:pc_"] > img[src*=".alicdn.com"] +||js1.haoge500.com^ +||wstx.com/api.php?mod=ad& +dzwww.com##.popular +hao.360.cn##.cangbao_redbags +||user.042.cn/adver/adver.js +90oo.com##.mtswp_scbar_ad +elecfans.com###new-adsm-berry +||qdtjjxr.xyz^ +||ctlrarz.xyz^ +4gamers.com.tw##.closeable-ads-close +||ad.bobi.tw^ +||5lu8.com^$popup,third-party +@@||pchome.com.tw/img/js/xpcadshow.js$domain=game735.com +##.ad-300x600 +##.dipiao +||guang1.zhakao.cn/common/ni_h/common/ffx_f/ek.js +zol.com.cn##.supervalue +iqiyi.com##.m-downApp +dmzj.com###app_home_ad +||63ef.com^*.js +||assp.sohu.com^ +||zhibok8.com/js/di +cgown.com,taohuayun.cn##img[width="980"] +book.qidian.com#$##j-topBgBox + .crumbs-nav.top-op { margin-bottom: 10px !important; } +chengdu.cn##.pop_box +/soku/giantstar/js/youlog.js +kaitao.cn###ad-tit +||w3.ting55.com^ +||udn.com/mall/cus/cat/OutWebAd.do +@@||bdstatic.com/po/??*,*,*, +sina.cn##div[sax-type="proxy"] +sogou.com##.hd-slider > .slider-container +||vdggsd002.com^ +##.ad-desktop +2345.com##div[id^="bd-search-ad"] +||91rb.com/fc/$image +||vast.doublemax.net/adserver/vast.xml$script,xmlhttprequest,other,redirect=noopvast-2.0 +||tngmn.com^$third-party +||visit-japan.jp/parts/visitjapan_f35_170_170.jpg +||qrmozsc.icu^ +||wnacg.*/themes/mo/images/*.gif +||rayajmp.icu^ +jxcn.cn,redianyule.com##.dsp_yxxf +baidu.com###gamePromo +||jzlso.xyz^ +@@||shopeemobile.com/shopee/*/modules/ads/ +||phpernote.com/ali +||datas.tianqistatic.com^ +/Runtime/js/top960.js +so.com###mohe-etao_shangye +.com/ad1/ +autohome.com.cn###s5473 +gaoqingw.com##.search + .widget +||dfcfw.com/libs/js/counter.js +||xlxehr.xyz^ +||lijlrz.xyz^ +dianping.com##.layer-container[data-view-bid="b_njcmobox"] +so.com##.cmclk +##script + div[id^="a-loading-"] +myday.com.tw##.myday_ad_950 +||wnacg.*/sd +||ylypzbzs.xyz^ +/sfsafsadfjbbj-dsafjnb-1321533417. +||dfcfw.com/js/*/emfloatmedia_ +||qtmojo.com^$third-party +sina.com.cn##.pc-tui-coupon +##.mid_ad +||hwhacum.cn^ +lenovo.com.cn##.nav_ad2 +ifeng.com##.ad06 +||taproximo.com^ +###adjs_id +||szonline.net/static/js/ads.js +||images.jurong.cn/bbs/ +||szpbg.cn^ +huanqiu.com##.r-hqNext-ad +ali213.net##div[class^="GG"] +||pstatp.com/origin/137370002e7fbe11b296a +||jb51.net/imgby/logo_ +://m.*.top/*.js?ssid=_ +||dobiez.com/statics/wap_v1/js/qwd. +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":1480194257,"] +||re.taotaosou.com^ +18-comicfrieren.xyz,18comic.org,18comic.vip##a[href*="//"]:not([href*="comic."]) > img + [style] +||ipryes.top^ +/img/ad- +||cbcvou.xyz^ +||jd.com/static/js/auto.js +||yan007.com/js/sss/ad.js +sogou.com##.aside-qcode +tvbs.com.tw##div[data-testid="ad-container"] +||afp.chinanews.com^ +||mg.xhkvff.cn^ +iciba.com##.common-top-nav-item:not([href*=".iciba."]) +||pplkrh.xyz^ +to8to.com##.bottom_slide_box +||jozbun.icu^ +||myyxox.icu^ +ez3c.tw##.ypa-custom2 +||ezeqcy.xyz^ +||ugtbit.icu^ +pixnet.net,inmywordz.com,sharonlife.tw##.adsbyfalcon +||turesdi.top^ +||hoxdotye.icu^ +||jyfw.cn/nav/cf_ +@@||coolinet.com^$generichide +/ad_footer. +91.com,hao123.com##.cn_banner +||sinaimg.cn^*/pushDiversion*.js +/advert_ +/tisai/img/nav_980_90.gif +||ps886.us/js/*.js +||clkwnl.xyz^ +loldk.com##.appfix +||mg.glwxw.net^ +huaren.tv##a[style*="height:"] +||bzelzfnj.xyz^ +||sncop.uioozpxq.com^$all +fwxgx.com##div[id^="tuiguang"] +||jewruta.top^ +##.ad-below-header-menu +||alicdn.com/img/ibank/*_967741881. +||8131.qizhihaotian.cn^ +speedtest.cn##.index-advertising +||atanx.alicdn.com^ +bilibili.com##a[href*="cm.bilibili.com"][data-target-url]:not([data-target-url*=".bilibili.com/"]) +@@||epubit.com/static/epubit/share/js/share.min.js +||lelekan.com/sp/fmt.js +||me680.com/js/*.js +###leftCouple +pcsoft.com.cn##div[style^="width:100px;height:300px;position:fixed;"] +||888xx222kk.com^ +||ksylied.top^ +iyf.tv##.video-player > app-gg-block.ng-star-inserted[style] +||iask.cn^*/qiye. +||csdnimg.cn/check-adblock/ +||cpffkbpq.xyz^ +||lensdump.com/i/*.gif$badfilter +##a[href^="/template/1/html/ad/"] +###pp-modal-id +||bvmqkla.de/files/photo/$third-party +fhm.com.tw###add-box +||jasdz1.cn^ +auto-online.com.tw##.news_content > div[style="width:728px;margin:10px auto"] +||anjuke.com^*/ajax/business_area_search/ +||fpb1.apple886.com^ +||kdslife.com/ui/ad/ +||alicdn.com/img/ibank/*_1746120392.$domain=~rmdown.com +lpl.qq.com,v.qq.com#%#//scriptlet('set-constant', 'CreativePlayerwebPlugin.AD_EVENT.AD_DESTROY', '') +||3p8801.co^ +||muyihh.top^ +.com/ad/$~third-party,domain=~blogs.technet.microsoft.com|~channel4.com|~mediaplex.com +||baizhan.net/coop/hezuo/ +getrelax.cc#?#.nav > li:has(> a[target="_blank"]) +@@||mcmod.cn/js/jquery.cookie.js +iqiyi.com###widget-jingdongAd +||jandan.net/static/ss/ +||kmw.com/js/adshow +numberempire.com#@##perm_ad +||rfidworld.com.cn/Notice/Home +||pub.funshion.com^ +17173.com##a[href^="https://gtv."] +||tuky889900.com^ +qq.com###emailLogin > .hd-slider +||qdp.qidian.com^ +/public/imgbed/gg/* +||jin10.com/assets/img/sites/index/vip_ad +||abcache.com/tg/ +||chaospace.fun/wp-content/uploads/*/%E6%A3%8B%E7%89%8C- +||nlrsbd.xyz^ +boylov.xyz,boylove.cc,boyloves.fun##div[style="display: block"] +||8suis.top^ +||blzbjpg.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [class] > [id*="00"] > tbody +||54kefu.net^$third-party +||fabu333.top^ +||fdhnsr56.shop^ +##.my-cat.my-cat-header +/fullad. +||tnmpd.xyz^ +jmw.com.cn##.head_1b +fastadmin.net###detail-recommend +woshipm.com##.article--heroAd +/js/ads/*0.js +||pcauto.com.cn/forum/1508/intf7631.js +##.fed-part-case > .ads-img +||codesocang.com/js/a.js +@@||tt1069.com/ads.js +@@||orientaldaily.on.cc/js/oncc-ad.js +5253.com###android-qr +||eq.af31f.site^ +romzhijia.net##.ggposition +/vtdd/*$script +4gamers.com.tw#?#.aroma-news-detail-side > div[media-width]:has(div.aols-wrapper > a[target="_blank"][rel="noopener"]) +||pressit.cn^ +iqiyi.com##div[class^="list_list__"] > div[style*="margin-bottom:"] > div[style*="margin-right:"]:has(> div > div[style*="background-image:"] div > div[class^="video-list-item_"] > div[class^="video-list-item_"] > a[href*="&creative_id="][href*="&impress_id="]) +@@||i3.sinaimg.cn/video/deco/2013/0325/js/ +||jijidown.com/static/img/right_bottom. +@@||cy.com^$generichide +||super.kdnet.net^ +||baidu.com/static/ecom/js/wise/home/nativeAds_ +mobile01.com##.ad-adblock +book118.com##div[style*="width: 252px;height: 260px;"] +kocpc.com.tw##[ad="show"] +||mfaec.cn^ +||y341i.xyz^ +||jieshengit.com/js/jhhe. +||ypkiog.xyz^ +||qnalzly.top^ +@@||juduo.cc^$generichide +||dfqzah.xyz^ +||vdsdsf2.fun^ +||kewrutd.top^ +lifenewsjr.com##.fabox +##.video_details > .banner +||wanmei.la/a*.js +bilibili.com#$#.bili-video-card:has(.bili-video-card__info--ad) > .bili-video-card__skeleton { visibility: visible !important; } +##.mod + #bottomBox +39.net##.ad-tl +||51cto.com/home/web/js/new_login/iframe.js +netflav.com##.ads_video_overlay_mobile +40407.com###nei_fmt +||sewrutb.top^ +@@||ccllaa.com^$generichide +huya.com###huya-ab +duba.com,iduba.com,newduba.cn,uu114.cn##.fav_box +sohu.com#?#.news-wrapper > div.news-box.clear:has(> [data-ad-format]) +china.cn##.ltp_box +||sinaimg.cn/finance/zwy/sidead_ +||zltndp.xyz^ +||dvgjx.cn^ +.gif$third-party,domain=avbebe.com +ktsf.com###sow-slider-18 +||iumboa.xyz^ +qq.com##.in-top-ad +myqqjd.com###advert_widget +||unionli.com^$third-party +||zoosnet.net^$third-party +||ajkggo.xyz^ +/js/utils78.js +||360.cn/popup/popinfo/ +||dm.cnbanbao.com^ +@@||bing.com/translator/api/Translate/TranslateArray?$third-party,xmlhttprequest +1m3d.com###klp_adtop +@@||amazonaws.com/storage.liveabc.com/ads/$domain=store.liveabc.com +/js/gg0.js +###googleAD1 +||hsyipos.com/template/mxone/html_tplmx/vod/*.gif +##div[style="margin:10px auto;width: 930px;height: 250px;"] +ying35.com#?#table:-abp-has(a[href*="/fei-ad"]) +||luyx8.com/tu/666.gif +hao123.com##.widget-hlbar > span +:8888/zhu/wap_ +||sfqyck.xyz^ +/apps/misc.php?action=advert& +||showguide.cn/templets/*/qqcenter.js +||tq121.com.cn/j/ad/ +ettoday.net##.content-container > .iframe-ad +ddrk.me##a[onclick^="ClickobayST();"] +###textad +||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com +jmw.com.cn##.head_3 +eepw.com.cn##.AD300x200 +@@||logcg.content-delivery.top/wp-content/plugins/bwp-minify/min/?f= +||gaoqing.la/wp-content/uploads/*980x +dict.cn##.search-right-ad7 +163.com##.with-bot-ad > .arrow_down +yyets.click#?#.MuiBadge-root:-abp-has(>a[href*="/maomao.cloud/"]) +||996js123.com^ +||cammak.xyz^ +||sgcwoe.xyz^ +||a.qncye.net^ +cqmmgo.com##div[data-id*="_adv_"] +||blz105.com/player/ad.html +||plzblz.xyz^ +||xymahuxv.xyz^ +##.m_hot_rec_box_base[id^="right"] +hao123.com###guesslikesite-block +||laozuo.org/wp-content/themes/weisaysimple/js/*-bottom.js +||mikka.app^ +||js.mumayi.net/9495.gif +@@||51zxw.net/shipmingko.asp?$domain=51zxw.net +||eol.cn/js/eol/ +||qbcmws.xyz^ +||vxcvd67.fun^ +||gaofuwu.org/js/dd.js +||5fz.cc/t/aimg/tao +knowlet3389.blogspot.com,knowlet3389.blogspot.hk,knowlet3389.blogspot.jp,knowlet3389.blogspot.tw#@##gAds +yes-news.com##.new-index-ad300 +javlibrary.com#%#//scriptlet('abort-current-inline-script', 'document.write', '/getCookie[\s\S]*?\("\\x/') +||lekfez.icu^ +||ws.wenshenxiu.com^ +||jrmianban.com/img/images/g-g/ +||banma.com/js/adi.js +||pofmnj.xyz^ +@@||meituan.net/bs/js/*/js/tracker.js +atoolbox.net###ad-coupon-search +||jfjslia.top^ +||wzbaohe.com/imgadnew/midad.js +||biqiuge8.cc/js/d +howbuy.com#@#.ad_wrapper +south-plus.net##a[onclick*="'ad'"] +5dy15.cc##div[id][class^="is_"][style^="margin"] +||sdbeta.com/statics/mystyle/js/1 +||tewruti.top^ +###topad1 +baidu.com##.banner_center_adv2 +||haokan5.com/js/haokanjs/tj.js +@@||soufunimg.com/??*/fshare. +kingkong.com.tw##.public-activity +@@||dlkoo.cc^$generichide +||doujs02.xyz^ +@@||beanfun.com/ADClient/ +huaren.tv##.live-client_right +.com/adv1/?q= +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.firework_sender_wrap +||moratame.tw/img/contents/banner +baidu.com##.b2c-universal-card-product-item-wrapper +league-funny.com##.google_more +||pixfs.net/js/mib.min.js +chongdiantou.com##.nice-sales +qq.com##.tmallredpacket +||trendmicro.com.tw/wp-content/uploads/*Banner +lenovo.com.cn##.TopBar +mail.126.com,mail.163.com##div[id^="_mail_popup_"] +xpiaotian.net#@#.pagead +||psyzg.com/Public/Home/images/tuhe_240_236.gif +||mwzbp.iask.com.cn^ +aae3.com##form + center > p[align="center"] +||o.jy135.com^ +||jia.com/js/common/article_home_adv.js +||vghkncbu.xyz^ +jiakaobaodian.com##.com-side-car-sales-rank +||m.2kxs.org/img/hia1.js +wmsj.pw##[class^="asb-"] +iyf.tv##.video-player + div[class*=" "] > div.block +||cergbtb36.shop^ +||d3iih5w7xp5hdg.cloudfront.net^ +||0606kk.com/js/index/index.js +||tycxhgrp.xyz^ +tbtdg.com###adblockWarning +||le4le.com^ +||wxymag.xyz^ +people.com.cn##.cont_banner +||777aa888bb.com^ +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#$?#a.focus_title_inner[href*=".ad_click"] { remove: true; } +cmsky.com##.textwidget a[href^="http"]:not([href*="cmsky"]) +||pcstore.com.tw/adm/psearch_payad_ +||asd8900.oss-*.aliyuncs.com^ +||xs8.cn/qreport? +xiebruce.top###ai_widget-2 +||ouplc.icu^ +||alicdn.com/img/ibank/*_1932275220. +||fans.*.space/fans/*.php +avbebe.com##.sidebar a[href][target="_blank"] > img +2345.com###sidenav > .activity-trig +$script,subdocument,~third-party,websocket,xmlhttprequest,domain=m.6666xsw.com|m.chenkuan.com|m.jmshuwu.net|wodexiaoshuoh.com +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="right_qunar_hotel"] +@@||newsmth.net/nForum/*/ADAgent_ +||abody.39.net^ +/s/js/fshow.js$third-party +||5068.com/websleft.js +###J_sideFooter.side_footer +histock.tw##.bottom-right +##.adLink +2014.qq.com#@##adIframe +||biketo.com/d/file/p/ +83133.com##.tb-tanx +||woozooo.com/img/*.js +weibo.com#?#.card-wrap:-abp-has(>.card>i[style*="%E5%B9%"]) +||icudqq.xyz^ +news.baidu.com###detail-HotScrollNews-wrapper +toutiao.com##.article_link[data-tag="ad"] +||fghhbp.xyz^ +3h3.com##.gaosu_div +||fhnbrx.xyz^ +||baidu.com^*/w.gif? +dcfever.com,gaodun.com##.advertisement +||g.hsw.cn^ +bilibili.com##a[href="/video/av8587236/?tg"] +||as1.wenku.baidu.com^ +||cgbswl.icu^ +||amidicestrins.com^ +ouyaoxiazai.com##.qzhengfu +##div:not(#video)[style^="width: 100%;"][style$="display: block;"] iframe[scrolling="no"][src*="//"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +||dxg0070.top/img/ +megatime.com.tw,pchome.com.tw##div[id^="ad_div_"] +||efmtsw.xyz^ +mcmod.cn###McmodDonate +||eeqweqw.fun^ +sese733.info##.fp-player > div[style^="position: absolute;"][style*="overflow: hidden; z-index:"]:not([class]) +||alicdn.com/imgextra/*_!!1974227597. +jin10.com##.jin-popularize +||jijistatic.duapp.com/Squall/1.jpg +nodejs.cn#%#//scriptlet('set-constant', '_AdBlockInit', 'noopFunc') +||qunar.com/render/googlesem.jsp +##.advert-card +||eastmoney.com/js/headbiggg_ +##.wrap.mt10.clearfix > .box.top_box +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video-js.min.css$domain=setn.com +cntv.cn##div[class^="tchmk_"] +||rebojf.xyz^ +||tlbjw.com^ +||tekmhvbb.xyz^ +v2rayssr.com#$##wrapfabtest { height: 1px!important; } +91porny.com##.container-fluid.p-0[class*="mb-"] +||vdggsd012.com^ +blog.csdn.net##.toolbar-advert +||aichuangfu.cn/jquery/ +/bookhaitang\.com\/assets\/.+\.js(? a[target="_blank"][rel="nofollow"] > img +||sina.com.tw^$subdocument +||lofter.com/mailEntry.do?blogad +ghxi.com##div[style^="padding:10px;position: fixed;bottom: 0;left: 0;right:0;z-index"] +##.leftd1 + .rightd1 +txtbook.com.cn##.ledu-advWrap +||hxsxw.com/js/float.js +||ydgal.com/axfile/ +||tingchina.com/images/aibaoliang.gif +||akamaihd.net^*/gsd.html?d= +@@||99wbwc.com^$generichide +||ovejqw.xyz^ +@@/adimg/*$domain=laniqu.com +@@||money18.on.cc/js/adbanner.js +steelcn.cn###table img +||888bb666cc.com^ +@@||qimingdao.com/Index/loadmore?tag_id= +jsjiami.com##.banner-container li._logo ~ li > a[target="_blank"] +##.con_search + #carousel-example-generic[style^="max-width: 1170px;"] +||chengtu.com/api.php?mod=ad&adid= +||licai18.com/henyepweb/ +||6gcstb.xyz^ +qidian.com###j-topBgBox +||3dwwwgame.com^$third-party +||caicme.xyz^ +/afr?auid= +||wuisaq.top^ +eyuyao.com##div[id^="x_ad_"] +###results.content-main > .eLeft +3boys2girls.com###displayadb1 +||szdpk.cn^ +78dm.net###qpgg +##.top_func_ad +###body > #right-promotion +||uafuzcxr.xyz^ +php.cn##.close_id +baidu.com###relative_shop_flow +||jppxnhe.xyz^ +||mfav88.com/yinzi/ +cool3c.com##div[style="width:98%;border:1px solid #ddd;padding:5px;margin-top:5px;"] +iyf.tv##.ss-ctn +loldk.com##a[href^="http://www.esportsclub.cn/home/"] +||bcthd12.shop^ +||stat.pchome.net^ +||uu1.3gu.com^ +||ewqeq23.fun^ +||esyook.xyz^ +||614514.com^ +||baidu.com/show/livevideo/getStreamConf? +sina.com.cn###AD_Background_Wall_Banner +mtrend.cn###toptabs1 > .kz_line +||laozuo.org/banner/ +||meituan.com/ptapi/recommends? +eastday.com##.beforegg +asmag.com.cn##.adAsMainLeft +@@||assbbs.com^$generichide +###Video-Shunt-Box + .container +gd163.cn##.bbs_ad +league-funny.com##.player_bb +||xxhh.com/xh.js +baidu.com,comefromchina.com#@#.ad-block +||kyokglm.icu^ +/partner/gg_sogou.html +/matongwu/img/gg_ +||d.ab126.com^ +||0efghij.com^ +||qrovwu.xyz^ +2345.com##.s11-logowall +@@||haokoubei.top/sz/tos_v_f.js +||rmbvzh.xyz^ +eastmoney.com###fp1 +||29spp.com/js/tj.js +||emjs.mkzhan.com^ +mydrivers.com#?#div[class^="news_info"] > ul.newslist > li:has(> span:contains(广告)) +.bt*.com/imgs.js?t= +||7mmtv.tv/u_banner/ +##.module-adslist +wenku.baidu.com##.zhixin-ads +||tkiteri.top^ +||nex.163.com/q? +@@||ad4.on.cc/web/www/delivery/fl.js +juejin.im##.banner-section +||zzad.com^$third-party +||21yq.com/mg/21yq/ +###td_tpc > .ads +zhcw.com##.ycxdZw +liaoningmovie.net#$#.with-ad[data-layout="list"] .main-header { width: 100% !important; } +||wxsicu.xyz^ +sblunwen.com###popupService +||zol.com.cn/cgimp/zc.js +###ad1[style^="position:"] +javdove.com##.dn_fix_bottom +renfei.net#$#body { overflow-y: auto !important; } +||cnprint.org/bbs/images/gg/ +##.trc-content-sponsored +natgeomedia.com,setn.com,eprice.com.tw##div[class^="ad-"] +||tianqi*.com/static/banner/data_tuiguang.js +/\.(cyou|ink)\/[a-z]{4}_[0-9]{5}_[a-z]{5}js\?/$script,third-party +##.kuandu > .bottommob +||qq.com/tousu/img/20210511/8966052_1620746143.jpg +||lbqdaua.icu^ +||heibaizhibo.com/_nuxt/87a5efd04908651591f7.js +goodcome.com.tw###jad-top +##a[href*="/122.51.121.126:"] +||bdjdpyrt.xyz^ +||adyun.com^$third-party +||s1.dugoogle.com^ +||twzui6.com^ +||ssnn.net^*-200-250.jpg +rising.cn##.lvmama +typecho.wiki##.adn-ar +@@||huhupan.com/e/extend/down/$generichide +xydai.cn##.deanad4s +loldk.com###test_ad + #model +/adunits/* +@@/hitCount_$xmlhttprequest,domain=on.cc +hkcards.com###ad-slot-01 +gmgard.com,hggard.com##A[onclick*="Advertisement"] +||x6img.com^$domain=picturedata.org +||uusjaq.top^ +360doc.com###btn_freeread +/lteee/ad/* +163.com##.post_adtop_main +||data.xici.net^ +||dm.21hubei.com^ +||taisha.org/statics/js/pc2.0/common/form.bottom. +ccb.com.cn###leftSideAd +40407.com##.bg_l +||csfds000.fun^ +||baitu3lllqubyqmttdkjsv.com^ +sogou.com##.u-page-gg +||ikafan.com/upload/image/iqiyi_ +fortunechina.com##.pinglunmask +||vzmz.com/template/paody/aaaa/*0 +||sidfiz.icu^ +cnys.tv#@#.player-news > .news-list +||wvceki.xyz^ +||dazhantai.com^$third-party +miniie.com,tisai.com###gg_content +hahamx.cn###float-left-ad +igo.cn###NewigoBox +cr173.com##.downurl[data^="viewAds"] +18h.animezilla.com###manga-bottom +||ickd.cn/mobile/js/touch +||js.263y.com^ +||bdsahkln.xyz^ +ali213.net###ali-js-4 +||m.21haodianmt.com^$third-party +||yfaqgk.xyz^ +jpfans.com,jpseek.com##table[cellspacing="1"][cellpadding="6"] +||proewildfire.cn/fd.js +||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js +||maqmix.icu^ +muchong.com##.todayhot +slashview.com##div[id^="Advertis"] +@@||google.pl/translate_$media,third-party,xmlhttprequest +jianbiaoku.com##div[style="width:960px;height:130px;margin:0 auto;margin-top:35px;padding:0;cursor:pointer;"] +jiligame.com##img[onerror="zhurl($(this))"] +||1.arpun.com^ +||molibaike.com/js/ads. +/pc/Tpl/baibaipc/js/* +||rofmjd.xyz^ +||js.bju888.com^ +itavcn.com##.hot_dealerxin +flighty.cn###searchBox + #sidebarBox +||jgblvt.xyz^ +##.adv_img +@@||meizu.com/fileserver/ad/img/ +360.cn##.fangcloud +pan666.cn##.footer > .containerNarrow +##.ads100 +||web8.net^$third-party +2345.com###ivy-taobao +hehagame.com##.webad_right +/adbanner/* +||yitongkan.com/splash.xml$rewrite=abp-resource:blank-js,domain=yitongkan.com +win7xzb.com##.four_box +daniao.org##.wow.fadeInUp.tg-site > a[rel="nofollow"] > img +@@||landtop.com.tw/images/ad/ +||alicdn.com/ad-product/ +||kekenet.com/images/*980 +tieba.baidu.com,wapp.baidu.com##.iSlider-wrapper-container-hot-thread +letv.com###JS_banner02 +-1316899192.cos. +||crbbhp.xyz^ +theav.xyz,69xx.one,theporn.cc#%#//scriptlet("set-constant", "is_show", "false") +bookrbx.com##a[href="/rmtj.html"] +muve.org.tw#@#.sponsor-wrap +||handjob.tw/ad/ +||npjvgug.xyz^ +maomaomom.com###execphp-15 +||vkandian.cn/peitu/ +||czsp12.com/api/*=announce& +sobaigu.com##a[href^="https://cloud.tencent.com/redirect.php?"][target="_blank"][rel="noopener"] > img +||house365.com/js/lbpopup.js +jinti.com##div[id*="gg"] +kairos.news##a[href^="https://kairos.shopping/product/"] +||2345.com/dypcimg/*gameRecommend.js +||wbiao.co/src2/js/expand/fudong/ +||28kys.com/92kviptupian/ +pconline.com.cn##.jcz-focus +2345.com##.s12-fullNav +||lzyysw.com/upload/ +##style + .a-loading +mydrivers.com##.jdong11bg +firefox.com.cn,firefoxchina.cn##.main-huo +xia1ge.com##.wsappad +||28hse.com/adsman/www/images/ +##.aasdwa +||putaoys.com/static/js/acb1.js +##a[href*="/hgsfhgsfa.top"] +||yunupload.net/jsa/ +||iggbky.xyz^ +@@||115.28.114.149^*&adf=dalian_300x250_ +||paopic.com/imguang/ +360doc.com###divaboveReflectionAd1 +||youyiya.com/Tpl/mobile/js/you +dmzj.com###khdDown +###qj960b +eastmoney.com###rightadvert +/ntes-ad-cloud. +rising.cn###left50 +@@||bcebos.com/static/translation/widget/translate/output/AdBanner/AdBanner.js +||1iohncj.xyz^ +||99nets.com/kfb/index.html +/yryy/css/javamy.js +?ad_type= +||bvxiht.xyz^ +juksy.com###cover.modal__mask +@@||appledaily.com/js/nxm_ +||c11011.com^ +ilxdh.com##.double11-dialog-container +~ix8.la##div[class^="ADTOPLB_"] +tsubasa.im#%#//scriptlet('prevent-setInterval', '/home/?adblock=') +||ggfdgd88.fun^ +||m1955.com/template/qq/images/playad/ +qzone.qq.com###appstore_sidebar_r +qq.com###focus_jordon +||uploadhouse.com^*.gif$domain=wishct.com +copyfuture.com#?#.tabbable > div:-abp-contains(宝红) +500papa.com,papa03.com###content > div[align="center"] > a > img +sui.com#@#.fb-btn +||cg-pao-tu.nanyanglk.com^ +||gk99.com/static/js/a-d-sys.js +||shiyaokejishanghai.com^ +||aukllsq.cn^ +||yaoyl.com/js/ds.js +amazon.cn#?#.s-result-item:-abp-has(> .s-item-container > h5 .s-sponsored-info-icon) +qq.com##.ad-text-box +/uniontgm.cmb. +jinse.com##.js-spread__main +||komvkup.cn^ +en8848.com.cn#@#.adcenter +gohome.com.hk,idv.st#@##adFrame +||bf99.com/User/Images/bg_Blued.jpg +7x7n.com##.down_load_1 +boke112.com###linkdh +/ggad/* +||toolfk.com/common/zfb.jpg +||dzwww.com/images/ad_down.js +||ifengimg.com/md/*/v_responsive +||botcm.com/zhanqun/ +52pk.com###ggfloat +||eyusky.net/weixin-img/zhifubao.jpg +rfidworld.com.cn##.indexBanner +/biz_icon/*$domain=cs090.com|wm090.com +/sc_ifeng/* +jd.com##.ab-goods +||guysfair.com^ +17ce.com##a[href="/site/api"] +||hkdm688.*/js/68/ +||yzgbsg.xyz^ +avtb01.com##a[href^="http://xgn66.com/?aff="] +||lv-play.com/web/adv/list +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###video_aside +||gp.jstv.com^ +@@?sid=ads$domain=126.com|mail.163.com +liantu.cn##.wrapper > .inner.h90 +||mkd88.cc/16.32.jpg +||adm.cloud.cnfol.com^ +##.adline +||htqyy.com/kiees/ +||tfczk.xyz^ +xinhuanet.com##.columBox.book +||aasingapore.cn^ +||zwxxcb.icu^ +qq.com##.elevator[class^="jsx-"] +720yun.com##div[class^="Ads_ads_"] +examw.com##.activeBottomBox +angelweb.cn##.GG960x90 +66se2.com##a[target="_blank"] > img +maxthon.cn###header-float-promote +||qhimg.com/static/*/common/seed.js +##a[href*="/bjty96.vip"] +||suzoqz.icu^ +||xstt5.com/template/js/fx +||itjgwn.xyz^ +||ujovcb.cn^ +||ishowx.com/www/2015/js/top.js +||wnacg.*/w7z/ +chexun.com##a[attr-outside-ad] +||zhanqi.tv/api/static/v2.1/actives.lists/ +||hgngrf.xyz^ +||kphcrjth.xyz^ +myqqjd.com##.cms-news-normal-box > article:has(span.merge-cat > a[href$="/activity/"]) +lwgod.me###wp > a:first-child +.com/js.ng/ +aizhan.com##.btn +||hujiang.com/ciku/getDetailSoftText/ +||gkypgw.xyz^ +baidu.com##.experience-card-bar-wrap +||ideng.com^$third-party +||fpb1.chinacar. +bilibili.com##.floor-single-card:has(.floor-skeleton):not(:has(> div.bili-video-card__skeleton)) +sm.cn##.oab-ball-wrap +||stat.cutv.com^ +playno1.com###frame8I822E +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=23qb.net|4spaces.org|aboluowang.com|assbbs.com|bilinovel.com|chaojizhibo.net|chtoen.com|daxiaamu.com|demo.ama.pub|dizhishengcheng.com|doitwell.tw|ekamus.info|eu4cn.com|ff14angler.com|freedidi.com|fsbot.xyz|haoweichi.com|it365.abctool.info|linovelib.com|logi.im|mens1069.com|monnsutogatya.com|mpyit.com|myqqjd.com|numberempire.com|ozabc.com|pansearch.me|patch.ali213.net|pc3mag.com|reh.tw|shenfendaquan.com|sistersbedroom.com|sto520.com|vaptcha.com|wandhi.com|wenxuecity.com|wuyong.fun|xbeibeix.com|xiebruce.top|xugaoxiang.com|xxxxx520.com|yodu.org|yummy.best|zaixianjisuan.com +##.event_fullscreen_gg_modal +jandan.net###sidebar > ul:nth-child(2) +so.131458.com##.tishi:first-child +||wnootzc.icu^ +||baizhu.cc^$third-party +24en.com##.article_part_top +cr173.com,downcc.com,downyi.com,itmop.com##.downnowgaosu +##.pagead_3 +bilibili.com##a[href*=".doubleclick."] +kuaihou.com##.bz +map.baidu.com###message-panel +###footer_fix_ggw +##a[href*="/dsf88.cc"] +chinaz.com###setHomeTonglanCMedia +||taijuba.com/js/*_ +/91_banner/* +||duoyi.com/welcome/$popup +||gimy.*/images/eee*.png +||mhdnspro.com^ +eetop.cn##.alert_windows +yes-news.com###content-ads-right +||cnzz.cn/ssp_ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_frs_head +||liuhui111.top^ +||wdipsume.top^ +18183.com##.pcBtn > a[href*="@"] +cs.com.cn,qinbing.cn,sonimei.cn###leftDiv +||jy01.shop^ +/js/ads/hf*.js +qq.com###comic_ad +dhaomu.com##.ceo-ad +segmentfault.com###hotArticles:nth-child(3) +||chbheroq.xyz^ +||cfateu.xyz^ +||cc.xwscg.com^ +efu.com.cn##.banners-top-b +/Static/Home/GongGao/img/kaiyuan.gif +@@_cpc_cpm_$domain=saraba1st.com +||isylieo.top^ +||mtwuxss.icu^ +iqiyi.com##.lanzhi_cont2 +@@||sohu.com/play/videonew.do?*/share_play. +/images/masha*.png +stealjobs.com#@#.custom-ad +mikanani.me##a[href][onclick*="'ad'"] > img[src^="/images/Masha/"] +###Ad_windows +||golilog.com^ +/ce_l.aspx?showid=$third-party +163.com##.rg_ad +cokemine.com,eveaz.com,jubuzz.com,skyarea.cn,tianfateng.cn#@#.category-share +###tanx-fold-main +supertaste.tvbs.com.tw###ad_m_bottom +||jdbfknsbkldns.com^ +cbg.cn##div[class^="erweima"] +netflav.com##.ads_head_banner_container +2345.com##.mod-serchright +||wsyfsg.xyz^ +gfan.com##div[style="width:960px;height:90px;margin-top:10px;"] +thwiki.cc###a-carousel +crsky.com##.ml10.Gs_d +||920share.com/layer/layer.js +||jyrd.com/statics/*/js/baizhu/ +||ashow.pcpop.com^ +||appledaily.hk/banners/subscription/ +||xiazaizhijia.com/w2/js/wxzzj.js +pcstore.com.tw##.priority_ad +||bd1.sosg.net^ +||fragment.firefoxchina.cn/html/ +bitauto.com###video_floatBox +||r528e.cn^$third-party +||gedu.org/js/meiqia_pc_groupmarket. +||regwiuv.cn^ +baidu.com###ad_xbox_3 +||touimg.com/u/20200419/18431854.gif +jr31.xyz##body > div.wp > div.wp > a[rel="nofollow"] > img +||fj.sina.com.cn/iframe/63/ +meijuniao.com###widget-weixin +@@||dlkoo.cc/down/Copyright.js +kuaibao.qq.com##.slider-box +hao.360.cn###festival_fly + .couten +imydl.com##a[href*=".wuluoyun.com/aff/"] +||alicdn.com^*_!!3361094544. +/lenovo/2021/all*.js +ltn.com.tw##.ltn_ad +##.ad_right_1 +||ameidj.xyz^ +||crhabkd.cn^ +||dairzih.com^ +159i.com##.a2.style25 +||deyangs.com/img/ +baidu.com##.bannerdown +||kloojzn.icu^ +||sefu8j.com/index.php?m=poster& +||alicdn.com/img/ibank/*_1995781528. +qq.com##.cps_inner +xiazai.zol.com.cn##img[alt^="AiPPT"] +smzdm.com##.g_g +keylol.com,steamcn.com##div[class*="rnd_"] +sm.ms##.detail-advert +||ge3shbdf1.fun^ +duba.com,uu114.cn##.hotTitle +##.fnwehjnc12 +qq.com,sogou.com##.m[pbflag="bt_mai"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":1990070693,"] +v2rayssr.com#?#.single-top-html:has(> div:only-child > a[target="_blank"] > img) +ipv6.baidu.com,m.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###results > div[class]:not(.result):not(.result-op):not(.sp-rslt-bar):not(.s-group-result):not(.hint-unsafe) +||kuaileco.com/weishou/ +||abminbuy.com^*.gif +apk.tw#?#body > div:has(> div[class^="yap-ad-"]) +||jwjzf.online^ +||hackhome.com/js/dright.js +.swf?clicktag= +||dchyjb.xyz^ +sex8.cc##.V-video-float +xchina.co##.push-top +/adscpc/* +.gif|$domain=/87[0-9]{2}ck\.cc/ +###tr_ad8 +iqiyi.com##.gg-l +||dkstrtss.xyz^ +@@/gtm.js$domain=amd.com +/btba/ad/* +netfly.fun,netfly.tv,netflytv.xyz##[style^="display: flex;"] +||e10000.cn/Images/link_td01.gif +||xnpuw.cn^ +@@||sinaimg.cn/dy/deco/*/js/base.js +@@/images/*/*.gif$domain=maichun5.info|myhhg.com +##.ad-block +@@||dushu.ru^$script,domain=bhshu.net +||yingav.net/images/content/spot01.jpg +||medsci.cn/aimgs/$script +||autopiano.cn/data/jd_ +||ugkpsi.xyz^ +dianyingim.com,dyxs11.com##.popup-tips +141hongkong.com##.wp.at +4399.com,sxrtv.com,zgsyz.com###ad2 +||obwnaon.icu^ +ooopic.com##.fix-newUser +||uiszwh.icu^ +||9216tp1.com^ +||fhvzrr.xyz^ +huanqiu.com##.ad_t1 +||robudpw.cn^ +caiyunapp.com##.active-imgContainer +news.mydrivers.com##.baidu_left +lenovo.com.cn#?#a:-abp-has(>div>p:-abp-contains(广告)) +||tonnn.com/promotion2/*.js +||vdggsd003.com^ +zuowen.com##.couplet_right +||jsdelivr.net/npm/live2d- +||ggrfab.icu^ +||bf99.com/User*/Ad_ +maolihui.com##.con-ad +boylov.xyz,boylove.cc,boyloves.fun##.div_sticky2 +wenku.baidu.com##.commerce-flow +||lhtnuop.xyz^ +||n522rv1.cn^ +||xiaoy.name^ +||suclj.xyz^ +||med66.com/lamu/ +/js/ads/*2.js +||gd.ct10000.com/js/ecssstat.js +||meixincdn.com^$domain=novipnoad.com +keywin.org##.appdownload +dealmoon.com,weibo.com##.pic_ad +olgame.tw##.nex_index_ads +||ofkcww.xyz^ +||4399.com/jss/*coup.js +||p.kugou.com/?id= +ruten.com.tw###search_u_970x90 +||alicdn.com/img/ibank/*_1165462224. +||vrivslffndepxqd.xyz^ +kuaihou.com##.ul_Address[style="border-bottom:1px solid #ddd;width:280px;"] +||eeyy.com/uploadfile/img/beitou +ca168.com,cs.com.cn,qiannao.com,qinbing.cn,sonimei.cn###rightDiv +||jbzyw.com/Application/M/adv/ +||ewerilxw.top^ +@@||dlkoo.cc/down/copy1 +##.book > #btmBox +pchome.com.tw##.ad_triple +||bld.mobi^ +qq.com###nqsnqsad02 +||qwnmfiti.xyz^ +||affyun.com/wp-content/uploads/*-ad. +||amradmin.5173.com^ +||hzhyhm.com^ +@@||hk.on.cc/js/v4/oncc-adbanner.js +||qq.com/pc/batch_get_ads +52kd.com###frame2cu3VU +||163.com/ntes/special/*_papa. +cnbeta.com.tw##.article-global +51cto.com###upopbox_bot +||s2tu.com/images/*.gif +||tiantianzhibo.com/sda/$image +||d1.5h.com^ +9kld.com##table[width="990"] img[width="990"] +||gcxa.cn/a/gb.gif +||guli21.com/js/ggdm +blog.163.com###r_mlofteriframe +.com/mediaController.php?pid=$script,third-party +@@||1keydata.com^$generichide +##div[style^="width: 100%;"][style$="overflow: hidden;"] iframe[scrolling="no"][src*="//"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +91duba.com##.m_guess_like +||macd.cn/macd-topads.html +##div[role="listitem"] > div > div > .bannerliststyle +||haokan5.com/js/haokanjs/2014_ +||tlula507.com/Public/js/float +||baucraell.com^ +||360.cn/festival_zone.html +||costarg.com^ +||downk.cc/item/*.gif +||axutongxue.net/js/ik474n.js +edh.tw###fix-corner +weishangshijie.cn##div[class^="news_a"] +||76fengyun.com/jsa/ +@@||tvb.com/social/share_ +||kwaterd.top^ +||jsqygwl.top^ +||tt.biquge.la^ +||wxfdmri.xyz^ +||38.33.15.*.gif +||ifengimg.com/a/2017/*600. +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":1224761005,"] +||591hx.com/js/sy.js +||gkktjf.top^ +###leftAD +aipa551.com##a[href*="theporndude.com/"] +luanren.com##.luanren_dbhfad2 +||6080w.com/template/ttk/img/ +itboth.com,itkeyword.com##.ad_pop_left +##.pc-ads +||cidianwang.com/js/left +olevod.eu##a.wbalist_thumb[target="_blank"] +qq.com##.player_bg_ad +@@||gamer-cds.cdn.hinet.net/vod/gamer/*.ts^$domain=ani.gamer.com.tw +abmedia.io##.pum +51cg1.com,h3ugz0.arwiotgiy.com,h3ugz1.biyuhcltj.com,h3ugz2.lrjhvntu.net,h3ugz3.ogvoxarpd.com,h3ugz4.uovxifzj.com,h3uaz0.ogvoxarpd.com##.horizontal-banner +||alicdn.com/kf/H9df22b1c3f0041b2874ddfd38836993em.gif +||uydzfldt.xyz^ +/js/cpv_dl.js +iqiyi.com##.khzqBox +@@||paypalobjects.com/tagmgmt/bootstrap.js +||avple.video/asset/bann.js +cssmoban.com##.page-banner +##a[href*="/l1y9.com"] +||crlsxny.xyz^ +7b2.com,thh521.com,vikacg.com,zhujib.com#@#.social-top:not(html):not(body) +airacm.com###diyscsad01 +||uniway.cn.com^ +||am.szhome.com^ +||x21.cn/service/feeds. +@@||content.s8bbs.com/ad/bbs/*.jpg +jnnc.com###float_layer +businessweekly.com.tw##.mainR_content:nth-child(5) +||cnmo.com/oddjs/ +airav.cc###corner_cf +||tz-68-fabb.com/qiye/ +||ccccc67kkkkk.com^ +baidu.com##.s-news-special[data-url^="http://vip.baidu.com/"] +||helloavgirls.com/public/hg/ +51.la##.da-item +||a1714.com^$popup +||zhimg.com/80/v2-725c659194eeebb8c6b970e52e2dc8aa. +||bccnsoft.com/aac/ +||bgidskiv.top^ +.vip/html/ddx.js +/cf.aspx?action=cycadget& +||n6579.com^ +||rackcdn.com/htv/banners/$domain=hanime.tv +123pan.com##.banner-container-h5 +||jdoshba.top^ +18av.mm-cg.com###primary_content > #Dfrom +zouaw.com##.cloudbox +||alicdn.com/kf/Ha3566a6209ec45f597d392707b066cb9D.jpg +||kbexos.xyz^ +||mydrivers.com^*/news/ayun +||kqvvqv.icu^ +vpsdx.cn,vpsdx.com##.span4 > a > img +gdmm.com###ad_cover +5184.com##.gg600 +boylov.xyz,boylove.cc,boyloves.fun##.owl-carousel +@@||xidian.edu.cn^$generichide +||alicdn.com/openad/dsp-front-booth/ +bdp.cn#@#.adv-list +||neuralstemcell.com.cn/img/js.js +||yiqifa.com^*.js$third-party +qq.com##.adv1000 +cnfol.com##.NavTopAd +||cysgcm.xyz^ +3dmgame.com###yxj_fmt_gg +||qlogo.cn^$domain=chichiav1.xyz +||jquery.envi-met.com.cn^ +||m.feisucn.com/assets/js/m.js +||jlpcn.net/img/300p- +||949949.com/2013/end/hot_news.js +kzs1w.com,sehuatang.org##div[class^="show-text"] +||ifengimg.com/iamsImg/*_w100_h550. +@@||jiayuan.com^*/pv.js +||citysbs.com/chongqing/*/1920x179- +/live173_*/46860. +playno1.com###m2 +||miniye.xjts.cn^ +news.sohu.com##.god-first +||logoquan.com/upload/prd/ +||atbif.cn^ +baidu.com###index_right_top +||hapqncfg.xyz^ +/pagecpv/* +||dasljfoq.top^ +eic.org.cn##.lx-btm-box +||onxtxdm.xyz^ +gansudaily.com.cn##.itemFloat +bilibili.com##.eva-banner +/ad_header. +9kld.com##iframe[src^="http://www.9kld.com/ad"] +||477zw.com/js/nzm +||hsylieu.top^ +u2mtv.com#@##slider-ad +||isso.com.cn^*/A-D/ +||showguide.cn/templets/*/sg-ad.js +lz13.cn##.left_box5 +||dajkqqpz.top^ +||sooopu.com/js/*950.js +baidu.com###qrcode-chunwan +||dytt.com/oj.js +||haofs.com/haofs/ggapi.asp +||shbzogs.cn^ +04647.club##div[class*="adsBox"] +ifeng.com##.fhsd +ddys.*,ddrk.me#%#//scriptlet('set-constant', 'Object.prototype.cnobpreroll_', 'true') +||pjzxdl.xyz^ +||ms.cnbanbao.com^ +||fbvskv3.com^ +ifeng.com###baidualading +animewld.club##.header-img +||mamibuy.com.tw/Ad/Period.aspx +7x7n.com##.down_load_2 +gdmm.com,gkstk.com#@#.adtop +||resource.baomihua.com^ +||baishuku.com/news/$script +user.qzone.qq.com##.f-single-biz +||ebiotrade.com/netother/sy2013.ashx?type=quanping +am730.com.hk#?#.newslist-row > li.newslist-item:has(> div.adbox) +mvcat.com##.jsalert +||localau.vip/plugin/pause.php +@@||sogou.com/pv.gif?*&stype=showskinpanel +@@||right.com.cn/forum/*300*250$image +||w0054.com^ +||img.ifeng.com/tres/html/ +comefromchina.com##.ad_navtext_11 > li:nth-child(n+2) +ruanyifeng.com##a > img[src*="wangbase.com/blogimg/asset/"] +php.cn,v2ex.com,233tw.com##.wwads-cn +wdzj.com##div[class$="-ad-top"] +||hkjunkcall.com/images/b_banner_ +kuaishouba.com##.index_adbox +manhuagui.com##div[class]:has(> .adsbyexoclick) +/0mbjs/2800av*.js +||aqiemc.xyz^ +ali213.net##.coopSteambox +163.com###r_mkaolaadv +/ad/files/* +||04cmm.com:8888/js +/QidianAdClient. +liaoningmovie.net##div[style^="width: 300px; height: 250px"] +||biqiuge8.cc/js/p +bing.com###b_results > li[style*="padding-bottom: 8px;"][style*="235, 235, 235"] +||pstatp.com^*/push.js +||jz4u1.icu^ +lzdcctv.cn##.focusmo + table +||hwvwxerw.xyz^ +||bdstatic.com/player/t/j/HlKYzquQ.js +##.widget_adsensem +||jsdelivr.net/gh/yaofa88/bifa@main/*960 +||52av.be^$popup,third-party +miushuo.com###leftDiv1 +||2008mm.com^*.js +@@||shana.pe.kr^$generichide +fx168.com##.ad_teshu +##img[onclick*="/statics/js/"] +/duilian.$domain=~388g.com|~msra.cn|~supfree.net +114la.com###Gamepng +@@||159i.com/a_d/$media +##.room-ad-bottom +free.com.tw###custom_html-5 +||lotour.net/analytics/statsv2.js +||ahpphkc.xyz^ +@@||int.mwbbiz.com/static/*/app.js$domain=91porny.com +etnet.com.cn##.firstAD +||u1099.com^ +||caajol.icu^ +news.ebc.net.tw##.fncnews-content > div.raw-style > div > p > a[href] +###flashad +90bifen.com###live > table[cellspacing="0"][cellpadding="0"] +ting89.com,tingshuge.com##.banner688_2 +||bbk5921.yncjsc.cn^$third-party +||hdsky.me/adv/ +||adbu.cn^ +||theta.sogoucdn.com^ +99kubo.tv#?#div[style*="width"]:-abp-has(> div[style] > img[src="/static/img/adsfree.png"]) +###undertd.undertd +ifoodie.tw,avtb01.com,beauty321.com,aotu43.com,csdn.net##.ads +||yezi.cn/_ad/ +@@||75.125.41.29:8080/*/ +||j1.piaobing.com^ +||hfbfbvmjdmxc.com^ +html-js.com##a[style^="margin-top:20px;"] +||sa.sina.cn^ +##.ad_news +@@||upxin.net^$generichide +||s5ue6.com^ +114la.com,ylmf.com##.box-hot +jiankang.com##.three_hot +###top_box > a[onclick^="javascript"] +bbs.actoys.net##.fl[style$="float:right;"] +||17173cdn.com/20*.mp4$rewrite=abp-resource:blank-mp3,domain=17173.com +$script,subdocument,third-party,websocket,xmlhttprequest,domain=bhshu.net|louzhong8.com|miwens.com +||tracking.kdnet.net^ +52pk.com##.tcgg +fx112.com##a[href^="/union."] +faxingw.cn##.detailgc +world.huanqiu.com##div[class^="ad_t"] +missyuan.com##.spaceborder +||business.92wy.com^ +##.ads-2 +##a[href*=".mp388.com/"] +||hao123union.baidu.com^$third-party +@@||down.cc/down/js/ad.js +||wei2008.com/skin/js/top.js +zzzyk.com###Tinfo +.info/js/alls_top.js +||creaders.net*/ad_func.js +ck101.com##.float_ad_allage_box +||gome.com.cn/flight? +||1cecn.icu^ +@@.com/adv/$domain=my.ctrip.com +||bylwtf.xyz^ +/hjstore/system/banner/*.txt +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-wealth-list-card-container +||xydzfldt.xyz^ +||mat1.gtimg.com/cq/flash/ +||ypgjkk.xyz^ +||yecaoyun.com/AD/ +@@||tmall.com/go/*/banner.php +0598yu.com##.v1100_ad +##a[href*=".cvezsacxz.com/"] +m.autohome.com.cn##.wrapper > section[class^="box_"] +yahoo.com###ACT_takeover +jmbbs.com##img[width="1100"] +51cto.com###postform + a[style] +||b.unjs.com^ +@@/admanager/*$domain=woego.cn +||gesdxashb1.fun^ +||66wz.com/adv2/ +nownews.com#?#div[class^="leftSide_"] > ._popIn_recommend + div[data-reactid]:last-child > h2:contains(NOWnews 推薦) +/msow.aspx?AID= +||downlinker.*/ad_dl.js +###projectpostbody > a[target="_blank"] +||familydoctor.com.cn/c/a/000/ggw_ +||kaoyan.com/global/js/backtopnew.js +||9ya.net/con/ad +||xggcyef.icu^ +||szmnd.cn^ +||lenovo.com.cn/cms/2018-07-20/201807201014498251793.png +||uslsxe.com^ +||xpffkbpq.xyz^ +duba.com##.s11_zb +||afocus.com.cn/s? +||joublia.top^ +||jgidskia.top^ +news18a.com,tom.com##.ina_ad_class +||htoetgk.icu^ +||cao0001.com/vip/js/ +||xafuzcxr.xyz^ +@@||affyun.com^$generichide +||bgeg1.fun^ +my0511.com###bbdcc +###ad_link +beauty321.com##.pc_ads +zhihu.com##.GoodsRecommendCard +||iouvxlio.top^ +pornbest.org#%#//scriptlet('abort-current-inline-script', 'jQuery', 'injectPops') +mtrend.cn##.hongbaotips +||17173.com/x/ +exam58.com##div[style="float: none; width: 305px; height: 254px; text-align: center"] +##a[href*="?channelCode="] > img[src*=".xyz"] +yantuchina.com##div[style="width:618px;height:150px;margin: 0 auto; display:block;"] +##.r-ad +||dzjzg.com^ +||aknusp.cn^ +||redmx.cn^$third-party +||555bbb777www.com^ +=AdCode_$script,third-party +wss://*/api/wss/GetNotReadCount$third-party +||u0057.com^ +/spcjs.php +||webconf.douyucdn.cn/resource/common/giftPhotos_w.json +||u25011.com^ +szhk.com##.banner_dt +qq.com##a[href^="http://www.10100000.com/"] +hgitv.com##.index_gg +||sina.com.cn/1016/getPhones- +/nqnhfd/*.js +||chooncv.icu^ +||102tv.cn/js/main.js +||img.*.com/images/*.gif$domain=czzy01.com +/pcgg/*.js +sina.com.tw##.adbig300_mid +||sinaimg.cn/finance/wanghong_ +laohu8.com##.top-recommend +||atlggfy.cn^ +baidu.com##.result-op[tpl="pc-education-fs"] +dm5.com###youce +ruanyifeng.com##.entry-sponsor +||5.gzfenda.com^ +||pstatp.com/origin/1381500009611bc201d61 +suibiankan.co##.vddb + a,.vddb,.vddb_qq,style + div[id],a > video +##a[href*=":8701/?register="] +so.com###e_idea_wenda_detail_guess_new +yzl333.com##a[href^="https://jump.9118ads.com/"] +##.widget-qianhuiji +@@||kf.cn/ad/css/images/ +m.lwxs.com#%#//scriptlet('abort-current-inline-script', 'eval', '_0x') +/s/i.php?id=$script,third-party +koc.com.tw##.single_ads +||dryden.cn^ +tmall.com##.app-download-popup +baozimh.one,yazhouse8.com##.banners +@@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com +||lalabaos1*.top/$script,third-party +||actoys.net/statics/js/index/ad.js +@@||dwstatic.com/b=amkit&f=*/adjoin. +qq.com##.code-content +.com/gg.js +histock.tw###tbadword +/txtad. +||youtube.com/iframe_api$domain=nownews.com +163.com##.expoure_track_item +cq.qq.com##div.clearfix[style*="1000"] +||mm7920.com:8888/upload/*.gif +||ntiutox.icu^ +@@||redian.news^$generichide +||sdoshbb.top^ +||rttnvz.xyz^ +||cnifdlaf.top^ +doudoudm.site,ezdmw.com##.public_ad +||tawk.to^$third-party +diantai.ifeng.com#@#.ad-b +||twavtv.com/js/jquery.colorbox +||knowmore.cc/style/head.js +||hjkhxfh.360doc.cn^ +@@||gamersky.com^*/dhgame_ +||jijozdrg.xyz^ +sojson.com##._left_ad +||520xingyun.com/images/*.gif$domain=mcpcourse.com +||mycodes.net/js/hf_txt.js +||xxxx96xxxx.com^ +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.0.commercial.title', '') +map.baidu.com###mapBanner +lookae.com##.zhongjian +||rcdwhp.xyz^ +||radikal.ru^$domain=18board.com|18p2p.com +/plus/ad_ +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###forum_recommend +||bgbg00.fun^ +pzzc.net##.portal_block_summary +lanyes.org##div[style="margin:0 auto 10px;height:76px;overflow:hidden"] +||imgur.com/zNQ0lXP.gif +||skzlz.cn^ +myqqjd.com##.qz-box +haoweichi.com#$#.adsbygoogle { height: 1px !important; } +e0575.cn##div[id^="tid_"] +zol.com.cn##.zolapp +||xuxwvh.xyz^ +2345.com##.cnxh_box +wenxuecity.com##div[class^="Inarticle_"] +||111cn.net/js/downc*.js +||e.hnr.cn/choose/view/ +||fadhvz.xyz^ +||st-fly.b-cdn.net^ +||mmeimh.xyz/static/100. +/99vjj/*$third-party +@@/advs/*$domain=ciros.com.cn|gotobuy.com.tw|sj-touch.com +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=kktv.me +||baidu.com/cms/rc/adSideConfig.json? +msn.cn#%#//scriptlet('hide-in-shadow-dom', 'msft-article-card:not([class="contentCard"])') +||fodrxl.xyz^ +zuoyebang.com##div[class^="answerAnalyzeAd_"] +boylove1.mobi##div[data-group="300x100"] +||cdntlz.cn^$third-party +||stat.cqwb.com.cn^ +zol.com.cn##.pv-mol_ask +hktvyb.com##.myui-content__operate > a.btn-danger +theworld.cn##.download-now +eprice.com.tw##.section-content > div[style*="text-align"] +||tupian888.*.bcebos.com^ +||52zpi.com/gg/ +||skeimg.com/i/*.gif +||nzfcvv.xyz^ +finance.sina.com.cn###hq_main_top_tgWrap +@@||crackedresource.com^$generichide +||vlion.cn^$third-party +||hf365.com/0/13/79/87/13798795_912593.jpg +||fingkndk.com^ +||tewsdnka35.xyz^ +||1.32xp.com^ +||lfrfzr.xyz^ +||36img.com/ad/ +###bgad +##.f-sign-cont[data-dysign-adid] +||jjjgame.com/images/ad11.jpg +||dtnhjzl.xyz^ +olevod.com##.ad1 +/728-90. +||md.tvzhe.com^ +||5vdd.com/ktt.png +##.txtguanggao +141hongkong.com###dialog +itblogcn.com#?#.sidebar > div.widget:has(> div.item > aside > div.textwidget > a[href="https://www.itblogcn.com/vultr/t"]) +##.right_advert +||gmbuluo.net/js/ +nowcoder.com##.mini-banner +||s-msn.com/portal/js/vendor/manto/ +liaoningmovie.net#$#.with-ad[data-layout="list"][data-section-type="new-video"] .content-wrap:nth-child(-n+2) { width: 100% !important; } +7junshi.com##.breaknovel-ave +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.0.commercial.mediaUrl', '') +qzone.qq.com##.pop-app-list-c +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.thread_local_58 +my0511.com##div[id$="bdbc"] +zombit.info###single-popup +doubibackup.com##.widgetRoller +||supfree.net/xxx/ +||shangwenchao4.cn^ +||mondigo.cn^ +/1skwwd. +||bnpfdzp.xyz^ +cngold.org##.in_content_left_advs +||xdfhidrk.xyz^ +cool3c.com##.post-list > [class="board board-post board-cool3c-super-board-home-1 board-new clearfix"][data-board="cool3c-super-board-home-1"] +||baidu1.cardbaobao.com^ +18avinin.com,27ka.cn,sunnylife.tw###custom_html-5 +##.gg_300 +@@||iis1.deliver.ifeng.com/showcode?$domain=v.ifeng.com +||sina.com.cn/other/src/app/FinanceAppPics.js +baidu.com##.fc-wenku-ad +csdn.net##li[data-type="ad"] +||cngsf.com/baidu.htm +||s.go.sohu.com^*/?callback= +baidu.com##.bds-list-ads +||tw.buy.yahoo.com/smartbanner/$domain=tw.news.yahoo.com +163.com##.gkk_default_yw +.com/js/addp.js +duba.com,newduba.cn##.search_promotion +hupu.com##.voice-ad300-250 +serengeseba.com##.content > li > a[href^="http"] +||itjcqlp.icu^ +||m6500.top^ +||anews7.nvwu.com^ +iqiyi.com##.dove_ad +||milk.yesky.com.cn^ +||mefiafd.top^ +||lwrohd.xyz^ +##a[href*=".bright.cn/?utm_"] +msn.cn#%#//scriptlet('inject-css-in-shadow-dom', 'cs-native-ad-card { visibility: hidden !important; }') +||bpyerxzn.xyz^ +eol.cn###float_l +||tw.buy.yahoo.com/?z= +||nykvdwi.cn^ +zybang.com###bottomBannerLink +||vsping.com/website/ads? +||pdnhcks.xyz^ +||1821z.website^ +cbber.com##div[style$=":0px;top:200px;z-index:9999;"] +etest8.com###gads1 +/image/ads/* +###adx_cggp +aiqicha.baidu.com##.float-banner +||wkrcbszi.xyz^ +||ddqmlfu.icu^ +||85tube.com/player/html.php?aid=*_html&video_id=*&*&referer +ipip.net##.row[style="width:1000px;margin:0px auto 25px auto;"] +||yhqukg.xyz^ +||dimtown.com/adimg/ +qq.com##.tb-activity-list +1keydata.com#$##detect.ad-placement { display: block !important; } +oschina.net##.soft_detai_above_ad +||angelweb.cn/Inc/AngelG.js +||ynzhby.com^ +||static.tohomh123.com/js/funasd.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.top-sec + .middle-sec +@@||95504.net/Advertisement_ +||baidu.com/newspage/api/getmobads? +||fpb1.kedabai.com^ +||meilele.com/js/mll/baiduLabelRecommend. +||tt1069.com/script.min.js +||appaaaddd.com^ +baidu.com##.recommend-goods-card +map.baidu.com##.search-item[data-stat-code="poisearch.damoce.item"] +##.overBanner.dowloadBtn +||dig.qbao.com^ +wap.yushuwu.cloud#%#//scriptlet('prevent-eval-if', 'WebSocket') +zhiyoo.com###body-bg +||bdjj.bzr99.com^ +.com/dm/dibu.js +||uuysiaq.com^ +0597kk.com##div[style="width:960px; overflow:hidden; margin:2px auto; "] +element-plus.org##aside > .page-content-main +||hc360.com/list/iframe_end_textadv.shtml +10fang.com##.wrapperbg +pcworks.cn##.md-show +downhot.com##.guans +baidu.com##.link-banner +hahamx.cn##a[href^="https://s.click.taobao.com/"] +||llksja.com^ +||txahz.com/static/image/tp/ +||999meiju.com/js/tj +||zhengzhou12.top^ +iqiyi.com##div[class^="ad-piclist-"] +pixnet.net##div[class*="-Ad-"] +||1990tu.com^$third-party +||ettoday.net^*/ad/ +##._300x250.item +||kshrsf.icu^ +cpnn.com.cn##.duilianop +||xcar.com.cn/bbs/adfocus.js +8684.cn,8684.com,iyxdm.live,kugou.com,solarzoom.com,yesky.com##div[class^="adv"] +||img.virscan.org/images/*/ad_ +||szxljdsb.com/tl +||mycodes.net/js/$image +||xyimg.net^$domain=~xy.com +msn.cn##.views-right-rail-top-display +pconline.com.cn###JtlBestA +weather.com.cn##A[href*=".tmall.com"] +||f1.06ps.com^ +||badding.oss-ap-southeast-1.aliyuncs.com^ +||uckgqa.xyz^ +||4gamers.com.tw/site/iframe-aols/ +/js/ads/to +||dmnxkj.cn^ +qq.com##.mod-download-tips +||hauqou.top^ +jiakaobaodian.com##.com-footer-flex-panel +||con-article.hjapi.com/v1/txs/ +||google-js-09.xyz^ +||iephrenhq.com^ +||dsdsa33.fun^ +hbzhan.com###leftAdv +||gfdgfhh.cn^ +5068.com,hgitv.com##.gg02 +||rfidworld.com.cn/js/b.js +hexieshe.cn###custom_html-2 +||p97387hj.xyz^ +pcstore.com.tw##div[class^="ad388zone"] +52ch.net##.ad650 +.hongi7ie8owiie*.site^$script,third-party +/mobile/mads.js +||js.jialingmm.net/dm/tj.js +/adsame/* +778772.com##td[style*="PADDING-BOTTOM:"] > a > img +3dmgame.com#?#.Gmaeinfobtn_tab > a.patchshow[style]:has(> span:contains(/^广告$/)) +||jianhuadaily.com/wp-content/plugins/popup- +ifeng.com##.jcsp +52pk.com###hdowner +||counter.tianjimedia.com^ +youranshare.com#%#//scriptlet("abort-current-inline-script", "$", "adskilltest") +##.pggc > .ng-star-inserted +||pv.zhiding.cn^ +||xogtrmjz.xyz^ +||vansky.com/agdg/vans/adv +v.baidu.com##a[href^="http://www.602.com/"] +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###fixed_bar +k7d.com,kxdao.net,xiaolz.cn###masonry +||cfrtdmb.xyz^ +699pic.com##.winpopbg +ifeng.com##.box_list_pic > a[href^="http://dol.deliver."] +123-bt.cn###mianze_fixed +##img#adv1 +188soft.com##.safety +||soperson.com^$third-party +ant.design##.snd-ad +||alicdn.com/imgextra/*_!!1091819078. +||3562wsgkbcm.xyz^ +||oouiqi.xyz^ +www.sina.com.cn###SI_EDU_AD +||stat.hebnews.cn^ +||xuzsdn.xyz^ +||u1.2048sj.com^ +||soft4fun.net/wp-content/themes/arthemia/js/common_footer_min.js +eepw.com.cn###coverDiv +||fjisu.*/js/huimi.js +||cir-smart.baidu.com^ +douban.com#@#.download-ad +kuai8.com###left_Ad +~baidu.com##a[href*="/cpro."] +||zomcz.cyou^ +||baijs05.xyz^ +##.comiis_adbox +_naimabdd_ +scsn.cn##img[style^="height:70px;width:"] +@@||bokecc.com/flash/playlog? +##.loc-home-top-adv-new +@@/image/share_$domain=pan.baidu.com +/aoyou372down300_ +tw.stock.yahoo.com##tr:has(> td[valign="top"] > .geminiAd) +||jinman4.com/ad/ +||yhlzadr.xyz^ +ifeng.com###swiper_bottom +csdn.net##.el-dialog__wrapper + .activity +@@/adfile/*$domain=cidianwang.com +||qhnews.com/tupian/ +||tiimg.com^$domain=678cn.com +eastmoney.com##div[id^="em_important_"] +nownews.com##.adBlk +wendu.cn###topads +||bio-equip.com/dimgs/ +||57577.live^$csp=script-src +||kalmukrattail.com^ +xc6b.com##a[href="http://61.160.236.52"] +jinti.com##.fix-kefu +##.inner-advertise +/mobile/lele.html +||baitugu.com^$third-party +||lyd.com.cn^*950-90. +boniu123.cc##.left_side +||lardmoni.com^ +||cckke.com/fanhao/v/ad +@@||cy.com/hz/*/ad +||92uq.com/Ads/ +||chexun.net/images/sales//cxgg/ +||a.thn21.com^ +||eastday.com/static/js/*_ad +jinti.com##a[href*="tempurchina.com"] +||99tianji.com/hack/ +||yywh.vip^ +tzfdc.com##.AD_B +3jy.com,maolihui.com##.lad +##.Zi_ad_a_SB +||lotuscard.cc/online/ +||ebiotrade.com/newsf/js/inpic.js +down.ali213.net,patch.ali213.net##.picBg +expreview.com##.colbaba +pconline.com.cn##.block-jcz +ccav5.com##a[href*=".sinaimg."] +bimiacg.net##.tuiguang +||eouvxliw.top^ +||dfcfw.com/js/tg/rightAd_v2.js +||pop.wioau.com^$third-party +||123456.asia^ +yxssp.com##.td-main-content > div[id^="metaslider-id"] +dzbhdm.net##a[href*="sourl.cn"] +||szmnl.cn^ +jb51.net,makaidong.com##.topimg +||aiviy.com/assets/js/union.js +||swoole.com/_images/kundian +||downmz.com^$popup,third-party +||laozuo.org/wp-content/themes/weisaysimple/js/banner.js +||10086.cn/together/s?func=together:getAdvertInfos& +||av99.us/player/ad. +baixing.com##.poster-info-container + .side-block +||ptdofj.xyz^ +||itavcn.com/pic/news/*-90 +mail.126.com,mail.163.com##div[id$="_BannerDiv"] +||nxrajr.xyz^ +##.topads +||88lm10.com^ +sina.com.cn##.article-bottom-tg +||jsdelivr.net/gh/dashange123/ +||demifa.top^ +52zpi.com##.wenziad +||23qb.com/skin/style +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_live_widget +pptv.com##.mod_960x90 +||iuresdo.top^ +||kedou*.com/layer/layer.js +@@||aqy103.com/js/aqy/main.js +xchina.co##.outer-banner +###ads.row +||3h3.com/js/listad.js +@@||10010.com/mall/common/js/fa.js?referer= +u7u9.com###pangu_leftBottom +||micropage.cn/images/ad_ +/sbhf.js$script,third-party +||dsjkbcjsjkbvs.com^ +||safe524.xyz^$third-party +||honglingjin.co.uk/wp-content/uploads/*-Homepage-Takeover-BG- +mmff30.com##a[href$="/ref.html"] +||udn.com/common/iframe/ +||vdianying.cc/wp-content/plugins/wp-adblock-dedect/ +to8to.com##.layer-red-box +||lczk.cn^$third-party +||oschina.net/uploads/ad/ +||kpshx.douguo.com^ +||crnmyrk.icu^ +byxx.com##.byzwPC-banner-ADscroll +||efalid.top^ +17173.com###finalTuijian +@@||wandhi.com^$generichide +91wenmi.com###xiezuo +||lxting.com^ +?adunit_id= +||gg.miued.com^ +||ukkiftx.icu^ +||labuladong.github.io/algo/pictures/ad/ +##.link > .image[src*=".qhimg.com/"] +||9tata.com/js/Rand.js +||vevhjj.xyz^ +||youaima.com/rest/ +||valerieavisnba.com^ +||ghghgf.51dongshi.com^ +ettoday.net###mobileweb_inread +lanrentuku.com##.down_btn2 +@@||520cc.cc/jspopunder. +msn.cn##[class^="articlePage_eoabContent"] +@@||money18.on.cc/js/ad/liveinfo_page/ +||zikao365.com/upload/js/pfgg/ +||tengfangyun.com/attachment/*/w_1200 +||1.v-x.com.cn^ +duowan.com##.ui-business +||yje912.cn^ +jd.com#@#.adwords +||abcache.com/xc/image/ +itshokunin.cc#$#.adsbygoogle { position: absolute!important; left: -3000px!important; } +||wy213.com^$popup,third-party +||x.yaohuo.me^ +acglover.me##.myas +bilibili.com##.bili-dyn-ads +91porn.com##.preroll-blocker +||02wq.com/script/ +360doc.com##.clear360doc[style^="padding-top:"] +||acookie.*.gif? +||smallfo.com^ +||pznlpp.xyz^ +pilifx.com##.alltop +||ruten.com.tw/search/imp_ad_ +360.com###hotbottom_littlenav +@@||itc.cn/site/share/ +||ringingneo.com^ +||rmhfrtnd.com^$third-party +image.so.com##.commerce_txt +||bm.h576.com^ +||tui.gtimg.com//res/ +||falcon.pixnet.net/ad/ +||hm.baidu.com/mkt.js +||etyusiw.top^ +qiaobutang.com##.fixed-footer-wrap +||yg006.com/attachment/js/ +###swtleft[style^="position:fixed;"] +hkwb.net##.guanggao2 +liaoxuefeng.com##.x-sponsor +||imgchili.net/media/image*.gif +yesky.com##.rightGg +news.99k.tw##.entry-content > table[align="left"][style="width:360px"] +||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg +sex8.cc##.fnwehjnc12 +||biaoge.tv/fa +||enennsa.gushiwen.cn^ +dmzj.com##.ad_th +||imgchili.net/media/top.gif +dl.pconline.com.cn##.box-push +||gtimg.com/edu/0727abroad/duilian +supertaste.tvbs.com.tw##.ad_m_block +##.ad01 +@@/social-share.$domain=patentguru.com +||baidu.com/adpc/scrollTextAd.js +||wnojded.icu^ +||qiyipic.com/common/*/baiyao. +/alljs/alltop.js +||sbhduht.xyz^ +||mail.qq.com/lview? +||wpa.b.qq.com/cgi/wpa.php? +18comic.*#@#img[style*="300px"] +kekenet.com##.lp_r_bar:first-child +||movieclassic.net/pub/js_min.js +weishangshijie.cn##.w_bzb_1 +/h/k.php?u=*&l=*&v=$third-party +@@||libs.baidu.com^$domain=0794.org|12zw.net|1biqu.com|1kans.net|23hh.com|23sk.net|23wxx.com|33yq.org|3yt.com|4xiaoshuo.net|56shuku.info|777zw.net|81book.com|99mk.net|aiwx.info|aixs.la|aikushuge.com|bequmo.com|bimixsw.com|biqiuge8.cc|biqudu.tv|biquge775.com|biquge98.net|biqugecd.com|biquka.com|aidu123.com|biqutsxs.com|biquzw.info|bshuku.com|bxwx.live|bxwx.org|damengzhu1.com|gdbzkz.com|gdbzkz.org|hongyeshuzhai.com|ibiquges.com|ibiquges.org|ibiquta.net|ibotaodz.org|imianhuatang.info|ishisetianxia.com|ishubao.org|xvipxs.net|iwurexs.info|ixs.la|lewenge.info|liewenn.com|liudatxt.org|paoshu8.com|paoshuzw.com|pksge.com|qishuta.info|shu008.com|shumil.co|silukex.com|siluwx.org|sthuojia.org|tutengzw.com|u33.cc|wenxuem.com|x81zw.co|xbiquke.com|xdingdian.cc|xiaxs.info|xs5200.com|xszww8.net|xuanshu.org|xuessex.com|yqd6.com|yunxs.info|zjsw.org|zzs5.info +user.qzone.qq.com###qz_notification +m.babytree.com##.wrap > section[class*="4"],.wrap > div[class*="4"] +@@||95306.cn/public/images/ad/ +||s8bbs.com/g.php? +||dealmoon.com/upload/dealmoon_app.jpg +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > div:not([id]) > div[id][data-rendered="true"] +###bfad2 +||f23al.xyz^ +||1.codezh.com^ +ettoday.net#@#amp-ad +start.firefoxchina.cn##.mod-delay-resource +people.com.cn##.zh_left +smzdm.com##.J_index_wall +91porny.com##.jsv-g1 +||cod.southmoney.com^ +||csylief.top^ +ix8.la##div[class^="ADTOPLB_"] > .bd +##.xzad-list +||blog.sina.com.cn/lm/mini/ +||ammcg.imgscloud.com/toy/ +||qq.com/inc/utf8/nav/ad.htm +.com/static/js/ad.js +@@||lemall.com/adspace/ +.adsense. +||xzelzfnj.xyz^ +@@||airchina.com.cn/dynamicAd/ +||ipyhf.icu^ +rvlev.com,t66y.com#?#[class]:-abp-has(>a[onmouseover="this.style.background='#DEF5CD';"]:nth-child(n+180):-abp-contains(/赌|娱|澳/)) > :nth-child(-n+188) +firefoxchina.cn##.theme-adv + .bottom +||topmba.mobi/ad/ +eepw.com.cn###logoSearchNews + .marb10 +||drtyuigj.xyz^ +baidu.com###s-hotsearch-wrapper +159i.com###sop > div:first-child +||hujiang.com/Web/tx.ashx +||howbuy.com/subject/js/layer/layer.js +ithome.com#?#.bl > li:has(> a[href*="/lapin."]) +||fzd3.com/gg/ +||1.lishibu.com^ +||bbs.south-plus.org/images/masha5-1.gif +xitongzhijia.net###top_gg +swoole.com##.wiki-resource +/xxgg/0dd*.js +ci123.com###fixed-recom +||merywf.xyz^ +||baidu.com/adrc.$popup +m.toutiao.com##.banner-top +chuandong.com,instrument.com.cn,manhuabika.com##a[href*="/ad/"] +||ahgfdhp.xyz^ +||apk.tw/static/js/showpic.js +eastday.com##.gg_channel_r_b +||eastday.com/mmad. +||ganjituiguang.ganji.com^ +||gzhying1.cn^$third-party +||hqhspv.xyz^ +kkpan.com,qqtn.com,smzy.com,yxdj.com.cn##.u-gs-btn +||map.baidu.com^$domain=laosiji.com +||dopklb.xyz^ +mumu.163.com##.pic-con +playtv.com.cn###table6 +sogou.com##.ad_result +mini.eastday.com##.ordernumad +bbs.125.la##.ad-tips +dm5.com,dm5.hk##a[href*=".wannaplay.cn"] +||csdn.net/ggmm/ +tingfm.com#%#//scriptlet('set-constant', 'canRunAds', 'true') +||vabzndw.cn^ +||juqingw.com/js/tad +fx168.com###diaochaBox +||hxjs.tool.hexun.com$domain=~quote.hexun.com +ipv6.baidu.com,m.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#@##results > div[class]:not(.result):not(.result-op):not(.sp-rslt-bar):not(.s-group-result) +baiten.cn##.news2ad +hupu.com###HCFull +||cdgtw3.guapaijia.com^ +||kwtgntyu.xyz^ +||tencent-cloud.com/s9m1/54cb71aff82cfd690619065f2e31c346. +||ggg*.com/static/js/common.js +techbang.com###stickies +image.baidu.com###adsearch +sohu.com##.adB +||sohu.com.cn/ppp/bms/bms.popup. +||u26u.com^$popup,third-party +##.ad-300x250 +||fanyi100.com.cn^ +||frntzz.xyz^ +acfun.cn##.danmu-activity +||bcebos.com/contentAdSecend_ +qudong.com##.advert_bottom +yodu.org#$##byspider { display: none !important; } +51wangdai.com##.cx_xx_lis_c01_right_lis_c_ad +||ve0ke.icu^ +||rjwljrf.xyz^ +||virginiasibyl.com^ +##.cari-ads +/show_ads.js +||aclsx.cn^ +||ofebyk.xyz^ +||jc1.dayfund.com.cn^ +eeyy.cc###div_dn +||vansky.com/agdg/vans/*_top +||kan98.com/statics/js/k2017/kan98.js +85wp.com##.top-ad-img +||a.dxzy163.com^ +||wnmaoc.xyz^ +||isso.com.cn/club/adv +||damiul.icu^ +||fhcmeiju.com/template/DYXS2/html/1. +||ddlmsoyo.icu^ +||ds1.kaijia.com^ +||p0y.cn^ +||doujs03.shop^ +||3dmgame.com/img/a/640- +||oschina.net/uploads/cooperation/ +##header + #main:nth-child(n+4) .container-fluid.mb-0.p-0 +||k1.dancihu.com^ +av.movie##.adss-160x600 +||yuwangshe.net/astyle/wap. +maxthon.cn###shopping +||e.changyan.sohu.com/dataService/getData? +3dmgame.com##.addvide300 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.bus-top-activity-wrap +||mp4ba.com^*/js/head.js +sm.cn##div[id*="_Shopping_Etao_"] +||kwerilxd.top^ +speedpan.com###float-window +||click.taobao.com^$popup,domain=steamcn.com +chaicp.com##.Icp-Ad +||abab.com/pv.js +xvideo.cc#%#//scriptlet("set-constant", "poped", "true") +||uc9.suinidai.com.cn^ +||msg.iqiyi.com^ +ruten.com.tw#@#.adslot +||corcztpc.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl="b2b_straight"] > .c-border +||ihwlek.com^ +/os230718.oss- +||cdmnlxtu.xyz^ +china.cn##.lianmeng_search +9ht.com##a[href*=".360.cn/"] +kdslife.com###mainRightTopAd +||cpt.9136.com/img/b_special/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###plat_order_head +||mjappzvz.xyz^ +||szmnm.cn^ +||louimg.com/u/20191214/17512133.jpg +baidu.com##.result-op[tpl="game-page-right-openservice"] +||fujnrh.xyz^ +yfsp.tv,aiyifan.tv,iyf.tv#%#//scriptlet('abort-on-stack-trace', 'Object.prototype.pgmp', 'invokeInterstitial') +||d*.ruiwen.com^ +||aiwen.cc^ +tieba.baidu.com##.j_post_list_item[data-info^="\7b \"un\":\"\\u623f\\u4ea7\\u901f\\u8baf\""] +||jp2468.com/addon/ +olevod.com##div[style*="%;float: left;"] > a[target="_blank"] +||jbkqemk.icu^ +||amazononline.xyz/mp4/*.mp4$rewrite=abp-resource:blank-mp3,domain=iyingshi7.tv|localmv1.com +ltesting.net##.ltad_1170 +sciencenet.cn##.mbanner +/avple-images/ad_ +###adUrl +||amazonaws.com.cn/static-documents/marketing/uda_banner_ +@@||gg.wudizuqiu.com/72nba.js +||count.iyaxin.com^ +@@||jbprogramnotes.com^$generichide +||sjalipa.cn^ +||is686.com^$third-party +@@||rosefile.net^$generichide +huanqiu.com##.right-box > article-other-template +||qinjgh.icu^ +damon624.pixnet.net##.article-content-inner > p:has(> span > a[href] > ins.adsbygoogle) +###syad6 +phpvar.com##.aliPic +||00eeekk.com//html5/activityPage/ +pincong.rocks#%#//scriptlet("prevent-setInterval", "Ad Block") +@@||pub.network^$script,domain=creaders.net +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > div[id*="00"]:not(.result):not(.result-op) + div[class]:not(.result):not(.result-op) +i-part.com.tw##a[href*="goo.gl%2FW9SXr1&"] +linux.cn##a[href^="https://linux.cn/go/"] +baidu.com##.app-guide +ifeng.com,vsping.com##.ad_01 +.me/gg.js +||d1.yingyongge.com/production/*/production/ihth.js +52vfx.com#@##head_ad +bilibili.com###fixed_app_download +||gedxssashb8.fun^ +||zhuwang.cc/api.php?op=ad_ +kshot.com##div[id^="read_m_yytf"] +||ip138.com/idc/ +gmw.cn##.g_adMain +@@||china.com/dianbo/adv1.xml +||zmfcnlvu.xyz^ +2345.com##.act-search-tab +cnr.cn,jxcn.cn##.min-news-box +league-funny.com##.widgetBox.w728Bottom +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:-abp-has(>ins+div) +||qdcxia.xyz^ +##.wp_headline + .ad1 +||canimgs.com/images/ +||18183.com/common/js/side.js +||stylishar.com^ +blog.163.com###topbar_lofterDldArea +||alicdn.com/app/wxbpromotion/*/js/cpm/cpm_jq.js +hackhw.com##.widget_content_b +||fefwe334.fun^ +||vns86.oss-*.aliyuncs.com^ +bjcxqd.com##.box-vdgd +||doujs01.shop^ +hacpai.com##.index__ad +||a.nowscore.com^ +||chinaz.com/sc_images/sc_font.js +||bebxhcip.icu^ +164580.com##a[class^="listindex"] +##.jq_infoflow_ad_wrap +||pchome.com.tw/js/fancybox/ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div:not([id]) > style[id^="s-"] + div[id] +||nhcdn.cn^ +@@||dizhi99.com^$generichide +hao.360.com##div[id^="rightBottom_"] +||lvphbj.xyz^ +||btcfans.com/template/comiis_lssy/ad/ +||xiexingcun.com/tongji.js +||ankczwr.icu^ +pixnet.net###pixblogad-banner2 +||sosakk.xyz^ +||qishula.com/css/wap. +||jyxzrb.xyz^ +||a.tuizhuti.com^ +520cc.cc,v.5278.mobi,jizz99.com,bonbonyou.com,in99.org,av99.us,jav777.xyz,520call.me,hboav.com###inplayer +423down.com##.entry > p[style="font-size: 20px;"] +||batijian.com^ +jr31.xyz###hd + .wp +||sbovgy.xyz^ +6parknews.com##.other_list_ad +||ajybgc.xyz^ +||godloveme.cn^ +||wrutvnce.top^ +||lnzqw.net/js/ +||17173cdn.com/20*.mp4$redirect=noopmp3-0.1s,domain=17173.com +||bcebos.com/59x360x528.gif +||17gameworld.com/gmifr_lei. +baidu.com###ad_xbox_2 +chengdu.cn,oeeee.com,ofweek.com##div[class^="ad-"] +duba.com##.J_side_activity +##.popup + .shortcuts-mobile-overlay +||q4v3c.site^ +||bkjia.com/bkjia/js/art_rightad +/yinghua4567/*.js +56.com##.xiu_mm +||dm.66qw.net^ +||iossdok.com^ +diyifanwen.com###ArtTl +zuimeia.com##.activity-poster:not([href*="zuimeia."]) +||share.gzdsw.com^ +##.nQIAj +codejie.net#@##google-ads +||utkauo.xyz^ +cnxz.cn##.showad +||china.cn/js/common/daniel_pop/ +||cwgucvm.icu^ +||hy.huangye88.com.cn^ +||se533.com/template/new/css/*.js +csdn.net##.edu-promotion +||nanrenfuli.*/zb_users/upload/ +||jyjrbz.xyz^ +||ytjzqde.xyz^ +||cctv5.name/images/js/indextop.js +||8bobf.*/da.aspx +||4gamers.com.tw/site/api/aols/media? +liepin.com##DIV[id^="nodetpl_g_"] +||yxdm.*/js/ddetector.js +||bdstatic.com^*/container/module/bottombanner/ +||zoltrl.xyz^ +gxeea.cn##.m-wrap-school +tool.lu##.recommend-container +||u1033.com^ +||ah.sina.com.cn/iframe/ +||wxc.cc/scripts/gg. +chjtx.com,fooish.com,jqgcw.com###ad +cnqiang.com,jxedt.com,sohu.com##.ad640 +||qeeocy.xyz^ +||tzyzlow.cn^ +baidu.com##.s-nativead-item +pornlulu.com##.row.links +midifan.com##.mid-aaa +||hnalzlu.top^ +||fpgonuk.icu^ +||og.zyzjpx.cn^$third-party +||21uscity.com/static/allbusiness/ +360che.com##.adver1000_65 +||dsad234.fun^ +qinbing.cn##.day +||666579.xyz^ +||zdnet.com.cn/js/pv.js +||rainpat.com/Content/1360x55/ +||yv8zs.online^ +###asdw +qianlima.com###bg +###toperAd2 +kmf.com##.g-kmf-906banner +||wanwan.sina.com.cn/sinasupersport/back/ +58cam.com###append_parent +||so.com/recomm/simi? +##.ad990x130 +@@||ad.abchina.com^ +||bxoaeju.icu^ +/macplus/ads/* +m.so.com##.e_idea_list +||u25022.com^ +fh21.com.cn###lbzxM +##div[onclick*="/ky"][onclick*="open"] +zhihu.com##.AppMagicBanner +titan007.com###table_live > tbody > tr > td[height="18"] > a +||wildwist.com^ +||stusnais.com^ +||fmvzzh.xyz^ +||d13jhr4vol1304.cloudfront.net^ +@@||tmall.com/add? +fapiao.bangnimang.net#%#(function(){window._czc={push:function(){}}})(); +ganpapa.com##div[class*="_9cb0d"] +acfun.cn##.banner-href[href^="http"]:not([href*=".acfun."]) +youmelive.com###b2-widget-html-2 +brtn.cn,btime.com##.seed-item +||vxpdfb.xyz^ +||tsdmw.net/img01/MP3/pm_ +ettoday.net##.ad_readmore +||kanbook.net/static/js_union/ +@@/adLoader.$domain=shejiben.com +zhihu.com##.Card.Banner +angelweb.cn##table[height="250"] +||ycgkol.icu^ +||statics.woozooo.com/img/*.js$domain=lanzous.com +||365rich.cn/ba.aspx +||jxnews.com.cn/first/js/home/index_ad +@@/advertise/*$domain=ceair.com|sfbuy.com +##.adclass +smzy.com###showa +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_frs-aside\/pagelet\/fengchao_ad +||wxmmji.xyz^ +||rkanr.com/data/cpcache/cp*.js +||kgubus.xyz^ +||u1.idongde.com^ +porn5f.com##.mobframe +ent.163.com,war.163.com##.hotset +@@||tbcdn.cn^*/click_track.js +||zghsep.icu^ +78dm.net##.aside-add +||pstatp.com/obj/game-files/e30c81a77b8c2d45ca8d6f99aae969dc +58b.tv##.closead +||hspdiom.cn^ +||plecnyz.icu^ +||jwerioa.top^ +github.com##a[href*=".aliyun.com/minisite/goods?"] +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_frs-aside\/pagelet\/ad +||weihaojiaju.com/tu888/ +@@||12306.cn/otn/resources/images/pic/new-ad +163.com##.fixed_foot_ad +ydss.cn###indexBlad +bbs.fobshanghai.com##.t_infoline +@@||qq.com/html/mms/nativeads/game_rank.html +||69adu.com/bootstrap. +||zwlxnj.xyz^ +qdmm.com###page-ops +##.top-gg +||trends.com.cn/k.js +eol.cn###small_adright +||titan007.com/ad/ +||aolusb.com/forever/ +||u1.qyxxpd.com^ +aihami.com##.context_ad +baidu.com##.lianmeng-pause +||sxoejoc.icu^ +||airav.cc/AirADPic/ +rvlev.com,t66y.com#?#[class]:-abp-has(>a[onmouseover="this.style.background='#DEF5CD';"]:nth-child(n+190):-abp-contains(/赌|娱|澳/)) > :nth-child(-n+195) +@@||papalah.com^$generichide +||hackhome.com/js/bhref.js +huya.com,av1868.com,edc1014070.pixnet.net###banner +||tkbbjtfp.xyz^ +||seqing.world/qq/qq.js +||dy2018.com/js/tj.js +@@||520call.me/ad/ad_1.php +||yijiuningyia.gushiwen.org^ +@@/site/ad/*$domain=islide.cc +||knuinws.icu^ +||ddkh59.com^ +||bdjs.gushiju.net^ +@@||tracklog.58.com/referrer$~third-party +/sidebar_ad_ +||tdfqvx.xyz^ +uc123.com##.m-link +news.baidu.com#?#.index-list-item:-abp-has(.tip-time:-abp-contains(广告)) +/js/yzgg.js +||abqdgu.xyz^ +le.com###a_body_11628 +://ads. +||eastday.com/jrdftt/static/javascript/ad/ECommerceAd. +92ghai.com##.yttl_x_g +ebiotrade.com###dlBoxs +||a.bfking.cn^ +||discuss.com.hk/oath/ +||laozuo.org/banner/linode +m.86kl.com#%#//scriptlet('abort-on-property-read', 'akumtagcc') +||hlstlyy.com^$third-party +:18443/*/*-*-*.js$third-party +||autohome.com.cn/api/lives/getliveroom?$domain=~live.autohome.com.cn +heartinkstone.pixnet.net###spotlight +##.top > div[style="max-width: 1235px; width: 100%; text-align:center; margin-left: auto; margin-right: auto"] +muchong.com###creditegg +||bcc.com.tw/imgs/adv/ +da-fan-shu.cn##div[style*="468"][style*="60"] +.html?ad_ +pcgames.com.cn##.aFollowb +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_left > div:-abp-has(.ec-tuiguang) +newsmth.net##.ns-ad +||stat.v.17173.com^ +||sinaimg.cn/finance/qihuofarm/ +aaread.space##div[style^="position: fixed; bottom:"] +||fh21.com.cn/partners/ +||buvdkt.icu^ +##.widget_ui_textasb +/jun0120211112090740. +||xygwh.cc/js/p +3dmgame.com##.modAD +||vercel.app/ads/ +||lf9-static.bytednsdoc.com/obj/tos-cn-i-0813 +##.ad-right-top +||beezwol.com^ +jandan.net##.post[style="padding-left:150px;width:336px;height:280px;"] +3boys2girls.com###div3_display3 +||enkvum.xyz^ +||yimg.com/cv/api/hk/fp_czy_ad/ +||kaolashuwu.com/zb_users/plugin/ZF_tanchuang/ +||9tata.com/js/topxia.js +gamme.com.tw##.adwrpt +||139xiaoshuo.com/css/js/tools. +||yigujin.cn/wp-content/themes/Three/js/dibu +||189.gd^*.html$third-party +||tqbrnd.xyz^ +m.mydrivers.com###content > .ab +||mat1.gtimg.com/2014/webtips/ola2014tips +oschina.net##.jj +###QEff2 +2345.com##.acts11-sidefixed +||gklox.cn^ +@@||51hanhua.com/2013/brtxt.js +||guangzhoubingqing.com/88888.jpg +||yundaquan.com/data/attachment/portal/ +gmw.cn##.ad_pics +meijuniao.com##.player-ad1 +||shaquevip.oss-cn-zhangjiakou.aliyuncs.com^ +iyaxin.com##.Information +wnacg.com#@#.Text-Advertising +||s3.amazonaws.com/dmas-public/sitemaji/vast.xml$domain=dailymotion.com +||goole20.shop^ +@@||luoxiadushu.com^$generichide +@@||mmgd.xyz^$generichide +##.ad_zone +||iqs871.com^ +||zhihu.xmcimg.com^ +||key8.com/cache/www/banner_ +onlinedown.net##.king-soft-area +##A[href*=".com/?Agent="] +||a.jyeoo.com/js? +||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg +zhibo8.cc##div[class*="advert"] +||qcsvku.xyz^ +||hkcoding.com/img/ +@@||poedb.tw^$generichide +taobao.com###J_ActivityOut +wnacg.com##script + div > a > img +boylove1.mobi##.div_sticky2 +##.gg_728 +news.pchome.com.tw##div[style="width:300px;height:600px"] +||ohtusgy.icu^ +/app_ad/slade.js +||alicdn.com/img/ibank/*_2114606112. +stock87.com##a[href^="http"]:not([href*="stock87."]) > img[src*="uploadfiles/image/"] +gdmm.com##.adtop > .module +muchong.com###mask +.xyz/*=$object,third-party +/ggclass/* +sports.qq.com##a[href^="http://market.1hai.cn/"] +6parknews.com##div[style="width:990px;height:140px;margin-left:auto;margin-right:auto;text-align:center;"] +splaybow.com###divPrevious:last-child +||lofter.com/blogPhotoAd? +yx.kimg.cn##ul#feedList > li.feed-list-ad +||ue8im.com^ +###adsense +||goupu.org/1files/*.gif +auto.ifeng.com##.acquire_1 +||koyso.com/static/js/abc. +qzone.qq.com###appCanvasTaskMarket +autohome.com.cn##.activity-coin-layer +||img.yangshengtang123.com^ +firefoxchina.cn##.w-full[track_key="adv_top_banner"] +qilindao.com##.tonglanAd +assbbs.com###ass_adv +jiegeng.com##.large2small +360kuai.com##.k-float-btn__qrcode__body +||lagou.com/js/cooperation/ +||hty9m.cn^ +:8080/ad/ +||btsgroup.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [id*="00"]:not(.result):not(.result-op) > ul +||wpmdeo.xyz^ +sports.qq.com##.scr-login > .cnxh:has(> .videoDiv #hotvideo) +||cismqdx.icu^ +##a[href*=".ww1425pw.vip"] +cowtransfer.com#@#.socialButton +||fun1shot.com/images/qrcode_wechat.png +duba.com###one-mid +||baijs07.xyz^ +||retrieval-bd.duote.com^ +baidu.com##.ec_pc_ad +yaociyuan.bid##.w-ad +edh.tw##.popin_ad +daohang.qq.com,hao.qq.com,sogou.com##div[id^="AD_"] +suning.com###sn-sidebar-change-code +||nongjitong.com/adm/ +@@||securepubads.g.doubleclick.net/gpt/pubads$domain=line.me +zhainanba.org##.marauto > p[style="text-align: left;"] +||maiche.com/iframe/rank.html +jin10.com##.side-module-2 +cls.cn#@#.share-body +||2114.com/api.php?a=get_adv +||zhzyw.com/js/InsertJS.js +||23bei.com/static/plugins/layer/layer. +||cnfol.com/tui/ +||qyun.vip/pic/*.gif +@@||hao123img.com/resource/zt/widget/service/util/clickTrack. +||3dmgame.com/templets/xiazai/g +starbaby.cn###yindex_ads +cjn.cn###slidelr +||17173.com/advideo/ +||zhuys.com^*.php +||920share.com/wp-content/uploads/*/911 +||itsmore.cn^$third-party +||caoporn.com/images/bmqp +itavcn.com##.advzone +eastmoney.com##.head_adbox +yahoo.com###hp-ad-left +mini.eastday.com###dsp_btxf +||gamefy.cn/cookiead.php +av1868.com###totalStationAD +bejson.com##img[src^="data"] +||uicdns.xyz^ +@@||lnk2.cc/js/ad_code.js +||achicih.gitee.io^$third-party +eastmoney.com##div[data-url*="same.eastmoney.com"] +##.side-ad +dshangyan.com##.advHeader +zhidao.baidu.com###main-content > div[class]:first-child > a +||cn.ntdtv.com/assets/themes/ntd/js/article_ads.js +||skads.gxsky.com^$script +||ikaka.com/globalad/ +/ylnew/*.js$image +||lumnxiel.top^ +||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument +elecinfo.com##div[class$="-advert"] +sohu.com##.x-adv-linear-panel +sgcn.com##.bigaimg +||go.kbnmnl.com/api/models/vast +||chinaslauras.com^ +||2324av.com/zz/ +e0575.cn##a[href*="/showad.php?"] +@@||eu4cn.com^$generichide +jiemian.com##.app-open +||biquge96.com/123. +||fx110.*/Styles/1.0.0/dist/Ghz/MatrixAds. +@@||service.4gtv.tv/4gtv/Data/GetAD.ashx +||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js +7down.com###btndowns +||alicdn.com/img/ibank/*_330044705. +@@||bytedance.com/ttwid/union/register/ +||dktad.com^ +||1.kuaidiwo.cn^ +||car.pchome.com.tw/iframe/news_iframe. +||blue-rain.com.cn^ +|http://*.cn/ad/ +||lcxw.cn/d/js/thea +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###questionnaire_bg +||94994.com*/js/plugin/shoppingMall/ +||ccoo.cn/mystat.asp +mobile01.com#?#.l-articlePage:has(> .l-articlePage__author .c-authorInfo__id > a[href^="/marketstore.php?"]) +||dnwx.com/pic/*_978x60. +jiemian.com##.header-container > div > section[style="width: 100%;"] +||a1.firefoxchina.cn^ +||daiyanbao.com/flash/md +||fmfnrf.xyz^ +||gtimg.com/newsapp_ls/0/13369140468/0 +||adt.xdrig.com^ +||qwe0231141.bj.bcebos.com^ +my0511.com###dbdcc +||duapp.com^$domain=bjmama.com|ccav1.com|gzmama.com +pincong.rocks##.a-a +qq.com##.member_ads +||yccz.net/xml/ +||hsi2i.fun^ +||www.dmhy.org^*.*?$image +||z1hihu.xmcimg.com^ +##.adv_right +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game-head-game-info-wrapper +||114la.com^$third-party,domain=~ylmf.com +hg6384.com-www.6u7u.com##.advert +$third-party,websocket,xmlhttprequest,domain=qiyoudy2.com|qiyoudy4.com +@@||cnr.cn/gg/ +e2mv.com##.left_advert +weibo.com#@#.retweet +###lovexin121 +boke112.com##.qa-pc +@@||xiuren.org^$generichide +||76wmm.com:8888/js +||behvgsik.icu^ +baidu.com##.apphint +||cloudflare.com/ajax/libs/jBox/$domain=localmv1.com +cpnn.com.cn##.adverd-top +||uekmhvbb.xyz^ +sina.com.cn###AD_Background_Wall_BG +||88lm06.com^ +www.qq.com##div[class^="adRight"] +||haiyuer.com/nb.js +novipnoad.com##img[src*="/bd/"] + span +||3azpx.xyz^ +||yigujin.cn/wp-content/themes/Three/js/singley +airav.cc##div[id^="Billing"] +bilibili.com##.video-page-game-card-small +wenxuecity.com##.sharewechat + .otherposts +||ypdronhu.xyz^ +51zxw.net#%#//scriptlet("adjust-setTimeout", "adCountDown", "", "0.02") +||totheglory.im/pic/ttg- +v2rayssr.com###gg-box +||ydybwjpa.xyz^ +||ldgjwdohqbi.xyz^ +/template/js/adsData.js +||fang.com/house/ajaxrequest/adverTlGet. +eol.cn###adfloat_r +||mamjkg.xyz^ +chinese.engadget.com##.spotim-recirculation div[data-spotim-row] > div[data-spotim-slot-size="300x250"] +||gz-chengkao.com/js/duo.js +/proxy.html?id= +||voc.com.cn/js/xc/ +jbaaza.com##.notice-img +weihemenye.com###popup_bottom +my0511.com###toplmad +/sda/*$domain=chineseinla.com +12306.cn,club.pchome.net,kdslife.com,qinbing.cn###slideBox +||3g.qq.com/lview? +/images/sgcrwj*.jpg +||orzx.im/Document/union/ +##.ad_right +ifeng.com##.ad1000_box +freedidi.com,ottawazine.com##div[id^="text-"] +||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js +sm.cn##a[href^="http://m.sm.cn/adclick?"] +@@/ads/*$domain=189.cn|95516.com +||4hw.com.cn/js/common.js +bjd.com.cn##.screenad +myday.com.tw##.myday_ad_left +forum.gamer.com.tw##.a-mercy-d +||sinaimg.cn/sports/20214c6d/20181128/880_110.png +||itavcn.com/images/2012/ad_ +ssr.tools##.sidebar > div.widget > div.item > a[target="_blank"] > img +digitimes.com.tw##.dt-ad-block +###hfad +/getcode.jsp?uid=$script,third-party +/static/adsview/* +##.top-ads +||kuaidi100.com/js/share/i_new.js +||atorks.xyz^ +sbdm.net##div[id^="content_box"] +||gsjdzx.com^$third-party +||yxptcrss.xyz^ +jianshu.com##section[class][aria-label="ad360-ad"] +/js/profit.js$~third-party +onlinedown.net##.g-huodong +||lkuygf.top^ +||hanlinzhijia.net^ +iqihang.com##.xf_right +||wit.qq.com^$third-party +||391k.com/pc/gg/ +##.ad-area +||mpb1.iteye.com^ +yii666.com##.widget-asst > p > a[href^="http"]:not([href*="yii666.com"]) +@@||chinacourt.gov.cn/share/jquery/plugins/adbox/ +cqnews.net##.taobao +||codejie.net/img/xiandai.gif +mydown.com##.fc_anqDown +//m.manhua123.net/js/com2.js +||uvyuqzx.cn^ +||southmoney.com/page/pc/ +storytrain.info##.responsive_ad +||pcvideoyf.titan.mgtv.com/pb/*.mp4 +||yea.im/5ht.gif +###table1[width="812"][height="50"] +||dwbfqmz.cn^ +dayanzai.me,yuepuwang.com##.topban +||duba.com/level2/rmd.js +||icaile.com/z.php?id= +||two.fsylr.com^ +||m2k3j7x8.com^ +woman.tvbs.com.tw##section[aria-label*="advertise"] +/A-duoduo/Add- +://api.*.com/sh/*.js$script,third-party +||frontendjs.com/api/ad +21uscity.com##.ad300x60 +ooopn.com##a[href*="/jump.html"] +/tps/noexpire/* +||jhl1993.cn^ +||6slb0.cyou^ +||pingwest.com/api/news_ad +zhangxinxu.com#?#:-abp-properties(display: block;*width: 336px;) +||urueuah.cn^ +||sinaimg.cn/unipro/ +v2ex.com#?##Rightbar > .box:has(> .inner > .adsbygoogle) +||258zw.com^$third-party +examw.com###kefu_in +sogi.com.tw#?#.editable > div.text-center:has(> div.d-inline-block > div[id^="div-gpt-ad"]) +##.aub-post +@@||alicdn.com/??*/tracker/ +/adinfos?*&ane=pic1 +||yxdown.com/zt/zt/js/zt.js +so.com###mohe-biu_gouwu > .g-card +||baidu.com/gamebox? +||weiyun.com/proxy/domain/boss.qzone.qq.com/fcg-bin/fcg_get_multiple_strategy? +/pushportal/PushPortalServer$popup,third-party +||apple.www.letv.com^ +||eastday.com/k.js +||gamersky.com/common/tg/ +||m.ercos.cn^$third-party +||jedlnn.xyz^ +##a[href*="/dsf71.cc"] +wenku.baidu.com##.reader-to-cashier-vip > .rights-wrap +||dio889.net/images/*.gif +###my-adsFPR +###ad_1 +||51xuediannao.com/uploads/un/ +yfsp.tv,aiyifan.tv,iyf.tv#%#//scriptlet('abort-on-property-read', 'Object.prototype.ShouldLoadAds') +##.couplet_9cb0d +##.wp.a_h +###ljPz +douyu.com###sign_p_1 +||baidu.com/WerbungAjax/getBeitou? +||174.123.15.43:8080 +now.com#%#//scriptlet('set-constant', 'preBid.getPrerollVASTUrl', 'noopFunc') +||xxffo.com^*_slett.php +||ub1.job592.com^ +||1010pic.com/scripts/hd/yueyue +||sdklcnskvbks.com^ +slashlook.com###AdvertisementBottom +||3dmgame.com/sw/zjworld/js/index. +##.s.u.m.o.me.scrollbox-popup +||qhyy8.com/template/default_wap/html/public/img/*.gif +poklw.com##img[alt="恰饭广告"] +||mscs.svaeuzh.cn^$third-party +kelatv.com##a[href^="https://www.kelatv.com/api/go."] +@@||google.com/translate_$media,third-party,xmlhttprequest +||cbfw.cn/gonggong/chibi/cf_ +91porna.com##.row > div[class^="col"]:has(> .video-wrap > a.checkNum) +||aa993366aa.com^$domain=9xav.cc +||df888.eastday.com^ +pc0359.cn##.soft_down_tg +131458.com###header_gg +||sozi.cn/images/tj/downad +||2345.com/js/m/common/top_information.js +||ecimg.tw/img/xdsys/*/layout/*/sign/channel*/ad_*.jpg +hamibook.com.tw##.custom-banners-cycle-slideshow +||cdnjs.z-face.cn^ +||gtimg.com/finance/js/st/p/quotpage/maxcard_ +||crutvncf.top^ +||hc360.com/security/201409/201409021830024990.jpg +tianya.cn##.barcode-float +csdn.net##.banner-ad-box +||7moor.com^$third-party +jspoo.com##img[id^="float_img_"] +##.bg > img[src*=".meituan.net"] +||fpbsnc.com/Runtime/js/psData.js +ifeng.com###js_videopause_container +2234.cn##.btngs +||fortxfq.cn^ +ganji.com##.fl_pop +25xz.com##.p_ads +youdao.com##.dict-dl +mnews.tw##.ad-container-pc-only +||ifengimg.com^*/sta_collection +||28.com/countnew.js +||dxfidr.xyz^ +pcstore.com.tw##.priority1 +ipcelou.com##.MODBanana +||shaoxing.com.cn/gg +||ayebsc.xyz^ +start.firefoxchina.cn##.wrap > div[style]:last-child +973.com###a0 +||53kf.com^$third-party +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_l_post[data-field*="\"user_name\":\"\\u4e3f\\u5929\\u4e36\\u4e4b\\u6b87\""]:not([data-field*="\"user_id\":1180601200,"]) +||snmi.cn^$third-party +angelweb.cn###G640x60 +://dreemdmbabys.oss-cn- +||picgd.com/images/2018/12/01/h1pi5.png +||yuanbao777.com/download/*.gif +eyuyan.com##div[id^="ads_r_"] +||huyaimg.msstatic.com/cdnimage/roomad/ +||onmstgh.icu^ +||56img.com^*/search-engine-promotion.js +||a.tiyuxiu.com^ +||6665432.com^*.gif +ifeng.com###sideBar[class^="box_"] +58.com#?#.ac_item:-abp-has(.jingpin) +776dm.com,qiqidongman.com##.topAA +||caoporn.com/ggs.php +qidian.com##.ad-shell +youku.com###bt-banner +bejson.com##a[href*="layui.com"] +zhaohuangpian.net##a[href="https://galaxymedia.xyz/app/"] +||3344xu.com/js/ +mp4ba.la##td[width="300"][height="300"] +iask.sina.com.cn##.sj_300x250 +||wbvfj.xyz^ +||redshu.com/js/pcAdv.js +||zmvopcio.icu^ +||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com +||soorbka.cn^$third-party +||dmnqfn.xyz^ +||qq.com/game/footerbar$subdocument +||eeyy.com/otherhtml/js/ad650.js +||qfaaokr.icu^ +||duba.com/static/v*/js/tiyan*/ad/ad.*.js +##.listok > a > img[style^="width:980px;height:"] +||unpkg.com^$badfilter +||ebrun.com/jfile/position/js/*.js +||buy.sina.com.tw/js/sina_popup.php +||mydrivers.com/www/gg_ +r3sub.com##source + img +||huaiduoduo.info/Runtime/js/ +||tozwrqnq.xyz^ +image.baidu.com###plz-head-banner +163.com##.idx_tonglan_ad +||yhgpuxim.xyz^ +||falcon-asset.pixfs.net/js/adsbyfalcon.min.js +||4080kan.com/js/bc.js +||baiyug.cn^*AD.js +@@||adserver.juicyads.com/js/jads.js$domain=netflav.com +sojson.com##.fly-hezuo +playno1.com##.eis_adv + .eis_mtm +ludashi.com##.div_mask +xueqiu.com##.ad-right-aside +91duba.com###leftBar +ks.js.cn##.height60 +||alicdn.com/img/ibank/*_1281922417. +||boyloves.fun^*/img/20*.gif +||lnxkrd.xyz^ +||zpiyi.com/public/js/global.js +||hiad.vmall.com^ +kkw360.com##a[href^="https://sourl.cn/"] +mrmad.com.tw#?#div[id^="mrmad-"]:-abp-has(>.adsbygoogle) +||docer.org/static/utils/jquery.min.js +@@||v2rayssr.com/wp-content/plugins/dh-anti-adblocker/public/js/prebid-ads.js +||bbs.a9vg.com/showit/img_show.php +||ysm.ezprice.net^$third-party +||waouss.xyz^ +||pxtjfmv.xyz^ +||oodcd.cn/pan/config/ad.json +||pingmeibang.com/zt/zx.jpg +m.baidu.com##.ec_adv +@@||lager.com.tw/images/layer6_adbanner/ +||hubgets.cn^ +tgfcer.com##div[id^="ad_thread"] +mp4ba.la##.hd + table +@@/WebAd/*$domain=yongyoujia.com +bingfeng.tw##.wow-ad-link +||panjin.net/ichat2/adhtml.htm +||hoopchina.com.cn/web/widget/partner/*/promote.js +ysgc.fun,ysgc.tv##.myui-panel_bd > div > a[target="_blank"] +||7x7n.com/static/pic/*.jpg +##a[href*="/uu5566.cn.com/"] +##a[target="_blank"] > img[src*=".bitautoimg.com/"][src$=".gif"] +99syy1.com##div[class^="ps_"] +##.fixed-bottom.jsv.jsv-g1 +sina.com.cn##.center-pdps +||bd3.chuiyue.com^ +||drjs123.com^ +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.tb_poster_placeholder +||pwxlbsie.icu^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.op_tvplay_main +||bgbqfqwi.xyz^ +news.pchome.com.tw##div[style="width:300px;height:450px"] +ghoffice.com##.tac > a > img[src*=".gif?"] +||mgmuye.xyz^ +m.lelekan.com##div[id^="myads"] +||bt.ktxp.com/iframe/statistics.js +||usvkfwth.xyz^ +minhangcidian.com##div[id^="googleAd"] +image.baidu.com##.wrapper_dot_box.dot_black +elecfans.com###topJf +lenovo.com.cn##.video +||ciimar.icu^ +##.ggpost-below +dy2018.com,xiaopian.com##a[href*="/htmlcode/"] +||adjb.5nd.com^ +3g.qq.com##li[data-adtype="qbad"] > a[class^="type"] +7k7k.com###flashAds +||nmgnews.com.cn/sys/online_calc.js +||163.com/q?c=*&t=wap_stream&l= +miaopai.com,renren.com##.swiper-container +pcsoft.com.cn##a[onclick*="_ad"] +||cthbini.xyz^ +netfly.*,netfly.tv##div[class*="tt-"] > a[target="_blank"] + span.tt-icon-close +@@||fm.p0y.cn^$domain=ipinyou.com.cn +||ads-union.jd.com^ +||3601880.xyz^ +263y.com##.view_abc +||alicdn.com^$image,domain=m.k1k.cc|thcdy.co|27k.cc|1024pa.com|hg6384.com-www.6u7u.com|4080kan.com|dy686.net +||rayli.com.cn^$third-party +||w3xue.com/js/pro541.js +##.pure-g[onclick*="float"] +||oapyrzde.xyz^ +pythonthree.com##.sidebar-main +||zacveh.com^ +huaren.tv##.live-client_left +||greenet.cn^*_popu_$popup +morningpost.com.cn##.gg-2 +oschina.net##.aside-topjj +||ikuailian.com^$third-party +||tklivechat.com/widgets/$third-party +##.plc > .a_p +ifeng.com###CA_right +||pfjfjid.xyz^ +||516qq.cn/theme/dd/ +||lsforum.net/cam2/*.gif +||lutouwang.net/static/images/boss_gao_hb.jpeg +@@||chinamobile.com^$generichide +||xiaoweixiaoshuo.com/ad/ +||78dm.net.cn/acg_201*_650 +wenku.baidu.com###ggbtm-ads +||gywb.cn/gggl/ +@@||210.40.130.91^*/ad.css?$stylesheet +||iqiyi.com/track +yjcf360.com##.side_box +||fijipic.xyz^ +||s.yimg.com/ma/auc/common/js/ext_y_straas_shell_*.js$domain=tw.bid.yahoo.com +pconline.com.cn###smallHB1 +gamer.com.tw,pili.com.tw#@#.text-ad-links +=ajaxGetAds&type= +||vhgunzr.cn^ +||u21033.com^ +zhangxinxu.com##div[class^="col-left"] > a[href^="https://item.jd.com/"][style="display:block!important;position:sticky;top:0;"] +benyixiwang.com##p img[src*=".dlssyht.cn/u/"][title] +||txzepl.xyz^ +||cuvtnzv.cn^ +||alicdn.com/kf/U693ffd2a78ac452895488e4e5426554cA.jpg +||fczunn.xyz^ +://*.tv/ad/$domain=~moviedj.tv +||a.10tianqi.com^ +mm-cg.com##.TW_UTtoy +e-learn.cn##.region-sidebar-second > .block:nth-child(2) +||qixingquan.com/qxq-images/dawangka.png +weibo.com#$?#.card-wrap:has(> .card-top > .s-fr:contains(广告)) { remove: true; } +||ali213.net/Pics/*/down_popup_ +##.ad_couplebanner +||sksbgm.xyz^ +mydrivers.com##.HSsRgYjfNn +||yy17173.dtime.com^ +nownews.com###viewdeo_dable +iqiyi.com##iframe[style^="z-index:"]:last-child +||nnvjbb.xyz^ +||a1.bajiu.cn^ +||gscsahv011.com^ +pansearch.me#%#//scriptlet('prevent-element-src-loading', 'script', 'adsbygoogle') +||ultraimg.com^$domain=18board.com|18p2p.com +/bookad.oss- +||c.mnjkw.cn^ +||msdn.hk/templets/msdn/css/index.js +51credit.com##.main-r-ka +||tetlwsi.top^ +||4080kan.com/js/head1.js +||cpnn.com.cn/cpnn_images/diangong.gif +||dm.gucheng.com^ +||sjaaquj.cn^ +||bumnxiev.top^ +||tuwan.com/myad/ +||eluocs.xyz^ +weather.com.cn##.tong +@@||lefile.cn/??*, +||daima.diaoben.net^ +qidian.com###j-topHeadBox +||yepgdita.xyz^ +||puwkcqp.icu^ +sina.com.cn##:not(.BigPic) > a[href*="sax.sina.com.cn/click?"] +||commondisplay-a.akamaihd.net/cri/*.htm?cat= +dmhy.b168.net##div[align="center"] > a[onclick*="'ad'"] > img +/attachments/ad/*$domain=~edushida.com +||img.263y.com^ +||enews10.yxlady.net^ +||supfree.net/stat +jkpan.cc#%#//scriptlet("set-constant", "killads", "true") +||images.sohu.com/ytv/*.jpg +fx678.com##div[class^="dl_"] +||aqdy.net/js/banner.js +||39jz.com^ +||szjyfund.com^$third-party +||taobao.com/api/data/v2/d9543feac7c9433a98bc85be3ba856b1.js +||dzlndygh.com^ +||gtimg.com/201*/dsp/ +hbzhan.com###rightAdv +wenku.baidu.com##a[class*="tiger-"][class*="-dialog"] +yiche.com##div[class*="words-ad"] +||aliyuncs.com/ad/jd-smoofit-ad.jpg +||njxraqb.xyz^ +||ganjing.com/vast.vpaid.min.js +healthylives.tw##div[id^="gad"] +image.baidu.com##.right-banner-area +gucheng.com##.title_ad_time +||baixing.com/bb/*/?category= +zhongyiju360.com###bottom-float2 +||koytqo.xyz^ +||slashlook.com/_resource/html/_bloggerAdsBottom.html +huarenjie.net##div[style*="top: 50px;"] +||nlrsrx.xyz^ +||sseudorassb.com^ +hao123.com##.product-banner-wrap +douyin.com#?#.xgplayer>div[class]:-abp-has(svg[height="16"][width="30"]) +||hdbppx.xyz^ +@@||pagead2.googlesyndication.com^$domain=battlecats-db.com +||qebgcdcjr000.fun^ +||xhzjidgc.xyz^ +apk.tw###focus +ifeng.com##.playad +##.advert-short +||dajs001.shop^ +csdn.net##.recommend-item-box[data-track-click*="http"]:not([data-track-click*=".csdn."]) +||nfmovies.com/static/210203.png +||foscvbu.icu^ +youku.com#%#//scriptlet('adjust-setTimeout', '', '', '0.02') +hao.360.com###left-nav-place +||kjappzvz.xyz^ +##.head_ad +iqiyi.com##.site-title_right +||qzvzluu.xyz^ +gotrip.hk,nmplus.hk,weekendhk.com##.ai_widget +iqiyi.com##.rm-site-main +/static/js/fuo_3.js +||haopp02.com/haose/ +segmentfault.com###gridAd +gamme.com.tw##.fullad_ad +||wewbnso.cn^ +yizhibo.com###J_reg_guide +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=nowplayer.now.com,important +||adwordsing.com/img/2.jpg +###player_banner[style*="fixed;"] +||jsdelivr.net/gh/fzdm/st*/js/fzwap- +/template/m1938pc/bd/*.js +||aqy103.com/js/aqy/ +||nmtcxz.xyz^ +||qheoy.cn^ +##.ads_desktop +xbeibeix.com#@#.google-ad +||xysefte.icu^ +||ifooday.cn/index.php?m=poster& +||netease.com/house-public/articleyunyans.js +||bu1.duba.com^ +||ortlisk.top^ +||elecfans.com/skin-*/images/banner_ad +||mthhhuq.cn^ +kaifu.com##.play_fmt +91lai.com##.showimgs +||gtimg.com/gamezone/2014index/images/600x75.jpg +cheaa.com###AD002 +||kfdrc.cyou^ +iciba.com##.ad-sign +||ef9i0f3oev47.com^ +sina.com.cn###AD_Background_Wall_BG_Link +||ifengimg.com/auto/js/*enquiry +||dhl.135320.com^ +||tsdm39.com/img01/MP3/GG/ +172cat.com###adload +||sinaimg.cn/large/007drMcOly1gfnqzv8a7ij30xc02nwfr.jpg +iqiyi.com##.ad-seed +||alicdn.com/kf/H2f43d53d17c74471a2a9e00bc10c5c99j.jpg +gamme.com.tw##.ad_down +.pw/ads/ +||na06.cn^ +||oawvsm.xyz^ +||sc126.com^ +||dpjzr.top^ +||53ynh.xyz^ +hao123.com##.enter1 +-*-*-*-*.panda^$script,third-party +@@||ctrip.com/Customer-Market-Proxy/AdCallProxyV2.$~third-party +123.sogou.com,web.sogou.com##.adword > a +@@||cpro.baidustatic.com/cpro/ui/c.js$domain=htqyy.com +zhakao.cn##.main > div[id^="_"][style^="box-sizing: content-box; display: block; position: fixed; z-index:"] +||shouldercommandmentlimitless.com^ +||3ri.cc^ +@@||ekamus.info^$generichide +||mm111.net/api.php?mod=ad& +price.com.hk###ad-inhouse-top +@@||histock.tw/JScript/AD/ +||static.gridsumdissector.com^ +5yfz.com##table[style="width:100%;text-align:center;font-weight:700;"] +ttmeiju.me##DIV[style="float:left;margin-bottom:27px;margin-top:27px;"] +||163disk.com/static/www/ +||dingbu.bj.bcebos.com^ +chaicp.com###activity-web +||vvvkp.com/template/ttk/img/ +||gaglxx.com/5_ +||htubzpb.cn^ +qq.com##.wrap[class^="jsx-"] +||1.zuowenjun.com^ +home.firefoxchina.cn##.border-gray-200.tuijian +||ad.cdnjm.cn^ +||dsp.ali213.net^ +||sbbd1.qulishi.com^ +||ac*.786ip.com^ +||pansoso.com^*pss. +##.pggd > .ng-star-inserted +@@||cibntv.net/youku/*.mp4?$domain=v.youku.com +||a1.aichagu.com^ +||bdxpdz.xyz^ +||hexun.com/gphqtc/ +||renohj.xyz^ +020job.com##A[href^="/Click.aspx?AdPageID="] +5888.tv##.footer_fixed +caoporn.com###middleimg +##.getads +||mnks.cn/jk/appAD_ +||scw98.com/ADMM. +99114.com##.indexcjgg +||gzsscr.cn^ +tv.sohu.com###referr_bd_box +||fcm.baidu.com^ +||lensdump.com/i/*.gif +##a[href*=".zxzjys.com/"] +||kdslife.com/kds_2023/kafu. +||baidu.com/api/proxyapi?tag=adv& +||feofamdak.top^ +igxe.cn##.lion-flexd +ck365.cn###Dmids +||doujs05.shop^ +||sonimei.cn/images/llq.png +it168.com##div[id^="ADV"] +##.lol-ad +||8878tp.com^ +||gucheng.com/gcwad/ +||mc.weather.com.cn^ +##.leftAd +goodav17.com##div[id$="content"] > div[style="margin: 0 auto; text-align:center; margin-top:30px; width:90%;"] +so.com##.busi-article +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[class^="ecr"][class*="game"] +zhibo8.cc###m_adv +duonaolive.com##[onclick^="track"] +||sjezce.xyz^ +||tsrvrr.xyz^ +pansci.asia#$##firstSingle { padding: 0 !important; } +@@||anhuinews.com/zhuyeguanli/2020ad/xidad.jpg +||pic.shedsgs.cn/upload_*/upload/*.gif$domain=91porna.com +||91danji.com/attachments/201810/12/10/2hdyj7ut9.jpg +ifeng.com##div[class^="topAd-"] +||terrynow.com^$csp=script-src 'self' * 'unsafe-eval' +||etf88.com/swf/ +||xunlei.com/api/stat/rt/js? +||dealmoon.com/hotdeals/hotdeals_scroller.php +||cdndm5.com^*/ad_360_ +||kytbxcl.cn^ +526bt.com,daniao.org,eroacg.com,laod.cn,myqqjd.com,ninpang.com##.tg-site +||srzpsbf.xyz^ +/source/plugin/yw_alertlogin/* +creaders.net##div[style="float:left;padding-right:.3em;width:300px;height:250px"] +||aiyangedu.com/static/cpt/pubuliu. +||abcd.zle.com^ +18-comicfrieren.xyz,18comic.org,18comic.vip##.div_sticky2 +||aqwsms.xyz^ +###reportPop +||xiwusn9982.top^ +tuwan.com##.Player-zan +||dsukqsx.icu^ +||suning.cn^$domain=qianggou5.com +||eetlwsw.top^ +||6pan.cc/ps/vip.jpg +||snjfasp.com^ +||lahoo.ca/slider +/mmday/91porn_ +yahoo.com##a[class^="Pos"][href*=".promotions."] +||hwateru.top^ +||ivy.pconline.com.cn^ +ci123.com##div[onclick^="window.location="] +apple.com.cn#$#.ac-gn-blur { top: 0 !important; } +||yigujin.cn/wp-content/themes/Three/js/tuij +hupu.com##.hupu-shihuo-hot +porn5f.com##.bxslider +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###worldcup_guess_frs_wrap +sina.com.cn###tg_app_w +||makqsd.icu^ +||4fs3r.icu^ +jb51.net###gaosu +##.title > .gg +||ioykmxa.icu^ +pcauto.com.cn###bgbao +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###search_baidu_promote +||ynztzh.com^$third-party +pjtime.com##.top_R +liaoningmovie.net##.ad_panelAR +||oyksoft.com/assets/images/*.gif +||agossuoeach.com^ +||kuazhi.com/zb_users/plugin/allshow/js/main. +expreview.com##.babaBox +17yy.com##.t2r_3 +rising.cn###lowerrightAd +shaoxing.com.cn##.top2 +autohome.com.cn##.information-adv +||bdstatic.com/static/searchresult/widget/pageDisorderTip/ +@@||58.com/adJump?adType= +||gaoqing.la/wp-content/uploads/*/gg +##div[style^="width: 100%;"]:not([id]):not([class]) > iframe[scrolling="no"][src^="http"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"]:not([allowfullscreen]) +mafengwo.cn##.hotel-banner +zhidao.baidu.com###qb-content div.businessvip-wrapper +zhuna.cn##a[href*="quchuchai."] +@@||moyens.net^$generichide +apk.tw###postlist > div:nth-last-child(2):not([id]) +||szbzp.cn^ +||lw54.com/js/ +isiyuan.net#?##page-list > ul > .layui-row:-abp-has(.ad) +||adi*.cnool.net^ +##.article_ad +###movietp > .movietp +||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds +||tiexue.net/pic/tx_1220.jpg +huaban.com##.hb-ad +icbc.com.cn#@#.adLeft +@@||geekbang.org/resource/image/ad/14/addb521e20de1a302206f4286eac3914.png +@@||10086.cn/framework/modules/sdc.js +||bsvkfwth.xyz^ +cjw123.com,weike87.com##.copy +||btfjjwt.xyz^ +##.wrap > #btmBox +||fehrda.xyz^ +@@||bytecdntp.com^$script,domain=51eshu.com +||pelageforgers.com^ +||kkddlt2f.site^$third-party +163.com###js_a_bobo +||51zxw.net/netclass/images/*_top.jpg +elecfans.com###MiddleLeaderboard +||lxryhx.xyz^ +udn.com##.mag_topic > a[href][target="_blank"] > img[src^="https://p.udn.com.tw/upf/"][src*="_banners/Special/"] +##body .has-ad +||ifengimg.com/iis/iis_ +@@||dnspod.cn/static/common/js/analytics.js +||zyrnbh.xyz^ +icanzc.com###contsec +||duouoo.com/vss/right-ssd.js +huarenjie.com###RightAd2 +||ithome.com/images/v2.1/downsoftmaster.gif +.eu/ads/ +aihami.com##.conText > div[style*="width:"] +waerfa.com##section > div.article-gg +###syad2 +||topqualitylink.com^$third-party +baby-kingdom.com##.right5 +zj.qq.com##.mod-side + div[style="width:300px;height:257px;"] +netbardh.com##.pos-navbar-ad +###container > .item.title_top +gdzjdaily.com.cn##.big_news + div +||tw.rd.yahoo.com^$image +||tydzfldt.xyz^ +/alljs/allhead.js +iqiyi.com###zbsp +@@||qq.com/ads/js/$domain=privacy.qq.com +||lfhdryz.xyz^ +||itc.cn/w/u/0/old-insertAd- +||jiaodong.net/a/js/ +||y.photoint.net^ +||yzpsb.net/1.js +eoof.net##.tableborder1[cellspacing="1"][cellpadding="3"] +mydrivers.com###recommend +v.qq.com##a[href*=".vip.com"] +@@||10010.cn^*/ad +nani.baidu.com,ala.baidu.com##.tbui_aside_float_bar + .clearfix +||kogtrmjz.xyz^ +||baidu.com/videoui/api/videopcads? +||tsvkfwth.xyz^ +||wfsmya.xyz^ +hupu.com##.maibghref +letv.com###JS_banner01 +||1.feihua.com^ +/assets/t_j/tongji.js +/agetsou.js +||wwerioe.top^ +###tr_ad4 +/adver. +||hoopchina.com.cn/web/channel/voice/*/beforelogin/beforelogin.js +||360doc.com^*.html?t= +||3jia5.com^$third-party +||uhjxitn.xyz^ +sina.com.cn##.sinaads +##.ad-below-related-post +kongzhong.com###dn +||twamjb.cn^ +||ehhjfgs.xyz^ +||tl86tv.com/52 +||acgnx.se/images/adwork/ +hoteastday.com##.incentive +novipnoad.com##.bg-ad +||eastday.com/assets/js/resources/new_detail_ +@@||bingfeng.tw/source/plugin/unadblock/*_ads_*.js +tuchong.com##.float +||mvirkw.xyz^ +||neryt111.fun^ +||iciba.com/www/img/activity/common/active-11-11.js +gaoqing888.com##.wp-card > a[target="_blank"] +baidu.com##.nav_ads +brtn.cn,btime.com##.business-box +pcstore.com.tw##.priority +chinagwy.org##.ewm0610 +###sitefocus.focus +||eap.big5.enorth.com.cn^ +taizhou.com.cn##.duilian2 +i-part.com.tw###chatroomFrame + div[style="text-align: center;padding-top: 10px"] +##.ml_ad3 +360che.com##.con_banner +||1.jeasyui.net^ +||vxotu.com/i/*.gif +ck365.cn###content_login +zhicheng.com##.mad_top +pixabay.com##.carbon-ad +gamer.com.tw#$##flyRightBox { position: absolute!important; left: -3000px!important; } +letsplay.tw##.entry-content > div[style="min-width: 300px; min-height:300px;"] +yahoo.com##section[class^="Pos"][data-id="big-gemini"] +go.10086.cn##.gaiPing +uuu9.com##div[class^="ad_140"] +cztv.com##.vivo +90oo.com,p9.com.tw,price.com.hk,ttww22.com,xinhuanet.com###ad1 +||fanjs.top^ +||static.youku.com/*/index/js/iresearch.js +eol.cn##div[id^="s1_"] +boke112.com##a[href^="https://dwz.cn/"] +||price.com.hk/scripts/ysm.js +||g.mnw.cn^ +||iiilab.com/sponsor +@@||xinhuanet.com/gsstatics/*/images/ad/ +||glittersh.com^ +||iwarship.net/wowsdb/static/img/banner.png +caikuu.com##.clearfix + .recommend +||eastmoney.com/public/js/left.js +||bmret.cn^ +##.duilian > .leftd +ifeng.com##div[class^="bottom_box"] +ip.cn##.well > p > a +ghxi.com,mcdulll.com,pixnet.net##div[id*="-ad-"] +||wkywrc.cn^ +##.cui-pt-item[data-qhb] +i-part.com.tw###AdBanner785 +###magneturlpost + .movie + .movie[style="padding:12px; margin-top:15px"] +xcar.com.cn##div[class^="adset"] +||uiiepofl.xyz^ +||3158.cn/min/webim. +||toublii.top^ +||daynews.co/cdn-cgi/apps/ +.test15./ +baidu.com###sning2 +||uftcfo.xyz^ +||tu3168509469.cc^ +||bio-equip.com/dimg/ +||jollyspring.com^ +||ancxeftgyu.top^ +18comic.org,18comic.vip,18-comic.work#@?#:-abp-has(>ins+script) +51nongyao.net###reportPop +bodu365.co##.beside +||meiju8.cc/js/pv +yyrtv.com##.right-gg +||bd1.guancha.cn^ +iyf.tv#@#.share-top +/js/sjgg.js +||cherylssb.com^ +||sagcyq.xyz^ +||126.net/caipiao/js2/index/homePop.js +t.qq.com###homeBannerNew +siguyy.tv##[style^="position: fixed;"] +||aaoisp.com^ +edrawsoft.cn##.bottom-banner-activity +@@||alicdn.com^*/tanxssp.js$domain=dlkoo.cc +||51pantu.com/pic/1598717206949.gif +||9ku.com/aaa/ +||huhumh.com/js/ +||1vudktp.com^ +||38bw0.space^ +youku.com##.videolist_s_body > div.common_container > div[id^="ab_"] +manhuagui.com##body > div[class]:has(.sitemaji_banner) +||nxtxxcm.xyz^ +||alicdn.com/img/ibank/*_872274545. +jrj.com.cn##.bd.pa10.bgn +jjckb.cn##.adv_ment +/jfjs/ad.js +||57sehua.com/template/assets1/js/vue.js +pcbeta.com#?##wp > div[class][id]:-abp-properties(width: 980px;) +##a[href*=".impactyu.com/"] +||1kfnsra.com^ +qq.com#@#.adside +molure.cn##.adplan +volcore.xyz##.avd1 +||thetestpage.39.net^ +||jd.com/exsites?spread_type= +huya.com###ggcomment +||hncadh.com^ +||news.tagtoo.co^$third-party +||diccsbhij.com^ +rising.cn##.ggqh +laixoo.com,v2rayssr.com##.git_banner +||ygipjqf.icu^ +@@||dlkoo.cc/down/copy0 +wenku.baidu.com##.zhixin-right +baidu.com##.result-op[tpl="vmp_strengthen_brand"] +||da-fan-shu.cn/images/kuaijie.jpg +hjenglish.com###regModule +||baidu-taobao-av.com/js/ +@@||ad.12306.cn^$elemhide,subdocument,domain=95306.cn +mobanwang.com##.g960 +bilibili.com##div[style*="height:"][data-loc-id] +||ypkxahje.xyz^ +||c.mipcdn.com/static/*/mip-ad/mip-ad.js +nick20.com###sex + div[align="center"] +@@||media.org.hk^*/ads_ +||alicdn.com/img/ibank/*_1533190909. +||ycuhky.xyz^ +@@||xbeibeix.com^$generichide +soundofhope.org###itb_ads_catfish +||17173.com/if/ +iqiyi.com##a[href^="https://ads.game.iqiyi.com"] +##.wbalist_thumb[style*="/upload/site/"] +51cto.com,chinaacc.com,yidianzixun.com##.banner +||cdrvkdni.xyz^ +##.playtop.col-pd +99re.com##.spots +||rdnplpj.cn^ +||moqsxdpx.xyz^ +bilinovel.com#%#//scriptlet('abort-current-inline-script', 'document.createElement', 'pagead2.googlesyndication.com') +||u55011.com^ +||tui07.shop^ +###dgf_pc +9ht.com,cesafe.com,downcc.com,downyi.com,paopaoche.net,pc0359.cn,pc6.com###gaosuxiazai +.cn/v/*.xmtl?$third-party +||jciwztfj.com^ +||javdove.com/templates/frontend/javdove/*/partialviewslider. +||acgnz.cn/static/i.js +||jiujy5r3.fun^ +fortunechina.com##.pinglunwindow +@@||126.net/163/frontend/share/js/ +||1.jiqie.cn^ +taiwandaily.net##.gofollow[data-track] > img +||ifengimg.com^*/yingguang- +||imgur.com^*.gif$domain=18p2p.com +||aoiqa.top^ +||51fanli.net/misc/images/invite-v4/banner.gif +miercn.com###foot_return_foot +||vyrpoe.cn^ +fx168.com##.jy_fx168_default_head_navAd +/static/js/pop_promotion.js?v= +||vdvcjlp.cn^ +jiegeng.com##.picLf +sohu.com###hotpicnew +||321.jintang114.org^ +||d3.sina.com.cn^$object,script +hcbbs.com###framedtSuR9 +iqiyi.com##.cell-left +||kfckcu.xyz^ +@@||126.net/images/blank.gif +||besc.baidustatic.com^ +###toptd.toptd +v2ex.com#?##Rightbar > .box > .inner > .sidebar_units:not(:has(+strong)):upward(2) +toolfk.com##a[href*=".xiuxiandou.com/"] +||lsforum.net/yahooad/ +cotton.pink##.adsbyfalcon +||anqu.com/b.js +||fzllis.cn^ +||bcquan.me/front/*_ad +||hrnkdr.xyz^ +||murdyq.com^ +o8tv.com#?#.container > .row > .myui-panel-bg:has(> .myui-panel-box > .myui-panel_bd > .col-xs-1 > a[target="_blank"] > img) +||talkfx.*/showTKImg? +5yfz.com##.wrapper > p +||s.weibo.com/widget.html +eastmoney.com##iframe[src*=".eastmoney.com/banner/"] +||xjpmlf.xyz^ +||cowcuo.xyz^ +##.ayx[style="display:block;"] +###frameS8CyqB +||cwaterf.top^ +||lrdyfz.xyz^ +/js/pcbook.js? +||gbc27.online^ +hongrentao.cc,houhuayuan.pink,mrmad.com.tw,myself-bbs.com,paltv.top,pbhz.com,sportsyeah.hk,zhaoze.party#@##adsense +||js*.abolezi.com^ +timedg.com##.topCrossAd +@@||petrochina.com.cn/advertisement_ +||hao6v.com/d/ +house.qq.com###yf +||digitaloceanspaces.com^*-Banner +##a[href*="/445.ee/"] +||jishulink.com/jishulink/searching/ad/get? +duba.com,newduba.cn##.img[href^="https://s.click.taobao.com/"] +163.com,bilibili.com,longzhu.com##a[href*=".admaster."] +elecfans.com###sidebar-firstad +qbaobei.com###diyforumdisplaybottom +dyzd1.com##.all960 +kdnet.net##.c_spread +yaociyuan.bid#%#//scriptlet('set-constant', 'killads', 'true') +kocpc.com.tw#$##header > nav.floated-navbar { top: 0!important; } +gamefy.cn,sitv.com.cn##.col-vlist-l > span +jingdianlaoge.com##div[style="width: 300px; height: 250px; background:#eee"] +||jswz8.com/images/ +||xizanzhi.com^ +||riaway.com/statics/idea.jpg +||clmcam.xyz^ +cesafe.com,kkpan.com,yxdj.com.cn##.m-a-linktwo +bbt.tv,btbt.tv,fiime.cn,kims3.xyz,mmiyue.com,qcheng.cc,yii666.com#@#.google-ad +||qeryt111.fun^ +aeink.com##.widget_ui_textads +||cdn.holmesmind.com^$third-party +cardu.com.tw###crazy_layer +||bea-s.dinghuoche.com^ +||qiyipic.com/common/*vivo +||51test.net/js_new/a/right_wx.js +jbtalks.cc,jbtalks.com##.jbt-ad-region +||ifengimg.com/static/news/js/newsAdvtrack_ +||spcode.baidu.com^ +.zone/ads/ +/release100009ts?$script,third-party +douyu.com##.hot-sign-2 +||llmxt.fun^ +xiaoma.com##.leftewm_topa +wnacg.com#@#.pcgg +||yihehe.xyz^ +||x360xs.com/tops/ +@@||jd.com/setCookie? +bilibili.com##a[href*="cm.bilibili.com"][data-target-url]:not([data-target-url*=".bilibili.com/"]) + .bili-video-card__info +/hm.js?$third-party,xmlhttprequest +@@||download.mokeedev.com^$genericblock,generichide +/to8to_pc/chunks/slide_and_popup_ +||upyerxzn.xyz^ +||piaoliang.com/js/all.js +crsky.com##.adowGright +||lianyexiuchang.cc/img/97da89108eb659fc.gif +||tflybplr.xyz^ +i.maxthon.cn##.header-hotkeys +@@||sina.com.cn/litong/*/close +@@||lobi.co/1/track/event/ +@@||selfimg.com.cn/?? +||xpcha.com/js/notice.js +||dbpxivi.xyz^ +huya.com##.component-ab +hao.360.cn,hao.360.com###festival_balloon +3dmgame.com##.tonglona_3 +sex8.cc##.j-oscar +/js/axdd.js +||aoshi.com/rbc.jpg +bigpixel.cn#$?##PAGE_AD_1 { remove: true; } +/code/popjs. +jdwx.info,motobuy.com.tw##.other +3dmgame.com##.dj_warp_e +duba.com##.box_shopping +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.kn_nine_wrap +||ievvo.xyz^ +@@||jswenhui.com^*/ad/ +##.it618_firstad_flex +||pic.fengniao.com^ +||baidu.com/cms/lemmaconfig/navbarAd. +||olehdtv.com/index.php/index/userss| +||qudajie.com^ +haoxxoo.com##.nrad2 +||baijs09.shop^ +zhcw.com##.khdpc +||acgbenzi.com^$image +ezneering.com#$#.pum-overlay { display: none !important; } +sina.cn#$#[data-href*="://sax"] { position: absolute!important; left: -3000px!important; } +58.com#?#.business_main:-abp-has(> .business_desc > .left > .ding_icon) +||xkrnud.icu^ +teepr.com##.shop-widget +/fawu999/*.js$script,third-party +||acewdf118.cn^ +||sucloud.xyz/js/tou.js +||xng02.com/api.php?mod=ad& +||soutubot.moe/static/airport +||baidu.com/tb/cms/game/*_banner. +shouji56.com##.adv01 + a +cn-healthcare.com##.fh_advent_wrap +mydrivers.com##div[style*="/ad/"] +||ellingsen.cn^ +gamer.com.tw,pili.com.tw#@#.text-ad +||koolearn.com/v2/js/*AD.js +/js/cpc2_rp.js +###rm-float + .popup +###js-ysjpp +nodejs.cn###pagead +##.artplayer-plugin-ads +||eacdf119.cn^ +##.wf_ad_block +v.youku.com###player-advertise +||xdsahkln.xyz^ +||2qy9zm.cn^ +||644446.com^ +gamefy.cn,sitv.com.cn##.con > a:last-child +bkill.com##.alliance-ad +||youth.cn/images/c.js +douban.com##.channel_promo +9s102.xyz##.jsv > .container-fluid.mb-0 > .row > .col-sm > a[target="_blank"] +||info.vip.iqiyi.com/promotion/ +@@||moea.gov.tw/EgisWeb/Scripts/google-analytics.js +||sogo.uc.continuefaf.top^$third-party +||ffawfa.cn^ +||9zvip.net/hi5asd/ +||wa.kuwo.cn/lyrics/img/kwgg/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.score_ecr_wrapper +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.u9_head +||mesh.if.iqiyi.com/portal/*/recommend?$xmlhttprequest,removeparam=adExt +aiyuke.com##.igamead +mobile.baidu.com##.p_fixed_lb +||cntronics.com/adsupload/ +huaban.com##div[class="pin wfc ad wft"] +jiyingdm.com##.abcde +jikexueyuan.com##.pewm2 +newxue.com##.dashuggtop +@@||alicdn.com/t/img/TB1DmcoJXXXXXavXpXXXXXXXXXX-26-26.png$domain=dlkoo.cc +##a[href^="http://ad.moemoe."] +||uuxfznnf.xyz^ +||sdjkbcjksbdsvv.com^ +||yaozh.com/Public/js/widget/dbAdDownload. +||btbtdy.*/js/slade888.js +@@||sovrn.com^$domain=mens1069.com +fwxgx.com###jPpo_sc +8264.com##.zhidemaibox +||haosf.com/kan.htm +alypw.com##.ceadd +suizhoushi.com##.sznew_ad_top +chaomi.cc,cpnn.com.cn,cs.com.cn,dyhjw.com,kkj.cn,my0538.com,mydrivers.com,ofweek.com,silver.org.cn,wendu.cn,y1118.com##.duilian +||honknl.xyz^ +||inone517.com^ +||dzdxnbc.xyz^ +||aoji.cn/static/js/yiliao/ad_common.js +||17.huanqiu.com^ +qixingquan.com##div[style="float:right;margin-bottom:6px;"] +||gdmm.com/api.php?mod=js&bid=2188 +||roxfrv.xyz^ +feixiaohao.com##.TopHomeLink +188soft.com##.cont_d_l_dow + .down-center +||qinbing.cn/data/upload/ueditor/ +kuaidi100.com##div[id][style="width: 300px;float: right;"] +dm5.com###a1 +mmff30.com##span[id$="_gg"] +||sciencenet.cn/field/js/news. +||hellocenter.xyz^*.mp4$redirect=noopmp4-1s,domain=localmv1.com +@@||attach.mobile01.com/image/mod_ad/*$domain=mobile01.com +pixnet.net##div[style^="width: 630px;"][style*="height: 250px"] +||jiaopei.com^ +||8cnd.com^ +||87mao.com/52 +||jyqkijp.icu^ +||cupid.iqiyi.com/show2? +.com/code.php?a=index&z=$script,third-party,xmlhttprequest +||biz.gexing.com^ +ltn.com.tw##div[class^="market300"] +news.ifeng.com##.right1 +:7701/load.cw.js +||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD +360kuai.com,hao.360.com###cangbao_redbags +kukuw.com###gg_rl +mahua.com##.hidden_ab +duba.com##.car_ads +bde4.icu#%#//scriptlet("set-constant", "canRunAds", "true") +||strip.chat/widgets/$domain=tktube.com +dalipan.com##.hongbao-wrap +2345.com###J_search_bd > div:last-child +.gif|$domain=8727ck.cc|8726ck.cc|8724ck.cc +||abc.hkepc.com^ +csdn.net###kp_box_www_swiper +:9001/code/ +yjcf360.com##.side_box2 +@@||smtcaw.com^$generichide +/template/conch/asset/js/hlhtml. +vpsdx.com##.gsfha3-form +||eeyy.com/templates/js/other/yxj +@@||bbs.tgfcer.com^$generichide +||8ziyuan.com/images/infolinksad.jpg +kdnet.net##.download-bar +||kdpic.pchome.com.tw^ +cartoon18.com##.embed-responsive.position-relative + .card-body > .lines > span.badge + a[href^="http"]:not([href^="/"]):not([href*="cartoon18.com"]) +/xdy_yyo.php +||udoshbt.top^ +eastday.com##.drain_app +ahhhhfs.com##.site-addswarp +##.ad_90 +@@||kfcorder.com.tw/web/Script/Analytics.js +||cngsf.com/images/336_280.gif +landiannews.com###block-2 +@@||alicdn.com/mm/tb-page-peel/ +||alicdn.com/img/ibank/*_1776866723. +@@||pkstep.com^$generichide +ftvnews.com.tw##div[id^="div_gpt_"] +w3cschool.cn##.widget-main +||jgntjtyf.icu^ +htmleaf.com##.htmleaf-adv +||camspic.com/imguang/*.gif +||meitui.org^*.js +5imx.com###diy_mxad03 +vmvps.com###long_image +||ufile.cc/pps.js +||qq.com/coral/ADS +##.comiis_guanggao +||olmsoneenh.info^$domain=avgle.com +csgoob.com#?#div[class^="dark:shadow-none"]:has(> div.ant-carousel) +||img2.titan007.com^ +||a.tyncar.com^ +||cdscs990.fun^ +||360buyimg.com/ddimg/jfs/t1/27218/8/19964/31194/636a1930E1de2ae78/e3ff134116579b95.jpg +@@||udnplay.com/js/momo/adsbygoogle.js +||shbzdkj.cn^ +laohu8.com##.app-button +||mamecn.com/style/pcjs/bgimg. +###floatAD_r +||cshlal.icu^ +/fake_app.mp4$domain=91porn.com +/99rejs/js/adv +hung-ya.com##.AdBottom +||baidu.com/xpage/interface/structrec? +||lysq.com/data/attachment/portal/ +##a[href*=".uu2123sd.vip"] +/js/ads. +###nav-home > .coment-bottom +baidu.com##div[class*="fc-"][tplid] +opdown.com##.listaddrs +||xvideo.cc/wefong2.js +||js1.122cha.com^ +||zailgrae.com^ +||web-ad.xyz^$third-party +||wyiegt.icu^ +mobile01.com##.fast-ad +||40407.com/plus_rpad_ +hkgolden.com##.hkg-ad +||hfjmvr.xyz^ +##a[href*="?invite_code="] > img[src*=".com"] +yes-news.com###content-728 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##div[id*="lottery"] +||gpqkeq.xyz^ +24k99.com,fx168.com##.ny2018_txtLink +||cngoldres.com/libs/jtams/ +jable.tv##div[class^="root-"] +||vfvrld.xyz^ +||qhodog.xyz^ +||gvvedashb6.fun^ +||dftoutiao.com/dfpcitv/pcitv?jsonpcallback= +56.com##.x-download-panel +bingfeng.tw#%#//scriptlet('abort-current-inline-script', 'setTimeout', 'COOKIE_NAME') +kpw6.com###daojs +guitarchina.com,iqiyi.com##.banner4 +||ocpydszq.xyz^ +||gdt.qq.com^ +||imgmega.com/i/*.gif$domain=18avtube.com|mm-cg.com +||porn87.com/static/stream_ads/ +##a[href*=".mbrnf.com/"] +||kt51.com/wz.jpg +##.mylist > a > img[width^="9"][height="80"] +||c.admaster.com.cn^$popup +||tae0t.site^ +techbang.com##.article > #post-additional +eeyy.com###beitou_box +||778669.com^$third-party +||photo07.xyz^ +||jisoupan.com/static/ +qzone.qq.com###appCanvasRightTopQBoss +lenovo.com.cn##.hotword-list > li > a[href*=".jd.com"] +sogou.com##A[data-log*="PicAd"] +:8686/8888/*.gif$third-party,image +##.wordurl[style=" width: 42%; float:left; text-align: center;"] +||ctfile.com/popjump.php?$popup +||btdx8.com/tmp/ +||iwanad.baidu.com^ +||chinaz.com^*_g/ +||gwogrgq.icu^ +sina.com.cn###left_focus_ad +@@||qspfw.com/r/cms/www/qspfw/common/img/ad_ +||maxunn55.top^ +||dfryzh.xyz^ +qizuang.com##.bottom-fadan-box +ofweek.com###flybox-db +6park.com##div[style^="width:990px;background:white;"] +||frfve33.fun^ +||yuanpinghengkangfuyouxiangongsi.top^ +||bt-tt.com/ad +##.spot_nav_under_ad +||bovytl.xyz^ +||5ejlo.xyz^ +@@||gias.jd.com/js/td.js +ke.qq.com##.bottom-bar +##.ad-site +||tjuspyk.icu^ +bamxs.com##body > a +||rsvkfwth.xyz^ +search.bilibili.com##.video-list > div.col_3:has(> div.bili-video-card > div.bili-video-card__wrap > a[href*="&csource="]) +@@||ani.gamer.com.tw^$generichide +||iuqasw.xyz^ +||1bctkn.xyz^ +||citysbs.com/no/*/980x +health.tvbs.com.tw##.fromEditor > section.ed-px-5.ed-lg-hidden +##[style="display:none"] + iframe[scrolling="no"][src*="//"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +||jqsex.com^ +dngz.net##.hezuo +##.content-ads +||qboywc.xyz^ +toolfk.com###layui-layer100001 +@@/log/report/*$script,domain=bilibili.com +||gbndash2.fun^ +||5ilinglei.com/gg.html +114la.com##.s11bg +||muycpg.xyz^ +@@||libs.baidu.com^$domain=m.supfree.net +backchina.com##a[href*=".21usdeal.com"] +||avjd014.com/*ad^ +chacuo.net##.a96090 +||jstucdn.com/g3/ +||sdipsumb.top^ +||wudizuqiu.com/fy +||dioimg.net^$domain=18board.com|18board.net|18p2p.com +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv#?##hellBoy > li[track-by="$index"] > div[style] > .show-div:has(> .show-card > .update-play:contains(/^AD$/)) +||hkcoding.com/chequeconvert/img/grammarly- +||jb.ecar168.cn^ +72g.com##.recommended +cncrk.com##.dxzq +||shbzngs.cn^ +.nyahentai.com/cat/l_1.gif +||iqiyi.com/js/pingback/ +||huryds.top^ +||itjsb.com/itjsbwx.jpg +colamanga.com##iframe[style*="important"] +image.baidu.com##.sample2 +@@||tanx.com/ex?i=$script,domain=dlkoo.com +||syiwgwsqwngrdw.xyz^ +||fuimg.com/1/66795b80a792fb96.png +huya.com##.sidebar-banner +blog.csdn.net##.programmer1Box +codeplayer.vip,cupfox.app##.banner-box +/pjk/xjk/*.php +@@||briian.com/advert. +||oektiu.xyz^ +||bdjs.91zhuti.com^ +||cnblogs.com/group/C1-C2 +.la/style/vue.js?v= +||lianmeng.360.cn^$domain=~lianmeng.360.cn +||1.zhuangxiu567.com^ +/cuid/*$domain=colamanga.com +||gtimg.com/adb/$domain=okooo.com +##.player-rm > a[href*="/ad.html?url="] +||qd.x4399.com^ +18comic.vip#%#//scriptlet('prevent-setTimeout', 'float_right > div') +###hengfu > #jiukan +||ark.letv.com/s? +||szdxw.cn^ +||oxrvfsi.xyz^ +||mfemiac.icu^ +||shouyoutv.com/assets/api/web/v4/js/global_head.js +showtv.com.tw###sub-ad +||4399.com/loadimg/iframe_ +||novipnoad.com/theme/js/helper. +||evgaow.xyz^ +gitee.com##.gitee-stars-main-widget +iqiyi.com##.dove_videos +boce.com##.index-top-long +oschina.net##.blog-left-ad +||magioe.xyz^ +3dmgame.com##.addownbox_gaosu +alu.cn##.Tg_125x70 +99re.com##.dmcenter +suning.com##.c2c-recommend +news.pchome.com.tw##div[style="width:970px;height:250px"] +||gmbbku.com/jj/ +||310v.com/images/wap_520x60.gif +.xyz/z/*/code.js$script,third-party +||cpnn.com.cn/cpnn2015g/neiyegg.gif +||d1pmhihatyvp1k.cloudfront.net^ +||692881.com^ +90oo.com##a[href^="http"]:not([href*=".90oo."]) > img[src*="/tp/"] +||btc440.top^ +taoguba.com.cn###wrap_footer > div[style^="width: 957px;"] +/80sad/* +10jqka.com.cn,18183.com,actoys.net,beijing-air.com,bio1000.com,foodmate.net,gter.net,hepuwang.com,jjwxc.net,ncdiy.com,qingdaonews.com,tgbus.com##.ad1 +csdn.net#?#aside > div.slide-outer:has(> div.box > div[adsid]) +||qrttfmo.cn^ +||dqhxmbx.cn^ +goodcome.com.tw###fulljad +||pa4ye.cyou^ +||5z0d3.cyou^ +huya.com###J_roomSideTop +||idoshbo.top^ +fanyi.baidu.com###app-read +||63ys.com/*/gct.js +||yzpsb.net/js/system.js +cccpan.com,ys168.com,ysepan.com###idzdy1 +~mgtv.com##a[target="_blank"] > img[src*="hitv.com"] +||mydrivers.com/images/*_1100_90. +||jmylj.cn^ +/ad_home_ +csdn.net###asideCustom36733263 +||goods.tudou.com/api? +||cupid.iqiyi.com/mixer? +@@||cnsexy.top/wp-content/plugins/dh-anti-adblocker/assets/js/showads.js +aiqicha.baidu.com#@#.share-label +51wangdai.com##.couplet_gg +/tm00738.bj. +||ktvjpmi.xyz^ +health.tvbs.com.tw##.hidden .justify-center:has(> div[id^="health_pc_read_"]) +||szmhk.cn^ +avmimi.com##.TW_UTtoy +||mm786.com^$popup,third-party +||tptgvh.xyz^ +yanaifei.net#$?#.swiper-wrapper > .swiper-slide:has(> .banner[href^="https://"][target="_blank"]) { remove: true; } +downmsn.com###downShow_tellDownload +jsphp.net##.adleft-wrap +||dnvod.tv/listprovider/ajaxlist.async.ashx +||1.78500.cn^ +kissjojo99.com##.single-top +###syad5 +/wap/js/gg/* +||clywws.xyz^ +gamicsoft.com##.mobileAd-slider +||1.ttxs123.net^ +googleads.g.doubleclick.net###mys-wrapper +||plfwxtgu.icu^ +||gtimg.com/newsapp_bt/0/14484060967/641 +www.sina.com.cn##.mod-01 +zhiyoo.com###header_app +##.t5[style="border:1px solid #a6cbe7;"] + .t[style="margin-top:8px"] +||yiparts.com/Chance.php?aid= +@@/adblockDetector.$domain=softwarebrother.com +||kzelzfnj.xyz^ +gaokao.com###xuad-left +.st/ads/ +||rodmfv.xyz^ +||drmcmm.baidu.com^ +||ovykq.online^ +3dmgame.com#%#//scriptlet('abort-on-property-write', 'adStart') +cnfol.com##.AdAsideW300H250 +/js/easyAD.js +ruanyifeng.com#@?#.asset-content > p:-abp-contains(/二维|助教|0 元|报名费|原价/) + p > img +china.com#@#.adclass +||qguwoq.cn^$third-party +||bekmhvbb.xyz^ +xiaoz.me##.sidebar a > img +||aipp99.com/haose/ +||chinaz.com/tool_img/alexa_a.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_click_stats[href*="adn.baidu.com"] +||a.xzzsjz.com^ +###content-ad +/frontend-jiucao/ps/psCreat.js +||aixifan.com/static/*/appGuide/ +||touvxlii.top^ +@@||adx.yiche.com/ssp/echo/v1.0/en?*,*,*&cs= +/sh588com888/* +@@||www.google.*/adsense/$~third-party,domain=google.cn +||sex8.cc/plugin-e6-rebate.html +||auto-online.com.tw/vendor_data/ +||ent1.12584.cn^ +vuejs.org##.text-ad +dcard.tw#?#div[data-index] > article:contains(贊助活動) +||0h3uds.com^ +||douyucdn.cn/common/simplayer/assets/effect/cpsUI_ +||taporn.com/d/ +||ent1.qunchua.cn^ +24h.pchome.com.tw,find.ruten.com.tw##.site_evt +tieba.baidu.com#$#.special_conf_skin .wrap1 { background: none !important; } +so.com###mohe-gouwu > .g-shadow +||1.glook.cn^ +||xxsmad4.com^ +58.com#?#.zzinfo:-abp-has(.zhiding_icon) +||283.laobanfa.com^ +||wfpjeul.cn^ +/api/goods/v1/get.script.core? +@@||yunduanxin.xyz/static/js/banger.js +worldve.com###fdkDiv +###bfad5 +aae3.com,qq.com###coo_qqBrowser +aiweibk.com##.lili +||res.cngoldres.com/web/index/img/*_ad_ +||z2x5c8.com^$image,domain=hihbt.com +||91friend.com^$third-party +728x90.jpg| +tgfcer.com##.ad_headerbanner +cctime.com##.nav_banner +@@||qbox.me/static/js/ads.js$domain=linux.cn +uwants.com###foruminfo + div[align="center"] +extmovie.com##.cd_listtop_pc +||hdjthzg.cn^ +commonhealth.com.tw##div[class*="ad--"] +###TopAdvert +jd.com##div[id^="miaozhen"] +-728x90. +##.module-tglist > .tg-normal-box +~125.la,~52pojie.cn,~chysg.com,~hawkaoe.net,~yswc1.xyz##.a_mu +aipai.com##.banner_90 +||qunar.com/render/ga.jsp? +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.topic_list_box +||uqykeq.xyz^ +||dioimg.net^$domain=88files.net +tiantianzhibo.com##.apprecomm +||xinshijueba.com/js/home/ +||smxflvz.cn^ +@@||img*.kangaroobro.com/images/$image,domain=leyuman.com +||7xsf3h.com1.z0.glb.clouddn.com^ +infoq.com###psa-note +||gjkkdashb4.fun^ +ablesci.com##.fly-panel img[src*="-alipay-autumn-hongbao.png"] +/db.js?_dc= +mitbbs.ca,mitbbs.com##table[width="915"] > tbody > tr:first-child > td[width] +netfly.*,netfly.tv##.module-tg-box +##.chat-right-ad +sohu.com#?#.sidebar.right:has(> div.extend-mod:first-child) +enread.com##.box > ul[style="width:100%;overflow:hidden;"] +mpyit.com##.post-999999 +||4080kan.com/js/head +||qetskupch581.shop^ +gmw.cn###rightad1 + .contentColumnRight +||ewzavfde.xyz^ +||picb.cc/uploads/2018/06/26/2zxrsi.jpg +ltn.com.tw##.ad_w300 +||zsjpi.cn^ +://seai*/ads/float.js +||jczunp.xyz^ +jyacht.com##.adve_3 +eastday.com##div[class^="double"] +||xuakn.icu^ +||tmea116.oss-cn-beijing.aliyuncs.com^ +||wwzw.cc/img/ +##.toy52apparel_ALL +subhd.com##.container > div > div[style="padding-top:120px"]:not([class]):not([id]) +||x08jd.top^ +||baidu.com^$subdocument,domain=dm5.com|dm5.hk +||ifeng.com^*&adids= +/Runtime/Js/960_90.js +/yryy/css/zepto-lie.js +tvbs.com.tw###news_detail_div > div[align="center"] +||qzalsk.xyz^ +axios-js.com###lagou-vip +||houbliu.top^ +yiche.com##.focusbglink-s +||zuoyebang.cc/zyb_4953cbb8a9a2332469592196c056a906.jpg +||adhvz.cn^ +||zp0737.com^ +||iewruto.top^ +##._cggp +||ddllhqj.xyz^ +lvmama.com###leftDialog +||sowwoy.xyz^ +linux.cn##.linuxcnad +baidu.com##.afd-item +cn.bing.com##.b_bza_pole +||bdjiaoben.wmxa.cn^ +||itc.cn/?prod=rtb& +@@||qingcheng.com^*/ad +##.ads_topBanner +@@||bilibili.com^*/web_page_view?$domain=message.bilibili.com +msn.cn#%#//scriptlet('inject-css-in-shadow-dom', '#entry-point-hp-wc-header[style^="top:"] { top: 0 !important; }') +hk01.com##div[class^="Box-v"] > .enterviewport__wrapper:has(> div[data-id="lazyload-placeholder"]:only-child) +managertoday.com.tw##.pumkinBox +||image-shop.baidu.com/n/imageproduct? +||dushiyanqing.net/mobile/lib/ccppcc.js +makepolo.com##a[href*=".rong360.com"] +sina.cn###j_gotop ~ .fl_suspension_template +||meipian.me^*/api_ad/ +@@||ads.reddit.com^$domain=myqqjd.com +/template/hei//poster.php +||kweriod.top^ +||redshu.com/js/www/jquerygg.js +m.sohu.com##.feed-list-scoped > div[data-spm-type="content"] +py.cn##.index-advert +||tehxzz.xyz^ +||hangzhouhdb.top^ +||rzflhxn.cn^ +boke112.com##a[href*="url.cn"] +||znhlxvb.xyz^ +hcomic.net##.main-container > .swiper +||itbear.com.cn/abc/list-and- +ruanyifeng.com#@#a > img[src*="wangbase.com/blogimg/asset/"] +168gamer.com,168gamer.net##.b_tad +@@||qiyipic.com/common/fix/pub_images/ +||z.grfyw.com^ +docs.cfw.lbyczf.com###推广 + div.list +||gold678.com/news/js/layer/layer.js +baofeng.com##.ad-bar-r +chinaz.com,ofweek.com,yawin.cn##.adtext +/blog/showdetail.php?z=$script,third-party +pianba.net###jiedoubanban +||17yy.com/style/ifra_ad/ +51nongyao.net##.sectionBanner +||autonet.com.tw/90/ +360che.com##.adver1000_60 +@@||cdn.rawgit.com/*/lazyload.js$domain=javmost.com +##.ya-normal-box-done +||ifeng.com/showcode? +||chinairn.com/images3/*ads +.com/dm/bofangshang.js +||jwatera.top^ +||myreadcloud.com^ +@@||bdimg.com/static/wkcore/widget/adControl/adControl_ +||house.sina.com.cn/2.0/abp/ +||cnpingpang.com/uploadfile/TTW.gif +/templates/*/js/_banner.js +||kbomku.xyz^ +axios-js.com##.vultr-desc +||bewr1.com^ +##a#wrapper_right_bg +||jy135.com/js/pubuliu. +msn.cn#%#//scriptlet('hide-in-shadow-dom', '.recommended-sites-container') +||laixi.com/tp/20 +||adbottw.net^$third-party +@@||colamanga.com^$generichide +/include/ad_ +blog.51cto.com##.relatedArt.box +2345.com##.mod-txtred +||baidu.com/brands/yxtg/source/yxCoupletsAd.js +/runtime/ad/* +||ycq.cab^ +||delivery-pc.wasu.cn/d/frontJs/3.0$rewrite=abp-resource:blank-js,domain=wasu.cn +||py.cn/src/img/pyy/ +100bt.com##.aolasidebar__ad1 +@@||adsense.woso.cn^$~third-party +||bfjszxzfvf.com^ +xfastest.com##.vw-header-ads-wrapper +||dm.hxzdhn.com^ +liaoningmovie.net##[class^="c-ad"]:not(.c-ad-103) +||bbs.voc.com.cn/s.js +||baidu.com/img/iknow/wenku*85. +@@||doubleclick.net/gpt/pubads_impl$domain=www.gamer.com.tw +@@||papi-service.jd.com/ads/ +||ptbus.com/s.js +||tfg2.com/images/upfile/banner/ +.com/qxads/ +||leagsmk.icu^ +||shbzigs.cn^ +||chrtds.xyz^ +/template/shoujigg/* +||orssengseen.com^ +/images/ta1234.js +win0168.com##div.item +||1iuybpo.com^ +||zxpvalr.xyz^ +liaoningmovie.net##.ads-container +||dongchedi.com/motor/ad/ +||xlkdbbvy.xyz^ +||025yimei.com/templets/default/js/swt.js +||agrantsem.com^$third-party +||jiejueba.com/templets/16img/*.js +||ogyoopo.cn^ +||mnifdlax.top^ +3dmgame.com##a[href*=".chuangmengsy.xyz"] +@@||easylife.tw/js/adblockDetector.js +@@||hk.on.cc/js/v4/oncc-adbanner.js$domain=hk.on.cc +||flo.uri.sh/visualisation/14819166/embed?auto=$subdocument,domain=tw.news.yahoo.com +moegirl.org.cn##.moe-card[region="oversea"] +||qiyipic.com/common/*/255x205 +baidu.com##.yitiao-box +taobao.com###J_shopkeeper_bottom +###menu + script + #topBox +mcc.xunliandata.com#@#.ad_wrap +businessweekly.com.tw##body .Google-special:not(#style_important) +csdn.net###kp_box_476 +||tuvixr.xyz^ +gucheng.com##.gcw_r_ad_pc2 +jsjiami.com##.asd > li > a.shaky +v.qq.com##.game-switch-ad +||a1.bestopview.com^ +docsmall.com#%#//scriptlet("set-constant", "_AdBlockInit", "noopFunc") +/adinfo? +||xhymsq.com/data/attachment/portal/ +8727ck.cc,8726ck.cc,8724ck.cc##body > div[style] > a[href][target="_blank"] +pjtime.com###Couplet_r_big +||trf6b.top^ +##.gpt_ads_box +imkan.tv##.bottom__card +yunpanziyuan.xyz##.card-site-info + .card +##.stui-vodlist__thumb.lazyload[href^="http"][target="_blank"] +||sdjbcjsbdjk.com^ +mtrend.cn##.right_hongbao_xuanfu +rrys2019.com###globalNav1 +||jsgdvkjz.com^ +hk01.com###debug-0-ad-outer-container +17qingsong.com##.detail-gads +||chgpuxim.xyz^ +||ettoday.net/events/ad-tab/ +||tongbaimi.cn^$third-party +chinamedevice.cn,hgitv.com##.gg12 +||nbegame.com/nbeos/*.jpg +buzzorange.com##.adNoSex +||nouusup.icu^ +||lnalzll.top^ +||qgl27.xyz^ +mycq.qq.com##div[style^="width:960px;"] +@@||hboav.com/js/wlfloat.js +||pstatp.com^*/bannersdk/ +##a[href^="http://ad-apac.doubleclick.net/"] +||gtimg.com/pingjs/ext2020/dc/module/GJ/ +||youxi.baidu.com/tips/bdtips_min.js +dapengjiaoyu.com##.upload-app +/ad1_ +||lhmebwq.cn^ +/ad_left. +szonline.net##.ad_1000_90 +it1352.com##.content-wrap > .hidden-sm:nth-child(-n+2) +||fpninv.xyz^ +||itavcn.com/pic/news/*x90 +||ak530.com/js/*.js +||wowad.wow-classic.com^ +||aqvi.cn^ +##div[style^="width: 100%;"][style$="margin: 0px;"] iframe[scrolling="no"][src*="//"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +||52996.me/scripts/my_ +||xfrahb.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###thread_list > .j_thread_list:not([data-field]) +@@||yygsz.com^$generichide +||semhgk.xyz^ +||jxqdl.cn^ +||pingpang.info/themes/v1.0/images/temp/ad/ +||hujunhao.name^ +pconline.com.cn##.rela-best +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv##.v-ad +||11.96131.com.cn^ +||mzthbna.xyz^ +||adsclick.yx.js.cn^ +||bdcmwcl.icu^ +||gp.zaiyunli.cn^ +feebee.com.tw##div[id^="afsh_"] +||ato.tooopen.com^ +||fx678.com/htcount/count.js +.com/dm/banner.js +91porna.com##.carousel-container:has(#carouselExampleInterval) +||dinggling.com/gmifr_lei. +eworldship.com###d2 +||iujlwn.icu^ +lzcfz2.com,lzcfz7.xyz##body > .cl.wp +||clcmdie.com^ +gsxt.gov.cn#@#.ads-right +/zcool-analytics.js +||suibianlu.com/zb_users/theme/tx_fzy/script/zhao.js +||rtroytj33.fun^ +||lawtv.com.cn/skin/newplayer/ads_dianshi.php +ifeng.com##.ad1000-2 +pindao.hao123.com##.cmsad_wrapper +||ghjedashb6.fun^ +||chinabidding.cn/gys.ad/ +||jjwxc.net/jjad*.html$popup +e0838.com##.ad-txt + a +zhihu.com##.RelatedReadings-adItem +||azhibo.*/media/aimg/*.gif +yidianzixun.com##.layer-download +||sogoucdn.com/nstatic/js/showtime.js +||maxucc77.top^ +||hjnjjcw.xyz^ +||kuazhi.com/zb_users/plugin/allshow/js/main.js +||7scs.com/Public/img/list- +$popup,third-party,domain=76fengyun.com|avsdown.com|downdv.com|downdvs.com|downhhh.com|imedown.info|jandown.com|mimima.com|mnks.jxedt.com|rmdown.com|soyunpan.com|xmflv.com +duodada.com##.row > div[class] > div.page-header ~ div[style^="width:100%;"] +baidu.com##.result-op[tpl="pc-soft-accurate"] > div > .c-row +||pic.959.cn/media/js/ +expreview.com##.mamaBox +baidu.com###index_right_float +eastmoney.com##iframe[src^="//same.eastmoney.com/"] +||elprput.xyz^ +honglingjin.co.uk##.rsads +||moonbbs.com/data/attachment/portal/ +||cfzhushou.com^*/King_Chance_Layer.js +||nfmovies.com/pic/tu/a191124003. +aiweibk.com##.pc +||xiaoma.com/xiaoma/www/js/article_right +gywb.cn##.bill-vertical +||5278.mobi/aa/ +##.sidead +chongbuluo.com##.postright +||9527yy.com/js/data2.js +||wcsmvmf.icu^ +||xvpqrydt.xyz^ +19lou.com,ihome99.com##.ad-300x30 +||adimg.liba.com^ +||zhimg.com^*adx +||dat1.jzjxmj.com^$third-party +||udkpcc.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [class] > [id*="00"] > div +|http*://$script,third-party,xmlhttprequest,domain=23wxx.com|cyxse.com|lwxiaoshuo.com|m.1200ksw.com|m.16kxsw.com|m.23sw.net|m.2kxs.com|m.360118.com|m.37zw.net|m.50zw.co|m.50zw.la|m.50zww.com|m.52biquge.com|m.58xs.tw|m.5ccc.net|m.630book.la|m.67shu.com|m.69shu.org|m.80txt.com|m.83zw.com|m.88106.com|m.88dus.com|m.98xiaoshuo.com|m.aiquxs.com|m.aszw.org|m.b5200.net|m.baishulou8.com|m.baoliny.com|m.beijingaishu.net|m.bichi.me|m.biqudu.com|m.biquge.com.tw|m.biquge.info|m.biqugego.com|m.biqugexsw.com|m.biqumo.com|m.biquwu.cc|m.boluoxs.com|m.book9.net|m.booktxt.net|m.bqg5.cc|m.bqg5200.com|m.daizhuzai.com|m.dashubao.cc|m.ddxsw.net|m.dhzw.org|m.diyibanzhu.xyz|m.dpcq1.net|m.duanwenxue.com|m.fhxiaoshuo.com|m.gsdaquan.com|m.gulizw.com|m.gxwztv.com|m.haotxt.com|m.heiyanwang.com|m.hkslg.net|m.jjxsw.org|m.konlan.org|m.kxs7.com|m.lanseshuba.com|m.lbxs.com|m.lewenxiaoshuo.com|m.liewen.cc|m.liushuba.com|m.lkshu.com|m.longtanxs.com|m.luoqiu.com|m.lwtxt.net|m.miaobige.com|m.miaoshufang.com|m.mishug.com|m.panqis.cn|m.qianrenge.cc|m.qu.la|m.ranwena.com|m.sanjiangge.com|m.shuanshu.com|m.shuketxt.net|m.shumil.com|m.shuqu8.com|m.shuquge.com|m.shushu8.com|m.silukeke.com|m.sjtxt.la|m.sosoxiaoshuo.cc|m.sqsxs.com|m.suimeng.la|m.tingshuge.com|m.tsxsw.com|m.ttzw.com|m.txt2017.com|m.txtduo.com|m.tywxw.la|m.vodtw.com|m.wanjuanba.com|m.wantxt.com|m.wenxue6.com|m.wenxuem.com|m.wenxuemi.com|m.wodeshucheng.com|m.x81zw.com|m.xiaoxiaoshuwu.net|m.xiashu.la|m.xinshula.com|m.xs.la|m.xs222.tw|m.xy48.net|m.yawenb.com|m.ybdu.com|m.yssm.org|m.yunlaige.com|m.yuyouge.com|m.zhenben.cc|m.zhuaji.org|m.zhuishubang.com|qihaoqihao.com|wap.xxbiquge.com|wap.yb3.cc|xntk.net|yfxiaoshuoa.com|zwdu.com +_rony.js$script,third-party +||minixiazai.com/statics/js/soft/index.js +zhujiwiki.com##.sidebar > .widget:first-child +pjtime.com###Couplet_l_big +||5mltq.icu^ +/wap_advpic/* +||91p20.space/fans/ +###top-gg-container +baidu.com##div[data-ad] +nfmovies.com#?#div[id]:-abp-has(>img[onclick="openurl()"]) +||erebor.douban.com^ +typecho.wiki##.net +newxue.com##.bd500 +so.com###mohe-medicine_sy > .cont +||p2peye.com/ajax.php?mod=advertisement& +0597kk.com###kk_oTransContainer2 +||100bt.com/dc?Url +kpzpw.com##.littlebanner +wss://*.xyz:*?x=$third-party +jable.tv###jimds-slider +91wii.com#%#window.ad = window.ads = window.dzad = window.dzads = true; +ws://*/api/wss/GetNotReadCount$third-party +||n2.hk/promo/ +||vcdfsf99.fun^ +.info/topjs/ +||m1.jintang114.org^ +||lwdcnz.xyz^ +qingdaonews.com##.zhqd +@@||kehai.com/front/dist/app/site/list/advertisement.js +||wnacg.*/w8z/ +||airav.cc/Ucenter/*_Ad +||pg-ad-b1.nosdn.127.net^ +||bltmjevd.xyz^ +||cldxphtg.xyz^ +##a[href^="javascript:GoDb"] +@@||cmoney.tw/finance/js/googleanalytics.js +msn.cn##.rc > a[href^="https://sp.booking.com/"] +||zol.com.cn/active/*tmall +||crxs.me/plugins/jquery.modal/ +jx3pve.com##.m-banner-tool +||optimix.cn^$third-party +tvbs.com.tw##.smart_banner +||iiikefu.com/wp-content/plugins/halfdata-green-popups/js/lepopup.js +||zhujiwiki.com/ad/ +iciba.com##.recommend-item:not([href*=".iciba."]) +||log.music.baidu.com^ +||kdqlbm.cn^ +||4567.org^$third-party +/cdn/adx/* +||hhffnu135.shop^ +||alimama.alicdn.com^ +||jdickea.top^ +||cfugrnc.icu^ +hao.360.cn###iguess +||dytt399.com/966.jpg +lanzous.com##.appad +tobosu.com###alert_order +||pixfuture.net^$third-party +rkanr.com##.bill +/Runtime/Js/300_300.js +||shulihua.net/js/yegonggao.js +51nongyao.net##a[onclick^="javascript:trackEvent('AD-Banner'"] +||pseudonym.cn^ +qiuquan.cc##.sidebar .aligncenter +||zekzoh.icu^ +fmprc.gov.cn,mfa.gov.cn#@#.adbox2 +/ajax/ad/* +||kkkaii.cn^ +||sogou.com/amdjs/release/common/act_all_ad. +ifeng.com##.v_adbox +@@||thisav.com^$generichide +||zzbaike.com/sites/all/themes/zzbaike/images/ +.k618.cn/sytab/ +/e/ecmsshop/zhuanpan/js/* +||73336zubo25326.com^ +recruit.com.hk###bottomBar +||lofter.com/mailEntryMobile.do +||pdngnx.xyz^ +qqjia.com##.mainad +ifeng.com##.pic300 +cnbeta.com##div[style^="display:block !important;"] +||divcss5.com*/liping/ +159i.com##.a3d +jiegeng.com##.header__item--fr +||openinstall.io^$third-party +||adm.52swine.com^ +||hkjzkrqz.icu^ +pconline.com.cn###JBestRecomm +||lryqef.xyz^ +naozhong.net.cn###pnl-ne0n +/websales_push_*_big.php?id= +finance.sina.com.cn##.side-btns-jifengame2021 +qidian.com###banner1 +||yy18.info/yyads/ +||fsgiosi.com^ +longzhu.com##.chatroom-ap +tt1069.com#@##adbrite +||1.07swz.com^ +||flighty.cn/images/ +efu.com.cn##.zs_banner_a +||img.lancdn.com/*-top-banner- +||bieuc.icu^ +17ce.com##section[id*="top_banner"] +||msn.ynet.com/c/tj_comm.js +||xinchl.xyz^ +||subhd.com/images/ap/ +yigujin.cn###cebianlan img[src*="/tp/"] +colamanga.com#$#div[class^="layui-layer-"]:not(#color) { display: none !important; } +||rawmtft.cn^ +||ainunu.*/vad.js +||ariqye.xyz^ +ft.com,ftchinese.com##.bn-ph +www.zol.com.cn#@##search_ad +||youmelive.com/timg/ +||bmnbyn.icu^ +gp123.cc##table[height="66"] +duba.com,uu114.cn##.adfixed +##.ads-before-content +||jy135.com^$third-party +gg163.net###container > table[width="960"] +||thruudrad.com^ +epinv.com##.epinv_f +||g.rexian.net.cn/js/ +||ijvla.cn^ +oschina.net##div[data-tracepid="question_detai_above"] +||birglucy.xyz^ +52tian.net##.sidebar960 +uisdc.com##.archive-pm-top +3d66.com###botfocus-soft +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###fixed_daoliu +event.biotherm.com.tw#@##ad1 +/static/js/headad.js +||m6690.top^ +imnks.com##.adTags +qiyeku.com###gg2_box +gkstk.com,ufanw.com##.layui-layer +douyu.com,oschina.net#@#.follow-btn +copymanga.org##.comicDetailAds +||aa.xiangxiangmf.com^ +huya.com##.J_ad +||fufrnl.xyz^ +52av.one##.message + center +111os.com###midBox +##.ad_bar +/tb/img/hg/hg.gif? +chinaz.com###centerTxt +dogedoge.com##.tag-home__item +||2018x.*/guang/ +gamersky.com##header[class^="ymw-header20"] +||ad123.ynet.com^ +||youy14.com/js/zz/xf.js +wn789.com##a[href^="http"]:not([href*="://www.wn789."]) > img +chinafix.com##div[id^="diy_vk_ad_"] +||96696612.top^ +cpnn.com.cn###myimg +||eheuye.xyz^ +damon624.pixnet.net##aside[data-advertisement="true"] +||98765.pw^ +||wftyehw.cn^ +applnn.cc#%#//scriptlet('prevent-eval-if', 'encodeURIComponent') +@@||ksapisrv.com/rest/wd/common/log/collect/ +||taozi888.com/sys +~cbachina.sports.sohu.com,sohu.com##sohuadcode +||guahao.cn/blank.gif? +||0722fc.com/index/tools/js.php +||shuocyw.cn^ +||sl.al/gdrive/pic/*.gif +||dkasffredf.xyz^ +||bd1.pipaw.com^ +||sinaimg.cn^$domain=04stream.tv|11luba.com|18board.com|18p2p.com|46bk.com|500xxxx.com|522dy.com|63ef.com|7mav2.com|7mshipin.org|94xxmm.com|99a21.com|abminbuy.com|acglover.me|aotu101.com|aotu103.com|blz105.com|blz20.com|blz24.com|caibaojian.com|cangjige.net|ccxx99.com|cnmysoft.com|ems183.cn|fdzone.org|kccdk.com|kiees.cn|kisssub.org|lifan.moe|llj22.com|pianyuan.org|rarbt.cc|sbme.me|se533.com|supfree.net|thztv.cc|tiantianzhibo.com|viidii.info|vx666.com|yaoshe1.com +@@||120.132.57.41/pjk/pag/ +99tianji.com##.kf1 +||dogfight360.com/Usbeam/yuelun_ad/ +||bjappzvz.xyz^ +||wubizigeng.com^ +||vdggsd014.com^ +||yzpsb.net/js/shang.js +||en8848.com.cn/js/content. +jmw.com.cn##.coupon +##.bottomAd +tropica.cn##.wp1.a_t +||sooopu.com/asphtml/plnew. +||upailek.cn^ +6fzd.com,fzd3.com###comiis_app_block_74 +dlkoo.com##ins[id^="tanxssp-outer-conmm_"] +||ligfdjnfd.cn^ +||dabin69.com/data/attachment/portal/ +/Runtime/Js/pc_top.js +cqmmgo.com##.ad-cycle +||itakrid.icu^ +||feizl.com/images/smdd/ +||p0y.cn^$image,domain=~ipinyou.com.cn +aishoujizy.com###ShouYe_ShangBu > .HtmlMoKua:first-child +||seowhy.com/ask/img/*gg +||daf-rs.com/imageViewer/wpAd +||py.cn/static/images/advert/ +||jxcn.cn/assets/images/downWeatherApp.png +2345.com###J_bgSug1st +.com/m-2594|$script,third-party +bccn.net##img[src*="data:"] +wezhicms.com#?#.card-main:-abp-has(.waimai-item-img) +||sinolub.com/index.php?m=poster& +/mshow.aspx?AID= +@@||carexpert.com.tw/wp-content/plugins/like-box-pro/includes/javascript/front_end_js.js +||tlpyft.xyz^ +morningpost.com.cn###\33 60hot +||mrtxtrq.xyz^ +||shaoxing.com.cn^*gg. +||xvideo.cc/im4.js +||mydyxs.com/mpc/ +||211600.com/data/attachment/portal/ +||941novel.com/wp-content/uploads/*.gif +ifeng.com##.ljPop +/adfshow? +||1024down.com/images/*.gif +woshipm.com##.article-bottomAd +3dmgame.com##a[href^="https://down.hyds360.com/"] > div[style] +@@/adpic/*$domain=baike.baidu.com|czsrc.com|nieyou.com|ontheup.com.tw|zform.net +jianshu.com##.top +||eyyngo.xyz^ +||9ez.me/embd.php?type= +baidu.com##.ts-qrcode +mooc1.chaoxing.com#@#iframe[width="100%"][height="120"] +/yryy/css/venus.js +||nkbkor.icu^ +/duoteimg/dtnew_assets/pc/js/tech/chaping. +/Runtime/js/fumeiti. +duba.com###ad-detail-banner +@@||yummy.best^$generichide +||tlfvj.cyou^ +@@||sinaimg.cn^*/deco/*/sinaObj.js +||bitauto.com/js/sense*.js +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="330"] +cjn.cn##.sidebar +chinanews.com##.add4 +||n55cpw.vip^ +||a1.lshou.com^ +wiki.mbalib.com##.ad-br +@@/setCookie?$domain=ctrip.com|ctrip.com.hk|pinyin.cn +_ad1.$~stylesheet +##.ad_bg +sina.com.cn##.zhongce +||ozdq.cn^ +qq.com##.seeking-gg +||51ztzj.com/res/web/img/pic/inshow.jpg +||gaoqing888.com/img/icmarkets. +@@||ruten.com.tw/ahd/fetch_ad.php +||qixingquan.com/qxq-images/js/qxq_t.js +ksbbs.com,kshot.com###banner_top +||da.duowan.com/loc/ +hpjav.tv##body > div[style^="position: fixed;"] +||edvxgqx.com^ +image.baidu.com##.sample1 +||iyuedu.cn.com^ +||wbubgob.cn^ +||bejson.com/static/ydxyt/ +||qhimg.com/js/iwt.js +whcykj.cn###InviteContainerl +/contentAd. +zhcw.com##.yzjggw +||114lm.com^$third-party +###gg_url +||kqjqripb.xyz^ +dogfight360.com#%#//scriptlet("abort-current-inline-script", "document.write", "document.write(ad);") +cnfol.com##.NewAdBox +baidu.com##.rmb-carsousel-position-bottom +||xiaodutv.com/xda? +itdog.cn##.card[style="padding: 6px 10px 5px 5px;"] +||bi25.cc/js/hf +||it8vh.site^ +||ax1x.com^$domain=caibaojian.com|hktvyb.com|zzvips.com +||daweijita.com/201*430. +||soaspx.com/images/js/dropdown.js +||qacdf511.cn^ +||zdcj.net^*/ad +bitauto.com##div > ins[data-type="ad_play"] +miliav.com##.b300 +###lovexin2 +@@||s.yimg.com/ja/ap/*/jquery.$domain=hk.news.yahoo.com|hk.yahoo.com|tw.news.yahoo.com|tw.stock.yahoo.com|tw.yahoo.com +###container.container > a.item +.k618.cn/zbggw/ +||ntimg.cn/original/images/www_ads.jpg +51live.com###adquality +||sgru.cn^ +||qbox.me/FlnVIdUeIo_LrXyGiOL0OFw0Gpa7 +||kokojia.com^$third-party +||singlove.com/qq/qq.js +||fqfclmlo.xyz^ +||06789.xyz^ +21uscity.com##.R300x70 +||a1.twtym.com^ +baixing.com###port-info +||gtimg.com/sports/images/30090.jpg +||tui555.com/public/gong/js/a_ +dragon-guide.net##.container > .gutter:first-child +||tianshui.com.cn/datugg/ +||tianji520.cn^$third-party +maxthon.cn###festival-rain-wrapper +||weathercn.com/m_mobile/ad_image/ +||32ycta.xyz^ +taobao.com##.banner.row +##.pro1-molnk +||vbutycp.cn^ +||dufile.com/jsa/ +||itwzlyq.com^ +appchina.com###yyh-bottom +3dmgame.com##.listlab > .img[href*="/yx."] +eastday.com##.right_adv_1 +sogou.com###PZR +||ifeng.com/uploadfiles/main_blog/main_child/v3_block +||cosmo202.top^ +||a2.b310.com^ +jstv.com##.TuiGuang +||img.zuowenwang.net^ +21cn.com##div[class^="topAds"] +||yxgfcj.com^$third-party +||okagcw.xyz^ +2chcn.com##img[width="300"] +||cnblogs.com/blog/36987/201509/36987-20150913115252950-1736386654.jpg +||rvvji.online^ +||h1.kukuw.com^ +||xinju.cc^ +||okkkk.com^ +virscan.org##div[class^="ad_"] +||jingujie.com/public/jgj_ +@@||tsyndicate.com/sdk/v1/n.js$domain=hpjav.tv +||xgrcfz.xyz^ +bookrb.com##a[href="/rmtj.html"] +hotjob.cn#@#.SOCIAL +||kyislod.top^ +||kankantv.cc/330-50.gif +##.push-slider[clickmode="cpt"] +jirou.com###guanggao +eeyy.com##.gg_top +||0yzabcd.com^ +pixnet.net##.article-content-inner > div[style^="color: #141823;"][style*="font-size: 13px;"] +||cxlvlbx.xyz^ +||doujs01.xyz^ +||xylhwdu.com^ +||lm.ijq.tv^ +||fx110.*/Pub/Ghz/GetModel +caibaojian.com##a[onclick*="aliyun"] +||bxmazls.icu^ +||5598tp.com^$domain=9xav.cc +hupu.com##div[class*="ad980-60"] +||d15cjcet1djbmv.cloudfront.net^ +teddysun.com##.sidebar > .widget:nth-child(2) +||wwwcdn.kimiss.net/btn/ +||imooc.com/open/courselistrandjs +173.192.147.21,sejie.com,sejie3.us,thesoccerline.com###wp > center > a +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ec_bdtg +##a[onclick^="_czc."] > .add +||news.qcyz.cn^ +51zhishang.com##.zhezhao +||imgur.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|ac88.info|aisex.com|cnnice.biz|go543.com +||unalzlt.top^ +||*/ad/$rewrite=abp-resource:blank-mp3,domain=huaren.tv +alibabacloud.com###carousel-whois +||res.vps234.com/resources/images/hosting-promotion/ +dayanzai.me##.at1 +ggcj.com##.dbxf +||dabai28.com/img/*.gif +16sucai.com##.pindao_ad2 +cq.qq.com##div[style*="1000"][style*="60"] +||vip.ludu319.com^$third-party +###top-ad +maxthon.cn###side-game-pop +||bkbbjtfp.xyz^ +jpwind.com###asideNav +gfsoso.99lb.net##center > #logo-gf ~ h7[style="color: red;"] +.com/js/ddd.js +||durynslg.xyz^ +gfan.com##.art-ad +85lou.com###topwarning_7ree +||a.rensheng5.com^ +hualongxiang.com##.wheelplayer +ucptt.com##.hidden-sm +||ghghgf.xuexiwa.com^ +liba.com##.bottom-pic +ppsport.com##.slide-img[href^="http"] +||ccement.com/index/index/fetchAd +||tianshui.com.cn/Scripts/AC_ +uc123.com##.s-right +fun48.com###float2016 +###ad_box2 +||m1170.top^ +||9y01.xyz/app/index.html +firefoxchina.cn##.main-promote-tmall +||juljrd.xyz^ +vk922.com##a[href^="/ad/"] +||qewruty.top^ +||ykcsldm.icu^ +||wecfgy36.shop^ +||hknoq.cn^ +##[class][onclick="window.location.href='/api/goapp/'"] +bestopview.com##.Adv_c +||ybcnvqf.cn^ +||zhihu.com/commercial_api/banners_ +@@||aixifan.com/dotnet/20130418/script/fingerprint. +juxiangzuan.com,senao.com.tw#@#.ad-img +/k228.oss- +||pianyuan.org/zfb. +@@||youneed.win^$generichide +cps.com.cn##.couplet-le +2345.com##div[class*="act-open"] > :not(.close):not([class*="mask"]) +||ywg.jobui.com^ +qq.com##.public-banner +/BrandXuanDong.js +@@||pos.baidu.com^$subdocument,domain=bigpixel.cn +||storyren.top/imgg/ +||mo.gushiji.cc^ +||eprice.com.tw/img/tw_m/ad/ +||fmhua.com/template/*/images/g_js/*.html +||2jse6.icu^ +||nxxkxr.xyz^ +423down.com##.entry > p[align="center"]:first-child +###fwin_popad_7ree + #fwin_dialog +||62zd0.icu^ +hao123.com##.cmsad_wrapper +teddysun.com##.sidebar > .widget:nth-child(3) +||hauqks.top^ +||delivery.wasu.cn^ +yazhouse8.com##.banners +||juapp5.com/geek_image/chaopai.jpeg +||mipengine.baidu.com/common? +ifeng.com##div[class^="adv0"] +||nyfgpbsc.xyz^ +##a[href="https://yk63.me"] +zhcw.com##.tgtc +findprice.com.tw###divBestBuy +||zoossoft.cn^$third-party +##.gg-box +||lkdyft.xyz^ +||house365.com/im_show/imshow.js +@@||myqqjd.com^$generichide +515fa.com##.gg_ad02 +smjb.net##div[style*="height: 50%"] +||bd1.qcjslm.com^ +/ad.gif| +||iviewui.com/v1/*?name= +123pan.com##.banner-container-pc +aiyuke.com###js-ad-type4 +douyu.com###js-room-activity +||bydebd.xyz^ +||farm-cn.plista.com^ +||dagou2018.com/js/item +apachecn.org##.md-banner +||oxmvcg.xyz^ +@@-social-bar.$domain=mobi.yahoo.com +duote.com,soft-down.net##.fast-down-btn +@@||video.520cc.cc^$generichide +udn.com##.bg-banner--link +://*btbtt.*/imgs.js +azofreeware.com,pttjoke.com###HTML3 +embedrise.com#%#//scriptlet('prevent-window-open') +abmedia.io##a[href^="https://ace.io/"] +||cdndm.com/3/2015/$domain=1kkk.com|dm5.com +blog.51cto.com##li.creative > a.task +||szptp.cn^ +||touimg.com/u/20200510/2142*.gif +||a.zuowenxuan.cn^ +@@||mmy.la^*300*250 +||baidu.com/newspage/api/getrelatednews? +||ajijcy.xyz^ +||kkosiso.com^ +||zpvuugw.cn^ +awaker.cn###jiji + div[style="padding: 20px"] +##a[href*="/PageRegister?Agent="][target="_blank"] +||bytravel.cn/js/s_ +||ccav1.me/block.js +||ukgfniu.cn^ +||impservice*.youdao.com^ +###slider_ad +douyu.com#?#.wm-general:-abp-has(.link[href*=".tmall.com"]) +||98.126.219.*/ads/ +t.cj.sina.com.cn##.yyy-wrap-2021 +||d.6xw.com^ +xvna.com##.rctad +||n0566.com^ +kkj.cn##body > div[style^="width:"][style*="height:"][style*="background-color:"] > a[rel="nofollow"] > img +||kaiyuantp.vip^ +||acode.b2b.cn/JS/ +||iask.sina.com.cn/s-b/mxbg +91.com,hao123.com,site.baidu.com###midline +||nxflv.com/nxflv.js +gtloli.one###topbanner +||dm*.yxlady.com^ +zhihu.com##.LinkCard-ecommerceLoadingCard +##.ad-r +##.his-sign-cont[data-dysign-adid] +||wl.uqwjdhgv.top^ +||adadmin.house365.com^ +yiche.com##.focusad-box-s +.m.d8qu.com^ +07073.com###tanchuang +||cn.bidushe.com^ +||6gute.icu^ +@@||stcaimcu.com/data/attachment/common/cf/stc_logo_ +||8684.cn/id/ad_ +||coublif.top^ +||2cq.com/third/tieba/sidebar +||ifengimg.com^*/rdn_*.js? +jianshu.com###note-fixed-ad-container +||china.com/v_test +||5r562.cn^ +uc123.com###J_shoppingPush +||qqtn.com/js/downinfo- +###sc-superman-ad +pqworld.com##.left-float +/css/ads. +sina.cn###midThreeAds +eprice.com.tw##.ad-336x280-g +||huo720.com/files/vidhub. +mbd.baidu.com##div[class^="_"][style="visibility: visible;"] +zuoye.baidu.com##dl[class="card related"] +/duoteimg/dtnew_recom_img/duoteself/* +airav.cc###jssor_banner +||twlcyc.cn^ +||wwjtdjj.cn^ +||o.027eat.com^ +||sesefu8.com/index.php?m=poster& +1905.com##.zx-pic +||kwqnki.xyz^ +||99meiju.tv/template/zhuan/neirongye_foot.js +||hmoe12.com/wp-content/uploads/202*.gif +||baidu.com/staticapi/misadlist. +weibo.com#?#.card-wrap:-abp-has(>.card-top>.s-fr:-abp-contains(广告)) +||xchina.co/scripts/push_*.js +5888.tv###code_img +###propagandaInsert[style="display: flex;"] +@@||trip.cmbchina.com^$generichide +.org/topjs/ +||cr173.com/js/ +yesky.com##.abox +sciencenet.cn##.rbanner +||ztyumn.ifeng.com^ +/ajs.php? +acgcku.com##a[href]:not([href*="acgcku."]) > img[src*="acgcku.com/wp-content/"] +pixiv.net##.ad-footer + .hover-item +.com/dm/ahead.js +###aatop.top_box +banma.com##div[id^="disapper"] +||atzhcjv.xyz^ +||liaoxuefeng.com/files/attachments/00144*/0 +||tutudao.net/js/gg*.js +||fmzifaqi.xyz^ +ithome.com##div[style^="width:960px;height:60px;"] +##.pggf > .ng-star-inserted +douyu.com##.f-sign-cont +mywpku.com##.sidebar-recommended +18moe.org##.alignnone[alt="恰饭广告"] +||kgqcse.xyz^ +||100669.com^$third-party +@@||baidu-taobao-av.com/js/home.js +hao.360.com###top-nav +$script,third-party,denyallow=cdn.yinghuazy.xyz|authkong.com|rsc.cdn77.org|linkvertise.com|fastly.net|statically.io|sharecast.ws|b-cdn.net|bunnycdn.ru|bootstrapcdn.com|cdn.ampproject.org|cloudflare.com|cdn.staticfile.org|disqus.com|disquscdn.com|dmca.com|ebacdn.com|facebook.net|fastlylb.net|fbcdn.net|fluidplayer.com|fontawesome.com|github.io|google.com|googleapis.com|googletagmanager.com|gstatic.com|jquery.com|jsdelivr.net|jwpcdn.com|jwplatform.com|polyfill.io|recaptcha.net|shrink.pe|twitter.com|ulogin.ru|unpkg.com|userapi.com|vidazoo.com|vk.com|yastatic.net|ytimg.com|zencdn.net|youtube.com|cackle.me|googleoptimize.com|vuukle.com|chatango.com|twimg.com|google-analytics.com|hcaptcha.com|raincaptcha.com|media-imdb.com|blogger.com|hwcdn.net|instagram.com|wp.com|fastcomments.com|plyr.io|cloudflare.net|rabbitstream.net|x.com,_____,domain=mxdm.xyz +||kefeng56.com^$third-party +||xue.zbyw.cn^ +||ff.meikanguo.com^ +##.asb-post +##.txp_ad_center +||abminbuy.com/*.mp4$media,redirect=noopmp4-1s +@@||cdn.jsdelivr.net^$script,domain=yemancomic.com +||baidu-jxf.co^$popup +price.com.hk###ad0 +toy-people.com##.rightAd_300250 +techbang.com##.techbang_i_m_970x250_1 +rising.cn##.activity-ad +boke112.com###sidebar img +cilimao.co,cilimao.one##div[class^="FixBanner"] +samsung.com#?#.template-item:-abp-has(> .wrap-sub-title > div > .ad) +nick18.com###img a +weather.com.cn##A[style="position:fixed;top:220px;left:50%;margin-left: -625px"] +||loveameng.top^ +||hjdha.cn^ +chongbuluo.com###dzrid > .frame:nth-child(n+2) +||7vviw.cyou^ +||img588.net/images/*.gif +||olpv.onlylady.com^ +moxing.net##a[marked][href*=".taobao.com"] +||sina.com.cn^*/energypop. +yb983.com##div[id^="pop"] +||dsa22.com^ +dianyingim.com#%#//scriptlet("set-constant", "dy_card_dyrun", "undefined") +||tu1500919341.cc^ +/skin/view/ft$domain=iimanhua.cc|iimh.net +||peise.net/Skin/js/global. +niutuku.com##.listAD +||facebook.com/*/instream/vast.xml?*&pageurl=http*.4gtv.tv$script,xmlhttprequest,other,redirect=noopvast-2.0 +||sax*.sina. +v.qq.com###iwan-gamependant-page +/160_600_ +||56rmm.com:8888/js +69xx03608.xyz##.jsv-layer +900.la##.font-ad +@@||520cc.cc/ad/ad_1.php +||xn--wgvp78a61swpe6zdozj.cn^ +||d2un76zvb5mgzx.cloudfront.net^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,domain=yodu.org +17wtv.com##.ad3 +xbgame.net#$#.download .content-area > div[class] { background-image: none !important; } +||ad.fx168api.com^ +focus.cn##.module-common-float-im +||pdnwbwyf.icu^ +||tt123.eastday.com^ +||tiantianzhibo.com/js/banner.js +||fulibl.com/wp-content/uploads/2016/06/320-230.jpg +||qq.com/PL_adT.htm +/xuanfusige.js +||ebgwdon.cn^ +||newume.com/v1/data/ume- +@@||cbjs.baidu.com/js/m.js$domain=fxpan.com|iyingdi.com|pic.tiexue.net +fx678.com##div[id^="dl_"] +docin.com##.cpro_mod +moneyweekly.com.tw##div[id*="_ScupioHomeAD"] +||shfq.com/data/attachment/portal/ +ithome.com##.con-recom +||llblwzg.xyz^ +||2u3v4w5x6y.com^ +jd.com,~wan.jd.com##a[href*="wan.jd.com/"] +so.com###mohe-right_windows_ads +udn.com###ads-billboard +||kzprugp.xyz^ +||xcf-bd-js.chuimg.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pc2client +||xlplrhum.xyz^ +yahoo.com##li[id^="ad-"][class^="Pos"] +||115img.com/static/pc/d_ +caoporn.com###feadback-content +||xbtw.com^ +pixnet.net##a[onmouseover^="MM_openBrWindow"] +3dmgame.com##.Gmaeinfobtn_tab > [class][onclick] +bjhockey.org###homeVideoModal +###upprev_box +||moedao.com/js/top.js +guancha.cn###goapp +||pmiskc.cn^ +antpedia.com,chinamedevice.cn,lcxw.cn,msdn.hk##.gg1 +||3158.cn/static/js/fixbtm/ +1kkk.com##.lanrenzhijia +||erluankuan.com^ +||77ds.vip/js/shichuang.js +@@||ulifestyle.com.hk/store/prod/iskypost/res/js/dfp- +sina.com.cn###pip_taobao +##.textAd +hexieshe.com,hexieshe.xyz,xxshe.info##.entry-header + p + p[style="text-align: center;"] +qq.com###qqmail_AD_container +||ioublio.top^ +anjian.com,qq.com###advertisement +dayanzai.me##.down_show_intro_first_box +||microcontrol.cn/HomeImages/AD/ +/js/mmdaohang_2.js +qq.com##.J_hot_game +###app.app > .topic-big +news.pchome.com.tw##div[style="width:300px;height:250px"] +/ads.js? +##.rtcenter_game +||noafoaji.xyz^ +||mahoupao.com/api.php?mod=ad& +zt5.com##.gg_1 +pexels.com##a[href*=".istockphoto.com"] +dyxs23.com,dyxs20.com,dyxs15.com,dyxs14.com,dyxs13.com,dyxs12.com,dyxs11.com##.popupicon +||gg.uuu9.com^ +||mdqikg.xyz^ +||tgamtip.icu^ +sina.cn##.zhidi +911cha.com##.sideqr_left +||pconline.com.cn/global/footer/index.html +||ja*.gamersky.com^ +/z.zolapp. +||zjjhfc.com/js/zt.js +/yunfile/offline_banner/* +pxedt.net##.pf_dw +||5imx.com/image/image/ +||a.dyjqd.com^ +jjwxc.net##table[style^="width:984px;"] +kaopu001.com###pokemon +||8861202.com^ +caixin.com##.course_box +playno1.com##.mn > div[style="margin-bottom:10px;"] +||cdmgac.xyz^ +aguitar.cn,guitarchina.com##.headerbanner +##.rightd + .leftd1 +||bhhzlax.xyz^ +wandhi.com#%#//scriptlet('prevent-fetch', '/googlesyndication\.com|doubleclick\.net/') +||uxzvjoj.cn^ +##a[href*="/gg1132.vip"] +##img[data-link][data-src*="/u/"]:not([data-link*="/i/"]) +##.module-ttlist.tt_w-2 +||33img.com^$domain=18board.com|18p2p.com +||setn.com/js/idleAD. +/js/ads/*5.js +##.app-down-fix.body-fix +||static*.365inews.com^ +@@||kissjav.com^$generichide +v.qq.com##.player-side-ads +||xhnvgdkw.xyz^ +||51ui.cn/999.png +||hciwyv.icu^ +||ajbpcxi.xyz^ +##.g1_wz > .g1_tp +se533.com##div[style="width:960px;margin:0 auto;text-align:center;"] +@@||beyondsoft.com/dataservice/img/ad_ +soft.macx.cn#@##googlead +/js/ads/yezi +muzhi.baidu.com##.quick-ask-2 + .android + div +###top_ad_box +cger.com,pcsoft.com.cn#@#.share_box +/js/aahome.htm +duelmeta.com##.single-bottom-html +discuss.com.hk##div[style="width:728px;height:90px;"] +||huanqiu.com/resource/js/base +||6vhao.tv/d/ +netbardh.com###bg_right +mydrivers.com##.ab +@@||i2.bahamut.com.tw/JS/ad/animeVideo2.js^$domain=ani.gamer.com.tw +||wanwan.sina.com.cn/third_party/ +##.bn728-93 +qiuw.com##.con > a:nth-child(n+2) +||ad.u-car.com.tw^ +||starnnews.com/banner/ +||img.win0168.com/image/*.gif +69story.com###main > div[style="margin-top: 15px;"] +||adzdgr-wadd2-f1d.com^ +||fanquanwang.com/uploads/ad/ +steamcn.com##div > a[href*=".taobao.com"] +pc6.com###param + a +||qq.com/games/videogame.htm +hao.360.cn,hao.360.com###top_activity +||sjkdbvjksbv.com^ +||sinaimg.cn^*_wap_ad_ +||zjst.net/3.gif +/download-link-js/?v=$script,~third-party +1905.com,news.ltn.com.tw,commonhealth.com.tw,health.tvbs.com.tw,idreamx.com,xchina.co,99kubo.tv,manhuafen.com,world68.com##.ad +||xnnews.com.cn/tpl/material/ +||kkkjpg-522.cc^$third-party +||nahgvfhs.xyz^ +||iads.xinmin.cn^ +hehagame.com##.webad_bottom +||bdawrsi.icu^ +||shuowan.com/Public/shuo/20160119/569dafddd13be.jpg +||stat.ea3w.com^ +||ggwan.com^$third-party,domain=~linghit.com +||d.8181zx.com^ +2345.com##.mainbg +||macx.cn/js/blockadblock.js +||emizkno.cn^ +||meituan.com/xiuxianyule/api/getRecommendList? +||hvuqkb.cn^ +||ads-6686.top^ +cheshi.com##.ad_980105 +wx.sina.com.cn###artibody > .article-video +||jcbjcb9.cn^ +chaidu.com,kdslife.com###hb +china.com##.mm +buzzorange.com#$#.sidebar > section#text-8[style*="bottom: 240px;"] { position: static !important; } +/adflash/* +||rcyzsh.icu^ +||dmm.aizhan.com^ +||bycxhgrp.xyz^ +###qinav_a1 +.ppys.com/detail +sina.cn##.js-voice-yyy +wnacg.com#@#.Flagrow-Ads-under-header +||sbmhqe.xyz^ +||ezacci.xyz^ +720yun.com##DIV[class^="Ads_ads_"] +||ymcnsq.xyz^ +52bdys.com##div[style^="position: fixed;bottom:"] +||acemof.top^ +||pv966.us/js/tw.js +##.gg_950 +||jsxwfb.xyz^ +||cdyee.com/external/5070.files/ad/ +||wai69.com/js/baidu/ +baidu.com##.guidetowkOperationwg-root +||234fang.com/index.php?/ajax/get_adv/ +||v.pcswtw.cn^$third-party +||a.777n.com^ +##.iHead960x90 +||splfnok.cn^ +##.b_sxp + .zxy +##.b_ad +yahoo.com###ACT_takeover2 +dict.cn##.search-right-ad5 +||idickeo.top^ +o8tv.com##a[href^="https://c.madeqr.com/"][target="_blank"] > img +@@||addon.dismall.com/resource/*/ad +so.com###js-mod-fixed-float +||mhglue.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_banner_post +||fopksr.icu^ +||clmkwi.xyz^ +||vqbzpv.xyz^ +||jrpolj.xyz^ +@@||msecnd.net/scripts/jsll-$domain=microsoft.com +||kykqss.xyz^ +||kgidskid.top^ +||2016.bkill.net^ +||bnrk7esglquispx2lsluttlm.xyz^ +||kfycmiu.icu^ +||bing007.shop^ +||imeee.cn/DA_HTML/*.js +||eastmoney.com/trade/hqb_hq.html +||cloudfront-666.kxcdn.com/v4.js +/images/ad/* +||gw2cddpt2hao.asia^ +||img16.diyifanwen.com^ +vuetifyjs.com##.v-sponsors +qidian.com##.right-op-wrap +fastadmin.net##.hot-article + .panel-default +||tianshui.com.cn/gg/ +||grthhr.xyz^ +expreview.com##.crossAd +me360.com##.footer-booking-open +||flash.mycar168.com/data/js/ +huarenjie.com###cftoutiao +polyapt.com#@#.ad-one +ifeng.com###funBar +||p1corn.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###op_wiseapp +@@||jd.com/adclick?$popup,~third-party +||oss-ap-southeast-1.aliyuncs.com/js/copy.js +iqiyi.com##a[id^="100000"] +##.video-holder > a[target="_blank"] > img[src*=".360buyimg.com"] +.m.gxwztv.com^ +xiashanet.com###top_content +##.full.banners12 +hb.qq.com##div[style=" width:300px; height:250px; overflow:hidden"] +||qyerstatic.com/common/models/common/component/footerBanner/ +muchong.com##.a_subject[href^="creditshow."] +chinacsbs.com##a[href^="/plus/view.php?aid="] +/vipgg/* +mafengwo.cn###ad1 +||raolmsc.com^ +||tqjqripb.xyz^ +||vfvad.top^ +baidu.com##.pageLeftFixedAD +||fpb1.jsq886.com^ +fx678.com##.aside-store +douyu.com##.imageItem-wrap[style="width: 287px; height: 559px;"] +huya.com###J_adBnM +||91bixin.net/api/chdd/liveAdv? +||007ds.com/js/js/ +||xfztgxt.com^ +||bendibao.com/weixin_ +nick18.com##.bbs_entry_wrapper > table[width="100%"] +||uc129.com/m/ +gamefy.cn,sitv.com.cn##.att-bar +hupu.com##div[class*="ad200-200"] +jd.com#@#.ads-item +||gicjtss.cn^ +||40wan.com/js/www2/ +||jglgjz.xyz^ +bitauto.com#@#a[href^="http://ad.doubleclick.net/"] +||jsdelivr.net/gh/*/960-100. +hoteastday.com##.watermarh_ul +||2s8s.com^ +||wasabii.com.tw/float/*.js +||aspku.com/images/vz360.jpg +||wvtem.com^ +||600km.com/template/*/ad/ +pcauto.com.cn##div[id^="middle_ad_"] +||3dmgame.com/page/js/push_browser.js +||hexun.com^*/appDplus +||cloud.tencent.com/developer/api/common/getAds +||39.net/PictureLib/A/f76/20170814/org_1428963.gif +||xv98.com/js/hengfu +2345.com###J_acts11_footerfixed +@@||alicdn.com/t/img/TB1tWvVJFXXXXc_aXXXXXXXXXXX-40-26.png$domain=dlkoo.cc +/ad2. +||iteyi.xyz^ +||winwin7.com/statics/js/user/xz. +||xcqbbcqpl.xyz^ +douyu.com##a[href^="http://tracking.ad-survey.com/"] +||eastday.com/static/styles/*_gg.css +@@||imydl.com^$generichide +||ieequd.icu^ +fuyang.net##.eis_fbox_980 +||baidu.com/showbrand/sponsor_ +f2dsex1.com##.private-entertain +||api.apiimg.com/huaer/xiahe.js +baidu.com###cms-scroll +163.com##.m_papa +/res/kj/hf*.js?v= +hipertextual.com#@#.ad-above-footer +/opbb/obpp.tpl +17173.com###topAlert +||sub.powerapple.com^ +||xq2024.com^ +huamu.cn##.banner_Ad +||cc.xiaodapei.com^ +||pstatp.com/origin/13816000374e83a453717.jpg +vip.diaoyu18.com##.huadong > div[style="text-align: center;margin-bottom: 10px;"] +||ufjslit.top^ +?*=*=*=$subdocument,domain=00cha.com|06ps.com|10000xing.cn|1010jiajiao.com|1024sj.com|11467.com|114piaowu.com|192ly.com|1ppt.com|1ting.com|201980.com|21hubei.com|263y.com|2hanju.com|2liang.net|32r.com|32xp.com|360doc.cn|39.net|4aqq.com|5000yan.com|515fa.com|51edu.com|51sxue.com|51test.net|51zxw.net|52wubi.com|52zxw.com|5djiaren.com|5h.com|5nd.com|5seestar.com|66law.cn|7y7.com|86huoche.com|911cha.com|91jucai.com|91zhongkao.com|949949.com|9553.com|99.com.cn|9939.com|9ht.com|ab126.com|admin5.com|aihami.com|aiyangedu.com|aizhan.com|ankangwang.com|annhe.net|apple886.com|arpun.com|askci.com|aspku.com|atobo.com|b2b168.com|b2b6.com|baicaolu.net|baotang5.com|bbdj.com|bendibao.com|bianzhile.com|blog.sina.cn|boosj.com|bu-shen.com|bytravel.cn|c1km4.com|chajiaotong.com|chazidian.com|china.com|chinacar.com.cn|chinakaoyan.com|chinawj.com.cn|chuiyue.com|cidianwang.com|cjcp.com.cn|cnbanbao.cn|cncn.com|cnkang.com|cnlinfo.net|coozhi.com|cr173.com|cyyangqiguan.com|d17.cc|d1xz.net|daquan.com|dgzj.com|diangon.com|diyifanwen.com|diyju.com|dugoogle.com|dxsbb.com|eastday.com|enterdesk.com|exam58.com|fangdaijisuanqi.com|faxingzhan.com|friok.com|fun48.com|gaosan.com|gaotie.cn|gucheng.com|gugu5.com|gulongbbs.com|gushiwen.cn|hc23.com|hqhot.com|huangye88.com|hxnews.com|hydcd.com|icauto.com.cn|idongde.com|isanxia.com|ixinwei.com|ixiunv.com|jeasyui.net|jf258.com|jianbihua.com|jinbaodm.com|jingdianlaoge.com|jintang114.org|jj20.com|jy135.com|latiaozixun.net|liuxue86.com|m.douban.com|makepolo.com|mama.cn|meishij.net|mipcache.bdstatic.com|miyudaquan.com|mmyuer.com|oh100.com|pansoso.com|phb123.com|pig66.com|pikacn.com|pingguolv.com|pingshu8.com|qcrx.cn|qcwxjs.com|qizuang.com|qm120.com|qncye.com|qqzhi.com|quwenqushi.com|riji.cn|ruiwen.com|sc115.com|shadafang.com|shenchuang.com|ssqzj.com|szdushi.com.cn|szhk.com|uzuzuz.com|webshu.net|wenkuxiazai.com|wenshenxiu.com|wenzhangba.com|wmxa.cn|woyaogexing.com|xiachufang.com|xiangha.com|xiao84.com|xiaole8.com|xiegw.cn|xywy.com|yanyue.cn|yellowurl.cn|yiqig.cn|yiyouliao.com|yjbys.com|yuwenmi.com|yxlady.com|yyrtv.com|zdface.com|zhifure.com|zhongyoo.com|zixuntop.com|ziyuanm.com|zjbiz.net|zuowen8.com|zuowenku.net|zuowenwang.net +||fmgmh.com/template/wap/default/js/lunbo.js +###js-ad-map +saydigi.com#@#.social-bottom +.land/ad/*.gif +||bydzfldt.xyz^ +58b.tv#$##video_player { display: block!important; } +||bcttodv.cn^ +||g7ghdash2.fun^ +||lu.sogoucdn.com^ +dmzj.com###app_manhua +###mainbody:nth-child(5) > .mylist +||itc.cn^*/tracker.js +ofweek.com###\5f ad-2100 +##.indexnews-ad +||168gamer.*/olist- +||vgao.xyz/images/*.gif +||ad.qn.img-space.com^ +||dlkoo.cc/down/copy +||rising.cn^*/pic-ad/ +diyifanwen.com###Hzh1 +17ok.com##.t-bann +secretmine.net##.background-cover +||jwfesuk.cn^ +||17173cdn.com/js/play/page/pThridPlayerAd.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##[id^="spreadad_"] +||cxgfq.pinlue.com^ +||doutula.com/img/upupoo/ +pconline.com.cn##.m-JCZ-scrollBlock +ca168.com###slideshow_wrapper +aipai.com###videosRightDown +/opbb/float.js +wasu.cn##.qp +/detail_gg.js +||qhdlz.net/ssyyss/m.js +||youtube.com/embed/wqLWTeNBEEQ? +duba.com###searchRight +||a.llysc.cn^ +ltn.com.tw#?#.whitecon > .related > li:has(> .ltn_ad) +51cto.com###f_close_box +||fq05.shop^ +||srtlisb.top^ +greenxiazai.com##.downbtn > a:last-child +||operqr.top^ +dyhjw.com##.index_luckdraw +ant.design###geektime +||togtrmjz.xyz^ +||msg.video.qiyi.com^ +||pic.baihuawen.cn^ +/tan.js +||autofan.com.cn/UploadFiles/images/bAdImg.jpg +wnacg.com#@#.a_xsfl +||twunbbs.com/images/ +||iqiyi.com/js/common/mars_v.js +##.heg > .partner-list +||hao123.com/erjiapi/adv? +gdot.me,sc115.com##script + a +||ttnwxhjv.xyz^ +||sltle.icu^ +||9s64g.icu^ +bole90.com###xy_toast_ad +141jj.com##.category-wrapper > ul > div[style="line-height:24px;"] > a +||market.21cn.com^ +||lvnzrh.xyz^ +.com/pc/ad/ +||people.com.cn/adv/ +||gter.net/index.html?c=foot_js&type=footer.js +||ydrvkdni.xyz^ +dingdangsheji.com##.modown-ad +||mop.com/js/common/watermark.js +sigure.tw##.reds +||soufunimg.com/homepage/new/*/buttomLayer.js +idreamx.com#?##threadlisttableid > tbody:not([id]):has(> tr > td > a[target="_blank"]) +||flash.cn/success/$popup +10fang.com##.botad +||delhirs.com^ +gotrip.hk##.oath-lrec-player +##.topAd +||jane1.top^ +fxedu.com.cn#@#.ad_r +||gscsahv014.com^ +@@||club.tgfcer.com^$generichide +xueqiu.com##.widget__download-app +||eastday.com/static/scripts/eastday_tj.js +||dwstatic.com^*/p/livetip/ +||count.xxxssk.com^$third-party +###navcontainer + .moneyarea +cpnn.com.cn##.rightewm +||cnpc.infzm.com^ +||eol.cn/images/ed/gaokao/*-85.jpg +3g.baidu.com,m.baidu.com,m5.baidu.com,www.baidu.com#?#div:-abp-has(>.openBox-container) +douyu.com##div[class^="ChargeTask"] +.com/ads? +||sportscn.com/js/commerical +hlgnet.com##.co_ad3 +galacg.me,unecne.com##.metaslider +coolinet.com##.section-banner +||lu.sogou.com^ +||seojiaoshi.cn/banner/ +jb51.net##.rjTestPos +||dfxvkgz.xyz^ +orangenews.hk##img[advid] +youth.cn##.hd_pic +axutongxue.net#%#//scriptlet('prevent-setTimeout', 'getCookie("') +5173.com###popupRight +159i.com##style + div[align="center"] +||3344ex.com/js/bot.js +hao123.com##a[class^="gameyixing-link-"] +##.mod_ad_text +||novipnoad.net/theme/js/sponsor/ +sohu.com##a[href^="https://m.sohu.com/promotion?"] +##a[target="_blank"][href^="https://js."][href$=".com/download/4122_0.html"] +wapwenku.baidu.com,wk.baidu.com##.tout +||tnfno.icu^ +@@||yimuhe.com/n_js/advertiser.js +baike.com##.ad_xuanban +||geicmu.xyz^ +||kmlpgjh.xyz^ +||atmdew.xyz^ +/jsadv/* +||ai.bioon.com^ +andylain.com,bee.coupons,blogspot.com,blogspot.hk,blogspot.jp,blogspot.tw,comic.tw,jasonblog.tw#@#.vertical-ads +||ld0766.com/index.php?m=call&id=10 +||joiwnq2.cn^ +china.com.cn##.Banner_right +xinhuanet.com##.xhdf_moreAdv +||chinatimes.com/Scripts/bennerad. +||kiykfux.icu^ +meizhou.cn##.toptonglan +hao123.com##.navrecommend-hjw +||baidu.com/xpage/interface/get +||tianya.cn/shang/*/index.shtml +||suibianlu.com/zb_users/ad/ +||mpgsqk.xyz^ +||g.jinti.com/f/a/a +||y.21haodianmt.com^$third-party +||hjrcjz.xyz^ +||wbkdsg.xyz^ +||clb.biz/Public/static/js/common-v2.js +||xdh0808.com^$popup +||3158.cn^*_analyser. +firefoxchina.cn##div[trace-key="mh_channel_rec_tpth"] +||zs.rzijjeb.cn^ +pc.yiyouliao.com##.yyl-ads-main > .yyl-ads-swiper:first-child + .yyl-ads-title +||bgdgpbpm.xyz^ +||kkjhgfds.top^ +ithome.com##.con_2 > .img_listbox +||grtimed.com/material/*_960x110_ +||m.kukudm.com/mg/show2.js +/skin/middle.$domain=iimanhua.cc|iimh.net +||tlula507.com/Public/js/dui +||gxoaku.xyz^ +vanpeople.com##.banneradv-newbox +ltn.com.tw##.NC3 +||js.duotegame.com^ +##.coupletad +ilxdh.com###nice-banner0 +pcsoft.com.cn##.shang11-top +edh.tw##.close-corner +/vtdt/*$script +||dlads.cn^$third-party +chtoen.com##.adsbygoogle:not([data-ad-slot="9717665976"]) +||meijutt.tv/js/pcjs/alltop_960_1.js +||70822.com/agfile/ +@@||adjs.8591.com.tw^$script +||curesdf.top^ +/img/ad/* +##.player_ggw +mydigit.cn,storyren.top###diyfastposttop +||fqghykp.cn^ +||glzy8.com/img/ceo/js.js +###index_banner[src*=".meituan.net"] +07073.com###rightDiv > div[style="height:250px"] +qingdaonews.com##.da30050 +||qhres.com/static/b4f92ac067a4768b/v4/modules/footer.js +||sikapo.top^ +hkcards.com##.row > .col-12 > #ad-slot +macwk.com#@#.adBanner +||adtonus.com^ +maplestage.com##div[class*="-page-module__ad728Holder___"] +||52996.me/upload/ad/ +###adUn_3 +eastday.com###yxxf_area +||xeazoj.icu^ +||zrblog.net/gg/ +3boys2girls.com###div_display +||sbiloi.xyz^ +huya.com##.end-ab-wrap +/d/*-*-*.ap|$script,third-party +528500.com###wp > div[align="center"] +p2peye.com###article_content a[ref="nofollow"] +@@||api.val.qq.com/go/agame/resource/banner?bannerid=aclos_website_banner$domain=val.qq.com +||u.qxen.com^ +cwyuni.tw###box34614 > [class^="box-"] +||juzi6.com/js/gd.js +cool18.com###d_right_ad +||52996.me/upload/ad/$media,redirect=noopmp4-1s +4gamers.com.tw##img[alt="ads"] +csdn.net##.ad_class +||wuye3d.com^ +||cdn93d99x0e.23bei.com^ +##.gg_960 +dimtown.com##.aggd +||juandou.com^$third-party +4gtv.tv,80s.ai,ft.com,ftchinese.com,ftchinese.com.sz-dns.net,kartinfo.me,long7.qq.com,reh.tw,typecho.wiki#@#.adsbox +@@||lib.baomitu.com/vue/*/vue.global.prod.min.js$domain=69xx03608.xyz +||toutiaoyule.com/n/dspshow. +||c-ctrip.com/ResUnionOnline/R3/float/floating_normal.min.js +baidu.com#$#.ec_wise_ad { position: absolute !important; left: -3000px !important; } +##.a_sxfl +||affyun.com/wp-content/uploads/*/affffff.png +hexieshe.com,hexieshe.xyz,xxshe.info##.entry-title > p +||zp365.com/newhousered/hb-index-pop- +||bd.watu.cn^ +wuyong.fun##.riplus_ads_wrap +||chok8.com/statics/ad/ +||infogram.com^$domain=hk01.com +qidian.com##.app_download_ad +phone-book.tw#%#//scriptlet('remove-node-text', 'script', 'yumayishop') +||texnet.com.cn/images/cnbanner/ +taptap.com###bottomBanner +expreview.com##.crossBa +huanqiu.com##.itemAd +||nvsheng.com/js/gg.js +jandan.net##.goods2-list +||btdb.in/beacon.html +||pmb*.tj.ali213.net/js/ +||jcdf99.com/hzz/scripts/new +||ztxjutz.xyz^ +||66e.cc/d/ +||wkjyxcheng.top^ +/imguang/*.gif$third-party +##.ad02 +||nfmovies.com/pic/tu/a200304_1170x87.png +||asdji2.cn^ +hboav.com#%#//scriptlet("set-constant", "adbk", "false") +2345.com##.vipTopBanner +/\.[a-z]yjqgp[a-z].top\//$script,third-party +anjuke.com,sunofbeach.net##div[class$="-ad"] +423down.com##.entry > p[style^="font-size"] > a[href*="/go."] +||gtpso.com/Home/TopSdk/getFavCoupItems +centoschina.cn##a[href="https://www.linuxprobe.com/"] +2dfan.com,galge.fun##.leftside-bg +||nyhgjmlg.xyz^ +||junshizhanlue.com^$third-party +@@||ecma.bdimg.com/holmes/*.svg +95ziyuan.cn##.jiuwu +m.zhanqi.tv##.footer +life.tw###fbFixedAd +dmhy.gate.flag.moe##a[href^="https://7segu.taobao.com?"] +@@||hbu.cn^*/ad.css?$stylesheet +||tingchina.com/js/990 +163.com##.m-slider-footer +||itiexue.net/domain-policy/ +||stulip.org/static/js/header.js +@@||mnighthk.net/template/*/ad +@@||raenonx.cc^$generichide +##.y.mtw[style="padding: 0px 10px;"] +||2345.com/dypcimg/ads/ +opdown.com##.gxxz-btn +||777zz777zz.com^ +/upload/vod/2018-08-05/201808051533458526.png +||jyfdbj.xyz^ +yxlady.com##.left_bottom_gg3 +kdslife.com###youhui +outlook.live.com##.__Microsoft_Owa_MessageListAds_ListView_templates_cs_x +||malimali5.com/ad1.png +||7794.com^$third-party +||pungar85.shop^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_df_card +/os1019.oss-cn-quanzhou. +||qpzegye.cn^ +114la.com##.sy_ad4 +mydown.yesky.com##.rightGg +xhtml?$domain=kanshu8.net +luogu.com.cn##.side > div:last-child:not([class]) +360che.com##.adver250_250 +||wlkukrv.icu^ +158zm.com##.top-af-container +||cocomanga.com/sw.js +##.ad-section +||bhakte.com^ +tiexue.net##a[href*=".wx359.cn/"] +||iqiyi.com/track$popup +sohu.com###apkBanner +###rightd.rightd +image.so.com##.commerce +||mydrivers.com/2021/www/nianhuojie.png +||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif +huya.com#$##banner > a ~ .banner-close { display: none !important; } +||chaoyumiao.com^ +xz7.com##div[class^="AD_"] +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.mediago-ad-wrapper +##.main-ad-r +||iid97.com/bdgo/ +##.ad_250x250 +||dfcfw.com/js/default/left_ +vxetable.cn#%#//scriptlet('abort-current-inline-script', 'decodeURIComponent', 'pagead') +jinhua.com.cn##.banner260 +||dioimg.net/images/*.gif +||gscsahv013.com^ +@@||dnsgom.net/public/$domain=jingwubook.com|xwdsc.com +||dsceopm.cn^ +||imglnkd.com^$domain=xiuren.org +||zol.com.cn/index.php?c=Api_JumpApi& +so.com###bnbtm-banner +###googlead +||hbxzlf.xyz^ +||xzwtbdtq.xyz^ +||clplrhum.xyz^ +###fk_faiVisitStateAd +||iwanshang8.asia^ +sina.com.cn##.adC +jb51.net##.tipsa_ds +||m.k1k.cc/wap/js/indexbottom.js +@@||jwpcdn.com/player/plugins/googima/*/googima.js$domain=viu.tv +||doujs02.shop^ +jq-school.com##div[style="width:1060px; height:auto; margin:0 auto;overflow:hidden;"] +||kspl48j.xyz^ +soopat.com###SoopatAside +||75.125.41.29:8080/ +||meryt111.fun^ +||m.audio699.com/template/m/js/qqwweef +||jinfu.love/files/h5/ +##.asb-index +||ausfyk.xyz^ +@@||wgun.net^$elemhide +kafan.cn##a[href*="nameidi."] +||gesfdashb5.fun^ +||mm.nwell.net^ +acgfta.com##a[href^="https://ifift.com/"] +||gtimg.com/auto/js/autoproject/autoarticle/low-price-car_ +||daslkdlqk.top^ +mcdulll.com,mcdulll.pixnet.net###box1290930 +.com/js/youlian.js +avtb01.com##body > div[id^="haoetv"] +||cbjs.baidu.com^ +||lolttaaas.com/forever/ +||rycff.online^ +chinavoa.com###Content_VOA +@@||tajs.qq.com/stats?$~third-party +/500ad/* +233tw.com#%#//scriptlet('prevent-setTimeout', '发现严重BUG') +cnpingpang.com###new-flash +||isigqno.com^ +##.photo-two > a[onclick^="_czc."] +udn.com##.udn-ads +||xebohjhh.xyz^ +||lanrenzhijia.com/Public/images/xiaozhua.jpg +m.baidu.com##.news_ad +||allyes.com^$third-party +||sogoks.xyz^ +/templets/*/js/couplet-ad. +###playlistbtn > a[href$=".html"] +csdn.net###Topic_Top +||supfree.net/top.gif +##.ad_mod +||pnxtnp.xyz^ +||k2n0f.cn^$third-party +24en.com##A[href*="/ClickAd?"] +||tajs.qq.com^ +bilibili.com#$?#.ex-card-common:has(.gg-icon) { remove: true; } +house365.com##.leftfixed_box +||leju.com/abp/cmslead_new.v2.js +||0941.org^ +||muwqiga.icu^ +||hf365.com/0/14/60/93/14609355_921128.jpg +ithome.com##a[href*="/lapin."] +||b1.xiao84.com^ +diyifanwen.com###Hzh2 +btime.com###ad_full_button_placehoder +cbndata.com##.Toastify +||lmxiqf.icu^ +012.tw#@#.ad728 +ettoday.net##.ad_300 +||wsoqwm.xyz^ +||admd.housefun.com.tw^ +||lnnahh.xyz^ +||tupwiwm.com^ +jrj.com.cn##.wbyy +###bottomAd +121xz.com##.c_money +||yuqmok.xyz^ +weather.com.cn###zdl +dcloud.net.cn##.aw-ad-item +||static-ssp.yidianzixun.com^ +oeeee.com###adImg +||baomidou.com/_astro/CheckAdBlocked.*.js +wenku8.net#@##adtop +hxsame.hexun.com$domain=~quote.hexun.com +hanime1.me##.video-show-width > .single-show-list > .hidden-xs[style*="text-align:"] +||koqsxdpx.xyz^ +/uu114/ad/* +finance.ifeng.com##.lccs +fx678.com##.box_video +eastday.com##.right_adv_2 +||tgidskii.top^ +||alicdn.com/img/ibank/*_735370984. +hupu.com##.banner-item[data-ad-params*=":"] +||guke.name^ +||z1.cwbaike.com^ +m.tvsou.com##.sogou-temp-hidden +/tigtag_custom/*_banner +iqiyi.com##.video-ad_left +.live/o.js$script,third-party +aiyuke.com##.index_app_down_ad +||3i2i.com^ +_box_ad_ +elecfans.com##.dfma +||3k8.com/d/js/m/thea +manwa.fun#%#//scriptlet('remove-attr', 'style', '.two-ad-area') +||stragmik.com^ +5184.com##.fixed_bgg2 +||fzgetdy.cn^ +||17173cdn.com/a/www/index/2016v2/js/seed.js +ithome.com##.bx-recom2 +ltn.com.tw##[data-desc="內廣"] +||dajiahao17.top^ +||81book.com/static/scripts/1.js +||koyso.com/z- +||kuaishang.com.cn^ +wapwenku.baidu.com,wk.baidu.com###bottomFixed +dable.io##[data-ad_id] +element-plus.gitee.io##.toc-content > .m-t-16px +iwatchme2u.com#%#//scriptlet("prevent-window-open", "/bit\.ly|kbtv/") +jbtalks.cc##.threadad +||100.admin5.com^ +||ok8867s.com^ +/pic.jsp?uid=$script,third-party +||cvbjctqs.xyz^ +##.xstui-content__acc +||kmplayer.cn/include/jscript/*-a.js +iplaysoft.com###_cblzx +ziyuanyo.com##.index-ad-text +@@||nodkey.xyz^$generichide +51zxw.net###video div[class^="background"] +||jrj.com.cn/h5Ad? +||hc360.com/js/module/common/logrecordservice. +slashlook.com#%#window.canRunAds = true; +baidu.com##.ad-taishan +baidu.com###j-ad-first +sonimei.cn##.style01 +||wyfec.cn^ +xmfish.com###pw_content > .forum_panel:nth-child(4) +so.com###bqPromote +51cto.com##.right-fixadv +||hoopchina.com.cn/common/lazyLoadAd.js +ifeng.com##div[class^="silde_box-"] +||alu.cn/alutg/ +huya.com#%#//scriptlet('set-constant', 'adInfo', 'emptyObj') +||cjpczyi.cn^ +itjsb.com##.info_ad +.m.kanshuzw.com^ +||qhscsu.xyz^ +##.aasd-text +hubei.gov.cn#@##ad-side +||21.cizhibaogao.org^ +||imgur.com^$domain=histock.tw|wgun.net +chinatp.com.cn###FloatLa +||baidu.com/xpage/interface/sourcecontent? +||huaren.us/banners/ +||58cdn.com.cn/ds/tgbrand/*.js +ahgame.com,china.com.cn,netbardh.com,pangzitv.com,twoeggz.com###pop +xgcartoon.com,dailygh.com###video-top-ad +w3school.com.cn###sbtg +hkepc.com###headBanner +||gvbta.icu^ +||vansky.com/agdg/vans/tabbao +51cto.com##.ad-jing +||pchome.com.tw/js/overlay_ad.js +||taiwandaily.net/wp-content/uploads*_600x100. +baidu.com##.sfc-image-content-adrootnew +##.a_fr +||qichetuoyun.com.cn^$third-party +baidu.com##.cpc-adv-container +mafengwo.cn###banner-con-gloable +||adbot.tw^ +||c81.ipanocloud.com^ +||xklofoz.cn^ +||yuuaos.xyz^ +||tuoizbtl.xyz^ +yzz.cn###video_ff +##.index-top-gg +||dy10000.net^ +||urpkktc.icu^ +||goupu.org/1files/*0. +/modules/video/player/nuevo/midroll.php? +||zol-img.com.cn/star/image/star-banner2.gif +pconline.com.cn##.website_recommend_banner +||meiyee.cc/js/tj.js +finance.sina.com.cn##div[data-sudaclick="right_ads2_p"] +laowangblog.com##img[src^="https://laowangblog.com/"][src*="-ad"] +||bioon.com/xy/article/img/zhi_neng_xibao_fenxi.png +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_spread_thread +||nuiknnf.icu^ +52pk.com,downmsn.com##.bzClick +weibo.com##.tag_showTopicL[href^="https://shop.sc.weibo.com/"] +slashlook.com#$#body.modal-open .modal-backdrop { display: none!important; } +kanqiuba.net##a[href*="bet"] +smzdm.com##.banner-stuff +||tsaristcanapes.com^ +||poyang.com^ +chinacar.com.cn##.left_pouple_box +yznnw.com##div[class^="hd_"] +###ad_globle_div +||jd-bbs.com^*/gif/ +@@||laotiesao.vip^$generichide +||hy.huangye88.net^ +||qunar.com/vataframe/b.html? +##.wp > .ad-box +||iqiyi.com/show2?cb= +itdog.cn##.link_gg +hentaicomic.*,wnacg1.cc,wnacg.*#%#//scriptlet("abort-current-inline-script", "document.write", "/\.(gif|php)/") +||hades.qyer.com^ +so.com##.mh-sad +||eoubliw.top^ +||kongzhong.com/style/newindex/js/tad.js +||tdoshbi.top^ +||trojangfw.xyz^ +||masadora.net/kakusan- +jmw.com.cn##.rightCouplet +||uuu9.com/photolog.html +||afopr.cn^ +||5698tp.com^ +qidian.com###QDCode_float +mamecn.com##.njjGsxzLeft > dl > .cont1 +||g1.pptair.com^ +||dafdfd.cn^ +||x.dmouy.cn^$third-party +##img[onclick*=".qq.com/doc/"] +pixnet.net##div[id*="-AD-"] +senao.com.tw#@#.ad-wrap +hibox.hinet.net#@#.adarea +ifeng.com###a_code +/new/ads/* +||jinti.com^*/aspx/*gg +fx168.com###diaochaBg +||rbkmzhc.icu^ +||m.q1xs.com/17mb/script/wap.js +@@||qhres.com^*/monitor_analytic.js$domain=mse.360.cn +sina.com.cn###ad +yahoo.com#?#.wafer-beacon:-abp-has(a[data-ylk*=":ad;"]) +||sina.com.cn/js/*/bgads.js +ithome.com##.rm-modal-bg +kankan.com##.tuiguang_position +||p.zol.com.cn/download/detail.js +@@||apk.tw^*/ads.js$script,~third-party +iwan.baidu.com##.side-banner +/admonitor. +||sohu.com/mdevp/*-advert/ +xia1ge.com##div[class^="category-iloveyou"] +||seek68.cn/img/*.gif +||chinaz.com/zz_img/ +||twurseri.top^ +6.cn##.min-ad-box +||qqk19.com/data/content +||kxd56.com/tg.gif +||yxrmbjw.icu^ +21ic.com##.couplet_ad2 +||dataguru.cn/site_ +||gg88.bj.bcebos.com^ +qidian.com###j_bodyRecWrap +||wsadad.cn^ +||g0fc3.com^ +pixnet.net##div[id*="-aD-"] +@@||tenpay.com^*?ADTAG= +##.appguide-wrap[onclick*="bcebos.com"] +iqilu.com##.gg300250dbl +||1.51sxue.cn^ +120ask.com##.b_right > div[style] +1kkk.com,dm5.com##.yddiv +||aacoffee.cn^ +news.baidu.com###women-picwall +||pbmp.ali213.net/js/ +||kymahuxv.xyz^ +||xs6po.icu^ +91duba.com,iduba.com###topBanner +||orzx.im/Document/recommend/flashpoint.html +||xamssp.icu^ +wenku.baidu.com###ppt-bottom-ads +taoguba.com.cn###headerggContent +qq.com###J_inner_tips +||cmsjs.eastmoney.com^$subdocument +@@||4spaces.org^$generichide +||tingroom.com/file/A*.js +||ruten.com.tw/js/gads_ +duba.com##.news_ctm_wrap > .ctm_ad +||divcss5.com*/ibeifeng/ +6fzd.com,eyy5.cn,fzd3.com##.area1 +||m.nanyangqiaoxiang.cn^$third-party +/xgrghru981_23.js +58.com##div[id$="_gdbg"] +/skin/ad/* +||gfylyw.xyz^ +||qzwb.com/phpstat/ +bookgew.com###AdsT +##.player-tt-rmm +chinatimes.com##div[class^="banner"] +||cpm.cm.kankan.com^ +||douyucdn.cn/front-publish/live-master/js/room/IconCardAd_ +manhuadb.com#?#.comicbook-index:-abp-has(>a[href^="http"]) +flyzy2005.com##.baidu_ad +srzc.com##.topgg +360doc.com##.doc360article_content > div[class]:first-child +/api/Video/GetAdsData? +###rightCouple +##.gg1000 +||tu5551976196.cc^ +||xiurenji.cc/heji/ +18-comicfrieren.xyz,18comic.org,18comic.vip###guide-modal +##.adlist +ifeng.com##div[class^="container-"][content^="[object"] +||imgs.itxueyuan.com/advPicture/ +||hnifdlau.top^ +tiboo.cn##.sectionAd +||a.tbcdn.cn/s/ac.js +||fca6f.icu^ +qq.com###fr_ad +banzou.name###ads_2 +||jgjyxf.xyz^ +ruanyifeng.com##a[href*=".ke.qq.com"] +||dmzj1.com/js/ad/ +megatime.com.tw,pchome.com.tw##div[class^="ad_ec"] +megatime.com.tw,pchome.com.tw###sixi +iqiyi.com##.leftLink +duba.com###ad-dongman +||mpn56e.cn^ +||gasaq.com/public/flash/ +||ffbdbx.xyz^ +||caibaojian.com/d/uploads/*0- +baidu.com##.sfc-image-content-adrecomm +||niupic.com/images/2019/11/17/_17. +||needqnv.xyz^ +@@||app-advertise.zhihuishu.com^ +ezneering.com###media_image-2 +pinggu.org##.hdbanner +douyu.com#?#.bc-wrapper:-abp-has(>.wm-view>div>.isLink[href*=".qualtrics.com/"]) +18comic.org,18comic.vip##div[class="row"][style="display: flex;flex-wrap: wrap;"] +ishuati.com###adsh +/bt*.com/imgs.js?t= +||tianshui.com.cn/yb.html +||itc.cn/base/core/gg_ +||qiyipic.com/common/*tonglan +||qq.com/tbs/tbsAd/ +||alicdn.com/img/ibank/*_255861743. +@@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=doitwell.tw +@@||cnzz.com/c.php?id=30070167$domain=m.tieyou.com +||a.breaktime.com.tw^$third-party +discuss.com.hk###gid_group_restricted > .gid_group_title +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="soft"] > .c-border +news.pchome.com.tw##div[style="width:687px;height:145px"] +@@||chinatimes.com/css-main/ad.css +baidu.com###asideRight +||3uvz5.xyz^ +||jndxsuy.xyz^ +tw.news.yahoo.com###sda-MON +||zcypmsp.icu^ +||wnacg.*/58s/ +pclady.com.cn##.mdxyAppEnter +materialtools.com#@#.ad-center +.net/ad/$~object-subrequest +clickhole.com,lifehacker.com,splinternews.com,avclub.com,deadspin.com,gizmodo.com,jalopnik.com,jezebel.com,kotaku.com,qz.com,theinventory.com,theonion.com,theroot.com,thetakeout.com##div[class]:has(> div[data-ad-unit]:only-child) +||52wmb.com/2014js/cn_ +||baidu.com/staticapi/hotnews_new. +tt776.com##iframe[src="/app/ad.html"] +jb51.net##.idc3 +||wymzwy.cn^ +weimob.com###active-entrance +||choujue.net/one/down.js +||qejjhnq.cn^ +?file=ads& +av.movie##.video-banner +||carexpert.com.tw/wp-content/uploads/*800x90. +||igamepark.biz/ads_output.php +||yxvyqyy.icu^ +||njslx.cn^ +yicai.com##.gg_pop +bljiex.com###player_pause +||bwurserv.top^ +||avplwte.xyz^ +||iditero.top^ +||acdfwe113.cn^ +f2dsex1.com##.ad-recommend +iqiyi.com##.rm-logo-ad +slashlook.com#$#body.modal-open { padding-right: 0!important; overflow: visible!important; } +lzep.cn##.aside +||gxcdgm.xyz^ +muve.org.tw#@#.sponsor-area +###aafoot[class^="top_box"] +tw.bid.yahoo.com###livePromote +||mg.32r.com^ +||ee.shixunwang.net^ +||ads.sohu.com^ +||m2.lelemh.com^ +||a.baomihua.com^ +@@||hboav.com/guga/adss.js +aishs.top###frameu9916W_left > .block:nth-child(-n+6) +baidu.com##.adver-one-item-wrapper +3dmgame.com##.Gmaeinfobtn_tab > span +chinaz.com##.header-media__text +btime.com###download +@@||soft8ware.com^$generichide +||pconline.com.cn/_hux_/ +360.cn##.div-adv +liaoxuefeng.com###x-sponsor-b +/img/skin/*_bg.$domain=firefox.com.cn|firefoxchina.cn +.*gcdcjr000.fun/$script,third-party +mail.sina.com.cn##.rightbottom +52fx.cn##.nex_index_top_ads +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="320"] +||hscnpk86.shop^ +pcstore.com.tw###id_index_ad_bimg +chinapdf.com###floatleft +##.prom-olnk +qq.com##.sider_ad +/moneymaker/js/caoaa.js +apprcn.com##a[href*=".lizhi."] +##.ad250x250 +||sslir.icu^ +||tnalzli.top^ +||alicdn.com^$domain=2c2.website|2p8.space|adultgao.com|caopop.com|caoporn.com|caouoo.com|caox.cc|h3e.pw|h3y.pw|k88.club|me88.pw|p5p.space|se88.space|t2p.space|tb001.xyz|te88.pw|vwan.xyz|xhao1.com +51cto.com##DIV[id^="topbanner"] +##a[href*="/yigeyuming3880.top"] +@@||360buyimg.com/ad/$domain=jd.com +||0940088.com^ +finance.ifeng.com,kulemi.com##.rec +||kzcayec.icu^ +||m.hackhome.com/js/m_ga.js +gz0668.com###closexguide +||bendibao.com/js/count.js +xchina.co##div:has(> div:only-child > .media img[src*="/ad/"]) +@@||btsax.info^$generichide +eworldship.com##div[style="padding: 0px;position: fixed;left: 7px; top: 150px;"] +###leftCouplet +||douyucdn.cn/japi/sign/web/getinfo +chaicp.com##.footer-banner +||udipsumt.top^ +360che.com##.adver300_250 +||duouoo.com/vss/wz +||gtimg.com/rain/bl20/json/8.js +||gtimg.com/news/news/2014ad/ +qxfun.com###reward-me > figure:nth-child(n+2) +||bestvogue.com/fans/ +btvsports.click#@##googleAD2 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.cps_wrap +||2ccc.com/images/sino.gif +||tom.com/*TomFlashAd +||alicdn.com/kf/U17649ef1f91e4b428152e709d33aed775.jpg +download.csdn.net##.ad_area_1 +@@||online.unionpay.com/ads/$script +||2345.com/js/m/bottom.float.adver.js +||9ihome.com/info/ADTopvnet/ +360che.com##.adver600_80 +gamer.com.tw#$#img[onload="AntiAd.check(this)"] { position: absolute!important; left: -3000px!important; } +||adtx2.cn^ +qq.com###pop_apps_sponsors +||sdcuo.com^ +||ppvpmrt.xyz^ +rising.cn###viphuibg +||qvftejz.cn^ +@@||hanjuwang.net^$script,~third-party +x-mol.com##.news-white-content-right +gzmama.com###zone_right_couplet +###\31 x1_container.float-banner-footer +##div[style=" max-width:990px; margin:0 auto;"] > a > img[height="120px"] +||nfmovies.com/pic/tu/*_banner +/ceshi127722. +haosou.com,so.com###bottom_ask +msn.cn##casual-games-carousel-card +||zjsnhl.xyz^ +||0tq6ub.cn^ +||game.eroge.xyz/*.gif +||xinmin.cn/framepage/top +qidian.com###topGameOp +@@||share.baidu.com^$script,stylesheet,domain=k73.com +@@||dqzsteel.com/Website/Image/guanggao/ +##.jingqun_tu +||88lm09.com^ +chinabidding.com.cn##.innovate + .layer +||23sc.cn/andy/ +||ghjie.com/images/2012/images/bg +||photos18.com/images/friend/ +||styusib.top^ +sisixxb.com##.preflink +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###plat_recom_carousel > .activity_head +wenxuecity.com##.rightbannerw +||baike.com/newtop/news.html +duba.com##.m_hot_rec_box_base +acg17.com,secretmine.net##.e3lan +tvsou.com##.story_ad_android +||ty121.cn/IAA/ +zzbaike.com##.link2 +avsuggest.com,qiaobutang.com##.overlay +##.push-bottom-container[clickmode="cpt"] +sohu.com##.hot-article > div.pic-txt[data-spm-content*="_saletype="] +cartoonmad.com##td[width="890"] > table > tbody > tr > td[colspan="4"][height="126"] +||isksss.top^ +ezprice.com.tw##.col-md-3 +##.ad-6 +qidian.com##span[style^="display: inline-block;width: 150px; height: 291px;"] +||1990tu.com/i/*.gif +||auvohoxm.xyz^ +jstv.com###vplayad +||xinyi.com/Public/config/Couplet/Index41.js +chinabidding.cn,chinabidding.com.cn###erweima_l +##a[href*="/entry/register"][href*="i_code"] +tw100s.com##div[class="ui_adblock"] +||ta.trs.cn^$third-party +/heji/mei00*.js +||asp300.com/2017images/kefu.js +||alicdn.com/img/ibank/*_!!2200581616124- +||mxzmz.com/js/ +||tvyan.com/images/jscss/tv- +||bdpretc.cn^ +||baidu.com/newspage/api/getadsdata? +###MsnDialog.ad +||sbpb1.qulishi.com^ +/template/zsy_badian/js/stui_ +||dbw.cn/eap/js/db/dbwad_ +||itheat.com/?show= +jable.tv##.badge +r3sub.com##div[class] > a[href^="show.php?id="] +||20091222.com^ +@@||edgesuite.net^*/ad.css? +||omkxes.xyz^ +/ad3. +/topad_ +||whfpbc.99.com.cn^ +pptstore.net#@#.ad-big +||zjg.js.cn/Public/config/Couplet/Index4 +||xunsu.cc/js/indexbottom.js +/xbhf.js$script,third-party +chineseinla.com##.deal_discount +###tr_ad6 +||jianxuzuo.com^ +||qdross.com/vip/ +@@||wkstatic.bdimg.com/static/wkcore/widget/commerce/fengchao/*$domain=wenku.baidu.com +.net/js/ads/ +||xdjdpyrt.xyz^ +booom.net,x6d.com##.tmall_tab +@@||technews.tw/www/delivery/$badfilter +||alicdn.com/tps/*-950-90. +||geekpark.net/api/v1/ads +admin5.com##.float_both_index +||xpjcg.oss-accelerate.aliyuncs.com^ +||999zz333zz.com^ +||n2.hk/apps/car_feed/tb/*/banner.html +||cspb1.5w5w.com^ +fanyi.baidu.com##.banner_img_container +||shequdaohang.com^$third-party +||tiexing.com^$third-party +||linkwan.com/gb/javascript/b4.js +||218.30.15.193/phpstat/count/ +||actoys.net/index.php?m=poster& +##.no-mobile[style="position: fixed;right:0px;bottom: 0px;"] +@@||ads.privacy.qq.com^$domain=privacy.qq.com +.vip/ads/ +efu.com.cn##.banners-top-x2 +eprice.com.tw##.popup-adv +||autohome.com.cn/ximg/*.png$script +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_banner +||163.com/get.do?*=themeHandler. +||xwlnhw.com^ +||ppenid.xyz^ +ithome.com.tw###ad-on-top +nfuwow.com###dl-left-first +||tingchina.com/js/allad.js +||a99hz.space^ +yahoo.com##div[id^="ads-"] +||tanwanyx.com^$third-party +||head4.net/ad_ +@@||gaus.ee^$generichide +jjmmw.com,qq.com##.fixed-ad +@@/adview_pic_$domain=doutula.com|fastadmin.net|toolfk.com|xclient.info +qq.com##.adcent +mail.qq.com##.tipbook-top +@@||moneysave.info^$generichide +||mafuzcxr.xyz^ +||bobo.com^$third-party +||fsclzs.com/Ad_User/ +showtv.com.tw##.ask18 +boylove.cc###yteggbue +oschina.net##a[data-traceid*="_detail_above_text_link_"] +90xz.com#@#.share-btn +||meiju8.cc/js/jquery.p.min.js +am730.com.hk##.adbox +jingyan.baidu.com##.wgt-cms-banner +1point3acres.com##div[style="width: 450px; min-height: 210px;"] +.fun/ad/ +||xbiqu5.com/12345678. +##.ad_box +baidu.com##div[class$="-ecom-ads"] +||gbfedashb4.fun^ +||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn +tyenews.com##div[id^="metaslider_widget-"] +||lnhsjob.com^$third-party +taobao.com##.downapp +##[class][onclick^="window.location.href"][onclick*=".pypyj.com"] +||9kh5b.cn^$third-party +kumi.cn##div[class^="adz"] +||kgimg.com/public/root//images/hardware.jpg +iqiyi.com,~mall.iqiyi.com,~so.iqiyi.com##a[href*="http://mall.iqiyi.com/item/"] +||duboku.net/static/images/yabo +zeekmagazine.com##.td-all-devices +||b1.c1km4.com^ +||ibkoiw.xyz^ +||ovbgeum.cn^ +=Ad_ZPlusGoods& +||kan.cc/statics/abs/scripts/abs. +||carnoc.com/noticejs/ +qiyeku.com###index_gg +bejson.com##.xf2-gg-left +||faquanya.com/weixin/ +iqiyi.com##div[class^="video-slide_normal"] > a[href^="http"]:not([href*="iqiyi.com"]) > div > img +image.baidu.com##div[id^="relecom"] +/adtmp/* +investing.com##div[class*="adBlock"] +||uegsjnk.com^ +@@||520cc.cc/api/jspopunder. +nicotv.me##.container > div.slide[style="padding-bottom:0px"] +||acwifi.net/wp-content/uploads/2022/08/0825-750.png +||alicdn.com^$domain=1avlang.com|2334n.com|51dll.com|52kpop.com|5xx44.com|5xx77.com|63ef.com|69t41.com|7mav2.com|99a21.com|acglover.me|aotu101.com|ccxx99.com|dytt.com|hanfan.cc|jb51.net|jitapu.com|junying.com|jvhao.com|lady3.xyz|magnet2048.com|qingmanyong.com|qyl00.com|qyl222.com|spqi.xyz|supfree.net|that2.info|thztv.cc|ttww22.com|viidii.info|wenkuxiazai.com|xiaomingming.org|yuese46.com|yzz12.com +/adloader. +||nznkaq5.cn^ +||jzjpntr.xyz^ +||taobao.com^$popup,domain=dlkoo.com +||count.enet.com.cn^ +||xmrc.com.cn/net/info/html/ +.com/js/alls_foot.js +newduba.cn###jq_youxi +eastday.com##.ssy_left +dianping.com##.weixin1 +||vdggsd004.com^ +sina.com.cn##.blk_APP_JSr +##.bjxhf +||jb.dianshu119.com^ +||sfnmt.com/dq/ +###QEff1 +jumi.tv##a[href^="https://l.tapdb.net/"] +||xiiepofl.xyz^ +||nulltm.com/adv.js +iqiyi.com##.qy-plist-ad +@@=mywebloadt1&$domain=myweb.hinet.net +||jyisloa.top^ +||videojj.com/flash/bin/vjj_config.xml +||lhtzfn.xyz^ +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(img[class^="head-info_authicon_"][src^="data"]) +||eyuwkbw.top^ +||hktvmall.com/api/preroll/getList? +||zthxobgk.icu^ +jlmhk.com##.bn +||3boys2girls.com^$subdocument +loveshang.com##div[class^="float-ad-"] +idanmu.ee##aside > div[class="widget "] +||yea.im/5hq.gif +jdbbs.com###portal_block_2826 +||333uu.org/config/ +##.txp_ad[data-role="txpad-interact-pause"] +||ruten.com.tw^*/ahd_ +||tdhserg.cn^ +||chinaxinge.com/html/index_pf3.js +||ax7fv.space^ +||analysis.chinaiiss.com^ +||mianyaojsj.com^ +tianya.cn###login_mask +qq.com#@#.side_ad +9uu.com##.gao-wrapper +cngold.org##.top_bigad +@@||sto520.com^$generichide +.com/vodad.js +taobao.com##.mask.animated.swing +||xinmin.cn/framepage/left1.htm +||xjappzvz.xyz^ +||ziyuanm.com/js/g11.js +||sinaimg.cn/finance/stock/hq/src/popuptoapp.js +||qnsb.com/news/index.php?m=poster& +###header_global_ad +mail.126.com,mail.163.com##div[id$="_succAd"] +/template/paody/aaaa/all-top.js +||hrrjff.xyz^ +||asp300.*/2012adimg/ +||fm086.com/Plugins/search +m.weather.com.cn##div[style^="position: fixed; width: 100%; bottom: 0px;"] +||caikuu.com/ckimages/*_zg +||53shop.com/ime/*.js +||52z.com/images/52zgg/ +||kwiqcoh.icu^ +lenovo.com.cn##.nav_ad1 +youdao.com##.banner +wenda.so.com##a[href^="http://e.so.com/search/eclk?"] +||aushaq.top^ +price.com.hk,uwants.com##.MFV +hexieshe.com,hexieshe.xyz,xxshe.info,xxshe.xyz##.mh-widget > .textwidget > p > a[href^="http"]:not([href*="she."]):first-child:last-child +@@||ahd.ruten.com.tw/ahd/fetch_ad.php?zone=*%2C$domain=ruten.com.tw +@@||aixifan.com/static/home/widget/basic/advertisement/advertisement.$stylesheet +||leju.com/scripts/app/pc/indexlayer/v1/indexlayer.js +zhibo8.cc###popautoapp +||uoublit.top^ +||whnews.cn/wh_public/xuxu/ +||deanth.xyz^ +share.dmhy.org##div[align="center"][id] > a > img +itdog.cn#%#//scriptlet('prevent-setTimeout', 'adblock_tip') +||kvskknklssv.com^ +||ctydsy.xyz^ +@@/images/ad/*$domain=9588.com|casio.com.cn|dod-tec.com|ourgame.com|pro-partner.com.tw|snh48.com|tingbook.com +||vnet.cn^*.html?$popup,third-party +lbyczf.com##.content__default > .list +||guli21.com/PNEW/ +ifeng.com##.adpubpic +rouman5.com#?#.col-md-4 > div.row:has(> div.col > div[style] > ins[id]) +feiwan.net##div[id*="_"][style] +||d-test.39.net^ +5imx.com###diy_mxnewsad01 +||longzhu.com/recommendad/ +udn.com#$#.main-content { background-image: none !important; } +kaopu001.com##.coupleBannerAdv +||zhimg.com/80/v2-f4b209014eeea058dd5b43f085aaef02. +toutiao.com##body div[ad_name] +lywww.com##.lianmengclass +||srldkqj.cn^ +##.zhanzhang_tuijian_btn +||hmghmg.com/tb +taohuayun.cn##img[width="150"][height="60"] +||b477.life^$popup,third-party +||e1zin.icu^ +@@||weibo.com/share/share.php$generichide +ali213.net##.ali-photo-carousel-pic > li > a[href*=".fhyx."] +.net/ad- +||hvzrrvj.cn^ +nfuwow.com##a[href*="myyj.net"] +tw.yahoo.com###util-top-promotion +||boardx.huanqiu.com^ +||21.fh21static.com^ +@@||stapewithadblock.monster^$generichide +||chinaz.com/2020/0306/2020030616083756.jpg +@@.google-analytics.com%2Fanalytics.js$domain=free.com.tw +||huizu100.com/data/attachment/portal/ +||ruishungp.com/assetscms2019/js/get_content.js +feng.com##div[class^="ad_90"] +||qiyipic.com/common/20160302/ban250.jpg +/maizhan/js/age.js +||yxkbgg.xyz^ +news.163.com#?#div[ne-module="/modules/slide/slide.js"]:-abp-has(.ad_hover_pic) +/lanye2015/images/lanyeht.jpg +||kssolo.com^ +||wyzq.rehuwang.com^ +||tcss.qq.com^ +789ys.com##h1[style] +||4ir17.icu^ +##img[data-src*=".alicdn.com/img/ibank/"][src="/static/images/loadingerror.gif"] +||wokao.co/qq/qq.js +||xekmhvbb.xyz^ +olehdtv.com##.container > div[class^="B1"] +939394.xyz##body > table:first-child img +18comic.vip##.container > div[style^="padding:"]:has(> [data-group="content_page"]) +||salary.xiao84.com^ +@@||weibo.com/api/weipan/getAds +/getads? +||57fx.com/img/20170508.jpg +@@||111.75.255.103/Scripts/Controls/PageView.js +||99496.com/v9/head.js +||7011.stia.cn^ +###left_float.close_discor +||pubads.g.doubleclick.net/gampad/ads?*&description_url=https%3A%2F%2Fani.gamer.com.tw$xmlhttprequest,redirect=noopvast-3.0,important +||foodmate.net/file/script/A +||uvpqrydt.xyz^ +||ads.adaptv.advertising.com/*roll&pageUrl=4gtv.tv$script,xmlhttprequest,other,redirect=noopvast-2.0 +||cpkxahje.xyz^ +alu.cn###xxxhuangjinzhanwei +gzmama.com###zone_top_fullcolumn +avjd014.com##a[href^="http://163qp.xyz"] +||daniuxuexiao.org.cn/js/zk +||twerilxi.top^ +##script + #strl +verystream.com#@#.adsbox +/aeiou/*$domain=discuss.com.hk|uwants.com +doii.cc##.w-\[200px\].fixed +chsi.com.cn##.zx-axvert +bingfeng.tw#%#(function(){var b=window.setTimeout;window.setTimeout=function(a,c){if(!/Adblock/.test(a.toString()))return b(a,c)};})(); +||3dmgame.com/page/js/indexalert_ad. +||126.net/house/hrb/flash/*X +@@||8maple.ru/*/ad.php +iciba.com##.pc-entry +.us/js/ads/ +v.qq.com##.site_bg_variety +a9vg.com###qrcode +||sogou.com/reventondc/inner/gamebrand? +iduba.com,newduba.cn##.m_nav_top +baidu.com##.tb-threadlist__item.tb-banner +china.com##.mxm +bilibili.com##.ad-e1 +edc1014070.pixnet.net#%#//scriptlet("set-constant", "MM_openBrWindow", "noopFunc") +ssnn.net###nrk_gg +##.ads200 +/adpro.js +ipv6.baidu.com,xueshu.baidu.com,www.baidu.com,www1.baidu.com#?#div:not([id]) > style[id^="s-"] + style + div + div[id] +.vip/style/vue.js?v= +contents.internet.apps.samsung.com##.page-bar +||wetlwse.top^ +||soaspx.com/images/hws.gif +||herzotph.icu^ +news.qq.com###focus-bar +lcxw.cn##.gg4 +||zglww.net/jsnew/pfkf.js +||ybrbdft.xyz^ +||k99.cc^$third-party +||kppt.cc/zhifu.jpg +sdo.com##a[class^="side-nav-box-daoyu"] +||yaseok.com/uploads/20*.gif +3322.cc##[onclick*=".gsxzq."] +||168img.com/aa/ +||onagsc.xyz^ +##.mediavfeed-newsitem +qzone.qq.com###div_corner_ad_container +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##style[data-for] + style ~ #\31 [data-click^="\7b \"rsv_bdr\":\"0\",\"p5\":"] +||jialingmm.net/tj.js +||hmlkppk.cn^ +rrjc.com##.coupletbox +||jsdelivr.net/gh/pizcat/static@master/goods_ad.js +m.lwxs.com#%#//scriptlet('abort-current-inline-script', 'document.write', '_0x') +||vszzzj.xyz^ +||abcd.yiq.com^ +||ctkyom.xyz^ +||gcumgu.xyz^ +77222.cn##a[href^="/aa/"] +||bdimg.com/muzhi/adwap/top-banner.jpg +||neets.cc/assets/js/dup.js +||domain1.chahaoba.cn^ +||dokfrl.xyz^ +boylov.xyz,boylove.cc,boyloves.fun##style + div[style="cursor: pointer; position: relative;"] +ifeng.com##div[class^="bottomSlide"] +||yldxphtg.xyz^ +||mydrivers.com/images/icon/gg_ +baixing.com##.red-package +||11kkzz.com/se/wf/ +lenovo.com.cn##.AdSite +||abucki.xyz^ +||wvyqks.xyz^ +##.horizontal-banner +##a[href*="xchina.click/prepare."] +||heiye.cc/js/bf.js +/delivery/afr. +/9CCMSPC/images/*.gif +uc123.com##.logo > a +||nfldgbt.xyz^ +##.ads > a > img[src*=".sinaimg."] +||sobaidupan.com/top_txtad.asp +||sina.com.cn/activity/promotion? +html-js.com##.module[style="padding:0;"] +||bas.boshi.tv^ +||alitui.weibo.com^ +||itavcn.com/images/2014/ad_ +||book118.com^*/showRecommend. +||bytravel.cn/js/b_ +5imx.com###diy_mxad02 +||awzddev.cn^ +||qpic.ws/images/pk*.gif +hao.360.com###tmall-full-screen +||herogame.com^$subdocument,domain=gamer.com.tw +||hkrytf.xyz^ +lenovo.com.cn##.link-ad +@@||threatbook.cn/public/asset/js/zhugeIo. +||bmp1.ali213.net/pubjs/index_sc_utf8.js +/xxgg/dj*.js +asken.jp#@##top_box > a[onclick^="javascript"] +mrbird.cc#@#.social-icons +36kr.com##.app-track-card +||m1.51kaowang.com^ +||offcn.com/offcnewm/ +.gif$third-party,domain=cl.wpio.xyz +||gpxz.com/js2/ +/js/home/ad/ad. +||cxeftgyuer.top^ +##.rightAD +||unfhxszj.xyz^ +||jrjimg.cn/common/foot/wxXcxTg.js +.com/vh5/$script,third-party +||139file.com/jsa/ +||thisav.com/index.js +@@/img_ad/*$domain=tkec.com.tw +||2btu.com/gg.jpg +2345.com##div[id^="J_Topic"] +||baijs03.xyz^ +||aa3e4.cyou^ +soundofhope.org##div[class*="AD_"] +tw.news.yahoo.com###sda-LDRB-iframe +###fnbt +||rnzmynh.cn^ +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv###hellBoy > li:not([track-by]) > img +zhcw.com##.hzg60 +||wwursere.top^ +||anjdwmq.xyz^ +||ebioweb.com/jslibrary/js +13tv.top,sina.com##.aditem +||drzgtli.com^ +||ifengimg.com^*/fullscreen +baofeng.com##.play-ads +##.ad_thread +||nltsvf.xyz^ +##.flex-row > #propagandaRight +/api/apiFetchAdsData +||gg163.net/20*ad/ +58pic.com##.xyyh +||cpyjyhny.xyz^ +||p.7060.la^ +||xhubsxmg.xyz^ +chinese.engadget.com###module-engadget-deeplink-top-ad +||kkyjfdj.xyz^ +||n0622.com^ +||werssf.com^ +onlinedown.net##.u-btn-gao +||douban.com^*/fm_bgad.js +infoq.cn##.geo-banner +sina.com.cn##.blk_APP_JSl +###piao_div_1[style*="width:140px;"] +||js22f.net^ +bbs.colg.cn##.hdc > a[onclick][target="_blank"] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-car-powerful-container +@@||fscinda.com/ad/$~third-party +||aol32.cn^ +@@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com +@@||netflav.com^$generichide +||xvyugqj.icu^ +||xwdsp.com^ +azofreeware.com###HTML7 +nxpaaq.com#$#iframe[src="/close.html"] { display: none !important; } +||ggttbe961.shop^ +||magnetdog.net^$popup +mydrivers.com##.i1vbApifa5 +||reisyxy.icu^ +/qpxl.js +dmzj.com##a[href*="qunhei.com"] +qidian.com##.page-ops +||ktnwxhjv.xyz^ +||fxxz.com/skin/know/all.js +##.main[style="border:#7D8C8E solid 1px;height: 23px;"] +||jisutiyu.com/app/js/*footer.js +##.gg430 +drvsky.com##.zhongdian +||bdstatic.com/player/t/j/Cj2XuDf6.js +||wjwod.cyou^ +/tb/_/video_frs_head_ +||whqgyo.xyz^ +##.stui-vodlist__thumb.lazyload[href^="http"][target="_blank"] + .stui-vodlist__detail +||whsir.com/wp-content/themes/wh-blog/js/modal.js +stc.gov.cn###mov +bilibili.com##.desktop-download-tip +||zxptw.cn^$third-party +||1.doudouditu.com^ +bendibao.com##.content_r_ad300 +###ZAML +16rd.com###diy_ad_article_right IMG +||j7c16.icu^ +||vtjbnb.xyz^ +||rlw86.cyou^ +lalilali.com##div[id*="_"] +||poxdpj.xyz^ +ifeng.com##.adR01 +||lgmi.com/syimg/ +@@||totheglory.im/pic/ttg_logo +||lm1.tuliu.com^ +/code/mypop.asp? +hupu.com##.ad720-90 +autohome.com.cn###ad_ic_video +||ssestherssa.com^ +||gk1.zjbiz.net^ +mbd.baidu.com###content_wrapper + div + .default-container +||imall.cctv.com^ +||s1.pipishu.com^ +jnnc.com##.basehr + div +firefoxchina.cn##.side-promote +||liangpinge.com^$third-party +###menu + #topBox +/haojio/js/scoll_bg.js +@@||alicdn.com/dt/tracker/4.2.0/??tracker. +@@||cdn.optimizely.com/js/*.js$domain=kktv.me +||lvnlrmn.xyz^ +||iewtwo.xyz^ +3dmgame.com##.Gmaeinfobtn_tab > [class]:not(.tab) +@@||qq.com/cgi-bin/*?sid=ads +/images/*.gif$domain=2c2.website|2p8.space|adultgao.com|caopop.com|caoporn.com|caouoo.com|caox.cc|h3e.pw|h3y.pw|k88.club|me88.pw|p5p.space|se88.space|t2p.space|tb001.xyz|te88.pw|vwan.xyz|xhao1.com +||mvmqos.xyz^ +||tvsou.com/js/360ad.js +##a[href*="kdocs.cn"] > img[src*=".ax1x.com/"] +||yitongfang.com^$third-party +||alimama.cn^$third-party,domain=~alimama.com|~foctop.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~youhuiyouhui.com.cn +||plnrkgc.xyz^ +||99jinpin.com^ +pchome.net###intel-bar +qzwb.com##body > .area[style^="height:60px;"] +sex8.cc##.banners12 +||7k7kimg.cn/cms/cms10/20180706/135219_4911.jpg +||nuxwlc.cn^ +||ytbbs.com/images/index/ +?method=baidu.ting.commercial.tactics& +||sesefu8.com/statics/js/layer/layer.js +||lfxozd.xyz^ +||dajiazhao.com/login/reg.js +||wlzlrlp.xyz^ +||replays.net/j/dazui +.net/ads/ +###wrapper > .topad +||591hx.com/lunbo/ +||niugupan.com/js/tj.js +sina.com.cn##.adG +||bndxrr.xyz^ +tsubasa.im#%#//scriptlet('prevent-setTimeout', '/home/?adblock=') +||ran2.top^ +||uloscw.xyz^ +codejie.net##.h-ad-banner +||hc360.com/js/*hezuo.js +smzdm.com###footer_layer +news.gamebase.com.tw##.PcNewsUpAds +big-cup.tv,g-cup.tv##.col-md-12.text-center[style="margin-top: 3px;"] +||qqtn.com/js/html/down_ +jijidown.com##div[style="width: 525px;"]:last-child +##.pop[style="right: 10px;"] +||ybf1o.online^ +||udd1i5.zhihu.com^ +x6g.com##.addd +||lfrdskwj.icu^ +||u.ctrip.com/showcaseadvertisementsit/ +||kdou.com/ad_js.php?adid= +||icwnix.icu^ +@@||googletagservices.com/tag/js/gpt.js$domain=tvb.com|tvbs.com.tw|www.gamer.com.tw +||myhack58.com/Articleacb0 +||p4p.sina.com.cn^ +||szmmb.cn^ +carousell.com.hk#$?##carousel-container > div[class^="D_"] > div[class^="D_"] > div[style^="width:"]:has(a[aria-label^="licksang"]) { remove: true } +||jias115.com^ +||cnmysoft.com/images/logo02.png +@@||pub.alimama.com/common/adzone/ +@@||ad.8maple.ru/bilibili.png +||0r3tyg.cn^ +||oyugspe.cn^ +axios-http.cn###right-sider +||qvrfddm.cn^ +||etkht.cn^ +||ytghtq.xyz^ +bcbay.com##table[id] + table[style="margin:3px auto;"] +/js/xb.js$script,third-party +||rjhbjv.xyz^ +###tr_ad5 +.cn/ads/ +||baby-kingdom.com/reqsads? +||7d108.cn^ +lukedreyer.com##div[style$="width: 125px;z-index:2000;"] +||cb61190372.com^ +||aaiwuq.xyz^ +sogi.com.tw#?##main > div.container:has(> div#ad) +||alicdn.com/img/ibank/*_42289337. +||imgdb.cn^$domain=m4ff.com +51xiazai.cn##.relateSoft > div#xzbtn1:not([class*="btn_blue"]) +||kuaishouba.com/themes/default/images/*.gif +hjenglish.com##.fix_questionnaire_btn +axutongxue.com,axutongxue.net###jjjagl +||mesh.if.iqiyi.com/portal/*/recommend?$xmlhttprequest,removeparam=ad +qq.com#@#.ad-icon +||vainews.cn^ +hao123.com###lefttip +||p0v2ni.cn^ +||zpplsii.xyz^ +163.com##.btm-ad +/wscdn/*$subdocument +||kancloud.cn/ad/ +||bpztsxx.com^ +boylove.cc###floating_page +ilvruan.com###text-13 +||ebioweb.com/newsf/js/news_top_banner.js +|http://*.hk/ad/$domain=~sunmobile.com.hk +||vtlyrj.xyz^ +||vppzjv.xyz^ +||fpb.sohu.com^ +ifeng.com##div[class^="h"] > div[class$="-main"] +||winwin7.com/statics/js/pos_js/ +/advertising/*$~xmlhttprequest,domain=~temple.edu +##.nordvpn-popup + .sidebar-vpn +99kubo.tv##.main > div[class="datal clear"] +duba.com,newduba.cn##a[href*=".zhhainiao.com/"] +kuwo.cn##.qr_wrapper +||fuliwang.cc^ +qq.com##.mod_custom_ad +sogou.com##div[class^="news-top-banner"] +||6969aa.cn^ +gucheng.com##.title_down_ad +||rouman5.com/hlw.jpg +weather.com.cn##div[class^="adpos"] +||ljdofz.xyz^ +||bianzhirensheng.com/img/bianzhiji.jpg +apple.com.cn#$#html { margin-top: 0 !important; } +||tiexue.net/domain-policy/ +gamebase.com.tw##span[id^="aid_"] +iciba.com##.info-product +yiche.com##.h-gd-box +||mall0.qiyipic.com^ +||vkandian.cn/footjs/ +||91xiazai.com/Public/index/images/zanzhushang.gif +||ettoday.net/style/video-ad/ +||xnqboqc.icu^ +/skin/iymbl-$domain=iimanhua.cc|iimh.net +apk.tw###confirmOverla +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###frs-list-game +||vs1.exo01.xyz^$image,third-party +||phwrju.xyz^ +||tbcdn.cn/mm/tanxssp-custom/sina_ +||poxiao.com/template/default/images/12345.js +@@||dlkoo.com/down/copy1 +||fq03.shop^ +||jyfw.cn/gonggong/jiayu/cf_ +/js/soku-analytics.js +cool3c.com##.gpt-new +/script/ad. +/ina_ad_ +||kuaizitech.com^$third-party +||ipeen.com.tw/photo/ad/ +##.privilege-promote +lenovo.com.cn##.fixedLeftAd +||atyun.com/wp-content/themes/xmag/js/ad.js +||rydzfldt.xyz^ +78dm.net##.container-fluid > a[href*=".taobao.com"] +||haoimgs.com/images/*.gif +wn789.com##.sidebar > .widget:not(:first-child):not(.widget_ui_posts) +||hitchun.com^ +||i100.cao-gao.xyz/aimgs/ +/Runtime/Js/m_tuijian_ +||51gxqm.com^ +||nfmovies.com/pic/tu/banner +||js.spreton.com^ +||kdw*.com/layer/layer.js +91hs.top,hsex.men##.col-xs-12 > a[target="_blank"] +iwatchme2u.com##.video-ad-box +www.wenxuecity.com###rightside +daohang.qq.com##.banner-adv-new +lenovo.com.cn##.adsense-wrap +||ra6.xyz^ +people.com.cn##.ad_left +@@||jin10.com^$generichide +hao123.com##.soft-ad-banner +||jdwx.info/api.php?mod=ad& +iplaysoft.com##.d250x90 +||p04qzl.cn^ +||odipsumk.top^ +@@||elife-cloud.blogspot.com^$generichide +##a[href*=".mjjji.com/"] +||alicdn.com/kf/U49aea8c7eb23472da22f6375984dfe3fa. +cnfol.com##.FixedLeft +||osisk.com^ +||down.admin5.com/z/ +iqiyi.com##.cell-right +||8684.com/shuang11/ +||xinhuanet.com^*/adv +||eastday.com/assets/js/dftongjiad.js +||awareista.com^ +||8070kk.com/statics/js/guo +@@||pos.baidu.com^$script,domain=fxpan.com|htqyy.com +||64ma.com/tv/images/web.png +waipian1.com,waipian2.com,waipian3.com,waipian4.com,waipian5.com,waipian6.com,waipian7.com,waipian8.com,waipian9.com,waipian10.com,waipian11.com,waipian12.com,waipian13.com,waipian14.com,waipian15.com,waipian16.com,waipian17.com,waipian18.com,waipian19.com,waipian20.com,waipian21.com,waipian22.com,waipian23.com,waipian24.com,waipian25.com,waipian26.com,waipian27.com,waipian28.com,waipian29.com,waipian30.com,waipian31.com,waipian32.com,waipian33.com,waipian34.com,waipian35.com,waipian36.com,waipian37.com,waipian38.com,waipian39.com,waipian40.com#$#a[href*=".umtrack.com/"] { position: absolute !important; left: -3000px !important; } +||tech.jiukang.org^ +||kalvin.cn/page/img/ +speedtest.cn##.advertisingSpace +||niuacc.com/static/common/js/145.js +yazhouse8.com##.mini-over-top +||dvs.china.com^ +itavcn.com###ADE +douyu.com##div[id^="sign_p_"] +tvsou.com##.sogou-temp-show +66rpg.com###left_overlay +||mortgagecentres.net/banner.gif +||168.it168.com^$script +||d2kadvyeq051an.cloudfront.net^$third-party +||kuaicad.com/rest/common/getConfigureByName? +m.nownews.com##.ui-footer-fixed +||udolgy.xyz^ +baidu.com##.openBox-shareEntry +hao123.com###slidetoolbarContainer +yicai.com##.gg_loadpage +iqiyi.com###jingdongArea +ali213.net###tv +##.global_video_bottom_dbtc +ezneering.com#$#html { overflow: auto !important; } +read.qidian.com##.operation-wrap +||pconline.com.cn/download/*/intf*.js +webkaka.com##.pNavigateAd +familydoctor.com.cn##.global-top-links-wrap +32r.com##.gsbtn +||cdn.wenzhangba.cn^ +58avgo.com##.BillingRight +cskaoyan.com###scanWxQrCode +||dmpqjn.xyz^ +||haohuisheng555.cn^ +oschina.net##div[class$="Content"] > p[style="margin:0 0 10px 0;"] +||urtlist.top^ +##.adtable +18avinin.com##a[href^="https://forms.gle/"] +||sfesdef6.fun^ diff --git a/adblock_lite.txt b/adblock_lite.txt new file mode 100644 index 00000000..bdd0dd00 --- /dev/null +++ b/adblock_lite.txt @@ -0,0 +1,21143 @@ +[uniartisan's Adblock List Lite] +! Version: 202411080220 +! Title: uniartisan's Adblock List Lite +! Expires: 1 days (update frequency) +! URL = https://github.com/uniartisan/adblock_list +! Length = 21137 +||pviasld.icu^ +||banma.com/get_ad/ +eprice.com.tw##.ad-320x100 +||daweijita.com/2014/08/ad_head +||sxrb.com/front/stat/ +kwongwah.com.my##.kp-adv-widget +cjjjs.com,cnblogs.com,fastadmin.net,ziqiangxuetang.com##a[href^="https://promotion.aliyun.com/"] +||btfzbak.xyz^ +||zfcoin.cn^ +||eyny.com/data/cache/js_show_ads.js +||dingdangsheji.com^*/%E7%94%BB%E6%9D%BF- +douyu.com##.row-4.theatre +||mvcat.com/wx/follow.js +baidu.com###u1 > div.guide-info:last-child +www.sogou.com##.tgad-box + div +||ajghca.xyz^ +||3dmax8.com/jiaoche +||jingwuhotel.com/static/xbiquge +||evbrkhz.xyz^ +axjbt.com,avcao.cc#%#//scriptlet('abort-on-property-read', 'myclick') +yeeyi.com##.js_handle_right +||stat.game.yy.com^ +douyu.com##.layout-Main > section.layout-Customize +xianzhenyuan.cn##a[href*=".tmall.com"]:not(#xztba) +||fgnfpnae.icu^ +||gessdashb6.fun^ +gamicsoft.com##A[onclick*="'Advertisement"] + .absolute +jianshu.com##div[aria-label="amc-ad"] +yzpsb.net###fc_foot +||aixiaofan.cn/content/uploadfile/tpl_options//Ad_list_ +||n0399.com^ +rrys2020.com###indexNav1 +zhihu.com##.HitQrcode +bjx.com.cn##.layer_right2 +itmo.com##.aside-game-icon-box +2345.com##.adMainBg +||xiaoshuoyun.cn^ +||gansudaily.com.cn/2017zt/images/*gg +||qzsvwo.xyz^ +win007.com##td[height="18"][bgcolor="#FFFFE8"] +ctanet.cn##a[href*="/GoTo.asp?ID="] > img +||78land.com/js/fumeiti.js +||ogidskik.top^ +||ithome.com/images/hongbao/ +||1f84e33459.com^ +uuzzw.com##.xgtj-recom +114la.com##.corner +||2345.com/duoteimg/img/*_ad_ +||syshwc.xyz^ +||jiemian.com/static/jmw/js/adBase_ +||bkxuprh.cn^ +forusex.com##a[href^="http://redheartnext.com"] > img +||douban.com/view/dale-online/dale_ad +||houstonbbs.com/data/ad/ +imgse.com##.ad-banner +||static.rongkao.com^ +huya.com##a[class^="Ad--"] +ifeng.com##div[class^="index_top_box_"] +||cadke.xyz^ +||titan007.com/images/item.gif +||jusha.com^$third-party +19lou.com##.pop-ad +51credit.com,hkepc.com##tbody[id^="normalthread_"] + tbody:not([id]) +||baidu.com/api/wikiad/ +||ccav5.com/static/js/floatImgAd.js +||pincai.com/js/pubuliu. +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.firework-wrap +youku.com##.src_adwrap +||fjhrq.xyz^ +||x0y081e.xyz^ +getrelax.cc#$?##main_content > .grid-boxes-in:has(> iframe[src^="//adserver.juicyads.com/"]) { remove: true; } +||frame.enet.com.cn/a.php +meijumi.net##.widget_metaslider_widget +hktvyb.com##.myui-content__operate > a.btn-warm +||usmgoxe.cn^ +ilxdh.com##.double-eleven-container +||xfqynrp.cn^ +||10000xing.cn/images/we +||oewrutk.top^ +||srtb.msn.cn^ +jd.com###m_common_tip +||ifengimg.com/a/*/core201 +rfidworld.com.cn##.rfidADClass +feng.com##.header +m.mydrivers.com###content > .bb +||gedashb112.fun^ +||zjjlhvo.xyz^ +||eccn.com/js/popupad_ +baidu.com#?#.c-gap-bottom-small:-abp-has(>a>div>div[class^="jr-stock-open-account-"]) +||alwaysc.com^ +||dw.xcar.com.cn^*.gif? +3g.qq.com###omgad-wechat-bigpic +@@||news.u17i.com/advert/ +||kyemwo.xyz^ +||wfijsc.xyz^ +||51cto.com/js/activity_pop.js +||img.mikudm.net/img01/MP3/GG/20240415_CPS_960X75_general.gif +olgame.tw##.nex_mid_ads +bbs.xmfish.com##.cmp_v +sosg.net###postlist + .cc +3987.com##.showdown > .mt20:first-child +||0573fang.com/ads/ +||prtfpl.xyz^ +eol.cn,firefoxchina.cn,site.baidu.com##.popup +||ywhws.cn^ +youxi.kugou.com###scrollUp +||iqiyi.com/common/*/cupid/ +||ky891.oss-*.aliyuncs.com^ +www.wenxuecity.com##.col > ul:not([id]) > li > a[href^="http"]:not([href*=".wenxuecity."]) +speedtest.cn##.pub-ad +||goodcome.com.tw/block/ad/rndtopad.php +500.com##.tz_pai +applefans.today#$#body { overflow: auto !important; } +||dxrnksm.xyz^ +||pjdthz.xyz^ +||singtao.ca/editions/affiliate_ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=news.tvb.com +timedg.com##.crossAdvertise2 +||qsptv.com/tpl/newstyle/js/extension.js +aaaweb.cn##a[href$=".yhzu.cn"] +china.com.cn###baidu +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_right > div[id][data-click^="\7b \"fm"] +cool3c.com##.sticky-inner > [class="board board-side board-cool3c-homepage-TR300X250 board-new clearfix"][data-board="cool3c-homepage-TR300X250"] +@@||smsonline.cloud^$generichide +firefoxchina.cn,hao123.com,muzhi.baidu.com##.bottom-banner +||qiyipic.com/common/fix/wh-leftbanner.jpg +||jiangyahuid.top^ +||ac.tc.qq.com/store_file_download?*&dir_path=/admin/swf/ +||dwerzv.xyz^ +||api.bilibili.com/x/ad/ +cnlinfo.net##.guanggao-left +||ypkxka.xyz^ +||dpzplb.xyz^ +||dd6364.com/js/777/ +baidu.com##.spage-couplet-container +qq.com,sogou.com##div[class^="page-top-banner"] +wenku.baidu.com##div[class*="tiger-"][class*="-dialog"] +||c1.china.cn^ +||havttn.xyz^ +||24w0p.com^ +||pl520.com^$third-party +||9938.net/video/tvg/hot.js +baidu.com##.corneradv +kk665403.pixnet.net###Adsense +||img3.126.net^ +@@/advertisement.js$domain=gimhoy.com +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###local_pb_top +itdog.cn##.div-top > .row > div[class] +||sotunet.com^ +://affiliate.$third-party +||kankanwu.com/xuxu/ +||bcebos.com/ad/ +||bbsbaba.com/js/1.js +wantgoo.com##.adsbox +dl.pconline.com.cn##.links > p:not([class]) +dmxq1.com##.content > div[id] > a[id][target="_blank"] > img +||m.shushu8.com/js/tongji.js? +||ekykse.xyz^ +||5888.tv/Js/topBanner.js +||3625ggtp1.com^ +||mh3666.com^*.jsonp +yahoo.com###crazyAD +||r3sub.com/posters/0069810.jpg +airav.cc###Panel_GambleZone + .Hide_For_JP_AND_EN +iplaysoft.com##div[style="background:#fcf0ef;width:680px;height:130px;border-radius:8px;margin-top:28px;position:relative"] +nownews.com##div[class^="ad-blk"] +hjenglish.com###regscrollcontainer +gamer.com.tw###BH-bigbanner +||eastday.com^$subdocument,~third-party +||jxdown.com^$third-party +||ruian.com/img/2016/a1-6-1.gif +||huancaicp.com/?pid=$popup +msn.com##div[data--adqjyluqt] +||xvilxdv.cn^ +myqqjd.com,cnprint.org,ez3c.tw,easylife.tw##.adsbygoogle +||caohv.com/mm/ +avmimi.com###ArticlesEx_box +2345.com##.chc-dzoem +||ytvrtrya.xyz^ +||zlvlciv.xyz^ +||2ccc.com/images/aobi.gif +jq.131458.com##.soso_02 +||zsjxwj.com^ +||8mg050.n3cdn1.secureserver.net^*/960 +||fwwang.cn/templets/fw/js/art +||zlyk.com/Runtime/Js/m_nav_bottom.js +||3boys2girls.com/newfile/image2010/banner_housead_ +||msstatic.com/huya/main3/widget/roomGg +||baidu.com/smalllog/ +xbeibeix.com#%#//scriptlet('prevent-setTimeout', '/\.height\(\) == 0|adsbygoogle/') +iqiyi.com##.hwLink +portablesoft.org##.sidebar-widget:first-child +||sjks88.com/templets/default/js/mydata4.js +||bedzbu.xyz^ +||sese277.info/photo/ +||jofknbpe.xyz^ +ilxdh.com##.show-container +||kak17p.xyz^ +pc.yiyouliao.com##.yyl-weiruan-ads-swiper +tigtag.com##.couplet_r +10jqka.com.cn##.top-ad-box +@@||av4u.info/source/plugin/unadblock^ +mse.360.cn##a[id^="banner"] +@@||uu.res.netease.com/pc/zt/*/img/ad_ +xbiquwx.la##.box_con > div[style="margin:10px auto;width: 930px;height: 250px;"] +||jmydm.com/jspage/ftt.js +kissjojo99.com###text-16 +||qu96.com^ +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.1.commercial.title', '') +||205.209.138.102^ +||hujiang.com/ciku/getLesson +buy.ccb.com#@##top_ad +||s.rmimg.com/*.gif|$domain=nodeloc.com +||tangrenjie.tv/gg/ +lalulalu.com###overture_main_banner +ifoodie.tw##.ad-right-column-desktop +||zx123.cn/templates/zx123cs/theme-2015/js/right_xh.js +zhongziso.com##div[style="width:100%;height:100%;position:fixed;top:0"] +||ydv7k.cyou^ +unikoshardware.com##.theiaStickySidebar a[href^="https://bit.ly/"] +eastday.com##.left-suspension +toolfk.com##wavy + div[style] +pujia8.com##.ad740 +91duba.com,iduba.com##.jq_notice +||rqnefp.xyz^ +baidu.com##.ec-oad +olevod.com##.B1L +jdyou.com###contentSlide +100ec.cn##.detail_top_ad +||prtadf.xyz^ +||du1.bbdj.com^ +storm.mg#@#.social_btn +||bujz.top^ +3464.com##.CommonBody > .CommonListArea:nth-child(3) +||rdsgick.icu^ +||gjnbf.com^ +423down.com##span > a > b +||bdstatic.com/player/t/j/AEoIJIPB.js +baidu.com##.commentEmbed-backHomeCard +@@||regapi.37.com/api/p_register.php?login_account= +||mytanwan.com^$third-party +||jxnews.com.cn^*_ad_ +tumutanzi.com###text-3 +52wubi.com##.top960 +||bplrpf.xyz^ +csdn.net##a[href="//gitbook.cn/new/gitchat/activity?utm_source=csdnblog1"] +qq.com##.main_ad_bottom +naifei.im##.tg_w +||vdggsd008.com^ +zhijia.com###QPhiddenLayer +||zhrrzug.xyz^ +||cdncg.com^*/Aepku +||guokr.com/baidu-cbjs/ +||wnacg.*/themes/weitu/images/0 +linuxidc.com##.linux801 +c114.com.cn###ad_r1 +||bowoprf.icu^ +||itavcn.com/pic/news/201802/20180207/image/050N2.gif +||nxledn.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecom-result +||2500sz.com/site/ +||mvxz.com/bar3.js +2345.com###J_gul_yg + .mod +||bghebf.xyz^ +||zrblog.net/zanzhu/virpus.gif +fmdisk.com##div[style="width: 960px; margin: 0 auto; height:900px; color: #F00; font-size: 14px; text-align:left;"] > p +kocpc.com.tw##.sidebar:nth-child(3) +@@||dlpanda.com^$generichide +fnjiasu.com##.sidebar_download +||prhphla.xyz^ +runningmanzx.com##.guangao +||73652253191.com^$third-party +hackhome.com##.ul_ad +||fpjjjh.xyz^ +||market.duowan.com^ +iqiyi.com##.gg-r +||dnwx.com/pic_ad/ +dongao.com##div[class^="fu_"] +android-doc.com,apk.tw,chaojizhibo.net,chtoen.com,dizhishengcheng.com,doitwell.tw,epinv.com,ff14angler.com,fxpan.com,haoweichi.com,logi.im,lspdfrcn.com,moa.tw,moe48.com,numberempire.com,playok.com,reh.tw,shenfendaquan.com,vaptcha.com#@#ins.adsbygoogle +hepan.com##.fivead +||yzmcok.xyz^ +iqiyi.com##.kwltp-rightgg +||imawwq.xyz^ +||ggjs.d17.cc^ +||zcpsc.top^ +||ip.ws.126.net^$domain=~fxingw.com +||gdr3.com/us/ +jyacht.com##.hot_reoc_adve +||sgg.southcn.com^ +||xunyugong.xyz/sitejs/xunyugong.js +cnfol.com###CjAdvBt +||win007.com/mn/ +iqiyi.com##.adBanner980 +banzou.name###appfu +maxthon.cn##.feast-gift-search +newmobilelife.com###ATS_sticky +||pmnct63.shop^ +||kankantv.*/javascript/thea +||cnki.com.cn/cnki/js/adrightdetail.js +||yimg.com/cv/ae/default/*_STATIC-JPEG_ +||609999.xyz^ +hitime5.com###gg730 +@@||udn.com/mall/images/spacer.gif? +pharmnet.com.cn###img1 +ruanyifeng.com##p[style="text-align:center;font-size: 16px;"] +||ssyy881.com/zz/ +||34iq.com/index +||dilidili.wang/uploads/allimg/171227/1_1520203421.png +playno1.com##.eis_adv2 +||cnmoad.com/wp-content/uploads/*_banner. +baidu.com###fc-left +html-js.com##div[style="margin:10px auto;width:1000px;"] +vx666.com##.async[href^="http"] +5278.cc###list_top_ad +||sdzbcg.com/images/sdfhyl +||haopp02.com/js/ +||chinanews.com/shipin/sptp.xml +||news.fangdaijisuanqi.com^ +||5xdmw.com/tb.jpg +||63ys.com/ggg/ +||windows.net/732d.js +||img.mbalib.com/common/servicesPicture/prom.js +159i.com##div[id^="sidebar"] > :not(form) +idreamx.com#?##threadlisttableid > tbody:not([id]):has(> tr > td > ins.adsbygoogle) +||ahuys.net/sys +@@||85porn.net^$generichide +||cbsi.com.cn/js/mlt.js +||ryrmvd.xyz^ +||e5yx.com^$popup +eprice.com.hk##div[id^="eprice-div-gpt-ad-"] +||jsdelivr.vip^ +jianhuadaily.com##.alignnone[width="300"] +||ruyig.com/730x76.png +jianshu.com##section[aria-label="jianshu-ad"] +||a.bake818.cn^ +||shbzikj.cn^ +@@||exoclick.com/iframe.php?idzone=*&size=468x60$domain=porn77.info +90bifen.com##td[bgcolor="#FFFEE0"][height="22"] +ltn.com.tw##div[id^="ad-"] +||hao5.net/images/*0- +||aokkwzg.cn^ +@@||52zy.com/gg/ +||5dmail.net/image/ORF_1000.gif +m.qu.la#?#ul:-abp-has(> li > a[href*=".bcebos."]) +e10000.cn##.navigate_sty + div +52pk.com###bg_link +||nwxs5.com/js/ +||qq260.com/shout.js +redian.news##._ap_apex_ad[style^="width: 300px"] +sports.qq.com##.topBnaner +@@||szhr.com^*ad +so.com##.placeholder-default +||inhe.*/Uploadfiles/adpublish +||wcd2l.icu^ +@@||shijue.me/advertise/getList? +pconline.com.cn##.blk-img[href^="http://best.pconline."] +||zbcdn.net/__uvjgyw/slb.default.js +||panyh123456.cn^ +wap.zol.com.cn###waitrep +||pxzrlf.xyz^ +||gg163.net/js/gg163ad.js +||tv699.com/AllTemplet/js/ +@@/adview_pic_$domain=bigpixel.cn|fffmo.com|itbaoku.cn|laimanhua.net|lfqie.com|lingjike.com|mahua.com|mati.hk|meiyouad.com|mh160.com|reh.tw|silisili.in|sssam.com|yanyue.cn|zaixianjisuan.com|zgpingshu.com +sogou.com##.bottombar +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###ecl-temai-category +||baidujs.cnys.com^ +||rfidworld.com.cn/js/c.html +qq.com##.style_modal-wrap__UnbtS +||jd.com/ddimg/$domain=bimiacg.net +||lovespenhas.com^ +||xxooos.com/mm/ +boylov.xyz,boylove.cc,boyloves.fun###fake_avivid_waterfall_webpush +qinbing.cn##.left-adv +18-comicfrieren.xyz,18comic.org,18comic.vip##.modal-backdrop +||dnvodcdn.me/fast/*.mp4 +||firefoxchina.cn^*49560. +zzbaike.com##.imglistbg_ad +||m1905.cn/js/afp/m +opdown.com##.cq-recom +||mp4ba.net/static/js/mp4ba.js +bog.ac##.sidebar-url +@@||fangcloud.com^$generichide +||baggvon.icu^ +||msstatic.com/huya/main/img/mc-recom_ +||adt100.com^$third-party +fujieace.com##.single-goods +qinbing.cn##div[class*="gg"] +||u1011.com^ +||5y9nfpes.52pk.com^ +||hgyouxi.net/source/plugin/hgyouxiad/ +||aibing.cc/vip/img/gou.gif +@@||potalapalace.cn/upload/images/advertise/picture/131030000583.jpg +nczsks.com###downyxjs +7k7k.com###player-ad +cnblogs.com##.sidebar-image +ldmnq.com##.dialog-game +@@/advert_$domain=pisen.com.cn|wb.qq.com +baidu.com##.game-adv-fram +||qingkai.com/2009/html/top.htm +||teamjwar.com^ +bt.cn##.left_wrap:nth-child(3) +||jynthelon.com^ +||lianmen1.joyyang.com^ +pianba.tv,pianba.net##.play-btn > a[target="_blank"] +jq22.com##.fdad +||miguyu.com/AD/ +||wzjs1.oss-accelerate.aliyuncs.com^ +||uqydcs.xyz^ +medsci.cn##.adv1201 +kocpc.com.tw##.Zi_ad_ar_O_3 +||adsv.svc.litv.tv/ads?ad_unit=$xmlhttprequest,redirect=noopvast-3.0,important,domain=ani.gamer.com.tw +||swad332.fun^ +kumi.cn##.ad64060Box +||moberg.cn^ +baidu.com##.aside-inner > div[style*="height:"] +://abb.*.js?adv= +||muxingkj.com^$third-party,image +@@||doc110.com^*/ad.css?$stylesheet +agirls.aotter.net##.row > div.col.hidden a[href^="https://supr.one/"] +||bqnxff.xyz^ +||hao123img.com/static/common/js/cpc_ +hao.360.com###pushbar-festival +||heatherssb.com^ +||av6k.com/shop/bann$image +niuacc.com##.masks +||rentiyishu.org/*.js +ifeng.com##.yc_con_r +||ali213.net/pubjs/SetScreen +ithome.com.tw##.span4:nth-child(8) +51cto.com##.footer_mask +~weibo.com##.con_ad +||9669.com^$script,third-party +7808.cn###float-chat +||m.ysxs8.com/js/content_db.js +||cupfox.app^$third-party +||qq.com/nodeapi/api/ads +||a-m-s.adnonstop.com^ +||hfptbb.cn^ +||okwan.cn^ +||data.waptime.cn^ +||app2.10090dfs.com^ +888fuq.com##div[class*="-bnslist-"] +zuoyebang.com##div[class^="adCard_"] +||ott.cibntv.net/*/ad/*.ts?ccode=$xmlhttprequest,domain=v.youku.com +||stat.hkwb.net^ +36dm.club,36dm.com,acgsou.com##.clear.text_center +||8en.net^$third-party +||avqdhss.icu^ +jin10.com##.l-main > div > div[class^="jin-"] > .jin-timeline > div[class^="jin-1"] +||goodgupiao.com/skins/default/js/backTop.js +||abc.colayun.cn^ +baidu.com###left-promotion +@@/adsbox.$domain=long7.qq.com +||1.tecbbs.com^ +42xz.com,aiweibk.com,kuhou.com,pcsoft.com.cn##.gsxz +||dvclhmt.cn^ +@@||googletagmanager.com/gtm.js$domain=asus.com.cn|mamibuy.com.tw|warnermusic.com.tw +bilibili.com##A[href*="cm.bilibili.com"][data-target-url*=".biligame."] + .bili-video-card__info +||sconline.com.tw/top/coolpc_ +||s.union.360.cn^ +bde4.com#%#//scriptlet("adjust-setInterval", "timerAdCountdown", "", "0.02") +eastday.com#@##leftShare +@@||hk01.com^*/ga_trace.js +160.com###w-advertisement +||imedown.info/03.jpg +||jjwxc.net/jjPopup.php +zglww.net##.tool +||fwhhcpj.xyz^ +||4wfe3.icu^ +x6d.com,xiaodao0.com##a[href^="/ad."] +dapengjiaoyu.com##.toUnfold +nobugin.com##.td-a-rec +||mvng.cn^ +3464.com##.CommonBody > .CommonListArea:nth-child(3) + .CommonListArea +kuai8.com##.Ad1 +||bd1.moguvet.com^ +gs.chinanews.com.cn##.div1000_2 + .div980 +||linuxde.net/wp-content/uploads/ad/ +yaociyuan.bid##.content a[target="_blank"] > img +taizhou.com.cn##.duilian +||5brxi.icu^ +||manymgsgn.com^ +||51bczx.com/js/float.js +dailiantong.com##.appDwn +||scibook.cn/tuiguang. +||adconfer.com^$third-party +||uhmcjdc.icu^ +itbaoku.cn##.col-lg-12[style="padding-left: 0px;padding-top: 15px;padding-bottom: 15px;"] +im286.net###diy110 +||dyguo.com/pc/*0.js +||shenguangai.com/upload/img/1683711111. +||baike.com/iframeheightforad. +hexun.com###newsPopWin +||zvvlbf.xyz^ +||bolecdn.com/button/txt.js +||666bb777ww.com^ +3boys2girls.com###hotbar +@@||gtimg.cn/qz-proj/wy-pc-v3/static/img/svg/icon-share- +||07dy.cc^ +||bijmz.cn^ +ifeng.com##div[class^="ppx_wrap-"] +||tad.suning.com^ +||1.zhev.com.cn^ +||pzphmkf.xyz^ +liisex.com###apDiv22 +@@||85tube.com/player/player_ads.html +||dk45h.icu^ +||dfgfdffg.cn^ +||teads.tv^$third-party +||0k7wod.cn^ +@@||ad4.on.cc/web/www/delivery/spc.php +||img301.com^ +twpkinfo.com###div_close_cf +maxthon.cn###mx3-popularization-float +||vpdnjl.xyz^ +||adotone.com^$third-party +||ahlife.com/api.php?mod=adv& +fund.eastmoney.com##div[data-url^="//same.eastmoney.com/"] +||henghost.com^$third-party +18moe.vip##a[href^="http"]:not([href*="18moe.vip"]) > img[src*="tc.18moe.net"] +||yin1.zgpingshu.com^ +6park.com##div[align="center"][style="background:#fbfeea;min-height:90px;"] +||anyshare.icu^*.js +||0a2b3c4d5e.com^ +jinhua.com.cn##.FocusAD +huaren.live#%#//scriptlet('set-constant', 'ConFig.config.ads', 'emptyObj') +||xiaopi.com/api.php?op=get_p& +~alicdn.com##a > img[width="960"][src*=".alicdn.com/"] +||codesocang.com/plus/*baoyue +||kuoizbtl.xyz^ +||tduenkq839.shop^ +baidu.com###bdyx_float_rb +||stat.jc001.cn^ +||szpwf.cn^ +ithome.com##.rm-modal1-body +||no1.168abc.net/upload/ +://dmhy.gate.*/*.*?$image +bilibili.com##.video-page-game-card +||alypw.com/zb_users/plugin/ZF_tanchuang/ +7k7k.com##.bgLink +@@||google.sn/translate_$media,third-party,xmlhttprequest +50sen.com###box-ads +@@||alicdn.com/js/*/xpopup.js +goodcome.com.tw###jad-float +news18a.com##.ina_ad_left +||louimg.com/i/2021/08/17/*.gif +||dv4ku.icu^ +||yylady.cn^ +||brookssa.com^ +||gamme.com.tw/uploads/*?2 +360kuai.com##.bottom_rectangle_gg_outer_box +||abjalrq.cn^ +||guojitv.com/m/ad/ +hf365.com,sina.com.cn,sohu.com##.adA +jingyan.baidu.com##.right-fixed-related-wrap +ifeng.com##.top-tg +||hanjutvn.com/template/alifun/js/Tmall/ +||bdjj.makepolo.net^ +||vmvps.com/aoyohost-com-bann +mypianku.net##div[style*="background:url"] +||31vcd.com^*.js +tigtag.com###Home942x70_A1 +||53bk.com/Baokan/Comja/changepic. +3boys2girls.com###overture_ads_long +pxedt.net##.ggtext +||beareyes.com.cn/2/cat/js/*_centerl +baidu.com##.result-op[tpl="sp_hot_sale"] +mydrivers.com##.baidu_box +||6oja.cc^$domain=9xav.cc +@@||163.com/user/event?id= +||fkxs.net/tops/ +||fcw45.com/js/layer1.js^ +kkj.cn##body > div[style^="width:"][style*="height:"][style*="background-color:"] > a[target="_blank"] > img +||u68t5.icu^ +||img.xixik.net/custom/section/*/banner-$domain=xixik.com +||ys630.com^$third-party +dyttw.com.cn##td[align="center"][valign="middle"][bgcolor="#FFFFFF"] > table[width="1210"] > tbody > tr > td[height="55"] +pupudy.com##.asst-post_header +@@||eden.international/script/ad_banner/ +||ryqgdrh.icu^ +||58cdn.com.cn/ds/zhuangxiu/jzad- +yasem5.com##a[href*="yasem5.com/go"][target="_blank"] +||img.hdsky.me/images/20*.gif +||sd2ua.icu^ +||baidu.com^*/interface/ad? +acgdoge.net,acglala.cc,chinalawedu.com,douyu.com,dzbhdm.net,gmgard.com,hggard.com,iqiyi.com,jinti.com##a[href*=".tmall.com"] +xiadele.com##.yun-advertisement +||bmatgg18.xyz^ +wangfz.com##div[class^="my-ad-"] +||2zzt.com/file/aliyun +dayoo.com###ad-xl +||fanzhuang.net.cn^$third-party +caoporn.com##.container + #wrapper:not(.container) +||ithome.com/images/huawei.jpg +||toqsxdpx.xyz^ +||xvzvqoq.xyz^ +||imgtg.com^*.gif +lenovo.com.cn##div[id^="ad_bd_"] + .ad-mark +new.qq.com#@##TopAd +hinews.cn##div[id^="hi_gg_"] +youku.com#$?#.swiper-container-horizontal > div.swiper-wrapper > div.swiper-slide:has(a[href*="/tg.602.com/"]) { remove: true; } +auto.qq.com###tips +123-bt.cn##.sd +||api.nivodz.com/commercial/incr/ +||avividone.likr.tw$third-party +1kkk.com,dm5.com##.guide +||amazonaws.com/s?z= +yatu.tv###a_d1 +||ckqebz.cn^ +||vipdage.com/wp-content/uploads/ad/ +||hdoshbu.top^ +miercn.com##.ad_list +||ha723.icu^ +||weibo.cn/status/banner? +js0573.com###adv2 +||9kld.com/ad*.html +sm.cn##.ali_row[ad_aid] +logi.im##body > div[style^="background: black; position: fixed; "][style*="opacity: 0.5; z-index: 1999;"] +cnblogs.com##.adPopup +07073.com##.No1 +www.jin10.com##.l-main_body > div[class]:not(.jin-timeline) +||tafuzcxr.xyz^ +||haoxxwang.com^$third-party +||sss777.net/Alove-A/ +||jisuxz.com/180226/downshare +baidu.com###adCard +storm.mg###dablewidget_KoEeAWoB +||jditera.top^ +||czxvgod.xyz^ +||imxsvpxe.xyz^ +||ivnrrkx.cn^ +76xh.com###divFendDuo +||ganji.com/content.php +://*.z*.xyz/$object,third-party +||xdybwjpa.xyz^ +||sxtnpzd.xyz^ +||fkf5.com/public/js/static.js +||douyin.com/api/user/getPcBanner? +weibo.com#?#.card-content > ul > li:-abp-has(>a[action-type="realtimehot_ad"]) +||51tongji.trafficmanager.net^ +tingroom.com###ifram_563 +win007.com##div[style="padding:6px 0; width:950px; height:45px"] +||gtimg.com/newsapp_ls/0/13971120264/0 +||3344ex.com/js/1playerad.js +51zxw.net###video div[class^="adelement"] +324324.cn##div > script ~ a +163.com##.at_item +bde4.icu#@#a[href*="/entry/register/?i_code="] +mnw.cn##.mnw_685 +||iuou.ysw365.com^ +||xp85.com/common/js/allpage.js +zk001.cc##section[class^="ch"] +||jy07.shop^ +||fq01.shop^ +||ftchinese.com/m/marketing/ +||90oo.com/tp/90280.gif +||m.daomutxt.cc/dist/common.js +||n0211.com^ +||banma.com/statics/scripts/common/dialogAdJs.js +||dragon-guide.net/pic001/hezuo/ +m.mobile01.com##.u-gapNextV--lg.u-height280 +||ghiuge55.fun^ +recruit.com.hk###topBar +||alicdn.com/img/ibank/*_1623489831. +||a.oh100.com^ +||cdcs34.fun^ +eastmoney.com###ListPage_r_Ad +||pfp.sina.net/ea/ad/ +52pk.com##span[style*="gaosu"] +||cosmo100.top^ +||shili.downxia.com^ +||remehealth.net^$third-party +||pengjinvc.top^ +shangyexinzhi.com##.advert +ifenpaidy.com##.post > .div +||wcbghap63.shop^ +sogou.com###emailLogin > div.hd-slider +159i.com###body > table[width="100%"] +@@||hopto.org/js/prebid-ads. +||doujs08.shop^ +@@||199it.com^$generichide +downbank.cn##.speed-downlist +||ybedus.xyz^ +||grulphaens.com^ +news.mydrivers.com##div[style="width:1000px;padding-top:16px;padding-bottom:12px;"] +cnpingpang.com,jdbbs.com,sxpojie.top##.a_h +||okiterk.top^ +||fgcxdr.cn^ +||centurys.net/promo_ +||eclassified.my/cp_featured +||suibi8.com/aa1.gif +@@||31vcd.com/player/kuyun.js +||sina.com.cn/litong/ +||tt1069.com/t0602.js +zhuzhai.com##.news-details-ad +cnblogs.com##.focus-gg +||mqwmgs.xyz^ +12377.cn###notice +||df63x.xyz^ +gz0668.com##.down_fixed +||sacvmb.icu^ +ccav1.com###widget_da +||86uk.com/banners/ +@@||daoju.qq.com/time/*/js/ad/ +||tttppp.oss-cn-guangzhou.aliyuncs.com^ +tmioe.com##.zpgimg +4gamers.com.tw##.interstitial-ads +zuoye.baidu.com,zybang.com###QRinside +@@||4gtv.tv/4gtv/Data/GetAD.ashx +||yx1.managershare.com^ +||ss.ting55.com^ +||s3sng.cn^ +hboav.com#%#//scriptlet("set-constant", "onload", "null") +||bdstatic.com/tb/cms/com/game/couplet_ +||3dmgame.com/static/image/common/pc_tg3dm. +||lnnsvj.xyz^ +||haoxianggou.xyz/?from=$popup,third-party +linkedin.com#?#.core-rail > div > div[id^="ember"]:-abp-has(.feed-shared-actor__sub-description span:-abp-contains(/促銷內容|广告/)) +mydown.com##.fcGg +pinshan.com##.b_adv +baidu.com###adTitleRight +kjsv.com###advertisingMap +://s.htkk*.top:$script,third-party +||blog.xuite.net/_public/js/ysmad.js +xgan.cn##.bottom_fixed +||tobyxev.com^ +@@||imfeifan.com/adv/$~third-party +||baj.fanwenzhan.com^ +@@||google.es/translate_$media,third-party,xmlhttprequest +ik123.com###aa960a +||abmedia.io/*/pum/ +||dbmp4.com/js/foot. +||loldyttw.com/skin/lol/js/ds.js +cnbeta.com.tw##div[id^="cbh"] +:8081/abc/interurl.jsp? +||bmqulua.icu^ +||dm.huochepiao.com^ +||zongheng.com/upload/hzds/ +||bkill.com/css/js/*top +my0511.com##.MY0511-broadcast +||muntswe58.shop^ +autohome.com.cn###live_rec +baixing.com##.listing-fixed-bottom-promo +cupfox.app##.t-img-box > a[target="_blank"] > img +ifeng.com,qq.com###advert +ptthito.com##.scupio-f +||vreqnait.com^ +||f1.pig66.com^ +||stheadline.com/images/heading-jm +||google-js-01.xyz^ +||mnrrk.com/yuhe/ote/js/pcgg.js +huarenjie.com###LeftAd2 +ilxdh.com##div[style*="1000px"] +filmaker.cn###frame2gS3Ea +||76fengyun.com/vip.php$popup +||9tata.com/js/pbanner.js +wpjam.com###wpjam_blog_300x250_1 +@@||demo.ama.pub^$generichide +udn.com###ad_curtain +le.com##div[data-type="bottomLayerView"] +naifei.im##div[class^="wp-none"] +danzhaowang.com##.qxzx_scho +||jsdelivr.net/gh/*/1200-60.gif +wiseway.com.cn##.float-kefu +seselah.com###video-ads +catchv.fooish.com###ad +||xdnice.com/themes/xdnice/public/assets/images/quna.png +localking.com.tw###adbannerurl +||hboav.com/guga/images/$xmlhttprequest,redirect=nooptext +||wholehk.com/atttuop.js +||picpar.com^$domain=18board.com|18p2p.com +||udn.com/common2/iframe/ +club.6parkbbs.com##.body_center:has(> div.adv-6park) +||xnimg.cn^*/liveinc/rightlive.js +hk01.com##div[class^="lg\:min-h-[250px] hidden lg:flex lg:items-center"] +||hitchprivilege.com^ +||zhongyoo.com/img/js/tongji.js +cnforex.com###topfocus +pornbest.org,ptt.sex##.links.row +shfq.com##.index_banner_ad +cam4.tw##.hbanner +||bxnxdlb.xyz^ +ye120.com##.fixed_bottom +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="game-page-romance"] +||coolpc.com.tw/img/topweb.html +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.images_game_container +||91xporn.com/fans/ +52pk.com###baidutop2 +3dmgame.com##.Content_L > p +baidu.com##.bottom-guide +||szpzm.cn^ +creaders.net###guanggao2 +121xz.com###gsxzdz +csdn.net###footerRightAds +easylearn.baidu.com##.feedback-icon +189.cn#@#.adlink +||jsdelivr.net/gh/cloud-files/imgs/adamkoo- +to8to.com##.kgjr-wrap +@@.jpg#$domain=huhupan.com +duowan.com###doc > div[style*="width:998px;height:90px;overflow:hidden;border"] +tw.yahoo.com###discount +||nicelinks.site/ad-block- +aimazu.com##.fixediv +||setn.com/js/advertisement? +76xh.com##.index_advertising +taiwanlibrarysearch.herokuapp.com#%#//scriptlet('prevent-fetch', 'www3.doubleclick.net') +||r3sub.com/images/aaa^ +gdmm.com##a[href="http://www.gdmm.com/appdown/"] +hcbbs.com###portal_block_2652 +||chnmoney.com/dfile/ +||huatmp.icu^ +||baijs06.shop^ +||jauql.top^ +||haolingsheng.com/public/daguzhe.jpg +||cdickef.top^ +@@||423down.com^$generichide +||tu0379199038.cc^ +324324.cn##.gg_sidebar +nanrenwo.net##div[id^="content"] +||900.la/imgs/d829d551-1d6e-4018-b3fe-78991bbbe2d6/2016-06-27/yiwmbica.gif +5173.com##.gg_130 +v-wb.youku.com#%#//scriptlet('set-constant', 'Object.prototype.adData', 'emptyObj') +bilibili.com##.container > div.bili-video-card.is-rcmd:not(:has(> *)) +rising.cn##.new-1111 +||fkjsjwbs.xyz^ +||wpsbaq.xyz^ +||olgcpwc.icu^ +||fgwuw.com^ +||tqvnzj.xyz^ +@@||g.doubleclick.net/gampad/adx?$xmlhttprequest,domain=v.ifeng.com +||baidu.com/rec?*=ad& +||srwwce.xyz^ +||mltmjevd.xyz^ +||78dm.net/channel/test? +wenku.baidu.com##.area[href*="/adclick?aid="] +qq.com##.tmallskin +||alicdn.com/tfscom/*.sina. +sina.com.cn##.side-btns-game2021 +chinaz.com##.plate-layout +@@||douban.com/popup/login? +||meijucang.com/js/pop/ +vanpeople.com##.main-adv +||adx.36kr.com^ +@@||simba.taobao.com/?name=tcmad&$domain=www.taobao.com +||kaoyan.com/school/final_class.html +||ggw.gusuwang.com^ +||11img.com/ad/ +163.com##.mod_ad_r +||docfj.cyou^ +||h7h35.space^ +||a.cnki.net/a/ +qq.com##.main_ad_top +speedtest.cn##.shade +||6b70b1086b.com^ +||icvsleec.xyz^ +qq.com###qqadv +duowan.com##.full-banner +||ts166.net^ +||ad-1258444056.cos.accelerate.myqcloud.com^ +||tanju.vip/nyindex. +||afqodjc.top^ +||7junshi.com/con/ad +@@||am730.com.hk^$generichide +chinaz.com,mydrivers.com,oschina.net##a[href^="http://click.aliyun.com/"] +|http://*/js/ad/ +toolfk.com##.layui-layer-content +||jrzj.com/img_index/index_ +||hupu.com^*/stream.js +||ggttmu853.shop^ +meishij.net##.cp_body_right +||sexbarss.net/wap/ +wcjbb.com###frame37boCx +hdchina.org##.sitead +||hsex.men/view/img/*.gif +||ygoibya.icu^ +banzou.name###ads_1 +gfsoso.99lb.net##center > #logo-gf ~ * h7[style="color: red;"] +||obturex.com^ +||ac.86huoche.com^ +||c.nuhcpf.com^ +||kapvu.cn^ +||uqaagi.xyz^ +qq.com##.action_ad +159i.com##.a1.style25 +cheaa.com###ADText +tmtpost.com##.open-app +blphoto.net##.float-ck +@@||ibon.com.tw/imageserver/images/ad_file/ +||kksjsa.top^ +games.qq.com##.dc-kf_list +benxiang.com##.w-hot-link-txt +||trxs123.com/skin/default/js/jque.js +chinacar.com.cn##.advertising +||kaaqgf.icu^ +myfreax.com#?#main > div.w-full:has(> ins.adsbygoogle) +firefoxchina.cn###tab-mod-tehui +@@||520click.com/ad.php$stealth +||taijuba.com/js/tj +@@/advertising/*$domain=315.sh.cn +||dsda21.fun^ +||wiixqm.xyz^ +iqiyi.com##.headerLink02 +lzcfz2.com##body > div.wp.cl +programmer-club.com.tw##A[href*="/ADRedirect."] +||lkenflknkd.com^ +||cngoldres.com/web/js/*_advs +||yht7.com/web/assets/js/right.js +dianping.com##.J_mkt-group-2 +news.cnyes.com##.content-main > div:has(> div[id^="div-gpt-"]) +||6528fdyngk.xyz^ +gameapps.hk##a[class^="top-ad-"] +||irmbyu.xyz^ +3987.com,588230.com,pilipali.cc###hongbao +||ddomjhr.icu^ +||a.wanzhuang.com^ +longzhu.com##.recommend-pop-up +hao123.com##.navrecommend-top +xdf.cn##div[style="position:fixed;top:120px;left:4px;width:210px;height:298px;isplay:block;background-position:initial initial;background-repeat:no-repeat no-repeat;"] +ting89.com##.ad8 +||bxbyll.xyz^ +||hyislou.top^ +t66y.com##.tpc_content.do_not_catch > span.f24 +||uu3192uu.com^ +lgmi.com###openwindows0 +neets.cc#?#div[class]:-abp-has(> div > .home_p) +@@||msn.wrating.com/a1.js +||w0079.com^ +||qtq632.com^ +hoteastday.com##.sessionSub +jandan.net#?##sidebar > ul:has(> h3:contains(广告)) +||iask.cn^*commercial. +eol.cn##.ad_490 +goodcome.com.tw,sporttery.cn###mask +||zhuji.net/2007_ad/ +||cnblogs.com^*/sideColumnAd? +freejavbt.com#%#//scriptlet('prevent-window-open') +||bdtdat652.shop^ +hc360.com###endAccessories1 +?adzone= +galacg.me##.sidebar-top +||zhihu.com/api/v4/brand/question/*/card +||awyuge.xyz^ +ld0766.com##.rsf_pull_screen_adv +||bdzdd2-sdd53-vxc.com^ +cnblogs.com##.my_money +@@||aixifan.com/acsdk/log.min.js? +||cdeledu.com/ADVC/$domain=~chinaacc.com|~ruidaedu.com +creaders.net##a[title^="www.136888.com/"] +meijumi.net##.couplet_app +wnacg.com#@#.a_ssk_cn +||sysin.org/img/promotion- +cocomanga.com,ohmanhua.com,onemanhua.com#%#//scriptlet("set-constant", "NativeAd", "noopFunc") +iwan.baidu.com###j-media +||uc129.com/images/top_hjsj.jpg +||36kr.com/pp/api/ap/plan? +||mtime.cn/library/*/ECommerce/GoodsAndFeatureCtrl.js +||9ist.com/others/ad/ +||yhdm335.com/piao/ +||58.com/ds/tgbrand/*.js +||baigh8eosmgie01.site^ +@@||bdstatic.com/static/exp-pc/article/widget/cms-banner-ads/cms-banner-ads_*.css +||click.tianyaui.com^ +on.cc#@##CONTENTAD +||3dmgame.com/templets/index/js/huandeng.js +||ioswhi.com^ +m.xiaomiyoupin.com#@#[style*="mi-img.com"] +||ijeujkdhnvb.top^ +||gunmi.cn^$third-party +so.com##.windisplayCell +ifeng.com###upApp2 +||3dmgame.com/templets/index/gimg/ +||1pwx.com/js/ck.js +||mwrf.net/images/mrf/ +||kanguba.com/file/js/main.asp +||aisixiang.com/images/*-20 +news.gamebase.com.tw##.rightMiddleAD +vipthz.com###fwin_content_imc_attachad [style="WIDTH: 100%; padding-left:10px;"] > div > p > a[href][target="_blank"] +||aeucyo.xyz^ +||mepupr486.top^ +anquan.org##.aside_profile_activity > div:first-child +||xlnvvbk.xyz^ +||hdsrc-a.akamaihd.net^ +||hoopchina.com.cn/static/www/*340-230. +163.com#@#.s-btns +||koyuod.xyz^ +||ll.gxsky.com^ +||clisatf.top^ +||hoopchina.com.cn/web/channel/nba/index/nbaposter/index.js +wandhi.com##.unit-100 +||ggs.myzaker.com^ +||0pdsa.icu^ +||benpsbp.com^ +xgan.cn##body > center > a[target="_blank"][rel="nofollow"] +||pv.cheshi.com^ +||lgpjw.cn^ +||dy6d.com/js/hf +zybang.com##.related-question-below-text +123.com.cn##.bottom-ylink +blog.163.com###blog-163-com-toptips +tangdoucdn.com#@#.video-ad +||shbear.com^*/ad/ +||china.com/images/milapp +dcfever.com##.container > .row > .col-md-12[style^="margin-top:"][style*="text-align: center; width:"][style*="min-height:"] +||langya.cn/2014html/ad/ +2345.com#?#.pic:-abp-has(a[href^="http://g.wan."]) +||linovelib.com/scripts/zation.js +sd.ifeng.com##div[data-title*="广告位"] +||mqsjzm.cn^ +lysq.com###diyad +||xxxuhx.xyz^ +@@||pg-wuming.com^$generichide +@@||mhxk.com^*/main/entry.common.$script +||sz88.oss-cn-shenzhen.aliyuncs.com^ +||d1net.com/index.php?m=poster& +||qayqa.com:6868/jquery/ +||999fb.cn^ +hao.lenovo.com.cn,hi.lenovo.com.cn##.bxslider-wrap +lyd.com.cn##.ad:not(:nth-child(15)) +yahoo.com##.ad-tl2b +||268de.com/js/ +||hdapp1008-a.akamaihd.net^ +qq.com##.yscoin-box +||xfqrsjq.cn^ +||kwumme.xyz^ +||szjjzs.com/js/d*.js +||wnacg.*/1605524662751.gif +||av01.tv/images/partners/ +||sglahyea.xyz^ +xijucn.com###topc +#%#var AG_defineProperty=function(){var p,q=Object.defineProperty;if("function"==typeof WeakMap)p=WeakMap;else{var r=0,t=function(){this.a=(r+=Math.random()).toString()};t.prototype.set=function(a,b){var d=a[this.a];d&&d[0]===a?d[1]=b:q(a,this.a,{value:[a,b],writable:!0});return this};t.prototype.get=function(a){var b;return(b=a[this.a])&&b[0]===a?b[1]:void 0};t.prototype.has=function(a){var b=a[this.a];return b?b[0]===a:!1};p=t}function u(a){this.b=a;this.h=Object.create(null)}function v(a,b,d,e){this.a=a;this.i=b;this.c=d;this.f=e}function w(){this.g=/^([^\\\.]|\\.)*?\./;this.j=/\\(.)/g;this.a=new p}function x(a,b){var d=b.f;if(d&&!("beforeGet"in d||"beforeSet"in d))return z(d);var e={get:function(){var c=b.f;c&&c.beforeGet&&c.beforeGet.call(this,b.a.b);a:if(c=b.g)c=A(c)?c.value:c.get?c.get.call(this):void 0;else{c=b.a.b;if(b.i in c&&(c=B(c),null!==c)){var d=C.call(c,b.i);c=d?d.call(this):c[b.i];break a}c=void 0}(this===b.a.b||D.call(b.a.b,this))&&E(a,c,b.c);return c},set:function(c){if(this===b.a.b||D.call(b.a.b,this)){b.f&&b.f.beforeSet&&(c=b.f.beforeSet.call(this,c,this));var d=b.g;d&&A(d)&&d.value===c?c=!0:(d=F(b,c,this),G(c)&&(c=H(a,c),I(a,c,b.c)),c=d)}else c=F(b,c,this);return c}};d&&J(d,e,K);return e}function I(a,b,d){for(var e in d.h){var c=d.h[e];if(b.h[e]){var h=a,g=b.h[e],k=c;!k.f||g.f||"undefined"===typeof g.a.b||g.g||(g.g=z(k.f));g.c&&k.c&&g.c!==k.c&&I(h,g.c,k.c)}else{g=h=void 0;k=a;var f=b,l=c.i,m="undefined"!==typeof f.b,y=!1;m&&(g=L(f.b,l))&&!g.configurable&&(y=!0,h=f.b[l]);var n=y?H(k,h):new u(c.c.b);I(k,n,c.c);n=new v(f,l,n,c.f);f.h[l]=n;m&&(n.g=g,m=x(k,n),y?E(k,h,c.c):(q(f.b,l,m),g&&A(g)&&(M(m,g.value,f.b),E(k,g.value,c.c))))}}}function E(a,b,d){G(b)&&(b=H(a,b),I(a,b,d))}function F(a,b,d){var e=a.g;if(!e){e=B(a.a.b);if(null!==e&&(e=N.call(e,a.i)))return e.call(d,b);if(!O(a.a.b))return!1;a.g={value:b,configurable:!0,writable:!0,enumerable:!0};return!0}return M(e,b,d)}function H(a,b){var d=a.a.get(b);d||(d=new u(b),a.a.set(b,d));return d}function A(a){return"undefined"!==typeof a.writable}function J(a,b,d){for(var e=0,c=d.length;e .xoxo > li[id^="text-"] +||n019q.com^ +2cycomic.com,yemancomic.com##body > div > center +pchome.net###pchome_970_90_a +@@||5w8.fun/myads/img/*.gif +||wangjing.cn/iframe/zhounian.php? +olevod.com##div[class^="ad"][style="margin-top: 0.05rem;"] +aoshu.com,zhongkao.com,zuowen.com##.bottomImg +=BAIDU_SSP_define& +||xldxphtg.xyz^ +83novel.com##.page-content > div[style]:has(> script[src="https://a.magsrv.com/ad-provider.js"]) +||dict.youdao.com/vip/privilege/show/V*?bannerType=fanyiTop$domain=fanyi.youdao.com +ithome.com#?#li:-abp-has(>.block a[href*="/lapin."]) +||gcomwx.icu^ +||diamiu.com/wp-content/uploads/1200-200. +||sgidskib.top^ +||m.pianba.tv/ad/ +163.com##.m-adv +m.youku.com##.download +sm.cn###download-uc +||hao.rising.cn/images/nsdgg.jpg +||bzdiao.com/wp-content/uploads/bhOCwJfYleFC/ +tptoon.com##span[style^="position:fixed; bottom:30vh;"] +chinayk.com##.yb_banner +||0er7pc8.xyz^ +||jy05.shop^ +||rghbvp.xyz^ +fqlook.cn###rtj1009_iho3 +yp868.com##iframe[src="/js/loading.html"] +||m.danmeixsw.com/js/mwap.js +nanfengyl.com##.index-top-ad1 +huya.com###huya-ab-fixed +18comic.org,18comic.vip##div[data-height="250"][data-width="300"] +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv##.img-list > .img-item:has(> a[href*=".ad_click"]) +moegirl.org.cn#?#.capsule-card:-abp-has(.n-tag) +jiegeng.com##.r_div +||mybgrea97.shop^ +cncrk.com###gsxza +eelly.com##.top-picture +||mima.club/tuijian/speedtest/ +||at*.doubanio.com^ +||azenco.xyz^ +hao123.com##.treasure-item +baidu.com##.sfc-image-content-waterfall-item > div:not([class]) > .sfc-image-content-cell +||oa.hinews.cn/work/img/ +||bdjs.uimg.cn^ +||yxbao.com/js/beitou. +pchome.com.tw##.adcon +||qywbslk.top^ +fpdisplay.com##table[width="960"][height="110"] +@@||10086.cn^*/ad$~third-party +||cctv5.name/js/*foot.js +meltoday.com,sydneytoday.com##.mtgad +||btpian.com/static/*960.js +||hphvd.cn^ +||126.net^$script,redirect=noopjs,domain=rjno1.com +||a.youdao.com^ +@@||baidu.com/static/touch/js/lib/fingerprint.js$~third-party +jokeji.cn##.ad360_280 +||mmtdfxh.xyz^ +||npnzfri.xyz^ +gaokao.com###ad_top_gkw +||3.ssqzj.com^ +fydisk.com###vbox +jmw.com.cn##.leftCouplet +||panel-cn.com^ +||dwstatic.com^*/newsPopup/ +ddxsku.com##.adhtml +||51wangdai.com/Images/bad_*0 +||gjmedashb0.fun^ +||etf88.com/jjb/*_ad$script +||niticl.icu^ +huya.com##.room-gg-chat +51cg1.com,h3ugz0.arwiotgiy.com,h3ugz1.biyuhcltj.com,h3ugz2.lrjhvntu.net,h3ugz3.ogvoxarpd.com,h3ugz4.uovxifzj.com,h3uaz0.ogvoxarpd.com##article:has(> a > div.post-card > div[style^="background-image: url(\"data:image/gif;base64"]) +||pp1hl.xyz^ +||alicdn.com/img/ibank/*_1230538058. +@@||jd.com^*&refer=http$script +||dm1.ddwk8.cn^ +jmbbs.com###xjj_jmbbs2015_01 +||pkvs.com/public/300/ +baidu.com#?#.container_frs:-abp-has(>.voice_room_card_frs[data-url*="yylive"]) +com.tw#$#img[width="960"][height="90"] { height: 0 !important; } +||criknudsr.com^ +||aynufyns.xyz^ +21ic.com,pyccoo.cn,qq.com##.topbanner +avcao.cc##.ps-body > div[class^="adv-top"] +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,domain=linovelib.com,important +||egywbps748.shop^ +iyaxin.com##.gr-ggtag +360kuai.com##.article__content__yyconfig +zn508.cc#?##portal_block_69_content > li:-abp-has(a[href^="http"]) +||tybmbbgu.xyz^ +||qq.com/minivideo_v1/vd/res/enttencentvideo.xml +aliyun.com###yq-a-r-bottom +w3school.com.cn###sp_tiy +mamibuy.com.tw,dyzd1.com,avcao.cc##.layui-layer-shade +||cwwgqu.xyz^ +||4bfx0u.com^ +ditu.so.com##div[class^="index-adflag-"] + a +@@||wx.qq.com/mmbizwap/*/framead. +||kossog.xyz^ +||sina.com/assets/js/dart/ +@@||ntou.edu.tw/bin/showads. +||un1.lawyernet.cn^ +juxia.com###fmt +xw.qq.com##.globalThemeTip +ysxs8.vip##.ysxs8_w960_1 +chdbits.co##a[href*=".taobao"] +csgoob.com##.lg\:sticky.lg\:top-22 > .card-shadow:not(.py-4) +||leeleo.top^$third-party +bingdou.com.cn,hoteastday.com##.float_ad +zjst.net##body > style ~ *,.vod-gd +he-games.com###he_bottom_ad +||ihcxue.xyz^ +gfan.com##.dl_AD +zww.me##.sad +||dai18.mumu01.com^ +||a5xiazai.com/z/ +||doubanio.com^*/js/ad. +www.163.com##.float-bar +||2345.com/images/m/global/new-hongbao/ +||dsdsg44.fun^ +hcbbs.com,isiyuan.net##.ke-zeroborder +||meiju22.com/new/Public/gg.js +ifenpaidy.com##.modal-body +||zdscdkc.icu^ +||bdjs.guangyuanol.cn^ +faxingw.cn##.detailadv +meizhou.com##.top + .w1000 +appledaily.com.tw##.adblock_splash +||orzx.im/js/*pop +@@||simba.taobao.com/?name=mcad$script +||top888.com^$third-party +||114la.com/static/js/egg.js +||sinaimg.cn^$domain=99re.com +|http://*/*_ad.js$domain=~pcpop.com|~xitek.com +||perlmaven.com/img/*0x2 +51cto.com###edu_adver +image.baidu.com,nongjitong.com##.recommend +||ferriesendless.com^ +vidhub1.cc,vidhub.me,vidhub.tv##.promotelink +||meijuxz.com/template/ZQ/ +||smzy.com/v1/img/ +@@||tvb.com^*/videojs.ads. +||ifunmac.com/wp-content/uploads/*/alipay- +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width^="72"] +@@/unadblock/adjs_$domain=hepan.com +2234.cn##.pc-down_url_left > .pull-left +baidu.com##.bd-aside-ad +ifeng.com##div[id^="padhide_"] +||jiegeng.com/static/json/jg_topFixed. +eprice.com.tw##.ad-300x370 +||ouresdk.top^ +||m1.darfd.com^ +duba.com##.hot_push > .hot_movie +bcquan.me##.bcqad +||izqeyo.xyz^ +||pptv.com/game/aplus/client/gamedetail.html +9ku.com##.youFix +downza.cn##.down-item-2 +||qxwoiv.com^ +||ghjie.com/JS/youcegg.js +so.com##div[id^="mohe-biu_360"] > .g-card +sina.com.tw###colorbox +admin5.com##.notice +||uhuf56.fun^ +douyu.com##.PaladinPop +||ad.szhsx.net^ +||mg21.com/wp-content/uploads/ad/ +||fmssoj.icu^ +world68.com##.head_m +mvcat.com###ad-jd +cww.net.cn##.adlinkL +dmzj.com###show_tip_bg +@@||steamcn.com/source/plugin/steamcn_gift/template/images/*steam.png +zybang.com##.navigationBar-below-banner +||cmm.xmfish.com^ +||freehao123.com/wp-content/uploads/2017/05/mmkdm.png +||keryt111.fun^ +rjno1.com#%#AG_onLoad(function(){var a=document.body,b=document.createElement("div");a&&(a.appendChild(b),b.setAttribute("id","aswift_1"))}); +huanqiu.com##.ad_all +fububu.com###wendibu +element-plus.gitee.io##.sidebar > .page-content +tigtag.com##.custom-box02 +||0598yu.com/api.php?mod=ad& +zol.com.cn###relatedProduct +||sodu2020.com/js/ppc.js +||pmgfwya.icu^ +||sogoucdn.com/translate/ssr/static/img/banner- +hvhbbs.com##.block[data-widget-definition="SwiperWidget"] +baidu.com##.school-promotion-pop-wrap +icbc.com.cn##.action_Y_more +megatime.com.tw###ad_type_9 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pop_frame +||feedou.com/nzq/style/pc/js/zt_bottom.js +||vfphbh.xyz^ +||pixabay.com/static/img/publisher/*_ad_ +@@||hboav.com/guga/ads.js +||n0255.com^ +||520cc.tw/AD/ +wenku.baidu.com##.banner-more-title +||lkoqtvvajktpjsk.xyz^ +||xkyn.com/imgs/js/xx.js +||udswai.xyz^ +||d56p.com/love/ +96weixin.com###lifelong +biz.ifeng.com##.header +10fang.com##.pro-item +||17ce.com^*_$image +||viladram.xyz^ +://m.*.pw/*/*.js?$third-party +||langxi.org/langxi/*900$image,object +||jy.zhongxues.com^ +||ejunshi.com^ +cardu.com.tw##.gold-big-ad +ithome.com###wapddfda21 +mydrivers.com#?#.newslist > li:has(> span:contains(广 告)) +||geewdashb3.fun^ +||jc001.cn/indexnew/js/yuyue.js +baofeng.com##.ad-pop-wrap +||super.cat898.com^ +||239300.net/template/*_mh_gg +||ggsfq.xyz^$third-party +||heiye.cc/js/xuanfu.js +www.wenxuecity.com###leftside +olevod.com##.A4R +||gg.sonhoo.com^ +||ajockk.xyz^ +||canton8.com/adphoto/ +appinn.com##.ads-m +m.image.so.com##.waterfall > li[data-imgid] > a[href^="https://e.so.com/search/mclick?"] +||people.com.cn/rmrb/tplimg/new.js +||hjammiz.icu^ +||xv98.com/js/daohang +||hanjutv2020.com/statics/skin/*/js/plus.js +nownews.com###idle-layer +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":1480174042,"] +douyu.com##.bglink +||piclick.cn^$third-party +||uyulwc.xyz^ +docs.cfw.lbyczf.com###推广 +waerfa.com#?#.content-area > div#content > div > div.item:has(> a:not([href*="waerfa.com/"]) > img) +||guqu.net/Cooperate/ +hkcards.com#@##ad-slot +||jokerlu.com/upload/addon/ +jijidown.com##div[style="width: 500px;"]:last-child +||csdcfvgf4.fun^ +||eefcdn.com/promotion/module/module. +||adm.cnzz.net^$third-party +||meqanhm.icu^ +@@||hdslb.com/bfs/archive/*@$domain=bilibili.com,image +||soffersk.com^ +||gcbtgh26.xyz^ +gamer.com.tw,pili.com.tw#@#.pub_728x90 +||lgmi.com/ggimg/ +chaomi.cc##.cm-ads +||lady177.com^$popup +||discuss.com.hk^*_prod.html +||m.gongzhilian.com.cn^$third-party +||xdrvkdni.xyz^ +||ih336.com^*a.js +||gfchck.xyz^ +||sbpb1.chuiyue.com^ +||bavotr.xyz^ +qiyeku.com##div[style*="height:90px;"] +javdove.com##.ad-body +||qqryt111.fun^ +lsj.ac##div[class="col-12"] > div[class="poster"] +boniu123.cc##.right_side +||somanhua.com/smh/ +qq.com##.xxskj +||131458.com/union/ +||rryy99.com/statics/js/stat.js +18av.pro##.video-server > .inplayer +lnk2.cc#%#//scriptlet("set-constant", "adblock", "false") +fcw45.com##div[id^="layui-layer"] +jdbbs.com##.adyihifi +||nfmovies.com/pic/tu/a191124002. +2345.com###corner_div +||baomitu.duapp.com/js/layer.js +||hz.youku.com/red/ +||18comic.*/exads-adblock-*/backend_loader.php +@@||cnzz.com/q_stat.php$domain=qd.alibaba.com +||iaiqk.top^ +||yvnxetmq.xyz^ +sstv.pw##.container > a > img[style="width: 100%;"] +||weidianyuedu.com^$third-party +||wshufa.com^$third-party +linovelib.com#%#//scriptlet('set-constant', 'adblock', '0') +jdbbs.com##div[id^="archy_ad"] +||115mm.com/js/ +v.qq.com##.module-image[style*="width:1240px;"] +codepub.com##.small-banner +||cy5kr.fun^ +||cidianwang.com/js/zdtop.js +||chsdwjes.xyz^ +||youth.cn/images/public_ +@@||95599.cn^*ad +microsoftnews.msn.cn##div[class^="nativeAd-DS-card"] +||bqjqripb.xyz^ +||baofeng.com/images/yiqi +da-fan-shu.cn#@#.ad-s +||ykkhihg.cn^ +@@||g.alicdn.com^*/banner_ad_ +1ting.com###tingx_5 +||m.daomutxt.cc/js/ +||77ds.*/js/77ad.js +||opkmio.xyz^ +cupfox.app##.banner > div.banner-content.right +@@||ifengimg.com/fe/shank/content/mobile_view.*_modern.js +dianyingim.com##iframe[src="/buffer.html"] +||baidu.com/wkbus/fcwm/ +||adf.ly/js/$third-party,domain=~j.gs|~q.gs +||eepw.com.cn/event/action/rightbd/microchip*.js +cnbeta.com.tw##.tks +github.com##a[href^="https://openwrite.cn/"] +||xygwh.cc/js/x +@@||e.cn.miaozhen.com/r/k=*=http +||zg.mmyuer.com^ +chinamedevice.cn##.news_ylqx +muchong.com##div[id^="paper"] +webkaka.com##.pTopTextAd +||szddm.cn^ +||jjwxc.net/adsmanage. +||btnwxhjv.xyz^ +hotpress.info###sidebar > div.widget_text:nth-last-child(-n+3) +||qiyipic.com/common/20141021/sanjiukehuzhuanqu.jpg +||ck180.net/mitao +||ytezym.xyz^ +steamcn.com##div[class*="liz_"] +1x6666.com,528500.com,52jscn.com,5378cc.com,58cam.com,5imx.com,7sqq.com,99nets.com,99nets.me,bbs.52life.cc,bestcclm.com,cm868.com,cnyw.net,cqfishing.net,discuzlab.com,gebi1.com,hh010.com,i5qs.com,im286.net,kugz.com,ld0766.com,luanren.com,mahoupao.com,qinzhou8.com,sh419.net,suizhoushi.com,susongbbs.com,txahz.com,wishct.com,xsool.com,xydai.cn,ybvv.com###diy1 +0597kk.com##img[width^="37"][height="30"] +||e0575.cn/js/corea/jquery.popup.js +so.com##.e-buss +dditblog.com###income_div +||xmcimg.com/js/m.js +copymanga.org##.col-2 > .dailyRecommendation + div[style^="width:"][style*="position: relative;"] +so.com##.js-guess-list +163disk.com##.mads +||tt1069.com/bbs/page20_top.php +||szmnf.cn^ +699pic.com##.springtime-pop +114la.com,ylmf.com###HDtopBar +://rou*/_next/static/chunks/pages/home- +soyoung.com##.pop_center_box +||qhbhlii.xyz^ +8684.cn,8684.com##div[id*="adid"] +epinv.com##.epinv_b +||yzfrapd.xyz^ +iqiyi.com##li[data-flag="shop"] +||codeceo.com/images/2020/04/kaikebabanner.png +||shulihua.net/js/gzlishigoogle.js +||fjsen.com:81/mysql/count/ +||rxfygd.cn^ +ckdzb.com##div[style="float:right;margin:10px 10px;clear:right;height:310px;width:336px;"] +dilidili.wang#$#body > article[class][style*="position: fixed;top: 0;z-index: 9999;display:block !important;"] { position: absolute!important; left: -3000px!important; } +||gcwwsv.icu^ +||zhaofuli.*/data/content +||xinshijue6080.com/126.gif +||p2peye.com/ajax.php?mod=ad& +||jsckjqr.com^$third-party +||7k7k.com/api/position/ +@@||olgame.tw^$generichide +||oqvucp.icu^ +cntronics.com##.ads970-90 +2345.com##.comp-normal-navigate +@@||aliyundrive.com^*/share_link/$xmlhttprequest +comicat.org,dapenti.com,douyu.com,iqiyi.com,jinti.com,kisssub.org,libvio.me,mvcat.com,mzh.ren,rufengso.net,v.qq.com,zhanzhangb.com##a[href*=".jd.com"] +firefoxchina.cn##.theme-side-bar-couplet +||sinajs.cn/t4/apps/publicity/static/wbad.js +5278.cc###leftside_banner_top +wealth.com.tw#?#div[class]:-abp-has(>div[class]>div[class*="-ad-manager-"]) +py.cn##.right-pops +||693836.com^$popup +||xdolhlwq.xyz^ +||xmkmryu.icu^ +skykiwi.com##div[style^="width:1200px;height:"] +7808.cn###force-popup +f2dsex1.com##.detail_left > div > a[target="_blank"] +@@||cheshi-img.com/ad/csad_2019.js +||159i.com/video/usr/uploads/bd/$image +51wangdai.com##.ad_123_AD +||hetlwsu.top^ +mtrend.cn##.new_right > div[style="float:left; width:100%;"]:first-child +editcode.net,itboth.com,itkeyword.com,ruyo.net,zhanzhangb.com##a[href*="cloud.tencent.com"] +||tdpujn.xyz^ +||d4.sina.com.cn^$object,script +||ztjal.info/wp-content/plugins/kill-adblock/ +58b.tv,8fun.tv#?#.datal.clear:has(> table div[id^="revive_zoneid_"]) +||fabuye.vip/zhuanfa/ +getrelax.cc#$?##main_content > .grid-boxes-in:has(> iframe[src^="https://syndication.exosrv.com/"]) { remove: true; } +||88lm11.com^ +||hqcx.net/images/baidu.jpg +||xybnfn.xyz^ +||87uq.com^$third-party +qidian.com##.app_download_ad02 +jstv.com##.jadv +||dingdangsheji.com^*/%E5%9B%BE%E6%80%AA%E5%85%BD +smzy.com##.u-gs-btn2 +||bogtrmjz.xyz^ +||ganimgs.com/images/*.gif +chinamedevice.cn##.news_ylqx3 +||500xxxx.com/go.js +||ymlykj.com/nuxt/static/liveBanner.jpg +||qiyipic.com/common/*_aLink +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > style[id^="s-"] + style + div[id]:nth-child(3) +||85tube.com/player/html.php?aid=*_html&video_id=*&*&referer$redirect=nooptext +jianshu.com#%#//scriptlet("set-constant", "NEWS_FEED", "noopFunc") +||zjtu.tv/add. +||z0a1b2c3d4.com^ +hifidiy.net###part_right_gg7 +||1133.cc^$third-party +||axa123.com^ +||6avz.com^$script,third-party +cnfol.com##.EtGA +ifeng.com##.cont_bottom_Yy +||xiongyin.com^$third-party +||sdjbvjsbvjz.com^ +ntpcb.com##img[width="1195"] +baidu.com##.wgt-bottom-union +_float_fuo.js +||nclljn.xyz^ +||bjsxt.com/statics/js/bjsxt/js.js +ifeng.com###hslide_sPic_baidu +owyb1688.com##.gray-show +ssr.tools,zhujiwiki.com##.asb-post-footer +hh010.com##.a_hong_t +||chinesetoday.cn/2017/ad/*.gif +||szmdp.cn^ +||dajiahao8.top^ +||jddaw.com^ +||irtefs.xyz^ +||lxpbdp.xyz^ +||apic.in/mmd.gif +||dytt8.net/jsd +||76xh.com/skin/zxf/js/ad +||cnool.net/AdShowCache? +||b1.b2b168.net^ +@@||cq.qq.com/js/cody/*scroll_ad.js +||egywbpu286.shop^ +||mtwmuy.xyz^ +click108.com.tw##.AD_730280 +mnews.tw##.ad-container-pc +@@||7m.cn/v2/js/analyse.js +mtrend.cn##a[href*="taomoubao.com"] +ptbus.com##.weixin_ad +||smuc.cnnfootballclub.com^ +anjian.com##.ImgTop +mydown.com##.aqDownload +@@||google-analytics.com/plugins/ua/ec.js$domain=lenovo.com.cn +readmoo.com#@#.navbar-social +zhongyiju360.com###bottom-float +18comic.org,18comic.vip,18-comic.work#%#//scriptlet('abort-current-inline-script', 'document.dispatchEvent', '/getexoloader/') +hupu.com##.ad_980 +||bcquan.me/front/*_game +wenku.baidu.com##.wubai-wrap +||kflybplr.xyz^ +||ctcxflak.xyz^ +hao123.com##.leftbanner +speedtest.cn##div[class^="speed-activity"][class$="wrap-index"] +||52pk.com/style/files/images/*beitou. +||bitsinflow.com^ +hupu.com##.ad361-240-240 +downyi.com###BzDown +||bannedbook.org/bnews/bnews-tab.html$third-party +iwan.baidu.com###side-xbox +||pw321.com^*.gif +ettoday.net###adsense-matched-content +||edmontonchina.*/pic/ +techug.com,webhek.com##.aatb +gitee.com##.float-left-box +||insfengdata.com^ +||nfmovies.com/pic/tu/*_863x59. +||d37d9zbli5ytch.cloudfront.net^ +||vgjaxnuw.xyz^ +||west.cn/vcp/getJScode/ +xdf.cn##.footadv +duba.com#?#.newslist > .news_ctm_wrap:has(> .ctm_ad) +||d10wv.fun^ +||adm.beimg.com^ +||qingkong.net/skin/htcs/images/980.jpg +hc360.com###endAdBanner +||u833ij.com^ +toolfk.com##.geekgay +||cgidskif.top^ +||yrarhzuq.xyz^ +manwa.me##.ad-area > a +||59.36.101.209:888/link/*_280x192. +||pop800.com^$third-party +nodejs.cn###biz_nav +||777bbb222bbb.com^ +||baidu.com/tb/cms/forum_skin/file_ +||51img1.com/v6/my/js/bdm.js +pincong.rocks##.aw-mod > a[target="_blank"] +ddxs.vip##.content > p > font[color="red"] +||pzfqzv.xyz^ +bbs-tw.com###AdImg +||eastmoney.com/public/ad.tools. +ghxi.com###respond + div +||by.dyq.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.tools > .shouji +111os.com###topBox +||d.ziyuanm.com^ +||vdggsd006.com^ +||xuyanlong1.cn^ +||damai.cn/phpstat/ +cnfol.com##.wid600Ad +||hkbumv.icu^ +||eastmoney.com/Extends/GetReferralLinkJavaScriptObj +||sinaimg.cn^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|ac88.info|aisex.com|cnnice.biz|go543.com +koyso.com,wavse.com,kims3.xyz#@#.google-ad +||drvsky.com/js/jolimark.gif +||qqkkpos.com^ +juqingba.cn##.jqright1 +speedtest.cn##.summer_logo +||ilph0.icu^ +firefoxchina.cn##.banner-words +iciba.com##div[class^="Kyad_"] +||m.manhua123.net/js/com1.js +pconline.com.cn##.box-jcz +weihemenye.com,hao6v.com##.topad +||3bmmmesj.life/skin/js/dny. +||ozykeor.icu^ +||1616.net/jd/data/index/indexad.json +pconline.com.cn##a[href^="http://ivy.pconline."] +lz13.cn##.left_box4 +||taijuwang.com/template/alifun/js/unFavui. +ikandy1.com##a[href*="/ky-a.html"] +tuliu.com###vFloat +||piaodown.com/xtm/ +@@||qq.com/bossweb/jifen/ +||mm387.com/images/*.gif +||mmnc87.shop^ +||vidcrunch.com/integrations/*_Responsive_*_DFP_$domain=discuss.com.hk +@@||gomein.net.cn^*, +||pagechoice.net^$third-party +||loli.net/2020/06/17/gpRx7AzGwI4kQmV.gif +muchong.com###xd_popbox +||58.218.200.135:8081/js/ +@@||mm.maxthon.cn/ad/ +||r3sub.com/posters/00698128.jpg +||suning.com/cpc/getCpcSearchDatasRev? +||gkswas.xyz^ +so.com##.js-show-data +douban.com##.bottom_ad_download +||china.com.cn/2016ads/ +||bxqgk.icu^ +||nvvqrv.xyz^ +66se2.com##.f_f +://*:*/oklist/vars.js +||52movieba.com/img/ad +sina.com.cn##.real-time-window__ad +@@.com/logo/ad.$domain=colamanga.com +juxia.com##.index_bttg +||alime-pic.oss-cn-hangzhou.aliyuncs.com^ +xz.ccoo.cn##.index_banner +||ghbdsbfd.com^ +pttweb.cc##.e7-min-ad-height +apk.tw###favatarRight +||hoopchina.com.cn/static/www/*340x230. +anquan.org##.pub_side_ad +||mdmuky.xyz^ +||bdjfea.cn^ +||xhlkvx.xyz^ +||mzyfz.*/modules/46/ +3dmgame.com##.tonglona_2 +||shanyu178.com/agg$script +||sinaimg.cn^*/yyy_pop +||itc.cn/cache/lib/v2/odvmonitor/ +ufanw.com###banne +muchong.com##.bg > .wrapper:nth-child(14) > .forum_Post_index +@@||appledaily.com.tw^*_ad_logo. +peizimenhu.com##a[href^="http"]:not([href*=".peizimenhu."]) > img[src^="data/attachment/portal/"] +||gfbdb1.com^ +||bing001.shop^ +hcbbs.com###framemI4t76 +||tf.360.cn^ +ck101.com###wp > .subListTop +||tmatch.simba.taobao.com^*&name=tbuad&pid= +||qeugcdcjr000.fun^ +||3798.com^$third-party +@@||ganji.com/findjob/send_resume.*&ad_type= +||onetvb.com/assets/javascripts/ +fx168.com###oilTopAd +edu.qq.com##.L +52tian.net,starbaby.cn##.bdad +||alicdn.com/img/ibank/*_!!2208043467212- +uc123.com###J_logoLeft +||kb-render.alicdn.com/html/*.html +||126.com/get.do?*=themeHandler. +weiyun.com#@#.page-ad +||23aitt.com/zz/ +chinanews.com##.tonglan_advert +wiki.mbalib.com###ad-fold +189.cn#@##linkShare +hmanga.world#%#//scriptlet('prevent-fetch', 'method:HEAD') +||tv2box.com/img_1g/ +||xwdjnj.xyz^ +||mp3.haogeba.com^$image,object +house365.com##.home-new-user +@@||ifengimg.com/pdt/cfg/mudu/aplayer.xml$domain=v.ifeng.com +||kkkkdm.com/mg/show +muchong.com##p[onclick="view_ok();"] +@@||chinamobile.com^*/ad$~third-party +||sdofp9c.cddrhx.cn^$third-party +speedtest.cn##.aP-box +||downhot.com/Res/js/main.js +||cdn.haokongbu1.com^*.js +kankanmi.com##.listnewli +search.chongbuluo.com##.search > div > a[target="_blank"] > img +||mo-tuo.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.hgame_mod_theme2 +||kiwi8.top/media/plugins/jquery_confirm/ +||guitarchina.com/1/*.gif +||qingkai.com/gg_img/ +||act.cmcmcdn.com/*/liondance/dist/js/bundle.js$domain=duba.com +hur.cn###ad810_2 +@@||technews.tw^$generichide,badfilter +||azureedge.net/wp-content/cache/minify/d2299.js +||pic.0597kk.com^ +nxflv.com##div[style="position: absolute; width: 100%; height: 133px; bottom: 0px;"] +gov.cn###ippad03 +@@||ak77now.pixnet.net^$generichide +||ntce.com/images/js/ntce_public.js +||mmiedf.xyz^ +ifeng.com##div[class^="adv1"] +||lwurserl.top^ +gov.cn###ZhiXuwFloatWindow +||netease.com/f2e/auto/modules/float-ask-price/ +||3dmgame.com/page/hlbt/ +2345.com###header-img-new +||380tv.com/upload/*-ad- +||0oqt9i.cn^ +||i-gamer.net^$domain=cartoonmad.com +||1weorpu.com^ +vjmedia.com.hk##.code-block +||colamanga.com/sw.js +||www-dnwx-com.anquanbao.cn/pic +||qlcbeg.xyz^ +seehd.so##.header_wrap + .tac + table[align="center"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##:not(.tbui_slideshow_slide) > div[data-daid] +||vjvj.vj24co.com^ +ifeng.com##a[class^="bookrack-"] +cnki.net#@#.ad_right +||xpyerxzn.xyz^ +secretmine.net###main-content > br +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(div[class*="head-info_"]>div:-abp-contains(热推)) +huya.com#@##banner +||gushiwen.org/getTicket.aspx +||szgpmy.com/js/ +||lm1.wkpcw.cn^ +||sinaimg.cn/large/*.gif$domain=mp4ba.la +||hjfile.cn/lib/hui/footer/0.1.0/footer.js +baidu.com##.sfc-image-content-ad-xg-cell +||pzpivx.xyz^ +chinabidding.cn###info_adv_1 +baidu.com##.l-header-ad +||fulibac.com/images/upload/ad/ +tw.news.yahoo.com##li[id^="ad-"] +||js.ubaike.cn^ +ettoday.net##.etmall-shopping-guide +||qydoex.icu^ +||same.eastmoney.com^ +@@||520cc.cc/ad/$script +||my0511.com/*/ad_ +||ali213.net/static/js/kktv +||images8.gaotie.cn^ +163.com,jishujd.com##.index_top_ad +||kvyyyde.cn^ +sina.cn##[data-href*="://sax"] + aside + blockquote +hy5.com.cn##.toplogoad +||dehua.ixinfan.com^ +||sohu.com/s/sohuplayer/iplay.html?*&autoplay=true$domain=eetop.cn +||leleketang.com/dat/a/ +||qusrow.xyz^ +||ifkdy.com/ifkdy/weixin/isFollowMe +||a1.zhanzhang.net^ +xiaopi.com##.gg_box +18comic.*##.modal-body > ul.pop-list +@@||niotv.com^$generichide +@@||baixing.net/combine/*,/css/ad- +||tyzfoej.cn^ +t.qq.com###talkList > li[ispopula="1"][tv="2"] +||zndsssp.dangbei.net^ +csdn.net##.blog_star_enter +||huoyan.tv/yb/img/*.gif +||033ajy.xyz^ +||gotadd.cn^ +baidu.com##.chunwan-wrapper +youdao.com#@#.share-text +||32xp.com/upimg/ +meituan.com##.component-downtip +||topthink.com/api/basic/ +||ifengimg.com/c337cf1a3749e953/2015/0301/rdn_54f25a4228062.jpg +||z4a.net^*/960x +||yretx.cn^ +||codenong.com/c1.js +||soduso.com/js/4 +||imagespublic.tk/clothes/comeliness.php +||dd1.diymianmo.com^ +||ad.gmw.cn^ +||uu22112.com^ +||pwddhc.xyz^ +||fobshanghai.com/bbsad/ +sou.com###ad_wrapper_cpc_conversation-comment-right +||quzpvtt.xyz^ +yiyouliao.com#?#.yyl-weiruan-video-list-item:has(> div#small2) +||1.jiangzheba.com^ +zqzq.com###wAdTop1 +@@||liulanmi.com/wp-content/uploads/*/StatCounter- +||cjx111.com/ads/ +kisssub.org###kanban +||caonme.xyz^ +foodmate.net##.ad5 +zhidao.baidu.com##.doodle-container +||drtrs55.fun^ +||dodo8.com/template/*/images/g_js/ +||iqgessh.icu^ +||kankanmi.com/js/zjgg +house365.com###AD-coup-left +||jyuwkba.top^ +||admd.yam.com^ +@@||kfcorder.com.tw^*/Advert +||pipi.cn/player/ +699pic.com###landlord +39.net##[id^="ac_im"] +||kritgu.xyz^ +||fguhyg.cn^ +cnblogs.com##a[href*=".gridsumdissector.com/"] +||auerkbo.cn^ +||bijiangqing.com^ +||qq.com/playgame/videoweb/ +nfuwow.com##.bannermid3box +||panpan.org/js/google +stockstar.com##.siteAd_r +||price.com.hk/ec-discuss-widget.php +huaban.com#$#.wrapper > div[data-content-source] > .modalOpenWidth[style*="top:"] { top: 80px !important; } +||youku.com/dress/ +||imgur.com/oPNxy4w.gif +||equkgm.xyz^ +||weryt111.fun^ +aibing.cc##a[href^="https://aibing.cc/go/"] +||sinaimg.cn^*/deco/$script +tw.news.yahoo.com###sda-WPS-iframe +0597kk.com##.lyhux_mu +||202.102.26.253:8182/files/7/lhzs1k.jpg +malimali5.com##a[href^="https://www.odancool.com/"] +hcbbs.com###portal_block_3441 +javdove.com##.tdads-nonlinear +gdmm.com##img[width="1200"] +iyf.tv##.video-player > div.ng-star-inserted > div#PB +axios-js.com##.recommand +||caoporn.com/templates/frontend/dark-blue/js/caoaa5.js +||xuoizbtl.xyz^ +||eacqihh.icu^ +||ce.wlaoc.cn^$third-party +||hmtoday.com^$third-party +ximalaya.com##.dl-pc +cheshi.com##div[id^="ad_pos_"] +@@||blog.ztjal.info^$generichide +@@||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$domain=ebb.io +||cetlwsf.top^ +@@||d1-dm.com^$generichide +||cnlg.cn/attached/script/ +||336t.com/img/boss/*.gif$domain=wmsj.pw +||sltbjrf.cn^ +qsptv.net###widget-weixin +baidu.com##.search-box-wrapper + .pager-container +||supfree.net^$xmlhttprequest +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > div:not([class]) > div[data-placeid] +live.bilibili.com##.container-wrapper[style="height:446px;min-width:1280px"] +||ueumdkc.cn^ +||b1.engdvd.com^ +||febtzd.xyz^ +||ecpshapm.xyz^ +worldjournal.com##.banner-zone +tongzhuo100.com###gold_banner +||sdjbvskjvds.com^ +||blthwbe.xyz^ +||howbuy.com/subject/js/jquery.blockUI.js +stock87.com##img[width="960"] +gmtv1.xyz##.pc_rb_float +hdmoli.com#?#.row > div.myui-panel:has(div[style^="text-align:"] > a[href][target="_blank"] > img#index_banner) +||aziekg.xyz^ +||hnartcqab847.live^ +hao123.com###guesslikesite +weibo.com#?#.card-content > ul > li:-abp-has(> p > .icon-txt-recommend) +jjhuashui.com##div[id^="jinsom-widget-slider-"] +@@||alotof.software/wp-content/themes/alosss/ads.php +||xmnkgi.cn^ +||hentaicomic.*/data/ds/ +||mxcmwk.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_encourage-appforum\/pagelet\/my_app +itboth.com,itkeyword.com##a[href*=".aliyun."] +||bilibilitool.site^ +||zotcjeig.xyz^ +www.playno1.com##.eis_box_s +@@||adx.yiche.com/cityindex.ashx +ifeng.com##div[class^="pplive"] +lpl.qq.com,v.qq.com#%#//scriptlet('set-constant', 'CreativePlayerwebPlugin.AD_EVENT.AD_LOAD_START', '') +||cfjslif.top^ +51cto.com#$#.top_bg { height: 60px !important; } +zhibo8.cc#@##ad_box +||rnkzhsi.cn^ +||1.weiheshidai.com^ +||ravzbd.xyz^ +||mysteelcdn.com/common/mysteel/home/v2/js/index_image. +||m.91heima.cn^$third-party +bcbay.com##.ad_txt_box +||zhibo8.cc/js/adv-slide-toggle.js +fanyi.baidu.com##.trans-side-ad-wrap +boylove1.mobi##.main-banner +||mydrivers.com/drivers/2021/racent.jpg +warting.com##.hz2 +@@||gifshow.com/rest/wd/common/log/collect/acfun +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###lm +||jsdelivr.net/gh/cdnjsdelivr001/182cdn*.js +||ymmiyun.com^ +ltaaa.com##.txtads +silver.org.cn##.dl_lt +www.sina.com.cn##.secondtj-wrapper +sm.ms##div[class^="advertising_"] +||phbkm.com/js/ +kocpc.com.tw##.topbarad +ettoday.net##.etvideo_collect_1 +||a.91zhongkao.com^ +fqlook.cn###rtj1009_ren_imme1 +@@||sinaimg.cn/tech/https_index/share. +oschina.net##.mayun-jj +1909.me,8se.me,crxs.me,xchina.biz,xchina.co##.push-top +iplaysoft.com###link1111 +||mobile01.com/groupbuying.php +77mh.nl###bdcotopnew +||game333.net/aainset/ +buzzorange.com##.rmaxAD +csdn.net##.csdn-common-logo-advert +423down.com##.widget_d_banner +chapaofan.com##a[href^="http"]:not([href*=".chapaofan."]) > img[src*=".sinaimg."] +||666bbb333bbb.com^ +csdn.net###asideCustom65392991 +||eshbqn.icu^ +fulibl.cc##.widget_text:last-child +||a.tbcdn.cn/s/atp.js +360.com###channel-mall +||apvnzvg.xyz^ +jurong.cn,ld0766.com##.totalad +||bnjovv.xyz^ +||222xs.com/js/greentea.js +||leabd.douguo.com^ +||wuhaolin.cn/c/ls +||avdao.pw/dist/js/sc_check +||staramuse.com/bmip/showg +gitee.com##.register-guide +58.com##.invokeApp +findlaw.cn###wlcommonbot +||33dav.com/static/js/bottom.js +||acgnz.cn/static/b.js +mtrend.cn##.daogou-foot +huaren.live#%#//scriptlet('trusted-replace-node-text', 'script', 'ConFig', 'let ConFig', 'var ConFig') +||abcdcfasda.gushiwen.cn^ +||kiwihk.net^$third-party +||uahozcfq.xyz^ +||xxsmad2.com^ +||sogou.com/html/ext/agentsdk.js +gdmm.com###separatorline + script + tbody:not([id]) +sogou.com#?#div[class^="right-feedback"]:-abp-has(>.list-step-title:-abp-contains(网游)) +||cbyhoe.xyz^ +||1dki0.icu^ +||dio99.com/images/*.gif +m.youku.com##.recommend +||cjjjs.com/script/ad.js +||gn01.top^ +movieclassic.net##.modal-backdrop +||j.baminw.cn^ +easou.com##.easou_banner +||mm.paizi.net^ +pc.yiyouliao.com##.yyl-ads-swiper +6park.com##a[href*="bpropolis."] +cn.bing.com##.b_algo:has(.rms_img[src*="/th?id=OADD2."][src$="21.2"]) +@@||189.cn^*/shareBox. +hc360.com##div[id^="Adv"] +zol.com.cn###iframe_zmall +||pnvtlh.xyz^ +theporn.cc##.toolbar-gg +||pharmnet.com.cn/js/float_div.js +hao123.com,jiegeng.com##.rightTip +moeci.com#%#//scriptlet('prevent-setTimeout', '_0x') +ltaaa.com##.topAds2 +||eeryt111.fun^ +finance.sina.com.cn##.m-s-tab + div +nen.com.cn##.for3gagzy +||duanmeiwen.com/static/cpt/img/write_right_float.png +@@||lancdn.com/landian/public/js/ads.js +||ocwdkp.icu^ +||javporn.best/asset/default/player/plugins/vast-*.js +||591520.xyz^ +#%#var AG_removeParent = function(el, fn) { while (el && el.parentNode) { if (fn(el)) { el.parentNode.removeChild(el); return; } el = el.parentNode; } }; +msn.cn##.nativeadserversidecontentmodule +||kf.qingwk.com^ +||a.lz13.cn^ +@@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=knowlet3389.blogspot.com|knowlet3389.blogspot.hk|knowlet3389.blogspot.jp|knowlet3389.blogspot.tw|mnighthk.net|weithenn.org +||qq745.com/m/ad/ +||blasedustin.shop^ +moe.best##.markdown-body + div[style="text-align:center;margin-top:40px"] +||teslaamg.obs.cn-east-3.myhuaweicloud.com^ +pan.baidu.com###share_ad_info_panl +||gfpvvwf.xyz^ +||woyaoq.com/201904100958_5cad4dbac9c5f.png +cn.bing.com#?##b_results > li:-abp-has(.b_adProvider) +mitbbs.ca,mitbbs.com##.index_add +haosou.com###so_feb +po.baidu.com###shareBoxBlank +@@||sinaimg.cn/cj/deco/$script,domain=finance.sina.com.cn +www.sina.com.cn##.part-l +:81/c/i.php?id=$script +||rbift.icu^ +||chinafpd.net/js/2012-10/ +||qqcf.com/js/Content_Get.js +@@||chineseanime.vip^$generichide +||fztyrv.xyz^ +10jqka.com.cn###topba1 +chinese.engadget.com##div[class*="Mih(90px)"][class*="Bdbc(engadgetGray)"] +||onx8.com/zb_users/theme/ydgreen/style/ad/ +||mmn811.top^ +||exoclick.com^$third-party +oschina.net##.float_adbox +||dykshao.cn/image/$third-party +||icws.jb51.net/good/arc2019.js +so.com###mohe-m-smzdm_haojia +||5184.com/container/html/news_view_gg +||gtimg.com^*/adv/ +czzy.top,czzy77.com#?#.swiper-slide:-abp-has(a[href^="http"]:not([href*="czzy"])) +||cnfol.com/index_new.php?id= +eefocus.com##.detailpage-rolling-ad +||qdaily.com/mount_details/pc/ +||ipuswrg.cn^ +2345.com##.coem-dzhcn +:800*/sc/*n=$script,third-party +||missyuan.com/sy/ +chuandong.com##div[class*="-ad"] +avtb2022.com###menu-main-content > li:nth-child(n+5) +sou-yun.cn###ads_index_2 +mail.126.com,mail.163.com##.gWel-bottom +||lveodaz.icu^ +tigtag.com###js-dropdown +hfxbs.cc##body > a:not([href*="hfxbs.cc"]):not([href^="/"]) > img +fqzww.net##a[onclick="qinlintes11t2()"] +||32.huanqiu.com^ +so.com##.tg-wrap-async +||360640.com^ +||52che.com/NewLocal/TemplateHtml/headflash1_ +||wj.jiancai365.cn^ +||cig.com.cn^$third-party +so.com###msocomBottomBanner +||ruiwen.com/jscss/ +||wqnwdjjc.xyz^ +||pmtrkp.icu^ +jisilu.cn##.foot_ad +||adbxb.com^$third-party +||sogou.com/ask?id= +weather.com.cn##.tuiguang +1010jiajiao.com###yueyu3 +||mdiygc.xyz^ +youth.cn##div[style="width:960px;height:90px;margin:0 auto;"] +||totheglory.im/pic/fangtuo.jpg +bootcss.com##.bs-docs-sidebar a[href^="http://click.aliyun.com/"] +||dy2018.com/jsdd/ +||39.net/js/google/ +chinapdf.com###floatright +qqxiuzi.cn##div[onclick][style] +jmcomic1.me#?#.container > div.row:has(ins[data-width="300"]) +||beareyes.com.cn^*/ad/ +enread.com##.channel-nav > .back +soyoung.com###pubWideBanner +bilibili.com##.bili-video-card:has(.bili-video-card__info--ad) > .bili-video-card__wrap +||szmyl.cn^ +||b37r5.cyou^ +||prettyvirgin.com/js/show.html +@@||costco.com.tw/_ui/shared/js/analyticsmediator.js +@@||analytics.163.com/ntes.js$domain=3g.163.com +360zbz.com#@#.rightad +||kuku99.com^$third-party +||gg.7976.top^ +qzone.qq.com###appstore_sidebar_l +||rainpat.com/Scripts/jquery.SuperSlide. +||oehcxmhk.xyz^ +||ahgame.com/js/new_ad.js +||hackhome.com/js/*top.js +114la.com###egg-packet +||xineurope.com/static/image/banner/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_rank +ishowx.com##.ad1160 +finance.sina.com.cn###ny-link-r +||dqrdwz.icu^ +||oyretuk.top^ +||speedtest.cn/api/v2/show +||x-resource05.com/media_orange/server-img/*_1200_120. +baidu.com,youdao.com,yun.cn#@#.share-content +||zozwnv.xyz^ +movieclassic.net###billboard-modal +||jdfzfd.xyz^ +||c4d.cn/api.php?mod=ad&adid= +ifeng.com##div[class*="SlideAd"] +||dgkship.icu^ +||sohu.com/mail/pv/ +douyu.com##.isLink[href^="https://igxe.cn/"] +||fepmpify.xyz^ +||imedown.info^*.gif +zh141.com##a[title*="廣告"] +||m1.vodjk.com^ +||qienews.cn^$third-party +||uflybplr.xyz^ +||hznaxah.cn^ +kekeshici.com###pcAd +meijumi.me###app_left +@@||sina.com.hk^*_ads.cgi +||zhongyi.ifeng.com/a/zt.js +||segoyg.xyz^ +||86uk.com/uploads/*0.gif +||showhaotu.$domain=18board.com|18p2p.com +@@||hc360.com/ad/*.css +||mrs30w.com^ +douyu.com##.fishop-anchor-recommands-box +||haxqxd.xyz^ +||m.kankanwu.com/js/ +sbdm.net###hqmhBottom +||chinaacc.com/lamu/piao +||pixoctopus.pixnet.net^ +||udn.com.tw/upf/*_banners/BD/ +||ruguoapp.com^$domain=aixiaoju.com +||pharmnet.com.cn/cnbanner/ +baidu.com##.union-tg +nxing.cn##.boxclose +zhidao.baidu.com#?#.wgt-ads +360kuai.com###pendant_interactive_gg +||786yfvedhcbxjk.top^ +||hebtv.com/d/a/thea +ikjzd.com##.article-banner-wrap +@@||piaotia.com/scripts/readindex/tongji.js +||upload.cc/i1/2020/07/13/8BGJiL.gif +||msstatic.net/main3/common/assets/template/head/ad. +||88lm05.com^ +||dpe5t.space^ +||qdjimo.com/html/js/ +||freejavbt.com/assets/images/banner +vmvps.com##.spbox +@@||aliyun.com/nocaptcha/analyze.js +iqiyi.com##.zzVideo +qzone.qq.com##.side_wrapper.side_wrapper_v3 +@@/js/adview_*.adsbygoogle.js$~third-party,domain=letv8.cc|zhibo1.cc +voachinese.com##.slide-in-wg +@@||haichaobiao.com^$generichide +familydoctor.com.cn##.adExtra +blog.163.com##.postadlayer +chinamedevice.cn##.ads_img +||ya*.dwstatic.com^ +mcar.cc##.showhide > video + div[style="background-color:#FC0;margin-top:1px; width:500px; height:90px;"] + div[style="background-color:#FF0;background-float:right;margin-top:-371px;margin-left:500px; width:234px; height:375px;"] +||asp300.*/2017js/ +51wangdai.com##.cx_ad +blog.163.com###r_mlofteriframe2 +||cngold.org/api/p? +||jinyici.com/qq.js +||wnalzle.top^ +||szpxp.cn^ +||fast8.cc/skin/default/images/630652.png +chinacbe.com##div[style="width:960px; padding:0px; margin:4px 0; border:0px solid #CCC;"] +@@||feilusw.com/search.html$genericblock,generichide +@@||2018x.bid/adview.js +||67.21.92.*.gif +||doujs04.shop^ +||cpro.baidu.com/cpro/ui/rt.js$script,redirect=noopjs,domain=rjno1.com +pixnet.net##div[class*="article-ad"] +chinaqking.com###readerServiceDIV +||imghost.top/kita/ +pansci.asia##body > section.hide-on-print.mt-5 +sina.cn##[data-href*="://sax"] + aside +@@?adType=$domain=taotaosou.com +cncrk.com,kxdw.com##.gsdt +||520call.me/ad/ad_ +||imgroom.net/images/*.gif +||cvnxetmq.xyz^ +0597kk.com###kk_head_ad +||cgczuu.xyz^ +jiagle.com##.bannergroup +5dm.link#@#.tm-share-this +||eqygki.xyz^ +||ooublik.top^ +||yinyouapp.com^ +||alicdn.com/imgextra/*_!!2207010417239. +||900.la/imgs/1bb725da-974f-43da-9eb9-dfdebc224949/2015-12-18/zg3wwaug.gif +||ifengimg.com/static/news/js/advtrack +@@||cloudflare.net^$script,domain=colamanga.com +||d1.sina.com.cn^$object,script +||bkiterv.top^ +||17173cdn.com/a/lib/vda/seed.js +||inifdlao.top^ +5588.tv##.ProDaTu +||fxkfhbn.xyz^ +jpsub.com##.floatbar_div +pcstore.com.tw###keyad-right +||4jffu.cn^ +two.game.tw#@##ad_02 +||ksvkfwth.xyz^ +3dmgame.com##.R_qingtianzhu +||migo011.top^ +mamibuy.com.tw,dyzd1.com,avcao.cc##.layui-layer +udn.com##.overlay-container +||max211.top^ +||gog.cn/sys/online_calc.js +||ylrjnhxi.xyz^ +||85wp.com/ad/ +||jiaoyu.baidu.com/tieba/ +||a.quangushi.com^ +||sqgnqc.xyz^ +2345.com###J_act_plane_hb +||mwurserx.top^ +40407.com###tcdgg +woaimoon.com##div[id^="juan_"] +||v1.taksh.cn^ +||waipian*.com/statics/recommend/ +||bwjfnj.xyz^ +||ddlvpmt.xyz^ +@@||kayixin.com^*/advert +e0575.com##.tg2 +sinami.com##.banner_centerRight +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_forum +||uuvzmba.cn^ +||ccav1.com/wp-content/uploads/an-temp/ +cnys.tv,4kya.com###player_pause +||ratedxbiz.com/d/ +hanjutv2020.com##a[style="width: 1120px;height: 70px;overflow: hidden;display: block;"] +52solution.com,imydl.com##div[class*="banner"] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="qunar_hotel"] > .c-border +download.csdn.net##.quake-slider +eastmoney.com##.popswipe +||lgmi.com/right_ys +||gepvgv.icu^ +||linovel.net/cp/lk/ad/externalAd? +manhuadb.com#@#a.d-block +||qunlove.com^*.gif +:81/s/i.php?id=$script +||f1.ichong123.com^ +||firefoxchina.cn/2014/*_foxphone.png +hupu.com##div[class*="ad728-90"] +||194.59.220.161^ +||dkasdeerw.xyz^ +||goosedaily.com/advertise/ +yixingjia.com###wp > table[width="960"] +firefoxchina.cn##.float-small +typecho.wiki##.haliluya +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=4gtv.tv +hualongxiang.com##.quick_reply_ad +||oojjsa.com^ +||szmpy.cn^ +yunpan.com#@#.share-new +||blogspot.com^*/s1600/drug.gif +books.com.tw##.header_box_pop > [class^="flash_banner"] +360doc.com###divunderZcommondAd +||cycyw.com/mf/ +||ifengimg.com^*300x600 +kankan.com###adv_box +baidu.com##.download-app-parent +jiyingdm.com###otherWindowBox +@@||highcharts.com.cn/highcharts/modules/heatmap.js +||luolikong.net^$third-party +netbian.com##a[href^="https://ibaotu.com/guanggao/"] +||lwlwlw.com/ggzx/ +lzdcctv.cn##.ac_pc +kkbox.com##.google-ad-manager +hkwb.net##.rightadv2 +||fendeyrziz.top^ +||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ +@@||alicdn.com^*/log.js, +viu.com##div[data-marker-title="undefined"] +77bike.com,actoys.net,gpsuu.com,homefei.me,ksbbs.com,mgbbs.cn,oigps.com,opticsky.cn##.tac.mb5 +rou.video##.grid > div[class^="col-span"]:has(> div[class] > div[id^="ts_ad_native"]) +||jandan.net^*/3kbw2.png +cnki.net##.banner-main +||vk920.com/img1/ +@@||geo.query.yahoo.com^$xmlhttprequest,domain=tw.autos.yahoo.com|tw.buy.yahoo.com +wenmi114.com###xiezuo +qudao.com###wechat +my0511.com###lphybbschklogdiv +iqiyi.com##.float_div +360kuai.com##.marketing-box +||zhimg.com^*_600x250 +firefoxchina.cn##.theme-adv +qzone.qq.com##.ck-act +||c.91wan.com^$third-party +||adbd.liuxue86.com^ +speedtest.cn##.ticket618_logo +||dydab.com^ +||bhaoea.cn^ +koyi.pub#@#.main_ad +||baihuwang.com^$third-party +vansky.com##.liAds +||upload.xchina.biz/ad/ +hboav.com#@#script + div[class="cc5278_banner_ad"] +lahoo.ca##.right_multi_banner +playtv.com.cn##a[href="http://www.sdhanrui.cn/"] +xyj321.com##.foot_alert_wrap +skinme.cc,yuntue.com##.huodong +||midifan.com/aaa/ +||wwwww.asia^ +ganji.com###write_resume_id +news.pchome.com.tw##.adfloat +eastday.com##.golden_adv_2 +||erutvncw.top^ +kisssub.org##a > img[src*=".0o0.ooo/"] +||ld0766.com/*20*a/ +||btpian.com/static/wenquan.js +||youdao.com/rlog.php +||hjshal.com^ +||baidu.com/api/*/ads/ +||cwiuhtp.icu^ +sydneytoday.com##div[style$="-144px;top: 115px;"] +||we560.com/js/*.js +||eduuu.com/website/public_js/pc_aso.js +||oxvlxwz.xyz^ +||saltsleaseholder.com^ +||yehaobo5.com/js/ +6parknews.com#?##d_list > ul > li:-abp-has(a[href^="http"]:not([href*="6parknews"])) +nczsks.com###rightyxjs +bigbigwork.com##.pinterestbox +123pan.com##.baidu-banner-container +||hdslb.com/bfs/ad/ +eastday.com##.right-suspension +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#$?#.img-list > .img-item:has(> a[href*=".ad_click"]) { remove: true; } +||inhe.net/Uploadfiles/inhegg2016/ +||wenhua.jiaoshou.com^ +||szyepu8.com/data/AADDimg/ +||kankanwu.com/le/ +51cto.com###advCanvas +||booktxt.net/js/easyAD +||syseen.com/content/uploadfile/*/hongbao.png +|http://*/js/ad.$domain=~coolpc.com.tw|~sac.net.cn +qq.com##div[id^="couplet_auto_"] +||dfvmzx.xyz^ +520call.me#%#//scriptlet("set-constant", "all520dddaaa2022ccc", "true") +||xianshuabao.com/ashx/pt.ashx?cmd=record&filter=&order=all& +olevod.com#$?#.swiper-wrapper > li.swiper-slide:has(> a[target="_blank"]:not([href^="/"])) { remove: true; } +||a.yangshengtang123.com^ +||t2.picb.cc/2022/08/07/6rpRKd.jpg +:12289/o.js$script,third-party +jable.tv##.text-center > a[target="_blank"] > img +digitimes.com.tw##.edm-frame:has(> .adtext) +||perlmaven.com/img/sticker-you.jpg +@@||ad.thsi.cn/siteHome/ +qq.com###r_ad +romzj.com##.sectionThree +mamecn.com##.njjGsxzRight +game2.cn###rb +lihkg.com##iframe[src^="https://pb.lihkg.com/primis?"] +pianku.me###playad +||abminbuy.com/789. +hahamx.cn#@#.ad-1 +~upupoo.com##a[href^="http://www.upupoo.com"] +huaren.live##.action-ad +||sass.hk/images/hengfu.jpg +hao123.com##.recommend-link +||ql.uzuzuz.com^ +chexun.com##.ad1100 +||osafsr.xyz^ +||pakaujf.icu^ +sci-hub.org.cn##.gs_r[data-cid=""] +||51cdn.club:453/hf85/960x +||jubnpx.xyz^ +||manwa.me/static/custom/files/300X250.$image,rewrite=abp-resource:1x1-transparent-gif,~third-party +||mql5.com/rq? +||empizem.cn^ +||cduno.cn^ +qq.com,sogou.com##.banner-vda +ifeng.com###g_code +||jandan.net/static/sos/recreate-games.gif +||jiyingdm.com/js/loadingshow.html +||kwivb.cn^ +||kiees.cn/img/ +fxykx.com,pantsu.cat#@##banner_ad +maomaomom.com###execphp-21 +hdzone.org##a[style*="fixed"] +4gamers.com.tw##.aroma-home-page-float-ads +sina.com.tw##div[style*="min-height"][style*="250px"] +||douyucdn.cn/butterfly-java/*?width=1200&height=100& +afzhan.com##.newsRightAdv +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##style[id^="s-"] + script + script + div[id] +||meitiantv.com/ganggao/ +dataguru.cn###popDiv +news.gamebase.com.tw##.PCAD +||wlrjy.com/assets/images/*.gif +qidian.com###banner-two +||vinsgcs.com^ +||hb8g86k.mom/mz.js +||ali213.net/js/data/3gcommon.js +imooc.com##.redrain-bg-shade +||pic.gongkong.com/UploadPic/gongkong/ +tuliu.com##.zx-advertising-box +baidu.com#?#.container:-abp-has(>.bottom-section>.item_voice_room[data-yysid]) +||abminbuy.com/QQ +baidu.com##.optimus +||beareyes.com.cn/2/cat/js/*_right +360.cn##.ads-pic +@@||forexprostools.com^$domain=shougedui.com +||dwadwere.xyz^ +alotof.software#%#window.google_jobrunner = function() {}; +image.baidu.com##.tjImgli +||njjavt.xyz^ +meltoday.com,sydneytoday.com##.promo +||hkitblog.com^*-banner +chemicalbook.com,foodmate.net,nmgnews.com.cn,sportscn.com##.ad3 +||sanme2.taisantech.com^ +||kdipsumd.top^ +||fxnmjb.xyz^ +||chinacar.com.cn/Public/index/images/banner_ +||bookrb.com/images/jtt +||osmzym.xyz^ +so.com##.newsfeed-popup +||t.cn^$domain=28kys.com|92kvip.com +||a1.bookapka.com^ +||1cpkcnm.com^ +@@||genesyslogic.com^*/ads$~third-party +||cdxyb.cn^$third-party +||megydyk.icu^ +||dnxtc.net/xiaobing/ +ruten.com.tw##.act-promo +||yshlor.icu^ +||wgidskie.top^ +||hbjolp.xyz^ +elecfans.com##div[class^="banner_ad"] +loldk.com##.tools-recommend +lolshipin.com##.box2 +~aircn.org,~steamcn.com,~x3cn.com##.wp.a_t +duba.com##.liondance-wrapper +115.com##.gb-advs +hao.lenovo.com.cn##.left.icons +||miduoke.net^$third-party +||cr173.com/skinb/ +@@||supercloudsms.com/js/ad +||pcbeta.com/data/cache/common_fbdbbsyuzhttpx.js +||goole24.shop^ +duodada.com#$#body { padding-top: 0!important; } +||hao123img.com/res/js/common/as. +||lianty.com/getImg?id= +||tatyboy.top^ +||huya.com/leaf/*=vodadv&$rewrite=abp-resource:blank-mp3,domain=huya.com +||new-icon.ol-img.com/jslib/ad +||yu0123456.com^$third-party +||97ii.cn^ +||cdolhlwq.xyz^ +||couvxlif.top^ +||yldfkfb.cn^ +xyg39.xyz###__top_header + script + div +qingdaonews.com##.commonrightad +||bbqoa.top^ +cbber.com,you85.net###diy2 +#%#var AG_onLoad=function(func){if(document.readyState==="complete"||document.readyState==="interactive")func();else if(document.addEventListener)document.addEventListener("DOMContentLoaded",func);else if(document.attachEvent)document.attachEvent("DOMContentLoaded",func)}; +||cdn.haocaa.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.close_btn[src*="/adsense/"] + div:last-child +||dy2018.com/js17/ +firefoxchina.cn##.mrec-banner +||sozi.cn/templets/sozi/js/js.js +||aerbgpn.xyz^ +||bmp1.ali213.net/js/ +||t2.picb.cc^$image,domain=dmxq1.com +||gcw*.2liang.cn^ +||wpuiuwh.icu^ +||ithome.com/block/headerline$subdocument +||hwurseru.top^ +||meizhou.cn/comm/mygg/ +77mh.nl###bdbottop +||boqsxdpx.xyz^ +:8080/js/v1.js$third-party +51offer.com###rightFu +||stat.mql5.com^ +||uogtrmjz.xyz^ +||ifeve.com/wp-content/uploads/*/WechatIMG +||one101.xyz/data/images/*.gif +bilibili.com##.operate-card[data-target-url*="doubleclick."] +||nhjn788.fun^ +||8seaa.com/template/assets1/js/vue.js +toy-people.com##.good72890 +||91bixin.net/api/adv/ +||s.69vj.com/assets/DIY.$image,media +||mini.hao123.com^ +||sobaigu.com/images/tencentcloudamd_1040x100.jpg +||kaosts.com^ +aguitar.cn##.headerbanner2 +||fdfghgfdd.yunqishi.net^ +autohome.com.cn##DIV[id^="popautoapp"] +storm.mg,mobile01.com##div[id^="dablewidget_"] +||kostool.cn/screenshot/ +||88ys.cc/js/abcd.js +axios-js.com##.lessonlist +plays01.com##.adbox-bg +||krbulhb.com^ +uisdc.com##.post-pm-content +||yeryt111.fun^ +||dj97.com/api.php?mod=ad& +||p.udn.com.tw/upf/2014_banners +||shimo.im^*/ads? +imydl.com###enhancedtextwidget-5 +downg.com##.Gs_d[href$=".exe"] +||yellowjm.com^ +58.com#?#LI[sortid]:-abp-has(.icon-zhiding) +||titan007.com/news.aspx +||yijuxie.com^$third-party +pp.ua###id_ad_image +||qyisloy.top^ +iqiyi.com##.oppo +||okpcyp.icu^ +||62mao.com/52 +||lianmeng.la/ad1/ +backchina.com##a[href*=".cardbenefit.com/"] +||cosouy.xyz^ +||pic.pimg.tw/promo01/ +7k7k.com##.page-right-side-btns-img-link +||lbx777.*/css/300.js +||hntkgpd.cn^ +le.com##.ad_layer +||gunepszy.xyz^ +||86uk.com/uploads/*0x +||daksflkalq.top^ +||kanmeiju.net/js/ +||sitv.com.cn/cookiead.php +_billboard_320x100.iframe. +xuite.net###single-bottom-ad +||alicdn.com/img/ibank/*_951336353. +||cdn.galacg.me/img/*.gif +zzbaike.com##.imglistbg-ad +||380.tw^$popup,third-party +hupu.com##.voteIndex +||8684.com/com/sys_ad_ +ntp.msn.cn##recommended-sites +p9.com.tw##.contentRightAd +baidu.com##.wgt-union +jmw.com.cn##.top_pic +x3cn.com###portal_block_12045 +||5gxs.org^ +||rmxizma.cn^ +||acasadf112.cn^ +||i.imgur.com^$domain=av.movie +||pcjx365.com/kpimg/*.gif +||hkpeghqu.icu^ +udn.com###doctop +||mbiypew.cn^ +||xdyjt.com^ +fxykx.com##a[href*="zyttx.com/"] +||xprdmnlo.xyz^ +asmag.com.cn###adRightFix +||ohncc.cn^ +||nmxxvr.xyz^ +@@/adshow/*$domain=mndxy.org +||5etv.com^$third-party +16668tu.com,alibuybuy.com,chewen.com,faloo.com,newhua.com,ph66.com,tv.cntv.cn,weishangshijie.cn##div[class^="ad_"] +||lsfevr.xyz^ +||stat.2u.com.cn/ol_2u.js +||cnwnews.com/gg +auto-online.com.tw##.text_links_h +||wuepo.cn^ +btbtt.me###wrapper2 > .width +ettoday.net##.ec_menu +businessweekly.com.tw##ins[pid] +dytt5.net##.detail-body > .fly-panel +||nweon.com/wp-content/repo/ad/ +||tencent-cloud.com/s9m1/12f70718c866ea3e5f22c68e6a34c54f. +21cn.com##.h-gg +||lv.myapks.com^ +||szmgr.cn^ +||quwkke.xyz^ +hualongxiang.com##.bbs_box_gg +1010dy3.com##a[href^="/go"] +hl.cn###xf_right +||lfhnzbj.xyz^ +||baidu.com/cms/lemmaconfig/baikeDynamic. +||yemancomic.com/static/maoshuang.js +hao.360.cn###festival-theme > .right-entry-wrap +qq.com###mod_float_box +||upytsgo.cn^ +fsjoy.com#@#.main_adv +||allbeauty.com.tw/GoldPrice/*_CF.php +ddooo.com#?#ul:-abp-has(>dd:-abp-contains(高速)) +2345.com###J_s11_foot +||union.yihaodian.com^ +sina.com.cn##A[href="https://touzi.sina.com.cn/"] +||hdslb.com/js/bfd.js +||log.vdisk.cn^ +www.rkanr.com##div[id^="rkrCp"] +d.wanfangdata.com.cn##.wfPubAcc +21cn.com##.xuantu +||static.olelive.com/upload/site/*/*.gif +appinn.com###ranshownow +@@||tq121.com.cn/j/ad/caoyu-min.js$domain=products.weather.com.cn +||bd.dhsz.cn^ +e-learn.cn###block-youyi +163.com##.ns-side-qrcode +||darren01.oss-cn-beijing.aliyuncs.com^ +pjtime.com###pjtime_full +hualongxiang.com##.khd_b +163.com##.right_originalcolumn_ad +||qbox.me/FnjnjJhJZlKZEGJ7qV1AocqusFbf +56.com##.goods_show +@@||tanx.com/ex?i=$script,domain=dlkoo.cc +sina.com.cn##.f_app_screen_wrap +||nxhh.net/gw/gw.js +||yp868.com/js/54h/ +sex8.cc##.b_mu > div#asx_text +ebc.net.tw###lotteryfnc +||jmhfw.com/index.php?/ajax/get_adv/ +||zsyk91.cn^$third-party +live.win007.com###notify > a[target="_blank"] +aeink.com##p[style*="82px;background:"] +||koolearn.com/www/subject/script/subject_form.js +whcykj.cn##.swt_bottom +||ckg.vipyl.com^ +||strip.taobaocdn.com/tfscom/$subdocument +||hao123.com/static/img/taobao +58avgo.com##.BillingLeft +3322.cc###addr +||fq06.shop^ +manhuadb.com##.d-flex.px-2 +game.macx.cn#@##google-ad +news.cnyes.com##article > div:has(> div[id^="div-gpt-"]) +||szpnp.cn^ +cztv.com##div[class^="banner_"] +theav.xyz##div[v-if="is_show()"] +pchome.com.tw###div_superbar_swf +||01u.net/js/tj.js +||mountain.zhidao.baidu.com^ +||gtimg.com/edu/pics/hv1/115/26/2077/135063670.png +||myhack58.com^*0$script +||xxxx88xxxx.com^ +gufengmh.com##.animated +daweijita.com##.sidebar-right > .widget-box:first-child +||love.furenkeji.com^ +||qianhua.*/data/attachment/portal/ +||yhnvgdkw.xyz^ +||phpad.cqnews.net^ +||qzehwg.xyz^ +||tingroom.com/images/qsbdc.gif +||laoqo.top^ +||cnzzla.com/public/scripts/money.js +18comic.*##body .bot-per +||nfmovies.com/static/*.jpg +||lycc72.com/resources/js/content.js +@@||studioclassroom.com/ad/ +wdzj.com##.ggao-everyone-rebeat +||ankangwang.com/js/info.js +hoteastday.com##.reloadMedia1 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_thread_list[data-field^="\7b \"id\":4419048726,"] +gamme.com.tw##.list > li.ad +||dkhffh.xyz^ +sgamer.com##.plc > div > a[href*=".vgcool.com"] +chinaz.com##.media-banner_auto +lanrentuku.com###advbox +jiegeng.com##.l_div +3dmgame.com##.tonglona_1 +@@||bdstatic.com/??*,*,*, +x99av.com#%#//scriptlet('set-constant', 'ADSOBJET', 'emptyObj') +||107.167.16.*.gif +:12289/slot? +||dm.jb51.net^ +||53shop.com/js/dun.js +||wyisloe.top^ +||168gamer.*/list- +wenxuecity.com#%#//scriptlet("set-constant", "adsbygoogle", "noopFunc") +||uunfybw.cn^ +||bzverx.xyz^ +||lele36.com/p/*.gif +||oweeiyw.icu^ +||rndcdb.xyz^ +||chidir.com^ +||kgeqsu.xyz^ +||cpddgcr.xyz^ +rjno1.com#%#//scriptlet("prevent-addEventListener", "error", "event.target.tagName") +bilibili.com##.ad-report +||aaholidays.cn^ +||ged46.xyz^ +||cpdronhu.xyz^ +www.pixnet.net###extradiv5 +||kuwo.cn/static/swf/xctg.swf +eprice.com.hk#@#.one-ad +||sogoucdn.com/app/a/100540022/2021022016080586548810.jpg +||zt2088.com^ +zhidao.baidu.com##div[class^="cms-slide"] > p[class="cms-link-title"] +||cachead.com^*.js +||oafhif.icu^ +||eastday.com/jrdftt/static/javascript/ad/configDouble11. +ifeng.com##.ad_04 +nownews.com##div[class^="footer_"] > div[class^="adBlocks_"] +||bjs.faxingzhan.com^ +51credit.com##.credit-box +||1905.com/data/js/*.json +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.switch_radios + div[class] +chinakaoyan.com##.side-wx +wandhi.com##a[style="display: inline-block;position: relative"] +||xuexila.com^*-xxl.js +alu.cn##.Tg_290x60 +||xinhuanet.com/jjimages/jc/js/fla.js +||iffobi.xyz^ +pchome.net###bzhref +||cowm199.com^ +||hqcx.net/index.php?m=poster& +le.com##.H-tg +qq.com##.adword +@@||hdsky.net/ad/down.png +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###loan_ad_mod_a +ifeng.com##div[class^="d_box-"] +qciss.net#%#//scriptlet("prevent-window-open", "0", "qciss.net") +1010dy3.com##.text-center[style] +||174.127.195.66/bbs/include/javascript/adblock.js +||imgur.com/df53F09.jpg +55188.com##.ggdistich +masturbation22.com,playallvideos.com,pron.co,ratedxbiz.com,taporn.com##.ima +@@||szhr.com^$generichide +||njreka.xyz^ +||jrtlisa.top^ +porn87.com##.pc_instant +||sugilip.cn^ +||pkyjuc.cn^ +||elsbfby.com^$popup,third-party +||wmeng.feihuadns.com^ +||pxxnejx.xyz^ +||piaotia.com/scripts/read/style +||ypcngw.xyz^ +58.com###rightRetui +||yanu.qiniudn.com/270300.jpg +||fpdisplay.com/upload/n_ad/ +6park.com##a[href*="jdoqocy."] +||my0538.com^*/thumb_1000_70_ +ifeng.com##.recommend > .picNews +5278.cc,hboav.com#%#//scriptlet('prevent-setTimeout', '/ad block stop|warm_msg/') +||doujs09.shop^ +||dio88.net/images/*.gif +fanyi.baidu.com##.extra-banners +||javhd.com/sb/ +||jav101.com/img5bbb0096f242f.gif +fullyu.com##.rightSide-top-ads +||51offer.com/pageData/getDataByModuleIdandKey.html?leadkey=adList& +||sf2.net/a/index. +||hitime5.com/skin/css/*.js +bdys03.com##.artplayer-plugin-ads +||autyxdek.xyz^ +||cnfol.com/Count.html +||ax.ifeng.com^ +||adzo.cn^ +||alu.cn*/aluad/ +baobao.baidu.com##.qb-relate-box +||heipa666.xyz/hp/ +||hy5.com.cn/admin/ +||51vob.com/js/hf.js +kaolashuwu.com###newmodule +||ubmcvideo.baidustatic.com^ +flight.qunar.com##.l_rside > .b_fly_ban_b:nth-child(2) +||cornpic.com/images/*.gif +||qq.com/tousu/img/20210522/4340189_1621663491.jpg +||90oo.com/tp/40 +ixigua.com##.J_ad +||xinmin.cn/framepage/yqLink1.htm +||x0or8.icu^ +layui.com##.layui-layer-tips +pornbest.org,pornlulu.com,ptt.sex##.no-gutters +||gcvgedashb3.fun^ +2345.com##.cmp-game-new +wenxuecity.com###marquee +||webkaka.com/script/cp.js +66rpg.com###right_overlay +@@||c.mipcdn.com^$domain=prpcoin.com +||edadmy.xyz^ +3dmgame.com###min_ad_con +muchong.com##a[target="_blank"][style="display: inherit!important;"] +||360kan.com/special/ +solarbe.com##.LT_banner +||ulrvkee.xyz^ +||91yun.co/download/ +boke112.com##a[href*=".tencent.com"] +||h1.cfxinxi.cn^ +||bcebos.com/725c659194eeebb8c6b970e52e2dc8aa. +||mc.mwgpg.cn^ +tzfdc.com.cn##div[id^="LMT_"] +bmlink.com##.Tg_1190x70 +le.com##.lay_body[style^="width:980px;height:100px;"] +||y1.junshitt.com^ +3h3.com###gaosu_down_bt +||uc*.atobo.com^ +||hsex.men/nb/ +buzzorange.com###divRelated > .dfped +||91rb.net/js/gg.js +324324.cn###gg_468_60 +gate.baidu.com,m.baidu.com###container +huaban.com#@#img[width="240"][height="400"] +||7k7k.com^*/loding.htm +||3alian.net^$third-party +guancha.cn##.g_swiper_container +ebb.io#%#//scriptlet('set-constant', 'google_empty_script_included', 'true') +@@||51zxw.net/getvutf.asp?$domain=51zxw.net +||repian.com/a/ +xueqiu.com##div[class$="__ad"] +||shang.hlgnet.com/code/ +@@||ad.alimama.com^$genericblock +zhujiwiki.com##.msg +yxdown.com##.news_tl +chinaz.com##.media-banner__auto +||yfasjfk.icu^ +liba.com##.advert-l +juejin.im##.feedAdsense +m.babytree.com##.wrap > section[class*="0"],.wrap > div[class*="0"] +:1010/openV5.js +hao.360.cn,hao.360.com###activity +hdhive.online#?#.mt-4:-abp-has(>.text-lg) +anny3805201314.pixnet.net###pilot +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_live_list +||dsaewew21.fun^ +||yohnoirs.com^ +bitauto.com##.advertise-nav-down +dzbhdm.net##.inn-nav__placeholder + .poi-container > a[target="_blank"] +gebi1.com###fwin_dialog +blog.sina.cn###pl-blog-artad +ooopn.com###ab-left +||act.chinatimes.com/aimg/ +hur.cn###ad810_6 +elecfans.com##div[style^="width: 960px;height: 40px;"] +||riscil.com^ +||mat1.gtimg.com/2014/vikkydu/GA/haier +pcdown.net##.sort_list > .clearfix:first-child +hackhw.com##.d336x2 +mydrivers.com##.adds +zhidao.baidu.com###act-link-banner +||rk6h3.icu^ +baidu.com##.v-s-tuiguang-wrap +muchong.com##.xmc_viewthread_ad +||apk-01.oss-cn-beijing.aliyuncs.com/dp/ +||baidu.com/adver? +||988aiai.com/static/js/common.js +softblog.tw#@#.dshare +||spqi.xyz/static/tmp/ +pg-wuming.com#%#//scriptlet("abort-current-inline-script", "$", "!document.getElementById(btoa") +||lmtnfl.xyz^ +||kuaihou.com/js/new/xiazai +||fvyqblc.icu^ +||ntrtifx.xyz^ +sina.com.cn##.tab_related_app_imglink +||mpyerxzn.xyz^ +@@||googletagmanager.com/gtag/js?id=$domain=av01.tv +1ting.com##div[style="position:fixed;bottom:0;z-index:999"] +||sinaimg.cn/large/$domain=chakd.com|seehd.so +||hexun.com/js/att_count.js +huya.com##.ab-content +league-funny.com##.more2ad_bb +bdinfo.net###header_AD +||itc.cn/hdpv.js +jmbbs.com##.middle_guanggao +||gd.189.cn^*.htm?SP=$third-party +||ultmjevd.xyz^ +||sobaigu.com/images/server_tourist.jpg +||bbttf26.shop^ +eeskill.com##.channel-featured-adv +@@||i2.bahamut.com.tw/JS/ad/animeVideo.js^$domain=ani.gamer.com.tw +||weagehn.icu^ +@@||bdstatic.com/static/common/widget/ui/admanager/ +novipnoad.com#?#.video-item:-abp-has(img[src*="/bd/"]) +admaimai.com##.in16_w01 > div[class*="_ad0"] +||6park.com/img/*0.gif +||gslejoki.xyz^ +||165tchuang.com^ +||wioboy.xyz^ +||pb.shuxigua.com^ +d1xz.net##.base_ad_300_250 +kocpc.com.tw##.sidebar:nth-child(2) +||tingroom.com/images/z923.js +||autohome.com.cn/Topic/RobotVideo? +newtalk.tw##.dable_response +cbmland.com##div[id^="ads_"] +||imndl.icu^ +||ithome.com/images/productgif/pcmaster.gif +||sakguz.icu^ +||svhdbmp.cn^ +||arkkcu.xyz^ +@@||kf.cn/ad/css/*.css +||lnd.com.cn/sys/real_calc.js +bilibili.com##.adcard-content +58.com#?#LI[sortid]:-abp-has(.icon-jingxuan) +speedtest.cn##.speed-top-ads +||vpqko.fun^ +||bdstatic.com^*/fullpage-pop/ +||vansky.com/agdg/Individual/ +||shbznkj.cn^ +||6park.com^$subdocument,badfilter +chinanews.com##.add3 +||asyy6.com/dm/ +airav.cc###diy_right +fdc.com.cn##.yifangbanner +douyu.com##.hot-sign-1 +codexiu.cn##.blog-twitter:first-child +||xinhuanet.com/iframe/ad +||milimili.tv/js/loadjs/jquery +||pan.baidu.com/act/api/activityentry? +||17house.com/zt/style/*_banner*.js +lalulalu.com##.overture_banner +@@||tt1069.com/advert.js +litv.tv##body > .right_float_poster_container +||abdd*.com/js/abc/ +zol.com.cn###Article_Top_Banner +@@||58huanbao.com/skin/defaultcs2660/images/ad +||*xav.*/guang/*.gif +||tu2.taohuaimg.com^$third-party +||pexavfro.xyz^ +||jrjimg.cn/ad/ +cool-de.com##.bustopads +1688.com.au###top-ad-layout-new +firefoxchina.cn##.chip-banners +||gaoqing.la/wp-content/uploads/*banner +||cartoon18.com/images/friend/ +||hweriou.top^ +||n0633.com^ +||yimuhe.com/n_ad/ +@@||fltaradio.com/js/ads.js +baidu.com##.ec-fc-ad-results +||synergyat.work^ +||alicdn.com/kf/Hd62261f1a7964c50824ac5982b1aa1bfk.gif +sina.cn##.midThreeAds +kdslife.com,pchome.net##.weixin +||rpeutxu.icu^ +||chazidian.com/czd_gg.js +yunpan.com#@#.share-wrapper +||w3cschool.cn/attachments/image/20170919/1505817817281252.jpg +||tc911.vip^ +weibo.com#?#.card-wrap:-abp-has(> .card-film > .card-head > .title:-abp-contains(广告)) +||fgttbz.xyz^ +cgown.com##.breadcrumb-gg +||infobabo.*/da.aspx +sohu.com###turn-ad +||cp.qbaobei.com^ +159i.com#?#:-abp-has(> img[src*="gif"]) +||zhifuok.com/19xa.jpg +||xn--2qu96gouvko1a.com^ +gameapp.qq.com##.act-tips +||alu.cn/Ashx/AjaxGuangGao. +||4imk5.online^ +moe.best###rcm_sidebar +cnki.com.cn##.mainboxconbanner +boylove.cc###fake_avivid_waterfall_webpush +||dailynews.sina.com/gb/ads/ +netfly.*,netfly.tv##.container-slide +||sinaimg.cn/large/6f8a2832gy1g7qyw7suqjj21400p0ake.jpg +||66308888.com^ +msn.cn##.consumption-page > above-river-block +||yptqys.tianqistatic.com^ +ettoday.net#@#AMP-AD +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_left > div.result[data-cost]:has(.c-row > a[target="_blank"] > span:contains(腾讯广告)) +@@||fm.ipinyou.$domain=ipinyou.com.cn +dzbhdm.net##a[href*=".weixin.qq.com/"] +||hybbs.com/i/$image,object +||nzydzsw.com^$third-party +||chinaz.com/images/210x175.jpg +firefoxchina.cn##.side-tpth +|http://*.me/ad/ +@@||szhr.com.cn^*ad +chexun.com##.ad794 +jxnews.com.cn##.ad120050 +@@||tenpay.com/v2/res/pub/cps/main/bottom_ad.js +@@||freedidi.com^$generichide +||nqbcf.cn/html/top +360kan.com###js-eb-bottomad +||cpmlwhra.xyz^ +||iporn.world/attachment/ad/ +hepuwang.com##.n5_dbhfad > .wapper +||it610.com/views/front/js/special/ +||jrj.com.cn/s?z= +||ddshu.net/a_d_code/ +@@||yesiget.i234.me^$generichide +itdog.cn##.top_contents +||23qb.com/ak +91danji.com##.zlVideTowNav +||excelhome.net/js/banner- +sina.com.cn##.gamead1 +bamxs.com###inglestore +tianhaohz.com##span[style="display: block; clear: both; overflow: hidden;"] +||pwrgcxaj.icu^ +51ztzj.com##.dtmwrap[style="height:75px;background:#fff"] +game735.com#$#div[id^="gklobl"] { height: 1px!important; } +china.com.cn##a[href*="dwz.cn"] +||d1.zhuangxiu6.com^ +||470kk.com/js/indextop.js +||nsclick.baidu.com^ +game.eroge.xyz##a[href^="https://ffab.rqatmd.com/"] +||imageoss.com/images/*_GIF2400x120_ +||zjdruhn.xyz^ +||gegeyingshi.com/template/*/images/g_js/ +||jinnanyq.com/js/zmjw. +sinoca.com##td[align="center"][height="90"] +||btvbnrwo.icu^ +qq.com##.ad-long-pic +bkjia.com##.art_rightad1 +baidu.com##.guide-to-univer-app-root +wealth.com.tw#?##root > div[class] > div[class]:matches-css(z-index: 4):has(> button path[d^="M16 4c6.627 0 12 5.373"]) +m.toutiao.com##.recommendation-container + div[class] +||4399sj.com^*/mask-ad +iqiyi.com###adflash +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,domain=xiebruce.top +yahoo.com##li[id^="gemini-ad-"] +qianzhan.com##.qqonline +actoys.net##.p_new_ad +||youzhan.org/img/aliyun- +||jjj*.com/static/js/common.js +||fppcrl.xyz^ +||optaim.com^$third-party +@@||icantw.com/platform/cover_ad/cover_ad.js +||dwhyjwrw.xyz^ +alipay.com###J-cooperant-banner +||pw2ct1.asia^ +||car.qcmrjx.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > style[id^="s-"] + div[id]:nth-child(2) +||wples.com/pc/common.js +||360doc.com^*.html?t=$badfilter +||cycvyo.xyz^ +||qwsanan.top^ +gbyhn.com.tw##.footer-widget-column +a9vg.com##.a9-back-top_qrcode +||huanjugu.com/dm +||baijs02.shop^ +||ziyzcu.buzz^ +||u4ccj.icu^ +briian.com##.hentry-gad +@@||jiav000.com^$generichide +ifxtx.com##.ppsy_content758 +iwan.baidu.com##.banner-container +ali213.net##.video-window +||m.bjdcfy.net^*.js +silisili.in##.play_ad +cnlmjx.com##.yw_ad +||ad.youku.com/vp? +||tupian9999.com^ +||555bbb555www.com^ +||vfdvdfv77.fun^ +||gdmm.com*/mybt/ +||eepw.com.cn/pub/js/TopFullScreen.js +||feakio.top^ +||qqainj.cn^ +||chunyuqiufeng.com^$third-party +@@||github.io/videojs-ima/node_modules/video.$domain=setn.com +sina.cn##[href*="://sax"] +rouman5.com#?#.col-md-4 > div.row:has(> div.col > h5:contains(支持一下吧)) +maxthon.cn###top-slider-ad +||idcot.com^ +||pconline.com.cn/js/ivy.js +haiwai.com##.container + .fixed-bottom[style^="box-shadow:"] +||999xx333kk.com^ +@@||ntust.edu.tw/bin/showads. +mh160.com###jusha1 +||sina.com.cn/NewIndexAdStart.js +cnool.net##.second-banner +litv.tv##.ad_impression +189.cn,vua.sh,weiyun.com,youdao.com#@#.share-link +||analystrati.com^ +zh141.com###text1 +||manage.wdfans.cn^ +waipian1.com,waipian2.com,waipian3.com,waipian4.com,waipian5.com,waipian6.com,waipian7.com,waipian8.com,waipian9.com,waipian10.com,waipian11.com,waipian12.com,waipian13.com,waipian14.com,waipian15.com,waipian16.com,waipian17.com,waipian18.com,waipian19.com,waipian20.com,waipian21.com,waipian22.com,waipian23.com,waipian24.com,waipian25.com,waipian26.com,waipian27.com,waipian28.com,waipian29.com,waipian30.com,waipian31.com,waipian32.com,waipian33.com,waipian34.com,waipian35.com,waipian36.com,waipian37.com,waipian38.com,waipian39.com,waipian40.com#$#.player-rm > a[target="_blank"] { position: absolute !important; left: -3000px !important; } +mop.com##.rel-item-gg +||mfnfylx.xyz^ +baike.baidu.com##.baike-dynamic-wrapper +||eejwvwoo.xyz^ +||sex141.com/img/banner/ +||273knt.xyz^ +litv.tv##.internal_bn +bbs.my0511.com##span.smalltxt +||ieapak.xyz^ +pconline.com.cn##.hongbao_1111 +||kekmhvbb.xyz^ +||dvnqhdmze.xyz^ +android-doc.com,apk.tw,chaojizhibo.net,chtoen.com,dizhishengcheng.com,doitwell.tw,epinv.com,ff14angler.com,fxpan.com,haoweichi.com,logi.im,lspdfrcn.com,moa.tw,moe48.com,numberempire.com,playok.com,reh.tw,shenfendaquan.com,vaptcha.com#@#ins.adsbygoogle[data-ad-slot] +||scoev.cn^ +ruanyifeng.com#?#.asset-content > p:-abp-contains(/二维|助教|0 元|报名费|原价/) + p > img +://adv.$domain=~adv.ru|~forex-tv-online.com +||bthypgm.cn^ +soft.macx.cn#@##googlead1 +||hp8g6.icu^ +sohu.com##.sidebar.right > div.extend-mod +||taotaogeren.xyz^ +||omheth.com^ +||gth112.com^ +liues.cn##.widget-graphic-cover +esu.moe,esu.wiki###ASSPC +soyunpan.com##.jmwb +volcore.xyz##.avd2 +laosiji.com#@#.sns-wrapper +||wqzmed.cn^ +||ik123.com/js/dd.js +||ifkdy.com/_nuxt/44e01dcef4aa1a21d9a6.js +||cww.net.cn/js/urdev.js +://8ox.cn/$third-party +le.com##.lay_title[style^="width:490px;height:60px;"] +||itbulu.com/banner/ +||zzbaike.com/main/*-20 +||kmwclt.xyz^ +||dian500.com^$third-party +vsping.com##div[style^="border-radius: 10px; box-shadow"] +||158zm.com/head.js +||lftpvh.xyz^ +||weste.net/js/showpagead.js +||1.hnyouneng.com^ +gdmm.com###hd > .wp > .module +xinhuanet.com##.adv-column2 +haianw.com###comiis_haianw14 +@@/adguard.$domain=llq.dml.ink +pcbeta.com#?##toptb ~ #wp > *:not(div):not(style):not(ul):not(script) + div[class][id]:has(div[style="display:none"]):has(script:contains(window.slotbydup)) +||wangjing.cn/images/js/YlFloat.js +||docin.com/building/getAdvById. +iplaysoft.com##[style*="width:3"][style*="height:2"] +:800*/d/*n=$script,third-party +||oauqyw.xyz^ +||08088.top^ +jijidy.com###box +||b1.b2b168.com^ +nextapple.com###lrec01 +9xav.cc#%#//scriptlet('remove-class', 'q-body--prevent-scroll', 'body') +wendu.cn##body > div[style^="width:1000px;"] +||cdn.wo.cc/wo.js +boylove.cc##.reader-home-swiper +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###platform_spread_video +||lmvotk.cn^ +||vkdgdt.xyz^ +||1.shopit.cn^ +bilibili.com##a[data-target-url*=".taobao.com"] +||fx110.*/Scripts/1.0.0/gulpmin/Ghz/ +help.xunlei.com#@#.a_fr +zrblog.net##.ad_h +sina.com.tw##div[style="height:156px;width:570px;margin:0px auto;display:block;"] +cnstock.com##.newslist[style="padding: 10px 0px;"] +163.com##.idx_textlink_ad +javdove.com,javdove2.club,porn5f.com##.preroll-adv-popup-overlay +||firefoxchina.cn/chome_pmt_ +||doujs03.xyz^ +||cssqt.com/a/images/indexsd.gif +kknews.cc,read01.com##.axslot +||qrwcss.xyz^ +1010jiajiao.com###daan_recommend + .xiti +uuzzw.com##.topmedia +||gg.taoseyy.cn^ +||wscewc.xyz^ +||jianshe99.com/lamu/ +blog.163.com###loftertextlinkad +#@#.has-ad +||blzwvb.xyz^ +||udb3n.icu^ +#%#var AG_abortOnPropertyWrite=function(a,b){var c=Math.random().toString(36).substr(2,8);AG_defineProperty(a,{beforeSet:function(){b&&console.warn("AdGuard aborted property write: "+a);throw new ReferenceError(c);}});var d=window.onerror;window.onerror=function(e){if("string"===typeof e&&-1!==e.indexOf(c))return b&&console.warn("AdGuard has caught window.onerror: "+a),!0;if(d instanceof Function)return d.apply(this,arguments)}}; +||czsp12.com/api/*=advert& +||uuresdt.top^ +||dataoke.com/api/component/code-info/v1? +baidu.com##.spread-wrap +||ac.art456.com^ +||d6.mobaders.com^ +||bellessb.com^ +cnblogs.com###blog_c1 +||liangjan.com/js/show_ +gucheng.com##.right_info +cnbeta.com.tw,qudong.com##a[href*=".ctyun."] +||tmvebl.xyz^ +@@||hopto.org^$generichide +||olltcqg.xyz^ +ifeng.com##.ad05 +mydigit.cn##.radi +pinggu.org##.mui-mbar-tabs +52fzwg.com,79tao.com,hqol.cn,icabbs.com,k7d.com,kxdao.net,mcncc.com,sunwy.org,twunbbs.com,wnflb.com,wnflb2023.com,wnflb66.com,xkeba.com,zn508.cc##.GzList +@@||e9china.net^$generichide +rvlev.com,t66y.com#?#.tpc_content:-abp-has(>b:nth-child(n+50)>span>a[onmouseover="this.style.background='#DEF5CD';"]:-abp-contains(91TV)) > :nth-child(-n+55) +||999d.com^$third-party +||ifeng.com/showjs?*apids= +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.hgame_mod_theme1 +||acdwef114.cn^ +zhenbuka.com##.jq-toast-wrap +||zopuqv.icu^ +||qiyipic.com/common/*/kehuzhuanqu +@@||morosedog.gitlab.io^$generichide +discuss.com.hk#$#iframe[width="728"][height="90"] { position: absolute!important; left: -3000px!important; } +@@||edu.cn^*/ad.css?$stylesheet +actoys.net,hualongxiang.com##div[id^="ads_d_"] +@@||google.ru/translate_$media,third-party,xmlhttprequest +||thepaper.cn/bottomBanner_ +6789.com##.mm-force +||gffedashb6.fun^ +||sdo.com/static/image/mkads/ +||z1.pclady.com.cn^ +||img50.pingguolv.com^ +||ipsoazr.icu^ +||alicdn.com/kf/Ub1be4a53456c4dd2a7dbc839969ed856a.gif +sutin0831.pixnet.net#$#div[class*="-ad-sidebar-"] { position: absolute!important; left: -3000px!important; } +||kuke99.com/static/home/js/index/index.js +||iyxdm.*/js/gad_ +||brtlisv.top^ +e0575.com###img2 +||ly55442.com^ +||apple886.com/subs/*.js +@@||noahedu.com/ad/$~third-party +423down.com##h3 > a[href^="https://mp.weixin.qq.com/s/"][target="_blank"] > span +||dyzgdp.xyz^ +||api.live.bilibili.com/*/Banner +||e9377f.com^$rewrite=abp-resource:blank-mp3,domain=eastday.com +||jiaoben.jucanw.com^ +||mitbbs.ca/ad_ +qq.com##.jpBanner +||kocpc.com.tw/adsbyso.js +||wouvxlie.top^ +||zhihu.com/sku/km_resource?token=feed-right-banner +||grtarpcf963.top^ +||downyi.com/tg/ +cnool.net##.banner-ad001 +letv.com##.newyear_red_bot_wrap +kq7.com##.J_appFromLen +@@||mccm88.com^$generichide +||61.10.2.86/dev/xopen.php +||sjgsgy.xyz^ +||zhibo128x1.xyz^ +baidu.com###search-union-ad +zhenbuka.com#%#//scriptlet("prevent-setTimeout", "ad_ids") +nownews.com##[class*="Side_"] div[class=""] > [id^="dfp-"][style^="width:"][style*="height:"] +heho.com.tw##div[id^="heho-ml-"] +||ckyriuf.icu^ +aeink.com##p[style*=".alicdn.com/"] +||ilvqyya.cn^ +gaokao.com##.adout116 +fx361.com###k_s_ol_chatWin +||china.chemnet.com/cnbanner/ +chiphell.com###diy2 + div +||yjxzvqy.xyz^ +||eastday.com/static/js/ad +||ad.52av.tv^ +||ifeve.com/wp-content/uploads/*/cachekit +ouyaoxiazai.com##.ad_show_1 +||baijs010.xyz^ +||elvirassb.com^ +159i.com,movieffm.net#@#.adsBox +niutuku.com,sina.cn##.bannerAD +||gybyxsy1588.com^ +||js.jstucdn.com/js/ad_37cs.js +youku.com##.sub-slides-wrap .swiper-wrapper > .swiper-slide:has(> a[data-intactspm*="drawer1.d_yk_ad_"]) +@@||uukanshu.com^$generichide +||kantie.org/a/images/car.jpg +||a.yuzhainan.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_banner +||atool.org/res/ads/ +||zt.chuanke.com/?mod= +tigtag.com##.couplet_l +wiki.mbalib.com###p-ad-bd +||qiyipic.com/zongyi/fix/mxdj +||591hx.com/images/0000.jpg +||xtcxflak.xyz^ +52bdys.com###ayx > img +||cijianggun.com^ +||acwifi.net/wp-content/uploads/2019/11/20191119.jpg +||127.net/m/*/promPic.jpg +||gjhjjhgc.cn^ +||uqcktxp.icu^ +alypw.com##.adbkk +||t1.612.com^ +||1.95ye.com^ +||qkgllif.icu^ +||meilunsc.com^ +||xlpu.cc/adv/ +iqiyi.com##.ggwBox +csgoob.com#?#div[class^="dark:shadow-none"]:has(> div.ant-ribbon-wrapper) +||tupian88888.com^ +rfidworld.com.cn###placeHolderR +||1234good.com^ +||unpkg.com/hjadu/ +olehdtv.com,olevod.eu##.guangao +||yqlxwb.icu^ +||88lm15.com^ +||cxsh.cn.com^ +unwire.hk###post-sidebar-ad +||e.so.com/search/pcnew? +||mznizrhd.xyz^ +||ftdbtko.xyz^ +||fkesfg.com^ +sonimei.cn##.style03 +||wewrute.top^ +||24cmm.com:8888/js +||sdnc.top^ +mcdulll.com##.pixnet-ad +||sfjslib.top^ +ssnn.net###float_picr +||vuvnix.icu^ +aliyun.com##.aliyun-delivery-view-container +||aidmat.icu^ +ifeng.com##.adbest +weiyun.com#@#.page-share-box +nen.com.cn##.w610 +dapenti.com##a[href*="sq.cc"] +||1024mzs.pw^$popup,third-party +||actoys.net/js/beitou.js +nownews.com#?#div[class^=" margin10_"] > div[data-reactid] > a[class^="clearfix box_"][data-on="click"]:has(> .right > [class^="category_"]:contains(Sponsored)) +||ljpbtjq.xyz^ +@@/adbanner/*$domain=bsgroup.com.hk|fjt2.net +||miaoshangmanhua.com/template/pc/skin01/images/250_250. +||8h93.com^*.gif +||gscsahv012.com^ +||yui-nya.com/wp-content/uploads/2016/12/neta370-370.jpg +||xdttxdqe.xyz^ +||kiees.cn/k1.js +||mdhv3.icu^ +baidu.com##.fufei-activity-bar +@@||pos.baidu.com^*?di=u3160754&$domain=bigpixel.cn +fx110.com##.matrix-banner +||umrstfl.cn^ +||cdnlog.zhenai.com^ +iask.sina.com.cn##.sj_680x250 +@@||ruten.com.tw/js/jquery.ruten.supertop_ad.js +||yes1.feng.com^$domain=feng.com +ibaotu.com##.comVip-tg +gzmama.com###mdvtips +douyin.com#?##videoSideBar:-abp-has(div:-abp-contains(/商品|商家|退款|店铺/)) +52pk.com###baidutop +yahoo.com##.wrapper-border > .Pos\(r\) > .VideoPlayer.D\(b\).Pos\(r\) +||hudong.com/11/85/26100000005581147339859649123.jpg +vansky.com##.safari_pop +ssyy.ee##.container > a[target="_blank"] > img +sm.cn###download-uc-v2 +@@||adnet.qq.com^$~third-party +||whdx.cc/js/ +||sohu.com/api/labs/hotnews/c/load? +||6efgcdcjr000.fun^ +||muer.cdn-baidu.fs-sywh.com^ +eyy5.cn##.wzgg +||bumimi.com/money/ +||cnfol.com/pc/Js/as/ +benxiang.com##.ad_ld +||kvpqrydt.xyz^ +||stat.yunfan.com^ +||wbaj.cn^ +||51miz.com/index.php?m=Ad& +sina.com.cn##.fl_feedFous +coolsaid.com##iframe[src="http://coolsaid.com/gmifr_lei.html"] +||qdzyspjx.com^ +huya.com##.room-business-game +||cbcgqs.xyz^ +||duba.com/wangmeng/ +51cg1.com,h3ugz0.arwiotgiy.com,h3ugz1.biyuhcltj.com,h3ugz2.lrjhvntu.net,h3ugz3.ogvoxarpd.com,h3ugz4.uovxifzj.com,h3uaz0.ogvoxarpd.com##.post-card-ads +girlstyle.com,thecatcity.com,urbanlifehk.com##.pl-main-article__ad-block +||126ccb.xyz^ +cool-de.com###fwin_popadv +||ali213.net/static/js/*_ali213tv.js +maomaomom.com##.textwidget > table[width="1050"] +mydowndown.com#?#.bs-component:-abp-has(>a[href*="97jez.com"]) +ithome.com##.indexV2 > div > a +360kuai.com##.detail-top-banner +@@||91wii.com/source/plugin/unadblock/adjs_pic_cpc_cpm_cpa_guanggao_gg_ads_250x250.js +||alicdn.com/img/ibank/*_!!3820217494-0-cib. +iqiyi.com##.kwltp-leftgg +||6669667.com^ +dayanzai.me##.rban1 +||bd1.yidu.cc^ +||duiwai.baidu.com^ +my0511.com###idxtelecom +||gdcytv.cn^*.gif +7itv.com,fengchedmp.com,hdwan.net##body > div[style] +||fotaxf.xyz^ +||ljbrbz.xyz^ +||70url.com/aiaike/bood.js$domain=yingwangtv.com +||dzwww.com/k.js +wealth.com.tw#?##root > div[class] > div[class]:matches-css(z-index: 4):has(> div[class]:matches-css(height: 250px)) +muzhi.baidu.com##.leftnest +||cnqaaa.xyz^ +@@||hinet.net/keys/a.key^$domain=ani.gamer.com.tw +||btc.com/v1/poster/production/explorer-banner. +autohome.com.cn##.monkey_box +caikuu.com##.photo_abv +||dfhgry.com^ +||kuaidiwo.cn/kdwkxmlt.jpg +||lxtuzcb.cn^ +||iqveat.icu^ +42xz.com##[onclick*="godownload"] +oilchem.net##.LzAdv +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.worldcup_info_banner_dialog +://m.*.cn/*.xmtl?$third-party +hdshare.cn,it168.com###adv +tieba.baidu.com##.post_client_down +||hexun.*/hxpage/index.html +ettoday.net##div[id^="abp"] +||akabebe.com/jgg/*.gif +||yeshefb.com/template/conch/dd/ +@@||eslite.com^*/ad +fishpi.cn##a[href*="guangdianhong.com"] +||epebuk.xyz^ +||uuishsa.com^ +||6699fa.cn/js/ +||auislq.top^ +360kuai.com##.novel_galery_icon +it168.com##.fu1020_box +suopao.org##.tr3.t_one[onmouseout] +||rou.video/js/exo.js +||woxwhfdo.xyz^ +||ylwrdnrw.xyz^ +||uebohjhh.xyz^ +||chazidian.com/statics/images/wangke.jpg +||djecgyk.icu^ +||u0082.com^ +||tiexue.net/zgg/ +mydigit.cn##.view-hover[channelid="smzdm"] +||gsywcc.xyz^ +||kfocken.icu^ +||zlyk.com^*/ysapp. +eet-china.com#?#.new-list > ul > li:has(> div.li-row > div > h2 > a[href^="http://pubads.g.doubleclick.net/gampad/"]) +||tc8ji.website^ +ifeng.com##div[class^="topBox-"] +||mwerilxx.top^ +||hltoon.com/hanman/static/dist/ppm/js/foot +porn5f.com##.preroll-adv-popup-iframe +sinami.com##.banner_rightBottom +buzzorange.com#?#.sidebar > section[id^="text-"]:has(> .textwidget > .dfped) +||koauq.top^ +image.baidu.com#?#.newfcImgli:-abp-has(.fc-ad-tip) +@@||wl.jd.com/joya.js +||tdipsumi.top^ +||pccoo.cn/js/dlv1.0.js +||szdtf.cn^ +||panc.cc/uploads/hongbao.png +||zgm1.com^ +jmw.com.cn##[class^="advertising"] +||ccb.com.cn/V5/images5/left0.gif +||imall.cntv.cn^ +bejson.com##.modal-backdrop +||mvxz.com/boximg/ +||af9dc9.xyz^ +||dssddf33.fun^ +||dianping.com/mkt/ajax/getNewItems +||guess.h.qhimg.com^ +||xibfnb.xyz^ +3dmgame.com##.add_ +wasu.cn##.info_ads +||euresdw.top^ +itboth.com,itkeyword.com##.ad_pop_left_txy +||bwuwirv.cn^ +csdn.net###layerd +sogou.com###appNewsBtn +3dmgame.com##.Tonglan +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="900"] +bilibili.com##.bili-video-card:has(.bili-video-card__info--creative-ad) > .bili-video-card__wrap +||ectyet.top^ +||hc360.com/js/build/source/widgets/flowbao/flowbao.js +||bdgg.qjy168.com^ +ntunhs.edu.tw,ntust.edu.tw,sjsmitaa.org#@#.module-ads +||allkmbr.icu^ +duote.com##.links-banner +fun1shot.com##a[href^="https://kenio.cn/"] +?frm=*&ct=*&dit=$third-party +||ymdxl.com^ +jin10.com###J_wdgg_t +||kemmars.com^ +||aiai123.cc/js/*.js +ifeng.com#?#div[class^="titleImg-"]:-abp-has(span[class^="source-"]:-abp-contains(推广)) +freedidi.com#@#.adsBanner +||tlanyan.pp.ua/wp-content/uploads/meomiao.png +news.gamebase.com.tw##.PcRightHomeMiddleAds +ruanyifeng.com##a[href*=".apeclass.com"] +league-funny.com##.right > .fansCard +55haitao.com##.bbs-bottom-popup +||zhengliyqq.com^ +fastadmin.net##.article-section + div .img-responsive +blog.csdn.net###article_content > link + a +douyu.com##.giftbox +||easou.com/online/banner/ +v2rayssr.com##.slider-4-box1 +||so.open.163.com/v/list.htm?pid= +pc.yiyouliao.com##.yyl-video-list-item-width +||ykxafzdu.xyz^ +ltn.com.tw##div[id^="compass-fit"] +||gaofen.com/source/plugin/gaofen_ad/ +djwma.com###logo +cnblogs.com###xiaociguai +neatstudio.com##a[href*="&cps_key="] +||a1.51shiti.cn^ +||cnfol.com/f=ud/Js/Ad +affyun.com##.text +||bkjia.com/bkjia/js/artitle.js +@@||xianzhenyuan.cn/data/attachment/common/guanggao/adjs.htm +||xyj321.com/static/xyj/js/foot_slide_bar_ +tw.yahoo.com##.travelads +||pmzlnt.xyz^ +douyin.com###videoSideBar iframe +||hdtu.oss-cn-beijing.aliyuncs.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.content_top +sogou.com###PZL +||crjeymh.cn^ +neihanshequ.com###pageletTopBanner +||t1.xuefen.com.cn^ +pornlulu.com,pornbest.org###fullPageModal +baidu.com##.icon-bdad +@@||cdn.jsdelivr.net^$script,domain=movieffm.net +||by4d.com/love/ +qzone.qq.com###appCanvasTodayRecom +ccav1.com###nav-menu > ul > .menu-item > a[href^="http"]:not([href*="yigujin."]) +2cto.com##.adv980 +cnfol.com##.wid390AdBox +||slcmvgr.icu^ +bioon.com##.grid_6 +||so.com/resource/js/mod/detail/business. +@@||citytalk.tw/js/ct/common/v3/ui/fblike/FBLike.html +pcbeta.com#%#//scriptlet('abort-on-stack-trace', 'document.createElement', 'make_rand_div') +||wacisi.xyz^ +||halct.cn^ +olgame.tw##.nex_floor_banner +jxdbg.com##.indexmv +||meijutt.tv/js/layer/mobile/layer. +159i.com,china.com.cn##.ab +||hl.dyq.cn^ +||bshare.cn/bshare_view?Callback= +||meizhou.com/images/topbanner +dzbhdm.net##a[href="https://www.dzbhdm.com"] > img +||ktauoy.xyz^ +xgrb.cn##.d_2016_ggw +sac.net.cn###leftDiv +kpd122.com,ssp28.pw##.index-owl-carousel +hk.yahoo.com##div[id^="my-ads"] +1616.net###toplink +ettoday.net##.adHint +||xxl.bt-xd.com^$third-party +||amsbce.xyz^ +baidu.com###index_banner_top +||dn*.ixinwei.com^ +||feesoon.com/js/cnzz_ +||162ck.com/v*.js +||valerieurania.com^ +ytbbs.com###dd1 +gamer.com.tw,~buy.gamer.com.tw##a[href^="https://buy.gamer.com.tw"] +ctfile.com##.speedydown-info-box +tvsou.com##.story_ad_content_footer +atyun.com##.coupletbox +qq.com##.aaddvv__list +||heloisessa.com^ +||fvpboxu.xyz^ +||site-bk.oss-cn-shenzhen.aliyuncs.com/img/aliyun/ +||haiwainet.cn*/k.js +||jsgapai.icu^ +v.youku.com##.advertise-layer +baidu.com#@##results > div[class]:not(.result):not(.result-op):not(.sp-rslt-bar) +||azureedge.net/wp-content/cache/minify/3c6d7.js +||vuyibsm.icu^ +tianshif.com###comment-ad +85novel.com,digitalocean.com,ikjzd.com#@#.ad-content +||autoimg.cn/club/v1Content/images/heycar1111.jpg +||wkabios.icu^ +baidu.com,bdimg.com,tieba.com##.shield-agent-tb-feed +zhiding.cn###MgBox +yaya0506.com##iframe[style="border: 0;"][width="100%"][height="280"][src^="//www.12beststar.com/"] +msn.cn#%#//scriptlet('inject-css-in-shadow-dom', '#entry-point-hp-wc-root-wrapper[style^="margin-top:"] { margin-top: 0 !important; }') +3dmgame.com###index_bg_box +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.0.commercial.jumpUrl', '') +||arewcdf116.cn^ +6fzd.com,fzd3.com###comiis_app_block_84 +stockstar.com###dhwzl +||hh010.com/static/image/fff/ +||fq02.shop^ +||bdstatic.com/tb/cms/ngmis/file_1417585299140.jpg +||zpcj8.online^ +||qiyun.org/images/js/*.htm +qianlima.com###float_mask +||frgf99.fun^ +mafengwo.cn###ad2 +||bs.baidu.com/app-ads% +airav.cc###Right_Panel > div[style^="margin-"] +chinanewsx.com##a[href^="/go/"] +||wefihob.cn^ +||google-analytics.com/analytics.js$script,redirect=noopjs,important,domain=ebb.io +1kkk.com,dm5.com,dm5.hk##.adform_2 +smzdm.com#@#.comment_share +xiazaizhijia.com###gg_2 +||sinaimg.cn^$domain=88files.net +||rugao35.com/Public/config/Couplet/Index +itbaoku.cn#%#//scriptlet('set-constant', 'killads', 'true') +||klfbnklddfbkn.com^ +cnfol.com##.Ad1000 +4399.com###ads1_1 +hkcards.com###ad-slot[style="min-width: 300px; min-height: 300px;"] +18comic.vip##.tab-content + .row:has(> div[class] > div[class] > .group-notice) +||hao123img.com/res/js/track.js +||zhulong.com/detail/floorOneAd? +csshello.com###topgg +||u0062.com^ +koolearn.com##.show_ad +dongao.com,zgsyz.com###ad +gvm.com.tw###colorbox +@@||bcebos.com^$script,domain=biququ.info|jingwubook.com +0597kk.com###cool_fixed +||elecfans.com/skin-*ad_ +||rgmmeff.icu^ +imydl.com##div[id*="banner"] +||analytics-union.sandai.net^ +||pexels.com^*/sponsored_ +||kzepp.com^ +||xcar.com.cn/dsp/ad +||imageshh.com^ +chysg.com##img[width="232"][height="90"] +haianw.com###comiis_haianw01 +||youth.cn/qwtf2015/ +caoporn.com##.jw-icon-replay-contain > div[style^="display: block; position: absolute; background-color: white; width:"] +baidu.com###knowledge-answer +||fhtfnb.xyz^ +||jyewkb.icu^ +med66.com##.banner +||qange.com^ +||wuliao.juqingba.cn^ +haosou.com###haosou-banner-left +||kpmose.xyz^ +||pozrwj.icu^ +||mat1.gtimg.com/ent/flash/*300 +liaoningmovie.net#$#.app-container[aria-expanded="false"] section.with-ad { width: calc(100% - 20px) !important; } +||yeyemo4.com^$third-party,image +moegirl.org.cn##.moe-card[data-region="oversea"] +||yijfdsu.cn^ +||pcmx.autohome.com.cn/impress? +||5dmail.net/js/ +www.pixnet.net###extradiv2 +||23img.com^*/qomnyi. +||51offer.com/mod/public/talk/ +||liveany.com/images/8d8d.gif +jthysh.com##.box980 +||alchemeeten.com^ +||pm.poqwua.cn^ +liba.com##.advert-r +||av-yoyo.com/images/*.gif +||so.auto999.cn^ +zhongkao.com##.focusBox +||skaumbp.icu^ +||aitaotu.com/style/js/aitaotu +||dfcfw.com/EMFloatFrame/ +||jgygtv.cn^ +||bd888.qizuang.com^ +||bilibili.com/x/web-interface/archive/special/recommend?aid= +zybang.com##.question-below-text +feng.com##.dd305 +||gxzhshop.com^ +||partner.googleadservices.com^$third-party +||ichc1.xinglinpukang.com^ +china.com.cn##img[width="665"] +40407.com##.bg_r +||vjnxpj.xyz^ +instrument.com.cn###leftFlash +||btkat.com/style/l.js +||fenxiangdashi.com/Res/js/detail_ +firefoxchina.cn##.ff-banner +||qilanxiaozhu.*/data/attachment/portal/ +||tqznjujv.xyz^ +haoduoyun.cc#?#.ebookRight > div.tb_cell.mb10:has(> div.listcell > div.lc_head >h2:contains(课本赞助商)) +||mqcoycx.icu^ +5imx.com###diy_mxad04 +||113.105.248.169^ +||wymqjow.icu^ +||pro.cn^$third-party +||dianping.com/hippo.gif? +@@||ttkdex.com^*ad$~third-party +||niwota.com^$third-party +bbs-mychat.com###cate_top > tr > .f_one +||srmsii.xyz^ +typecho.wiki#@#.downloadad +perfectmatch.tw#@#.right_ad +360doc.com##div[style^="height: 90px; padding-top: 13px;"] +||iairuo.xyz^ +||jialingmm.net/img/gdw.jpg +||fang99.com^*/advjs/ +huaban.com,zcool.com.cn##.ad +159i.com###header + div > style + div[class] +||nwpcptmm.xyz^ +oneinstack.com##.w-ad +96weixin.com##.pop +tw.yahoo.com##[class*="has-beacon-click"][data-wf-beacons^="https://*.gemini.yahoo.com/"] +iqiyi.com#%#//scriptlet('json-prune', 'data.template.tabs.*.blocks.*.data.data.videos.*.ad') +||rotondelibya.com^ +ccav1.com##a[href*="meidebi."] +axiang.cc###photo-sliders + .widget_text +house365.com##a[style*="1200px;"] +cnqiang.com##.rad360 +||gtimg.com/newsapp_ls/0/27161189/0 +ixueyi.com,shangxueba.com###rightfloatdiv +v.qq.com##a[href*=".renrendai.com"] +4399.com#$#body { background-image: none !important; } +||udn.com.tw/upf/*_banners/BD/$third-party +supercloudsms.com##a[style="display: block;"] +chyangwa.net,motorfans.com.cn##img[width^="1200"] +3gsc.com.cn##.tipsA +yes-news.com##.new-index-main-728 +3d66.com##.botfocus +||missevan.com^$domain=jijidown.com +jspoo.com##.apd +||cnplugins.com/templets/cnplugins/pushbox1.js +jable.tv##a[href*="?banner="] +||ymhyw6.lol^ +||kelatv.com/ad/ +tvbs.com.tw###news_detail_div > strong > a[rel="noreferrer"] +||ohdvafp.xyz^ +||bytecdn.cn/ta/resource/v0/analytics.js +||pianbar.net/JS/bootfloat.js +||qnvwjpr.icu^ +myptt.cc#%#//scriptlet("set-constant", "adsbygoogle.loaded", "true") +manhuagui.com##.gg_728 +cm.k366.com##.rightpart td[height="260"] +||wujiupic.com^ +bejson.com##div[id^="shuangshi"] +||3q1lsj.cn^ +news.xfastest.com##.vw-sticky-sidebar-wrapper #custom_html-5 +||cfdns.vip^ +||vvv.ieduw.com^ +blog.csdn.net##SCRIPT[src^="https://csdnimg.cn/release/phoenix/vendor/linkCatcher/linkCatcher.js"] + .t0 +mianhuatang520.com###addiv2 +||misjgy.xyz^ +myexception.cn##.m_a +baijiahao.baidu.com,feed.baidu.com##body > div[id$="-container"]:last-child +yibian.hopto.org##.yb-apng +sogou.com###appRedPackageAd +||guanggaolianmeng.net/plushuan/ad_js.php?aid= +||oqxep.cn^ +letv8.cc,zhibo1.cc#%#//scriptlet('trusted-set-constant', 'adsv', '"Y"') +||enuksg.xyz^ +vgtime.com##.vgart_top +duba.net###login_alert +aliyun.com##.yq-ads-blog +||tzfdc.com/Images/09/flv/flv_index.js +||sdxzqec.xyz^ +||linuxeden.com/plus/web_js.php +ezvivi.com###table1[width="336"] +||baidu.com/ndcore/interface/searchTop? +||iqiyi.com/player/common/rebull +||pconline.com.cn/js/ad_ +@@||aixifan.com/acfun-H5/public/script/sensorsdata. +||reacdf311.cn^ +||lanyes.org/content/templates/lanye2015/images/hb_banner.png +||becode.xiao84.com^ +chineseinla.com##.text-ads-col +appledaily.com.tw##.THISISANADHERE +||uqjqripb.xyz^ +4c.cn##div[id^="top_ad"] +||dongfangtai.com/2018/ +@@/iplookup.$domain=cankaoxiaoxi.com|dongfeng-nissan.com.cn|huomao.com|loldk.com|sina.com.cn +||wjoxqd.com^ +#%#var AG_abortOnPropertyRead=function(a,b){var c=Math.random().toString(36).substr(2,8);AG_defineProperty(a,{beforeGet:function(){b&&console.warn("AdGuard aborted property read: "+a);throw new ReferenceError(c);}});var d=window.onerror;window.onerror=function(e){if("string"===typeof e&&-1!==e.indexOf(c))return b&&console.warn("AdGuard has caught window.onerror: "+a),!0;if(d instanceof Function)return d.apply(this,arguments)}}; +eworldship.com##a[href*="ad_click&"] +@@||alimama.com^$domain=tanx.com +ruten.com.tw###ad-467 +ali213.net##.qztf +||gaoqing.la/wp-content/uploads/*GOOVIS +runoob.com###sidebar-right-re +||7kankan.com/scripts/new/indext +||pjaihds.icu^ +samsung.com###operationBanner +xianzhenyuan.cn##.sd_ad:not(#xztba) +||jieshengit.com/js/*_ +||getitfree.cn/wp-content/plugins/anti- +carousell.com#@#.fb-b +@@||ccb.com^*^ad +ifeng.com##.cont_bottom_YySmall +||ypwlctfk.xyz^ +firefox.com.cn,firefoxchina.cn##.side-mod[track-key="side_tpth"] +bitauto.com###carshow +||abcj.dooccn.com^ +||btn.onlylady.com^ +||leiphone.com/uploads/new/category/pic/*/740x140/ +||iqnew.com/d/js/m/thea +demaxiya.com##.tp_box +||360doc.com/js/index7/mask_index_yc.js +||ijksec.xyz^ +||wwads.cn^$third-party +||opwofty.cn^ +toolfk.com##.swiper-container-horizontal +auto-online.com.tw##div[style="width:728px;height:130px;margin:0;background:#000000"] +||jiupaozi.com^ +||iask.ca/img/*.gif +smzdm.com##.beiwo +hao.360.cn,hao.360.com###top_hotsite +babytree.com##.side-text-slider +||hyusnisu.top^ +ddys.*,ddrk.me#%#//scriptlet('set-constant', 'Object.prototype.canobpreroll_', 'true') +||tigtag.com/images/pic1/ +||hexun.com/inc/popbox.aspx +||sinaimg.cn/finance/*/sideQR +||iztwp.com/images/ +||a.mfcad.net^ +xkeba.com###diy90 +5054399.com##div[id^="gg"] +||uuuutp.com^ +||fxbcc.cyou^ +||jrjimg.cn/stock/adjsok.js +||obzthda.xyz^ +||hao123.cn/images/cp +wuyong.fun##.content-area .adsbygoogle +bigear.cn##.adpicright +@@||microsoft.com/translate/auth +@@||jlthjy.com^$generichide +||jia.com/js/tuku/footBanner_ +||aispyd.icu^ +||vtnmxx.xyz^ +||50m.gkcyc.com^ +||02wq.com/script1/ +||union.china.com.cn^ +hxcpp13.com###player-bottom-ads +||a1.q6u.com^ +||wandouys.com/Runtime/Js/ +||ctvrtrya.xyz^ +10fang.com##.foldcss +zhihu.com##.WeiboAd-wrap +||uuu9.tieba.com^$subdocument +||baidu.com/tcx?*adbanner +baidu.com###cms-company +||1.xilu.com^ +||cooann.top^ +18comic.org,18comic.vip,jmcomic1.city,jmcomic1.win#@?#:-abp-has(>script[src*=".realsrv.com"]) +mobile01.com#$#.modal-backdrop { display: none!important; } +||vfdvdg67.fun^ +tianya.cn###bbs_login_div +mydrivers.com##.main_right_div[style="padding-top: 10px;"] +@@||adservice.google.com/adsid/integrator.js$domain=logi.im +||ryvexulg.xyz^ +easou.com##.ad-charge +||syislob.top^ +||hellogithub.com/v1/advert/ +cn.bing.com##.b_algo:has(.rms_img[src*="=AdsPlus"]) +||sifuwei.com^ +||lgtpdt.xyz^ +guozhivip.com##.tit > a[style="color: #f80"] +||news.jiukang.org^ +||ca2686564a.com^ +||333bbb777bbb.com^ +5068.com,ifeng.com##.gg01 +||eol.cn/js/global/jQuery_ads.js +||aiwanma99.com^$popup +||njtbiml.xyz^ +||8jrc564wtf.cn^$third-party +iqshw.com##.iqshwad-comm +||alicdn.com/img/ibank/*_1847837006. +||hc360.com/js/module/info/info_liuliangbao.js +||tp1902abd.com^ +acgnx.net,acgnx.se##a > img[src^="/images/"] +||count.nuanyuehanxing.com^ +iqiyi.com##.cupid-panel + div +@@/mobileads.$domain=naviking.localking.com.tw +cnbeta.com.tw,thinkphp.cn##.cooperation +@@||v2rayssr.com^$generichide +||momoshop.com.tw/league/$domain=beephone.com.tw +nownews.com##[class^="bg_"] > [class^="clearfix container_"] > [class^="rightSide_"] > [class^="box"] +sina.com.cn##.center-pdps-02 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.life_helper +||baidu.com/tequan/adpadmin_feed/ +||sufile.com/jsa/ +chinamedevice.cn##.logo_ads +linuxde.net##.ad360x500 +pcsoft.com.cn##.xzdz_huodong +tieba.baidu.com##.client_ad_topBanner +||u0067.com^ +||vk923.com/img/ +||cnjxol.com/images/20191031.png +||lywww.com/header_pic.php +zrblog.net###top_nav +@@||qhimg.com^*/monitor_analytic. +||vkguvyg.cn^ +||quyuancn.com^$third-party +||bt888bf.com/da.aspx +||chinaz.com/zt/hanyi/images/sanji.jpg +||ccdm*/Scripts/ccMedia.js +||mphj.com^*Runtime/Js/ +||baojia.steelcn.cn/images/$object +news.99k.tw##iframe[src^="http://news.99k.tw/open/open"][src$=".php"] +||bdcode.youke.com^ +||xiaoz.top/assets/imgurl.js +ltaaa.com##.lAds +||oiuuuc.xyz^ +||da.mgtv.com^ +||666hh999gg.com^ +||wacowla.com/wp-content/plugins/popover/js/ +huaren.us##.article_title_ad_img +||ugpibtpk.xyz^ +||yfzpxnb.xyz^ +||knalzld.top^ +xitongzhijia.net##.m_swift +||eastmoney.com/analysis/ +||zupulu.com/scripts/app/app.js +i-cable.com#@#.video_ad +||ecpoc.com/style/ad +||cibntv.net/youku/*.mp4?$media,redirect=noopmp4-1s,domain=v.youku.com,important +114la.com###dlAD1 +||panda.kdnet.net^ +segmentfault.com###first-ad +||rjzxw.com/include/ +||antpedia.com/antad/ +so.com###qiyu-brand-container +chineseinla.com##div[style^="position:absolute;"][style$=":0px;top:30px;"] +||comm100.cn/livechatserver/chatbutton.*&res= +soft5566.com###sharebtn +||szpwh.cn^ +||hinet.net/product/promotion/$popup +||hoopchina.com.cn/gamecenter/side-stg.js +||izcqyy.xyz^ +||hapic1.zhuangxiu22.com^ +||ssp.21ic.com^ +gamer.com.tw,pili.com.tw#@#.text_ads +qingwk.com##.l-index-activity-entrance +||apple.www.letv.com/env/? +@@||moegirl.org.cn^$generichide +||jd.com/bottom/cps +hao.360.cn###left-ria-fixed +szjjzs.com##a[href^="/pic/tiao/"] +||bttt11.com/ad. +my0511.com##table[bordercolor="#C0C0C0"][border="1"] +:8888/zhu/pc_ +||jcreje.com^ +muzhi.baidu.com##.wgt-container +||roxewwq.cn^ +aae3.com###menu +||mysteelcdn.com/advert/ +||poco.cn/v1_1/rank/get_floating_layer_ad +||rkgbqn.icu^ +avtb01.com##.ads-player +hy5.com.cn##.toptxtad +||boylov.xyz^*/img/20*.gif +||alicdn.com/img/ibank/*_256401016. +||vainanalyst.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.thread_dir_ad +||x81zw.co/js/dsnmd. +techug.com##a[href*="/eee.html"] +131458.com##.ulfooter_top +||a.tvsou.com^ +2345.com##.act-market +||lnlkmr.xyz^ +qq.com##.mod_ad_square +dmhy.anoneko.com##div[id$="_adv"] +@@_cpc_cpm/$domain=youranshare.com +||huiji-fs.oss-cn-qingdao.aliyuncs.com/huijiad/ +cnxz.cn###js_focusimg3 +playallvideos.com,pron.co##.rmedia +@@||zhaiyd5.com^$script,domain=louzhong8.com|miwens.com +gameapps.hk##.adClick +||lywww.com/data/js.php?id= +||m.m216j.cn^$third-party +@@||google.de/translate_$media,third-party,xmlhttprequest +||2345.com/pic/2345video.png +||7m.com.cn/b1/live_b +||hzrnbl.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###platform_left_float +||cctv.com/Library/a2.js +||wxmhau.xyz^ +||pos.baidu.com^ +25xz.com##div[style*="1002px;"] +||faxingw.cn/js/*0 +163.com###layout-bobo +bbs.51cto.com##.postinfo06a +||fontke.com/custom/ +eprice.com.tw##.ad-970x250-g +||bcebos.com/24x360x528.gif +||jsyefc.com^ +||kbayke.xyz^ +ilxdh.com##.bottom-show +||cpbl-elta.cdn.hinet.net/web/images/ad_ +||kjipko.xyz^ +||bd-js.duote.com^ +8264.com##.ewmbox +||go2av.com/js/AM.js +||17dm.com/s/common/js/*AD.js +sm.cn##.ec-goods-list +rfidworld.com.cn###IOTVote2017Ad +||mm1qj.icu^ +||kanpb.com/skin/images/ +infoq.cn##.widget-slide-weekly +||uu22002.com^ +koyi.pub#%#//scriptlet("set-constant", "fuzqingAdPlus", "emptyObj") +||wyohm.xyz^ +it165.net##.advyello +mscbsc.com##.bao1 +163.com###floatLayer +||tj.21ic.com^ +163.com###suning-bottom-banner +foodmate.net,ting89.com##.ad7 +||itxueyuan.com/advPicture/ +itavcn.com##.dlggw-g +cqmmgo.com##.ad-160x40 +tieba.baidu.com##.client_ad_banner +qq.com##[dt-params*="ad_creative_"] +baidu.com##.search-aside-adWrap +||xinshijue6080.com/gg +||gwbnsh.net.cn/hd/unicom/ad.html +sblunwen.com##.c11 +@@/ad_banner/*$domain=donnaart.com.tw +||ithome.com/api/lapin/ +hao123.com##.mp-app-ad +qq.com##.body-Top-Ad +||bdunion1.suxiazai.com^ +applefans.today#$#.timed-pup { display: none !important; } +tangdoucdn.com#%#//scriptlet("adjust-setInterval", ".s--", "", "0.02") +setn.com##.e_ad +||gkutca.xyz^ +mail.pchome.com.tw###main_top_frame +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="20%"] > a[target="_blank"] +douyu.com##.ActPayDialog +||seslco.xyz^ +vanpeople.com##.advlr +juejin.cn##.activity-recommend +redocn.com###yc_adv_1_2 +||rvbiocn.cn^ +||dansheshi.com^ +@@||dlkoo.com^$generichide +2345.com##.newsArea +@@/js/prebid-$domain=huruwo.top +||minixiazai.com/others/all_soft.js +141jj.com##.moboad + .webad +||bxjhlhk.xyz^ +||998sus.com^ +||bmougwx.icu^ +forum.hkgolden.com#?#body > div[class^="jss"]:has(> div[class][style^="transform"]:only-child > div[class] > div[data-role="ad"]) +||jinxpn.xyz^ +chongbuluo.com###add + a +||img11.biyan8.com^ +baidu.com##.opening-season-dialog +||bdimg.com/static/wkcore/widget/commerce/fengchao/ +json.cn##.tip[target="_blank"] +||xxqmtod.icu^ +flyblog.cc##.pixnavbar__top-bar__main-sites +meizhou.com##.cc_z1 +||xav*.icu/base/js/other.js +||yong.chazidian.com^ +||wdxxx.top^ +baidu.com##.sf-wrap > .c-back + div[id]:last-child +||norse.mingxiaow.com^ +||kkpgv2.xunlei.com^ +bejson.com##div[id^="shua"] + font[color="red"] +asus.com##.bg_block +p2peye.com##.red-box +hupu.com###threadLeftAd +||369bgrec.top^ +||heiguang.com/f/uad/ +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="50%"] +sina.cn##a[href*=".maozhuar.com"] +@@||v2cross.com^$generichide +||xitongku.cc^ +chbeyond.cn#?#a:-abp-has(> .xcybk-adfg) +_ad_bottom. +||6ft8a.icu^ +dy2018.com,xiaopian.com##a[href^="http://www.xiacai.com/"] +||gpmzkg.xyz^ +||r.99waiyu.com^ +eastday.com##.right_adv_3 +||51.la^$third-party +||5278.cc/js/check.js +||divxrj.xyz^ +@@||google-analytics.com/analytics.js$domain=citytalk.tw|ebb.io|komica.org|lenovo.com.cn|linetv.tw|maminews.com.tw|support.amd.com +newyx.net,yxbao.com##.gs +||vixajghi.xyz^ +||jgstny.com^$third-party +||cdn.wuyou.ca^ +||duba.com/baidu +||kgipui.xyz^ +||csmfee.xyz^ +||gongshe99.com/d/js/gongshe/gsw +fx168.com###ImgText_02 +@@||shopback.com.tw^$generichide +baidu.com##.swan-ad-fc-feed +2345.com##.top_news +||vhvwlb.xyz^ +||to8to.com/to8to_pc/common/modules/bottom_up_slide/ +moe.gov.cn,qspfw.com#@#.ad_title +6park.com##a[href*="geekbuying."] +bilibili.com##.container > div.feed-card:not(:has(> div > *)) +hk01.com##.article-grid__desktop-rhs-section > .items-center:has(> div[class^="sc-"] > div[data-id="lazyload-placeholder"]) +||iaindu.cn^ +62422.cn##body > table[width="778"][align="center"] +||6080.tv/public/js/m/uaredirectformobile.js +||igao17.com/need/h5.js +loldk.com##a[href$=".html?from=video_right"] +51zxw.net###video div[class^="adpauseclose"] +||dp3.qq.com/qqcom/ +||hfptbf.cn^ +||akamaihd.net^*/sid.html?p= +||gyunce.xyz^ +||heapz.cyou^ +||so1nv.xyz^ +aiqicha.baidu.com,xinmin.cn#@#.share-title +||fq010.shop^ +hanime1.me##div[style*="width: 310px; height: 282px;"] +||youaima.com/zz/ +||6b856ee58e.com^ +||ufiidvv.icu^ +jjwxc.net##.h8px + div[align="center"] +o8tv.com##.container > .row > .myui-panel-bg> .myui-panel-box > .myui-panel_bd > .myui-vodlist > .col-lg-8 > .myui-vodlist__box > a[target="_blank"] +||xx3691b.com^ +bkill.com##.cross-ad +||99lb.net/index_files/*/970 +xiaoma.net##.colunm-banner +||szmty.cn^ +||g1.tagtic.cn^ +||letv.com/pzt/hyhmzq/index.shtml +mydrivers.com###a_showhotnews_list_dia +||phb123.com/skin/js/tongji.js +111os.com,ahah3.com,qhyy8.com###couplet +18av.mm-cg.com###main > #twcgUUU +||ifeng.com^*/wapifeng +didispace.com##.widget-wrap > p[style="text-align: left;padding-bottom: 20px;line-height: 30px;"] +qixin.com##.web-diversion-container +||aojeet.icu^ +123pan.com,meidebi.com,weicaixun.com#@#.share-list +||sogou.com/athena/ +ifeng.com##a[href^="http://ids.deliver.ifeng.com/"] +health.tvbs.com.tw##.h-full > div.flex-wrap > div.max-w-full > div.px-5.lg\:hidden:has(> div > div.flex.justify-center) +19lou.com##.editor-ad +||baizhan.net/js/136/jingyun_righttop. +||gd.ct10000.com^*/push/$popup,third-party +||yuanxue365.com/js/a22. +sina.com.cn###f_ask +||lgkocdi.icu^ +hackhw.com,ithome.com###hd_float +||jsf.cnlinfo.net^ +||fzbm.com/bbs/static/js/bma.js +||ssh.*.com^*!$script,third-party +php.cn##.wwads-cn +x-mol.com###floatWindow +redian.news##.md\:w-\[728px\].mx-auto +dyhjw.com##.nn_link +||iyinghua.io/bar/ +||s.yimg.com^*/flash_general_$domain=~tw.yahoo.com +||ghoffice.com/bbs/js/float.js +@@/ad-close.png$domain=ch.com +||g6tgashb.fun^ +92wy.com##.adhengfu +huke88.com##.hand-once +163disk.com##.gg_990_65 +||blrpbt.xyz^ +ent.qq.com###ent_ad +jia360.com##.row-ad01 +||antdv.com/yideng +||vcxv787.fun^ +jspoo.com##.g-wznywzjs +huya.com##.j_posterItem[href^="http"]:not([href*=".huya."]) +||zhengjie.com/a_d? +letv.com##.fl_app_bot_wrap +||vuirssd.icu^ +||ebiotrade.com/newsf/js/news_top_banner.js +avcao.cc##div#aa +||xszw0.icu^ +uu114.cn##.side_top_banner +||miwfkm.xyz^ +||yiren34.com/js/ +2345.com##.wawaji +image.so.com###js_textlink +||yunzuowen.com^$third-party +linetv.tw##.aspect-ratio > img.object-cover + .aspect-ratio-content + div[class^="absolute inset-"][class*="bg-brand"] +||mumnxiex.top^ +||bd-china-1.appmobile.cn^ +||alicdn.com/imgextra/*_!!823262290. +@@||ad4.on.cc/web/www/delivery/ajs.php +||bqiapp.com/api/config/ad? +x-mol.com###rightAllJournal +||hexun.com*/hx_news/hx_news_finalpage.js +||gcvcdashb2.fun^ +||bpimg.com/4851/19f7543667f26682.jpg +||qnifdlay.top^ +||keydot.net^$third-party +||pcgames.com.cn*/index.js +hao.360.com#?#.cube-mod:-abp-has(.dh-cpcad-container) +||99danji.com/kchtml/ +||zzbaike.com/main/arvixe +@@||930mh.com/js/config.js +||1.5000yan.com^ +||tx99y.net^ +cartoonmad.com##td[align="center"][height="102"] +ithome.com##.lapin +||ccccc88kkkkk.com^ +||leidad.xyz^ +||wap001.bytravel.cn^ +||sgadkc.xyz^ +@@||ecitic.com/source/*/pop +||hs640.com/js/jquery.js +hboav.com#$?#.cc5278_banner_ad { remove: true; } +iplaysoft.com###section_postbanner +||6.cn/coop/pub/getRand.php? +||p2ijd.space^ +editcode.net##.sd > a +||iiauu.cn/777/ +@@||republicbharat.com/_app/immutable/chunks/FloatAd.*.js$domain=republicbharat.com +icbc.com.cn###kv-admain > div[id$="_1900_380"] +sina.com.cn##.ad_01_center +guagua.cn###floatRoomDiv +||lancdn.com/tmp3/GG_Notice.png +||hhrerv.xyz^ +0597ok.com,nongjitong.com,typecho.wiki##.div_ad +92ghai.com##.a_xiu_t +||omzxutfm.com^ +acfun.cn###goniudan +||star-media.cn^$third-party +natgeomedia.com##div[id^="AD-970x250"] +||veaiyl.icu^ +||kkbbjtfp.xyz^ +actoys.net##.p_top_ad +32r.com##.gsxzdz > ul > dt +||9jsp.com/pay.png +@@||ixueshu.com/ad-server/ +||onefuq.xyz^ +jyacht.com###playergg +bitauto.com##ins[type="ad_play"] +kocpc.com.tw##.kocpc_bot_ad +tw.stock.yahoo.com##td > div.ysm +u-car.com.tw##.contad +||aa.gushiwen.org^ +news.owlting.com##.profit-wrapper +qq.com,sogou.com##div[pbflag="bt_newsb_ad"] +||xiu8.com/baidu-tieba/*&forum_name= +jin10.com##div[id^="J_wdgg_"] +||right.com.cn/logo/yyb.png +1010jiajiao.com##div[style*="position:fixed;"][style*="bottom:1px;"] +haianw.com###comiis_haianw13 +km.com##.downloadApp +17173.com##.list-beauty +||autoimg.cn/club/v1Content/images/heycar +||hao.rising.cn/catalog/bottom.html +||yhderd69.shop^ +||ayalcid.icu^ +||qk6.org/file/script/ +||8maple.ru/dzcm$rewrite=abp-resource:1x1-transparent-gif,domain=8maple.ru +||sinaimg.cn/news/article/article_qcode +||pic.yupoo.com/showflash/ +yun.cn##div[class*="ad-block"] +||smgsue.xyz^ +@@||aboluowang.com^$generichide +520film.net##.wapimg +36dm.club,36dm.com,acgsou.com##a[style="color:red;"][href*="show-"] +||66wz.com/data/attachment/portal/ +880sy.com##.fot_btom +||count.pcauto.com.cn^ +:88/999pc/ +disp.cc###ads_page_b +juxia.com##.game_img_list +||koolearn.com/zt/poster_js/$domain=~www.koolearn.com +||4p68.com^ +||uebipacy.xyz^ +163.com##.tie-ad-bar +9s102.xyz###main > .container-fluid.mb-3 > .row > .col-sm .alert +xxt.cn#@##mainAd +||aldtop.com/scrtips/ +515fa.com##.gg_ad01 +||vgxbpf.xyz^ +||192.151.218.66^$third-party +||sdtsad.com^ +||hebei.com.cn/sys/online_calc.js +youivr.com##.header-widget-region +||aikkits.com^ +||fsdf45.fun^ +://banner.$third-party +ccoo.cn##.ad-wrap1 +||baijs02.xyz^ +chunyuyisheng.com##.ui-grid + .fixed-layer +||erqtga.xyz^ +||gliacloud.com/player/adgeek_teep +58.com##.ewmAdNew +weather.com.cn###ytc +@@||game735.com^$generichide +||cqvip.com/viewserver/ViewAD +||zhulang.com/zlpv.php +cool3c.com##.post-list > [class="board board-post board-cool3c_superboard_2 board-new clearfix"][data-board="cool3c_superboard_2"] +newsmth.net##.Smthtwenty_float +firefoxchina.cn##div[trace-key="ad_theme_skin_link"] +||d*.xinshipu.com^ +sogou.com##.top_adv_wrap +||ccwxma.xyz^ +||ad.doubleclick.net^$~object-subrequest,third-party +boylove1.mobi##.sponsor-colse +so.com##.commercialCell +cw.com.tw#?#.adActive > .list-link:has(> ul > li > div[id^="div-gpt-ad"]) +||ydss.cn/test.www.jdpay.com +yxbao.com###gs_down +firefoxchina.cn##.module-banner +||pfkgl.top/images/*.gif +||trenhdg.com^$third-party +avple.tv##.MuiSkeleton-root +||clgvlvbc.xyz^ +china.com.cn###gggg +||syndication.exosrv.com/splash.php?$xmlhttprequest,redirect=nooptext,important,domain=hboav.com +||yhdd1.com^$third-party +||3344ex.com/js/jc.js +||leju.com^*=abs.processReqChange +||supertaste.tvbs.com.tw/css/adunit.min.css +||s.btime.com^ +||guozh.net/wp-content/plugins/eazy-ad-unblocker/ +||execuri.com^ +jianshu.com##.self-flow-ad +@@/ads.js$domain=iyf.tv +||jane2.top^ +ydss.cn##.bm.bml.pbn > table > tbody > tr > td:nth-child(-n+2) +@@||emome.net/files/advertising/ +||pixfs.net/js/mib_falcon +||mesh.if.iqiyi.com/portal/lw/search/$xmlhttprequest,removeparam=adExt +||cjndvoglik.xyz^ +jokerlu.com,jokerlu1.com##a[onclick^="_czc."] +||shanhaimiwenlu.com/sh +itheima.com##.tanchang +365xuet.com##.cd-items +||58cdn.com.cn/nowater/webim/big/n_v2e722db7ca7f1458d92b7d6e57f833548. +hanime1.me#%#//scriptlet("trusted-replace-node-text", "script", "popunder", "/window\.open\('(.*?)',.*?\);\n.*location.href = '.*';/", "location.assign('$1');") +||vaekkfv.cn^ +duote.com###hengfu +||orutvnck.top^ +||hexun.com/hxpage_jrtj2020/ +||sdickeb.top^ +@@||daziba.cn/Images/share.css +buzzorange.com###primary > .dfped[id^="all-970x"] +0597kk.com##.kk_ad +||zztongyun.com/static/js/sh. +||fastadmin.net/uploads/store/aliyun +||suning.cn/javascript/sn_da/sa.js +gvm.com.tw###cboxOverlay +||1010pic.com/static/js/allpc.js +mobile01.com###show-play-ad +||inoreader.com/adv/$domain=inoreader.com +||pkk1.zuimeiniwo.com^ +hao123.com##.tvtip +||yzihdppw.xyz^ +jin10.com#?#.jin-timeline:-abp-has(.jin-tag) +||l7u3kf.cn^ +||vdfvdf33q.fun^ +||pwuxnr.cn^ +||lalabaos1101.top^ +||40407.com/plus/rpad/ +miaoshangmanhua.com##.cy_menuright +||jsyliea.top^ +||qdoshby.top^ +hao123.cn##.cool > tbody > tr > td[align="center"]:last-child +||kt51.com/images/kt51.gif +||6yso.com/wp-content/uploads/*-300-x- +||1qkmxbt.com^ +health.tvbs.com.tw##div[data-testid="ad-container"] +||retrefsf.cn^ +kankan.com##div[id^="cm"].banner +||linkpicture.com^$third-party +||itadapi.ithome.com.tw^ +@@||slit.cn/source/plugin/unadblock/*.js +weishangshijie.cn###wad_right +||vxdrfr.xyz^ +||panpan.org/other/ +||ff.qichetansuo.com^ +||ymewsu.xyz^ +||udn.com^*/ad/ +bjxfqc.net##script ~ ul[style] +@@||5qidgde.com^$generichide +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [class] > a[href*="//e.baidu.com/?refer="] +||5588.tv/js/piaofuImg.js +nasyun.com##img[width="275"] +freedidi.com##.sidebar-content > div[id^="custom_html-"] +yesky.com##div[class^="ad7"] +||huo720.com/back/ad_ +line.me###install_line +yahoo.com##.GeminiPortalStreamAd_handleViewport +||77xsw.la/novel/js/pagetop.js +||c.28rv.com^ +ifeng.com##div[class^="dbox"] +yuanxue365.com#?#.content-main > div > .container-fluid:has(span:contains(广告)) +||c2000.cn/c2000/ +||bkjia.com/bkjia/js/subnavtop.js +||apistat.wasu.cn^ +iqiyi.com##a[href*=".oppo."] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.order_repost_wrap +2dfan.com,galge.fun###popadv-container +aura.cn##.tc1 +||etest8.com/js/158/infojs/ +logo160.com##script + a[href="/"] +plus28.com##a[href*="/?Extend="] +||scupio.com/adpinline/ +||gg1.mengchongzu.com^ +||onegreen.net/MyFile/ +||iyingdi.com/goood? +19lou.com,cqmmgo.com,ihome99.com##.float-ad-wrap +||crazyit8.com^ +sgcn.com##.oyad2.cl +||gg.0598yu.com^ +vansky.com##.top-ad-link +||snxyf.com^$third-party +t66y.com##a[href^="http://www.viidii.info/?https://po88_"] ~ :nth-child(-n+115) +fsclzs.com###qvod +hkdm688.com##.bb01 +||lwlwlw.com/js/FVgg.js +||csdnimg.cn/common/redpack/redpack.js +@@||weithenn.org^$generichide +manwa.fun###detail > div:has(> div.ad-area-close) +500papa.com,papa03.com##a[href*="9927.com"] img +baidu.com,bdimg.com,tieba.com###aside-ad +||c9ql2.com^ +cs.com.cn,pjtime.com##.ad_txt +||adf.dahe.cn^ +||hpy9w.cn^ +||sasadown.cn/ad/ +@@||pinduoduo.com/advert/$~third-party +||ctyusif.top^ +||666bbb222www.com^ +||ahernssa.com^ +ifeng.com,~mall.ifeng.com##A[href*="mall.ifeng.com"] +@@||117.60.146.16:8089/images/ +||shulihua.net/js/gzlishi468google.js +||u.riju.com/click.php +||c72w6.com^ +||cngold.org/cngold_float +||pgdt.gtimg.cn/gdt/$domain=info.3g.qq.com +m.babytree.com##.recommend-img-box +||gesvfvfhhb6.fun^ +||weibo.com/ajax/feed/getTipsAd? +baidu.com,bdimg.com,tieba.com##.fengchao-wrap +||hanjutv2020.com/index.php?c=dudu_ +zhiyoo.com###dialog1 +||dianjinghu.com/static/frontend/images/lol/penpen +||11.golang8.com^ +||hcbbsoss.oss-cn-hangzhou.aliyuncs.com^*-banner +||haokan5.com/js/haokanjs/youxiajiao.js +wantgoo.com#@#.shareBtns +@@||ez3c.tw^$generichide +||99886aaa.com^ +||cjzrfxs.xyz^ +||gamme.com.tw/ga/ +18-comicfrieren.xyz,18comic.org,18comic.vip##a[href*="//"]:not([href*="comic."]) > img +pan.baidu.com##.phone-banner +||szjjzs.com/js/fe +||vatzxd.xyz^ +inmywordz.com,ants.tw##.acca-block +||eeyy.cc/style/yxj.js +||q1gel.icu^ +||webjx.com/zanzhushang/ +||bbccf12.xyz^ +iqihang.com#$#.app.padding > .header { top: 0 !important; } +gaoqing.la###head > a +@@||aternos.org^$generichide +||a.wzu.com^ +||tigtag.com/styles/phpcms/js/tigtag/ads.js +||gfan.com/press/ +hao123.com,jiegeng.com###siye +||aliyuncs.com/vss/haotu.js +4gamers.com.tw##.vue-portal-target > div[style="min-height: 210px;"] +feng.com##.ad-aside +||51gugu.com^$third-party +||mnorkc.xyz^ +||szbxm.cn^ +chinaqking.com###newsAD +unikoshardware.com##.elementor-popup-modal +||myunion1.qm120.com^ +||bendibao.com/mo/adm_iframe.htm? +||yhsdwjes.xyz^ +||jsdelivr.net/gh/yaociyuan/ +||baidu.com^$domain=pos.baidu.com +~dongman8.com##.m_acmsd +||lalabaos1020.top^ +||chinapress.com.my/public/static_resources/img/*636x105. +silver.org.cn##.zl_login +yxdown.com##.r_b_fmt +||52dytt.net/img/zlgg.png +||tnfhxszj.xyz^ +||geotmt.com^$third-party +whnews.cn###gd_l +||kxd56.com/qq.js +wholehk.com#?#div[id^="postmessage_"] > div[align="center"][style^="font-size:11px;"] > font:contains(Advertisement) +||1fzjy.xyz^ +||netease.com^*bobologo +hoteastday.com###detail_mask_ad +104.com.tw###aidma_128 +||rising.com.cn/weblog/ +||2.haoxue360.com^ +||llj22.com/1.gif +160.com###w-btn-advertisement +v.pptv.com###video-download-game +||tymahuxv.xyz^ +line.me##.midAdModule-root +||dms.vancss.com^ +||gg3a.cc^ +lbx777.com,lbx777.net##table[width="325"][height="280"] +||d1zoi2q7y0e4d.cloudfront.net^ +likr.tw###avivid_waterfall_wp_product_area +zhibo8.cc##a[href*=".wanjiashe."] +||stats.766.com^ +||win007.com/js/flashad +||0722fc.com/index/index.php?/ajax/get_adv/ +v2ex.com#?##Rightbar > .box:has(> .inner > div > span:contains(Sponsored by)) +||comefromchina.com/images/128bestbuy +||6080aa.com/template/*/images/g_js/ +playno1.com###m12 +3czol.com##div[class^="ban_"] +zhicheng.com##.normal-banner +||xnbuapwp.icu^ +||a.guzhilin.com^ +||zantainet.com^ +||txhfgwgkwt8.asia^ +china.com.cn,csdn.net,cyol.net,lenovo.com.cn,liues.cn,wxrb.com##.AD +||oakmn.top^ +||baiducom.bj.bcebos.com^ +hexun.com###hexunCouplet01 +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(.wbpro-ad-tag:-abp-contains(广告)) +||alicdn.com/mtb/lib-smartbanner- +gameapps.hk##.pc-header-video > a[class^="top-ad-"] + .youtube-container +||shuneiya.com/js/wcnm/foot.js +@@||chtoen.com/js/adsbygoogle.js +qq.com##.mod_ad_side +||hontont.com^ +@@/fuckadblock.$domain=datehub.co|golangnote.com|joyk.com|liumingye.cn|lnk2.cc|poedb.tw|share1223.com +||qyer.com^*/base_beacon_ga.js +acg.d1dm.top##.module-adslist + a[target="_blank"] + i.gg-icon +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv#%#//scriptlet('evaldata-prune', 'entity.commercial') +||180.96.27.85^*.htm +||ent1.qunchua.com^ +3boys2girls.com###displayadbu3 +@@||sssbozh.com^$generichide +renren.com###videoAd12 +||msdn.hk/templets/msdn/*/gg.js +@@||cdn.sssam.com/static/js/*.js +ltn.com.tw##.list > li[id^="newspaper-native"] +||daima.ijq.tv^ +@@/adview_$domain=52xkdy.com|fydy8.com +||sinaimg.cn^$image,domain=hg6384.com-www.6u7u.com +4spaces.org,fuliba.net,fuliba2023.net,uliba.net,ypojie.com##.widget_ui_orbui +caijing.com.cn##.downdiv +||aizhan.com/imagesa/ +||chouti.com/js/tingyun-rum.js +||j.diangon.com^ +||zyfnbl.xyz^ +||4gtv.tv/4gTV_OTT.json +||cweriof.top^ +||koqjok.xyz^ +||qcepqj.icu^ +||zqzq*.com:*/da.aspx +@@||4horlover.com^$generichide +onlinedown.net##.u-btn-safe +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video$domain=ulifestyle.com.hk +ddooo.com##.xzbtn +@@||520cc.cc/ad/520cc/images/tw_search_s.gif +||sdkjnbjksbnkjs.com^ +||555ppp777ppp.com^ +v.163.com##div[style^="width: 140px; height: 199px;"] +qq.com##.yw-gg-float +jinhua.com.cn##.banner1200 +boniu123.cc##.td_item +||di2y21.top/jian/jiansshu.js +||mttpsy6666.cc^ +soundofhope.org##.itb_ads +udn.com###sidebar_fix > .area.mag_topic > .nomurafunds > a[href^="https://p.udn.com.tw/upf/2016_sales/nomura/nomurafunds_2.html?"] +||gpowow.xyz^ +||ad.walkgame.com^ +@@||tangsanbooks.com^$generichide +tobosu.com##.tbs-bottom-order +track718.com##.track-search-ad +hao.360.cn,hao.360.com###festival-logoskin +||abcd789.com^ +||5vdd.com/360 +||vnet.cn^*.html +||usltmus.cn^ +||hyjqgpu.top^ +||ofqvca.xyz^ +||icon.zol-img.com.cn/mainpage/js/click.js +@@||mediav.com/js/interactive_plugin.js$domain=v.360kan.com +sina.com##.parta_l_ads +to8to.com##.quoted-outside +@@||qq.com/server/website/CommWebGameSelect_ad.js +maiche.com##a.some-img +@@||pingjs.qq.com^$~third-party +zhihu.com##.Banner-link + .Pc-card-button-close +||gmxysb.icu^ +||skeyword.browser.qq.com/getHotRank +yiyouliao.com##.yyl-weiruan-ads-swiper +||qpawkw.xyz^ +||fun8.us^$domain=cartoonmad.com +jurong.cn##.ad_190_60_5s +||szmwr.cn^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###j_ten_years +||autohome.com.cn/risk_fp_log? +||a.dlads.cn^$third-party +pianhd.com###myCarousel +oschina.net##.news_detai_above_ad +||juznlx.xyz^ +||yhzjidgc.xyz^ +wnacg.com#@##adsbox +962.net##.g-962-ad +||gdmm.com/images/leftbottom.png +||txzqw.me/tupian/ +csdn.net##.panel_body > div[style^="position:fixed;bottom: 0;"] +||cp.7y7.com^ +ants.tw#?##sidebar > section.widget_text > div.textwidget > script[src^="//pagead2.googlesyndication.com/"]:upward(2) +@@||182.150.59.104^*/ad.css?$stylesheet +||hbbynt.xyz^ +@@||airav.cc/js/td_ga_tracker.js +18avtube.com,avmimi.com,mm-cg.com###friendLink +||one.fsylr.com^ +@@||loltmcheck.com/js/ads.js +||hanzify.*/Main/Template/Images/chinabank.gif +yesky.com###gfapp1 +||bweriov.top^ +||zlgame.top^ +||ybrrvck.xyz^ +||eastday.com/static/js/eastday_ +||udxhzqg.cn^ +solarbe.com##a[href*="redirect"] > img[width^="3"] +aiyuke.com###Playerpad +||159i.com^*.php| +v2ex.com##.sidebar_compliance +vansky.com##.scol-banner +youku.com##.pop-prompt-box +||lianyexiuchang.cc/img/2f2372e9bf205df0.png +qq.com##.masker_1111 +||rbsr0.icu^ +gohome.com.hk##div[id^="div-gpt-ad"][style] +baidu.com##.gg-content +hefei.cc##.bbs_app_fk > a:first-child +||greenxiazai.com/d/js/v/ +mydrivers.com,wmzhe.com##a[href*=".jd.com/"] +baixing.com##.a_d_s_hidden_link +jc001.cn##.ADS +yfsp.tv,aiyifan.tv,iyf.tv##.video-player + div.ps > div:has(> div.bb) +||zk789.cn/Res/Scripts/Show/NetSys/Show.ashx +chinanews.com###qizhi_div980 +manmanw.net##.tlads +stockstar.com##.siteAd_l +so.com##.js-business-list +@@||bytegoofy.com/ad/$domain=jinritemai.com +||mymqcy.xyz^ +||3337723.com^ +||emoney.cn/www/officalWebStatic/js/slideAd.js +@@/fingerprintjs2.min.js$domain=imooc.com +||bdm.ye-su.cn^ +10jqka.com.cn,faxingw.cn,gdmm.com#@#.ad_1 +||douguo.net/upload/post/d/ +bbs.it168.com##.daoh2 + .bor8 +||commonwealthproficient.com^ +||ogxstqna.xyz^ +||ettoday.net/style/mobileweb2014/js/smartbanner/jquery.smartbanner. +||u0083.com^ +||crvbnac.xyz^ +benyixiwang.com#?#p:-abp-has(a[href="http://www.sm9166.com"]) +||southmoney.com/page/top +||jspqhh.xyz^ +||tltmjevd.xyz^ +image.so.com#?#.cell:-abp-has(.txt:-abp-contains(广告)) +@@||countrygarden.com.cn/ad/ +fang.com###xmlAd +||hefeng-group.net/attach/20200605/Fl05PJWEPUSuVt1x6PeHbHiaQ59J.png +||acdrewrf711.cn^ +hqdoor.com##.index_ad2 +||aafuck.xyz^$third-party +||cxdcn9c.fjshxjs.cn^$third-party +91lai.com##.D_guanggaotu3 +9ht.com,pc0359.cn,pc6.com##.downnow +||sp.qf.56.com^ +||yhimpnr.icu^ +||lkpxzt.xyz^ +3boys2girls.com##.float320 +||dnxtc.net^*/xiaobing +||141h.com/data/attachment/noblock/cf/ +||chaomi.cc/js/cms_ +baidu.com##.tc-card[tpl="fc_before_fixads"] +@@||ad4.on.cc/web/www/delivery/spcjs.php +||33shu.net/js/game +||80s.so/html/ +baidu.com##.cbg-Ads +||toutiao.haotui.com/data/js/0.js +||usxuyr.icu^ +||top2099.com^ +hao123.com###yixing-siye +||mipcdn.com^*/mip-*ad- +||0uvt8b.cn^ +baidu.com##.wgt-ad-exp-pic +fx110.com,fx110.uk##.Adv_1 +baidu.com###j-ad-side +@@||duelmeta.com^$generichide +||vuetifyjs.com/notify.json +sdzbcg.com##td[width="297"] img +@@/adpro.js$domain=tingfm.com +heiguang.com##.syAdTopTxt +dahe.cn###adArea1 +||aqeivzm.icu^ +bmlink.com##.Tg_gg +||audgiqb.cn^ +||qxzlmzt.xyz^ +||zmklhev.cn^ +||4q87v.icu^ +||z.nowscore.com^ +@@/adslider/*$domain=firstbank.com.tw +@@/show_ads_$domain=ygo-sem.cn +@@||litv.tv/ads/ads.js +up01.cc###popad +||uvwnkmf.icu^ +baidu.com###video_push_box +159i.com#?#.style15:-abp-has(> img[src="//159i.com/images/arrow3.gif"]) +||gsuxyg.xyz^ +||bd.czxuexi.com^ +||jaychu.top^ +ifeng.com###upApp1 +||dajiahao9.top^ +masok.cn###bottomLayer +||zol.com.cn/adrs/ +hao123.com###lefttip-container +||right.com.cn/forum/static/image/common/logo +||c.pcswtw.cn^$third-party +||bdu.focus.cn^ +||baidu.com/ndview/interface/hx/ +||999aa666bb.com^ +@@||youmaker.com/js/prebid.js$domain=epochtimes.com +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.diamond-mall-aside +||gdxxb.com^$third-party +szxx.com.cn###A0 +@@||yimg.com/ss/rapid-3.*.js$domain=hk.yahoo.com|tw.yahoo.com +jdbbs.com##div[style="margin: 0 auto 10px; width: 1000px;"] +||4wu3gf.cn^ +txzqw.me##.tac[style="margin-bottom:5px;"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post + div[class]:not(.l_post) +hexieshe.cn###media_image-3 +||cntv.cn/hezuo/ +||xlmdtiyqbkygtfkh.com^ +pipi.cn#@#.ad-root +||jtezxmpb.xyz^ +||gdyjs.com^ +duba.com##.slidebar +baidu.com##.landrightbanner +@@||ujinbi.com/UpLoadFile/guanggao/ +||theporn.xyz/static/bet365.gif +||7x7n.com/static/image/888.jpg +loldk.com###meizi_ad +@@||192.168.*/advertising_$stylesheet +||1gmzo.icu^ +||educity.cn/self_text/text_disp.aspx?id= +2345.com##.act-yguang +||xhm.pub^ +||fuimg.com^$domain=678cn.com|cfzhushou.com +||ojvpigx.xyz^ +||requirejs.cn/ts.png +wuchajian.net##.UPAD +||yikeyz.com/pm.js +taoguba.com.cn##.wz_ad +mydrivers.com##.bb +||ys2000.cdn.bcebos.com^ +||yukbsa.xyz^ +||gushi.network^ +||ibaotu.com/revision/js/ad/ +ganji.com##div[id^="GcnADId"] +finance.sina.cn##.article-sax +||bdp.cn^$third-party +||amazononline.xyz/mp4/*.mp4$redirect=noopmp3-0.1s,domain=iyingshi7.tv|localmv1.com +avple.tv##.jss20 +||dxsjcz.cn^ +news.163.com##.mod_netes_origina +jd.com##.gl-warp > li[data-spu=""] +kxdw.com###downloadTop +||kjnsgqe.icu^ +qq.com###barrageBase +qq.com##.g-qzp-bottom +hupu.com##DIV[class^="game-center-"] +news.baidu.com##.swipe-backflow-container +mirrormedia.mg##div[class^="gpt-placeholder"] +||chuantu.xyz/t6/714/1580707721x3703728804.jpg +upmedia.mg###divider_ad +m.babytree.com##script + a[class] +news.baidu.com##.recommend-mask +eastday.com##.detail_fixed_gg +||ryyuvrt.cn^ +||bbsbaba.com/js/2.js +gucheng.com##.gcw_r_ad_pc +||satroki.tech/api/JdUnion +||pcauto.com.cn/forum/fz/hots/ +faxingw.cn##.indadv1 +||nkbpft.xyz^ +||c6.friok.com^ +||stsesc.xyz^ +btnull.org,gyg.la,gyg.si,gying.in,gying.net,gying.org,gying.si###ly +||23.224.89.2^$third-party +acwifi.net,zhain8.com##.ssr +cnbeta.com##div[id][style^="position: fixed; bottom: 0px;"] +189.cn#@#.share-panel +@@||gk.sina.cn/v1/gkmatch? +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.dasense +||m.aty.sohu.com^ +||dvser.china.com^ +@@||cdn.bootcdn.net^$script,domain=38kanshu.net|tianz.la +m.taobao.com##.install-app +sina.com.cn###SI_Comment_DA +163.com##.doc-footer-wrapper +bilibili.com#?#.video-card-common:-abp-has(>.card-pic>a[href*="cm.bilibili.com"][data-target-url]) +||kaoyan1v1.com/IAA/ +mrmad.com.tw#?#div[id^="mrmad-"][style]:has(> .adsbygoogle) +@@||miaozhen.com^*/m.suning. +||uphcrjth.xyz^ +||fbqrt.cn^ +aizhan.com###all_text_content +@@||10010.com^$generichide +||pierrebotton.com/global/ +chinese.engadget.com#$#[data-spotim-module=recirculation][data-spotim-showing-slots~="1-start-300x250"] .spotim-recirculation div[data-spotim-row] > div[data-spotim-slot-size="300x250"] ~ .sprcRftoX { margin-left: 0!important; } +||tui56.com/guanggao*.html +||un.ubaike.cn^ +||cctime.com/UpLoadFile/201*.gif +mydigit.cn##.txtMes +icook.tw##.amp-parallax-ad +enorth.com.cn##div[class^="guanggao"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.top_toutu_admarks + .tbui_slideshow_list +||mhdlll.com^ +104.com.tw##.career-clinic-ad +||ouyaoxiazai.com/static/img/cqthree.gif +||ytroytj33.fun^ +||cnyw.net/autoloader.js +@@||5278.cool^$generichide +jav777.xyz#%#//scriptlet("prevent-eval-if", "ADS_BLOCKED") +||51ztzj.com/js/you.js +dmhy.org##div[id$="_adv"] > a[onclick*="'ad'"][target="_blank"] +:8888/mb1/wap_ +xiaopi.com##.down-list +||aisy19.com/dm/ +raenonx.cc##div[style="display: flex; justify-content: center; align-items: center; position: relative;"] > iframe +v2rayssr.com#?#.content-area > .single-bottom-html:has(> div[align="center"] > .adsbygoogle) +||china.com.cn/statics/js/js_vag/ +||beacher56.xyz^ +tw.stock.yahoo.com#?#.news > div[class="bd quote"]:has(ul > li > .geminiAd) +digitimes.com.tw##a[href*="/webad/"] +||f5zv2.icu^ +toy-people.com##.right_bottom_bb +||v1.19purify.com^ +||jpcctez.icu^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl="app_normal"] +guokr.com##.guokr-layer-beforelogin +||hyhy2.fun^ +||right.com.cn/forum/static/image/common/logo1. +||uycxhgrp.xyz^ +wandhi.com##.table img +waipian1.com,waipian2.com,waipian3.com,waipian4.com,waipian5.com,waipian6.com,waipian7.com,waipian8.com,waipian9.com,waipian10.com,waipian11.com,waipian12.com,waipian13.com,waipian14.com,waipian15.com,waipian16.com,waipian17.com,waipian18.com,waipian19.com,waipian20.com,waipian21.com,waipian22.com,waipian23.com,waipian24.com,waipian25.com,waipian26.com,waipian27.com,waipian28.com,waipian29.com,waipian30.com,waipian31.com,waipian32.com,waipian33.com,waipian34.com,waipian35.com,waipian36.com,waipian37.com,waipian38.com,waipian39.com,waipian40.com#@#a[href*=".umtrack.com/"] +huya.com#%#//scriptlet('remove-attr', 'style', '#banner[style*="background-image:url"]') +||qiji1.jdwx.info^ +dm5.com,dm5.hk##.cl760 +||002777.xyz^ +||mat.chasedream.com^*.gif +||chinamedevice.cn/cnbanner/zjmz.gif +||static.jfrft.com/js/main_video.js^$script,redirect=noopjs,domain=dilidili.wang,important +||feijisu*.com/js/huimi- +||tinypic.com^$domain=fdzone.org|jandown.com|mimima.com +4gamers.com.tw##.home-carousel-container +||ihssdas.icu^ +||worlderva.com^ +unwire.hk##.post-main-ad +||huoche.net/public/huoche/ad/ +699pic.com##.springtime-floatLink +||17173.com/api/video/PlayerPopup? +beianbeian.com##div[style="height: 62px;margin-bottom: 20px;"] + .layui-table +appledaily.com.tw##.owl-lazy[tcode^="AD:"] +||kkisoo.com^ +||right.com.cn/logo/*.gif +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.BAIDU_CLB_AD +||1.mgff.com^ +||analy.tuniu.cn^ +ifeng.com##.news_ADbox +sinolub.com##div[style="float:left; padding-right:20px;"] +||cidianwang.com/css/tj. +||smqzj.com/seo.js +boke112.com##.custom-html-widget > div[style="margin-bottom: -7px;"] +||mphj.com/Runtime/Js/ +||hvxrvef.xyz^ +||336t.com/cf/js/data.js +||kwurserd.top^ +||hshmbx.xyz^ +||pcauto.com.cn/forum/autobbs/clubtl/ +ypojie.com#?#.excerpt:-abp-has(>.focus[href^="http"]:not([href*="ypojie"])) +taihainet.com##.top-info +||7f7rt.icu^ +||360buyimg.com^$domain=chdbits.co|qianggou5.com +||momoguoji.xyz^ +@@||hanjubaike.com^$script,~third-party +sanhao.com###reg-bar +||afewe611.cn^ +ibaotu.com##.bg-feedback +||affyun.com/wp-content/uploads/*/ad- +wnflb2023.com##.GzList +||itbaoku.cn/Content/jms_ +||alicdn.com/img/ibank/*_1980598585. +hl.cn###xf_left +||zoukankan.com^$csp=script-src 'self' * 'unsafe-eval' +2345.com###J_tip_stopXP +||jiuab8eig2oateh01.site^ +hexieshe.com,hexieshe.xyz,xxshe.info##.mh-sidebar img +@@||ipfs-lab.com^$generichide +1avlang.com,avavl4.com,avlang.com##.index-info > .tac +nowscore.com###toperText +||aixifan.com/appSpreadContents/danmuad +ftchinese.com#%#//scriptlet('prevent-setTimeout', '.offsetHeight') +||gmbbk.com/fb.js +||1028images.com^ +||mercor.cn^ +||flyzy2005.com/wp-content/*/bandwagonhost-top. +||aiboav.vip/wp-content/uploads/*/3aaa- +||bkill.com/css/js/xinbkill.js +gamer.com.tw##.b-list_ad +||da.daji.com^ +chacuo.net###mailtooltipss +hexieshe.cn##a[href^="http://zd.zhiketong.cn/"] +||huanqiucdn.cn/huanqiu/js/www/common/detected_block. +||ark.le.com/s?vid= +||rjzxw.com/temp/index.files/logo2.gif +||baidu.com/ur/scun?di=contentunion +eol.cn##.listAd +:18443/*/*-*-*.html$subdocument,third-party +||qeogcdcjr000.fun^ +weather.com.cn,wed114.cn#@#.adpic +||jivvjl.xyz^ +||jandan.net^*/moyu.png +||iqilu.com/getZone.php +fanyi.baidu.com,longzhu.com##.banner-wrap +||wnllmyw.xyz^ +ali213.net##.detailAlertBox > a[style] +||nxing.cn/uploads/uploads/*-size1220x +||ifengimg.com^*/iframe_load_ +blog.icook.tw##span[class^="style_adUnit"] +||kuk8.com^$third-party +ablesci.com#?#.fly-panel:-abp-has(img[src*="-hongbao."]) +||dian.brecm.xyz^ +||bing003.shop^ +||baijs08.xyz^ +hao.rising.cn##.channel-adimg +hmoeh.com##div[class] > div[class]:has(> a[href] > img[src^="https://ad."]) +||alicdn.com/img/ibank/*_434184744. +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xmlhttprequest,domain=duelmeta.com|linetv.tw|liout.com|moneysave.info|raenonx.cc|zxmee.com +huaijiufu.com###wp > center +@@||ipip.net/ping.php? +youxi.baidu.com###coupletBanner +baidu.com##.c-result[data-tpl="adv_wenku_fc"] +||jnalzla.top^ +||zhushou.360.cn/script/plugin_tiper.js +||static.zongheng.com^*/logger.min.js +@@||alicdn.com/dt/tracker/2.5.1/tracker.js$domain=alimama.com +||anywlan.com/link/*.gif +||ifengimg.com/mappa/ +||15huhu.cn^ +||letlwsl.top^ +||yt-adp.ws.126.net^ +||n0244.com^ +||code.bizdirlib.com^ +baidu.com##.rmb-growth-common-tpl-1-wrapper +||xbbhwggj.icu^ +||dybz44.com/js/html +||admsapi.businessweekly.com.tw^ +@@||szhr.com.cn^$generichide +||imgclh.com/imgs/2024/08/07/569cfb2f078e0c42. +ichunqiu.com###portal_block_157 +uwants.com##.showpx1 +||maiysw.xyz^ +||kqbrgl.icu^ +||hellocenter.xyz^*.mp4$rewrite=abp-resource:blank-mp4,domain=localmv1.com +12306.cn###slideRBox +bilibili.com##.title > span > a[href^="http"]:not([href*=".bilibili."]) +hao123.com###\5f _wgt_0_13 +qzone.qq.com##.topic_item[data-url*=".gdt.qq.com/"] +||xhbshv.xyz^ +dzbhdm.net##a[href*="/xzgg/"] +||sina.com.cn/other/src/sfc_app_sidebar.js +||bfhueh.top^ +||veryt111.fun^ +nicotv.me##.clearfix-ads +||china.com/media/images/58/ +||f*.baidu.com/it/u=*,*&fm=$third-party,domain=~hao123.com|~haokan.com|~yoojia.com +i.qq.com##.linwei-logo +||5z2oy.icu^ +||chazidian.com/Statics/images/ad_ +bitauto.com###bitAd_background +outofmemory.cn##.tgBar +||smlpcz.icu^ +appinn.com,hexieshe.cn###media_image-2 +||images.china.cn^*first/$subdocument +goodav17.com##.ads_pc +dlkoo.cc##ins[id^="tanxssp-outer-conmm_"] +house365.com##div[id^="AD-bottom"] +edc1014070.pixnet.net##a[onmouseover*="_openBrWindow"] +||bio-equip.com/uploadimages/peiqing.gif +hihbt.com##.single-content > p > a[target="_blank"]:not([href^="/ac"]) +||cvgrszkg.xyz^ +xiaoma.net##.col-list-ad +csdn.net##.right-item[data-track-click*="http"]:not([data-track-click*=".csdn."]) +||computel.cn^ +||baidu.com/view/api/fc_btm? +||hcqumrjbx.xyz^ +yimuhe.com###maincontent3 > div[style^="height"] +image.baidu.com##.ford-tag +123.sogou.com,daohang.qq.com,hao.qq.com##.guess +||baidu.com/4.gif? +:52789/gg/ +||shbzegs.cn^ +||1688by.com/static/default/js/loadLM.js +ggjav.com,porn87.com#%#//scriptlet('abort-current-inline-script', '$', 'popunder') +920share.com###layui-layer1 +kikinote.net##.pc_ad +123pan.com##.ant-carousel +:538/attachment/js/ +iqiyi.com##div[style^="z-index: 4200; position: absolute; left:"] +bkill.com##body > a:first-child +||fptdxkm.com^ +tom.com###popupDivgame +noy1.top#%#//scriptlet('prevent-xhr', '/api/ads') +||sina.com/ads/ +thenewslens.com##div[class^="help-tnl-"] +||jsdelivr.net/gh/huang545/huang1111@1.0/bottom.png +||szfcol.com/js/siteAd.js +||hexun.com/2017-11-07/191534592.jpg +@@||jd.com/adclick?$~third-party +||xycxhgrp.xyz^ +19lou.com##div[class$="ad-cycle"] +||qiyegongqiu1.qiyegongqiu.com^ +||jxad.jx163.com^ +tiexue.net##div[id^="Baidu_"] +ithome.com,zhihu.com##.AdblockBanner +||vryoacs.icu^ +||yhmeinv.com/mh/ +||e0514.com/do/js. +||8q88n.icu^ +qianlima.com##.seo400 +||0579.cn/SHow/Showplacenew.aspx +feebee.com.tw###ad_mid_module + #item_backfill +sportsv.net##.adv01 +||cgskys.xyz^ +||abc.yebaike.com^ +||gqleov.icu^ +qq.com##.AdTop-Article-QQ +||huoche.net/Images/pc/ad_ +ithome.com##.open-app-banner +china.cn##.bottom_recommend_box +||imgjiajiao.cn/jiajiao/js/lxonline.js +||kaiyuan308.vip^ +||xlca666.site^ +||js.ruiwen.com^ +||bootcss.com/assets/js/and +||052db.website^ +taiwan.cn##div[style*="height:250px;padding:5px 17px 5px 18px;"] +wealth.com.tw#?##root div[class]:matches-css(row-gap: 13px) > div[class]:matches-css(row-gap: 6px):has(> div[class]:matches-css(width: 300px)) +bilibili.com##.index-promote +||kzaawga.icu^ +businesstoday.com.tw##.article__mainevent[style^="min-height:"] +qq.com###ay-bottom-tips > .bd > .pic-box +||eaqlos.xyz^ +||doupocangqiong1.com/js/ptwap.js +||qqganna.icu^ +||pic.pimg.tw/cwyuni/*.gif?v=$domain=cwyuni.tw +0du123.com,100ec.cn,24en.com,3gsc.com.cn,591hx.com,acgnx.net,acgnx.se,aguitar.cn,btzx2017.com,e0514.com,eastmoney.com,guitarchina.com,gz0668.com,hk.on.cc,iguaji.com,iqiyi.com,jia360.com,jojf.cn,junk-call.com,kdnet.net,kumi.cn,netbian.com,qiuziti.com,rain2.top,solarbe.com,tiboo.cn,v2rayssr.com,woniuyulew.com,xingkbjm.com,zyue.com##.banner +||brand.sogou.com/micro?yyid= +||vzttq.brfvyrrp.com^$all +@@||i2.bahamut.com.tw/JS/ad/animeLogo.js^$domain=ani.gamer.com.tw +||u1102.com^ +ltn.com.tw##.suggest_full .C5 +@@||google.fr/translate_$media,third-party,xmlhttprequest +123.com.cn##.fixed-top +:12443/*/*-*-*.$script,third-party +bilibili.com##.topic-preview > li > a[href^="http"]:not([href*=".bilibili."]) +sina.com.tw##.tablet_above_ad +||alexa.cn/upfile/images/ +mail.pchome.com.tw##.mnav +@@||ad.ettoday.net/msg_liveshow.php^$domain=ettoday.net +@@||ad.3.cn/ads/mgets?$domain=jd.com +newsmth.net##.b-content > #sogou_banner:nth-child(3) +iqiyi.com##div[class^="video-slide_normal"] > a[href^="http"]:not([href*="iqiyi.com"]) div[class^="video-slide_row"] +||52waha.com/static/js/func_bbs.js +||a1.289.com^ +manwa.fun#%#//scriptlet("prevent-setTimeout", "/alert\('请关闭.*Chrome/") +youku.com##div[name="m_pos"] > #FullPromotion +58.com##.S_table_ding_box +ldqk.xyz,masuit.com##.bs-slider +||delivery.playallvideos.com^ +bilibili.com##.activity-slider[style="width: 1220px;"] +superlife.ca##.sidebar-ad-zone +||n0h56.site^ +||bvlang.com/ad/ +hoteastday.com##.detail_top_mask_ad +||bestqikan.com/static/js/swt.js +eastmoney.com###search > .ads +||guifun.com/psptool/ad/ +hao.360.cn###daily-hotword +@@||captcha.qq.com^*&refer=http +||360buyimg.com/jzt/temp/js/ +house365.com###youXFsmall +||gd163.*/2018_ad/ +fx168.com##div[adisload] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="game-page-platform"] +ikandy.fun##.stui-banner__pic[href="/statics/js/ky-a.html"] +||gd.189.cn/ad/$popup,third-party +ifeng.com##div[id^="couplet3_"] +||acdf115.cn^ +||bb999.net/pic/n/agents/C-79.gif +04647.club#%#//scriptlet('prevent-fetch', 'doubleclick.net') +qciss.net##.container-fluid > #lightbox +||cdn.shdsp.net/ad +sina.cn##.xc_da +||v1.wphonelife.com^ +163.com##.txt-bobo +55haitao.com##.global-dialog +@@||ettoday.net^$generichide +coolpc.com.tw##TD[onclick="cancelBubble()"] +@@||qingdaoport.net/adv/random.jsp +abminbuy.com##body > a[rel="nofollow"] > img +iwan.baidu.com###banner-info +juksy.com##.js-adCoverPopup +||bjcathay.com/s?z= +right.com.cn#@##sitefocus.focus +||rarbt.cc/js/index960_ +udn.com###simplemodal-container +2dway.com##a[href="https://www.2dway.com/5244/"] +||ehmhqcn.cn^ +dcard.tw#?#div[role="main"] div[class^="atm_26_"]:has(> div[class^="atm_26_"] > div[style="min-height:90px"] > div[id^="div-gpt-ad"]) +||27gh.cc^$popup,third-party +boylov.xyz,boylove.cc,boyloves.fun##div[data-type="1"] +||stat.house365.com^ +gdmm.com###diy3 +ifeng.com###CA_left +sina.com.cn##.cj_app_left +autohome.com.cn##a[href="https://m.autohome.com.cn/activity/special/autohome29.html"] +kalvin.cn##.fell_advertisement_box +||hiad.myweb.hinet.net^ +@@||vast.btrll.com^$domain=hinet.net +@@_370x270.$domain=bairuitool-cn.aliyun-hk03.hicheng.net +nwell.net##.f14hui[width="25%"] +||func.tw/image/func2.png +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_banner_common_wapper +||shbzgkj.cn^ +||xhbheroq.xyz^ +||hiaxj.com/dbxf/ +eol.cn###adfloat_l +offcn.com###offcn_yx +||js.passport.qihucdn.com/11.0.1.js +||beijing.buzhi5.com^ +duba.com##.side_other > .img +||51cto.com/edu/center/js/interaction_iframe.js +ifeng.com##div[class^="index_topBox_"] +7654.com##div[class^="sidebarimg"] +landiannews.com##section[id^="media_image"] +||trvxbd.xyz^ +||xkbbjtfp.xyz^ +||lolshipin.com/zt/sxx/ +||qhimgs4.com/t01d8315ddb1a5adcce.gif +||tsdfxv.xyz^ +||deliver.ifeng.com^ +liaoxuefeng.com##div[style="width:336px;height:280px;float:left;"] +le.com##.lay_body[style^="width:490px;height:320px;"] +||mdoshbx.top^ +bilibili.com#?#.video-page-special-card-small:-abp-has(>.card-box>.info>a[href^="http"]:not([href*=".bilibili.com/"])) +teepr.com##div[class^="mid-post-ad-"] +yamol.tw##.panel[style="text-align:left;width:100%;padding:0px;background-color:white"] +||gghhct36.shop^ +proewildfire.cn##.comiis_nav ~ a +@@||da.mgtv.com/m/player? +||xinyi.com/Public/config/Couplet/Index39.js +||dpedrt.xyz^ +fjsen.com,nuomi.com#@#.right-ad +houdao.com###header-ban +51zxw.net###video div[class^="adBar"] +||yuanpinghengkangfuyouxiangongsi.top^$domain=9xav.cc +duba.com###J_BottomAdBan +hihbt.com##aside[id^="advert-"] +||lih6e.site^ +||sohu.com/i/?pvid=$popup +51zxw.net###idSlider +blog.163.com##.m-regGuideLayer.f-trans +||tvpqnh.xyz^ +daydaycook.com##.ad-mask +ck180.net##.mitao +greenxiazai.com##.yinsu_xz +||jizxnr.xyz^ +mytheme.cn##.ad01 +tongxiang.net##.mmver.w-1200 +||ckmbig.xyz^ +||wake-up-neo.com/bnet/ +hxsd.com##.left_side +91porny.org,jstv600.com,x9av7.com#?#.card:-abp-has(>.card-image>a[href^="http"]) +||scw98.com/js/Index +||weacdf211.cn^ +afzhan.com,iqiyi.com##.rightAdv +||qq.com/static/web/websites/newsplugin/ssp_ad_ +||66game.cn/skinnew/js/ad.js +||eastday.com/iframe/ +zhihu.com##.Sticky > .Card[data-za-detail-view-path-module="ContentList"] +fox-saying.com#?##sidebar__inner > #links-row-1 > .box.folder:has(> h4:contains(AD)) +||aapeople.cn^ +||bpdtrfb.xyz^ +||shui5.cn^*/ima/gg +gaoqingw.com###searchform > label > span +||nyvgbt.xyz^ +hao.rising.cn##.search-right +shm.com.cn##.w1000.surround +||muyuge.com/fw.html/ +||hwpvbdj.xyz^ +@@||ibf.tw/user/plugins/webtech-topbar/fuckadblock.js +@@||cocomanga.com/js/ad_/$image +||hscq8.cyou^ +||s.yimg.com/ja/ap/tw/js/ +lenovo.com.cn##.adver-bg +morningpost.com.cn##.gg-stl +18comic.*##.top-a2db +||1909.me/upload/ad/ +xitek.com##a[href*="/adclick"] +||zpvfsrb.xyz^ +xxxxx520.com##.ripro_gg_wrap +||eht116.com^ +||880sy.com/Public/js/*_gg.js +||fnjoomqa.icu^ +||xn--mts60is5y5uk.com^ +||atiws.aipai.com^ +||yywz123.com/file/A*.js +@@||goodinfo.tw/StockInfo/image/*.png +tuwan.com##div[style="width: 360px;margin-top:10px;"] +||cpro.zol.com.cn^ +hkepc.com##.headBanner +||shbzokj.cn^ +||bdstatic.com/tb/cms/activity_head/file_ +juejin.cn##.recommend-box +||xstt5.com/skin/v3/js/dibu.js +nextapple.com##div[class^="na-ad-"] +gameapps.hk###top-ad-left +||cee1.iteye.com^ +chinatimes.com##.tab_4_box +@@||img4399.com/static/huodong/daily/fpv2.js +||meijutt.*/js/pcjs/ +||lgmi.com^*_gg +hk01.com##div[data-id="lazyload-placeholder"] +weiyun.com#@#.page-share +||debugease.com/static/js/show.js +baidu.com##.ec_ad +anywlan.com##.bscekvofc_o +v2ex.com##div[class^="wwads-"] +~sinaimg.cn##a > img[width="980"][src*=".sinaimg."] +2345.com###cnxh +||daiwofei2019.top^ +3d66.com##.advertisement-carousel +||yjwxegq.icu^ +co188.com##.suspen +eweiqi.com##.guoqing +||s8bbs.com/ad/ +xblian.com##img[alt*="广告"] +||stat.cnmo.com^ +||p.wktfkj.com^$third-party +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="right_timeliness2"] +||china.com/zh_cn/ads/ +||eap.enorth.com.cn^ +||58avgo.*/AirADPic/ +||kiolpia.icu^ +||qiyipic.com/common/fix/dasdasdasdk.jpg +ruanyifeng.com###homepage_pos +||fenxiangdashi.com/img/banner/ +163.com##.top-gg-area +@@/images/share/*$domain=search.www.gov.cn +||70.86.24.120:8060/ +||1p3yg.icu^ +||vcnpnf.xyz^ +||415677.com^ +feebee.com.tw###ad_bottom_module +||alicdn.com^$domain=99re.com +memes.tw##.nice-box +||ad.hot-mob.com^ +||uaiqp.top^ +||p45m0.icu^ +2345.com##.s11-fixNav +||ugidskit.top^ +||image.51cto.com/ad/ +://*:*/chunyu.html?k=$csp=script-src +news.qq.com,www.qq.com,v.qq.com,new.qq.com#%#//scriptlet('json-prune', 'ads') +nfuwow.com##.midbgdbox +@@||autoimg.cn/bi/common/pvevent_all_ +porn5f.com##.preroll-adv-two +||binga03.shop^ +||woublie.top^ +||qyer.com/qcross/home/ajax?action=banner +||asp300.*/2012js/ +huanqiu.com###winNext +qq.com##.qGirl-wrap +||yanu.qiniudn.com/*x60. +@@||winwk.com^$generichide +||94itv.net/f/ +cartoonmad.com##tr:nth-child(n+5) > td > table[width="732"] +58.com,pcpop.com,phpernote.com,zh141.com##div[id^="ad_"] +hc360.com##.baidutuiguang +baidu.com##.rec-feeditem +||stat.timedg.com^ +acfun.cn###prompt-box +fengniao.com###ad-head +||99smsf.com^$third-party +firefoxchina.cn###theme-side-banner +||54gtlb.cn^ +||z1.chezhuzhinan.com^ +||sdfewed.com^ +||kanxiao.net^$third-party +||cdn141.com/banner/adcards. +||xl720.com/tmp/ +~95504.net##.ggbox +||z4a.net/images/*/960-60. +@@||bdimg.com/static/wenda-pc/widget/share/share_ +kukuo.tw#?#article > aside.left > .adsbygoogle:upward(1) +dismall.com##.d_money +edh.tw###caas-vm-container +downbank.cn,greenxf.com###speed-download +||adpai.thepaper.cn^ +||codekon.xyz/wp-content/uploads/yHX +@@/img/ad_$domain=p9.com.tw|ruten.com.tw +||0597ok.com/ilike/597/ +||cpro.baidustatic.com^ +||51credit.com/js/app/end-layer.js +kuwo.cn##.tuiguang +chinanews.com.cn##.tp_adv +||zcaijing.com/images/ +||ibqmey.xyz^ +aura.cn##.foot-xcx +||avvfjhg.xyz^ +oschina.net###project_ad_banner +hupu.com##.m-app-info +jjwxc.net##[id^="adp_"] +||al.newxue.com^ +||caomeixz7.xyz^ +||fpdisplay.com/templates/default/js/palyflash_ +douyu.com##a[href*=".miaozhen.com"] +||vv1.pyhfxdm.cn^ +@@||ohmanhua.com/js/*.js +||bdstatic.eastmoney.com^ +||miaozhen.com^$third-party +||mnfse.cn^ +||e3c7.com/love/ +||cdgfa.ifeng.com^ +wbiao.cn##.wb-panel +ant.design###geektime-ads +||sobt8.org/Public/static/js/common.js +||ad*.on.cc^ +||edu.jiukang.org^ +||7299tu75.cc^ +||lgmi.com/tjyf200x207.asp +36mh.net##div[style="width:960px;height:300px;margin:0 auto;"] +||easteat.com/templets/default/images/media-top.png +dzbhdm.net##a[href="https://www.dzbhdm.com/"] > img +91porna.com##.carousel-container-bottom +||gtimg.com/sports/qingyang/ +||linj.top^ +daydayin.com###adbn_UMU +||kuakao.com:6053/floatcard? +mnw.cn##.mnw_top_ads +04647.club##div[class*="bannerBox"] +||dkyd6.xyz^ +niotv.com##.epg_ad3 +cgdyx.com##.zib-slider +@@||monnsutogatya.com^$elemhide +||alicdn.com/imgextra/i3/1731999033/TB2lAJufnlYBeNjSszcXXbwhFXa_ +cloud.tencent.com##.mod-commercial +||baifen.music.baidu.com^ +||moe48.com/static/img/1200x +||xn--xhq326apqhcx0d.cn^ +rouman5.com##.fixed-bottom +wasu.cn###scan_qrcode +||chdbits.co/pic/*-*.gif +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[srcid="13602"] > .c-border +league-funny.com###popupvideoad +engadget.com#?#.Py\(40px\):-abp-has(> article > .D\(f\) > .Pos\(r\)[data-ylk*=":AD;"]) +||impservice*.yodao.com^ +||gmgbmzz.xyz^ +||ali213.net/news/kx/ali213-kx-data.js +||lianmeng.la/cde/recommend.js +||szfmr.cn^ +ithome.com##.rds +dm5.com#$#body[style*="overflow"] { overflow: auto !important; } +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_encourage-tbguess\/pagelet\/sidebar +||btwuji.com/jsj1/ +||abbao.cn^*adblock +||2yjw.com/statics/js/jquery.min. +||wdadad.cn^ +||googletagservices.com/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=gamer.com.tw,important +88files.net#%#//scriptlet("prevent-window-open") +||cdndm.com/12/2016/$domain=1kkk.com|dm5.com +hmitalk.com##div[data-adid] +stockstar.com##.ss-ad-icon2 +||rsyepnq.icu^ +ali213.net###tmp_ggao +||gkcogyf.icu^ +233.com##.gads2 +9312.net##.pop-up +||dealmoon.com/build/js/www/home/activity-pop/index. +||9k9k.com/jscode/js/ +||buxfznnf.xyz^ +||kekenet.com/Images/*/tom640X40.gif +dailynews.sina.com##.TopNav + table +||lznpcwl.xyz^ +||fluxy.cn^ +baidu.com###wgt-left-promo +tieba.baidu.com##.client_ad_topBanner_all +||qhimg.com/ssl/20212c7594890e1c.js +doc88.com##.adpx250 +acwifi.net##.article-content > div[style="float: none; margin:10px 0 10px 0; text-align:center;"] +18-comicfrieren.xyz,18comic.org,18comic.vip##a[href*="//"]:not([href*="comic."]) > [style*="back"] +||souka.me/ad/ +yesky.com##.main_left_advertisement +chinaz.com,58b.tv,8fun.tv,99kubo.tv##div[style^="width:300px;height:250px;"] +||tzelzfnj.xyz^ +ithome.com##a[href*="/lapin."] + .ad +126.com,163.com##.gWel-promt +324324.cn###gg_728_90 +||5mm.zxfw5.cn^ +||lgmi.com/left_right_ +||d3d7a0q05k6bvz.cloudfront.net^ +@@||sohu.com/integration-api/mix/region/*&refer=http +||777bb111ww.com^ +||hdtvnr.xyz^ +||ldmnq.com^$third-party,badfilter +bilibili.com##.extension-tips +@@||google.so/translate_$media,third-party,xmlhttprequest +goodcome.com.tw###jad-right +@@||sohu.com/upload/static/share/share_play.html +maidi.me###diy15 +@@||9zvip.net^$elemhide +||98158.com^ +||duluoweiyu.com^ +||mlhdvjv.xyz^ +||18avday.*/aa/ +player.hboav.com#%#//scriptlet('set-constant', 'player.VastADPlugin', 'noopFunc') +||98wjse.top^ +16rd.com###diy_bbs_list_right IMG +||1688.com/b2bxad? +||aogk88.asia^ +||jnifdlaa.top^ +@@||mediav.com/js/reward_video_pc.min.js$domain=baiten.cn +||xdmnlxtu.xyz^ +~car.kdslife.com,enet.com.cn,fjsen.com,hupu.com,kdslife.com,~my.hupu.com,mysteel.com,news.cnyes.com,pchome.net,rznews.cn##div[class^="ad"] +||ekzzed.icu^ +zdface.com#@#.top-ad +114la.com##.headline +blog.sina.cn###pl-blog-tbyy +||phvfevk.xyz^ +||k1.wanwenwan.cn^ +@@||viu.tv^$generichide +silver.org.cn##div[class*="_gg"] +agentm.tw##.gpt-ad-slot +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###search_button_wrapper +hupu.com###game-center-entrance-container +||vejhln.xyz^ +114la.com,ylmf.com##.bighd-top-bar +sydneytoday.com##.mygad +||qtoidch.icu^ +firefoxchina.cn##.sp-content +rising.cn###viphui +||ityusio.top^ +||hyuwkbu.top^ +||l7ghj.xyz^ +1kkk.com,dm5.com###lb-win +1314gl.com##a[href*=".apkpackagesys.com/"] +||dyccdk.xyz^ +||1.xuexi.la^ +||ykujch.icu^ +||yfsstec96.xyz^ +jrj.com.cn###comment > a:first-child +pixnet.net#%#//scriptlet('abort-current-inline-script', 'window.leave') +setn.com###FBAnchor +||a.wifi33.com^ +:701/gd_xueersi/$popup +||xchina.*/plugins/jquery.modal/ +||mycxhgrp.xyz^ +||hynahyqq.xyz^ +mirrormedia.mg##div[class^="related-article-list__AdvertisementWrapper"] +jiegeng.com##.banner_1212 +423down.com##.entry > p[style^="color:red"] +||buoizbtl.xyz^ +||163.com/special/*/ted_vad. +||sinaimg.cn^$domain=t66y.com +||shzzzz.dftoutiao.com^ +||eeyy.com^$third-party +||av6k.com/templets/default/%E5%A4%A7%E5%93%A5/ad.js +guilinlife.com#?#li:-abp-has(> div > .content-other > .content-type:-abp-contains(广告)) +getitfree.cn#%#//scriptlet("abort-current-inline-script", "document.getElementById", "/!document\.getElementById\([\s\S]*?\.style\.display=/") +lawtv.com.cn##div[style=" width:664px; height:260px; margin-top:10px;"] +||kanshushi.com/yyddssdd. +16rd.com##.c1c2_b1b2_adbx +||reryt111.fun^ +||bugzmn.icu^ +||hnrjign.cn^ +||222aa333bb.com^ +||kuheju.com^$popup +://*btbtt.*/view/image/QT_ +||uwants.com/dfp_forum.php?au=Uwants_Web_ +||ocggec.xyz^ +||120askimages.com/ask/js/askfrom.js +||vpwizuj.icu^ +||rbfxoex.xyz^ +jingyingjiajiao.com##DIV[style="width:auto;border: 1px solid #aaaaaa; position:fixed; bottom:1px; right:1px;z-index:2000"] +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(span[class^="wbpro-icon-search"]:-abp-contains(/商|上新|好物/)) +||jiaoben.eastday.com^ +@@||suning.cn/project/msIndex/js/?? +||sw76r85eda3k.com/need/h5. +||eic.org.cn/api/Popup? +||gridline.cn^ +||getitfree.cn/wp-content/plugins/adunblocker/*.js +||mqsnce.xyz^ +||hdtedar126.shop^ +||inworket.com^ +gitee.com##.fixed-notice-messages +@@||adidasoriginals-lookbook.com.tw/js/adtracking.js +baidu.com,bdimg.com,tieba.com#?#.thread_item_box:-abp-has(div[class*=" fc-"]) +||gghhce96.shop^ +cnblogs.com###cnblogs_c2 +iqiyi.com##.search-item-box:has(> a > div > div[class^="ad_adContent"]) +qianzhan.com##.kfonline2 +||vxfdepn.cn^ +||dyegif.icu^ +theav.xyz,69xx.one,theporn.cc#$##alert_windows { display: none !important; } +||pkfuxvbk.xyz^ +||usejj.wangkl.com^ +||jsdelivr.net/gh/*/960-80.gif +ifeng.com##.pic950 +jieav.com#$##comment { margin-bottom: 0 !important; } +||tyuwkbi.top^ +xzji.com##.speed +||imgsrc.baidu.com/tieba/pic/item/$image +||bmp2.ali213.net/js/ +soku.com###\5f xbox_ad +investing.com##div[class*="overlay_overlay"] +||ebwonro.cn^ +||51hanhua.com/2013/ +chinatimes.com##div[class*="googlead_"] +||dscds111.fun^ +||lesenjiaoyu.xyz^ +||bd100.010lm.com^ +||xpicj8.cc^ +money.163.com#$#.finance_header_gg { display: none !important; } +mydrivers.com###div_newsyjgg +rrys2019.com##.lx167 +||ddnzpr.xyz^ +||tgccct.icu^ +qzone.qq.com###appCanvasRecentAppActivity > .activity-area +||thnuvgme.icu^ +@@||count.taobao.com/counter$script +||yssryr.cn^ +||chayassa.com^ +@@||ads.lingxing.com^$~third-party +@@||lib.baomitu.com/video.js/*/video.min.js$domain=69xx03608.xyz +iciba.com##.cb-downmask +||39.net/PictureLib/A/f76/20160825/org_749281.png +youku.com#$?#.newswiper_big_swiper_container > div.swiper-container-horizontal > div.swiper-wrapper > div.swiper-slide:has(> a[data-href]:not([data-href^="https://v.youku.com/"]):not([data-scm])) { remove: true; } +||p5kzev.com^ +||u1077.com^ +eprice.com.tw###popup-ad-overlay +so.com##.spread +hao.360.com###festival-firework +||uiatkc.xyz^ +||alicdn.com/kf/Uc07bb4287e9d4fd0a7a26204b13ef9ae7.jpg +||cnrdlpk.xyz^ +||ooqiu.com/ad_js/ +||mkbbjtfp.xyz^ +||yivkzvog.xyz^ +map.baidu.com##.damoce-search-item +||91rb.net/fc/ +||3397ys.com/e/public/onclick/ +||chuantu.biz^$domain=7mav2.com|thztv.cc +||topicimg.1234567.com.cn/product/2021/1/11/b914f8b6-fb61-4c85-834f-863b67c13a45.gif$domain=fund.eastmoney.com +||xn--2ss830adjbqy7h.xn--fiqs8s^ +||qcjycg.com/template/conch/asset/js/hl +hao.360.cn###festival_fly +||bdstatic.com/tb/zt/tengfei/gzdialog.jpg +||mddcloud.*/oweApi/ad/ +||eyislow.top^ +music.wandhi.com##.google-auto-placed +pigai.org###newnotice +||yesky.com/s?z= +||utnwxhjv.xyz^ +@@||count.video.sina.com.cn^*?video_ids= +icook.tw##.recipe-ad-placeholder +||zndvfrl.xyz^ +||ptppcyg.xyz^ +bbs.52life.cc##.part1 +||hdipsumu.top^ +||qvxtzi.xyz^ +||tvyb03.com/template/mytheme/statics/js/layer/ +||caomaotongji.com^ +ibm.com###dw-regbar +mgnacg.com##a[href^="https://fanqiev2.work/auth/register?code="] +ckxxbao.com##.weixin +||zuofang05.com/template/mytheme/statics/image/1/ +linetv.tw#%#//scriptlet('prevent-xhr', 'pagead2.googlesyndication.com') +ithome.com##.rm-modal1-bg +@@||fharr.com^$generichide +@@||ggg50.pw^$generichide +sohu.com#@#.label-ad +twinsyang.net#@#.Zi_ad_a_H +xiebruce.top#%#//scriptlet("prevent-addEventListener", "", "showRemoveAdBlocker") +chem99.com###J_tcode +||mowenxi.com/1.png +||weikeys.com/js/zt.js +d1xz.net##.base_ad_960_90 +||bdfjw.cn^ +||76xh.com/skin/zxf/js/*Out.js +||lawtv.com.cn/jd_ceshi.html +suxzp.com##.full-screen-cover +||yeyou.com/2013/new/yeyou-float-window.js +||haomm.com^$third-party +||jsdelivr.net/gh/te89899/ +360doc.com###arttopbdad +||kvsvug.xyz^ +sina.com.cn##.adF +||pirubcfy.xyz^ +||tiiepofl.xyz^ +hao123.com###shortcut-tuiguang +||lcefsf.icu^ +||mlgowell.com^ +||huishij.net^ +lysq.com##div[id^="followDiv_"] +||cpro.baidu.com^ +||manqian.cn/784a6e27-be5b-4442-86e5-9f4adb51894d? +||images.sohu.com/bill/ +||slkkbnsgn.com^ +1688.com.au###side-ads-wrapper +||99meiju.tv/js/tj.js +||cdn-data-cloud.com/history/ +sanv.org##.main-nav +||adblock.sina.cn^ +61.iqiyi.com,v.61.com###J_videoBox > .view +pcsoft.com.cn##.shuang11 +||yantuchina.com/Upload/Ad/ +duonaolive.com##div.nav-mobile +banzou.name###daiyan +||lanrenzhijia.com/Public/images/head_right_top.gif +ltesting.net##.ltad_580 +chazidian.com###worldcup_float +||infocab888.life^ +||58tg.com^$third-party +||ayxz.com/images/enkj_small.gif +hihbt.com#?#.theiaStickySidebar > .widget_custom_html:has(> .textwidget > p a[target="_blank"][rel="noopener"]:not([href^="/ac"]):not([href^="/asian"]):not([href^="/category"])) +pcstore.com.tw##.bestshop_ad +||gxnews.com.cn/clientscript/index_duilian_ +pptjia.com##.alert2_wrap +dianping.com##.QQlink +blog.163.com###r_m163news +||szmkr.cn^ +||dioguitar23.*/images/*.gif +@@||criteo.com/delivery/ajs.php?zoneid=$script,domain=gaus.ee +||5054399.com/js/rice/m.js +||pc6.com/img/ +||libhzf.xyz^ +_yad_jsonp_ +||9129666tp.com^$domain=9xav.cc +||1k2l3m4n5o.com^ +||9tata.com/js/www.js +api.guailie.com#%#//scriptlet('set-constant', 'killAdKiller', 'noopFunc') +sharonlife.tw#?##sidebar > div.widget:has(> h4:contains(廣告)) +||dnwx.com*/ad$image +iyf.tv##vg-pause-ads +windowszj.net##.g_slide_title > .feedback +@@||acgdraw.com/ad$xmlhttprequest +||r9ffi.fun^ +||exoav.com/nb/nt.js +18avtube.com,mm-cg.com##.CN_qmvtoy +@@||9zvip.net/wp-content/plugins/detect-adblock/js/ads.js +mfa.gov.cn,fmprc.gov.cn#@#.adbox2 +||qqtn.com/js/*0.js +||gxjajt.com^ +||keyrun.cn^$third-party +||shanvezhu.com^ +||micaitu.net/js/dibu.js +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div:not([id]) > style[id^="s-"] + style + div[id] +||duboku.net/static/images/20201111 +||0322cfmtl.cc^ +||9669.cn/ipdat/duilian/ +||twrank.com^$third-party +baidu.com##.sfc-image-content-adtext +theporn.cc##.gg-config +bmlink.com##.fixedBg +99kubo.tv##div[style="width:970px; height:250px;"] +||qhres.com^*/baidu_ +sojson.com##._right_ad +||ufile.cc/crod.js +96weixin.com##a[href^="/show/ads/"] +||countpage.sznews.com^ +||vdggsd010.com^ +||pconline.com.cn/count.php? +||ovfvkfc.xyz^ +163.com##span[class^="gg"] +sm.cn###sc + .article.ali_row +miercn.com##.color-box +||3344mf.com/js/ +||tupian6666.com^ +||xvzcfh.xyz^ +:6607/qy/$script,third-party +||youdao.com/ctlog? +touzi.com##.tck-cover +||stat.baike.com^ +||shbzhkj.cn^ +@@||ozabc.com^$generichide +mcdulll.com###box2155090 +tongren.gov.cn###tanchukuang +iqiyi.com##.float_div_r +2345.com###m_banner_2 +||127.net/2018/08/15/71ee02b5b61c4090b3ce0116306596c2.jpeg +||962.net/show/all_$script +||uedas.$domain=qdmm.com|qdwenxue.com|qidian.com +win007.com,win0168.com##table[id^="table_Ad"] +||155zn.com^ +news.ebc.net.tw##a[href^="http://www.ebcbuzz.com/url/"] +||shihuo.cn/alibtn_ +hao.360.cn##.festival_snatch +||sentcss.com/get/showcase/ +||xdfdqce.xyz^ +4gamers.com.tw#?#.container-fluid > .vue-portal-target:has(> div[style] > .aroma-news-detail-iframe-ads) +||dlkoo.cc/down/*.htm$popup +||tarvrf.xyz^ +blog.zhheo.com#@##footer-banner +||420909.cn^ +qyun.vip##.tp_advertising +codenong.com###sidebar aside[id^="text-"] +||dmym.aixyy.com^ +||fjzimaoqu.cn^$third-party +event.biotherm.com.tw#@##ad2 +||scfh9.cn^ +||shuneiya.com/static/js/ding.js +mobile01.com#$#body { overflow: visible!important; } +||rewrwrt4.fun^ +||pxx.tnklrs.cn^$third-party +||sunpma.com/other/logo/ +image.baidu.com###cmsimage +storm.mg###floating_btns_wrapper +||w.xiaopiaoyou.com^ +||ttrruq749.shop^ +ck101.com##.btn_dw_app +7060.la##.tuiguang +||a1bw2cup.top^ +||hahamx.cn/images/banner/ +51zhishang.com###kyzb_layer +||20szp.com^ +goodav17.com#%#//scriptlet("abort-on-property-read", "popunder") +||vipgogo123.site^ +||vmnlkr.icu^ +jinti.com##a[href*="immobel.com"] +||ali213.net/static/js/kv +biznetvigator.com#@##container_ad +||same*.stockstar.com^ +||greenxf.com/js/2019/ +||youqunjx.com^$third-party +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.activity_iframe_container +huya.com##.nav-expand-list #J_tt_hd_category_ad +||mdezco.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.EC_newppim +cnitpm.com##.erweima +lahoo.ca##.a_af +||aly.la^ +||hgcgnfe.icu^ +||onifdlak.top^ +firefoxchina.cn##.side-tool-outer > div[class]:first-child +||bzqqftz.icu^ +tvsou.com##.story_ad_ios +||yj2nf.icu^ +||o.phb123.com^ +news.lyd.com.cn##td[width="300px"] > table[width="300"] > tbody > tr:nth-last-child(n+2) +pilipali.cc##.tips-widget-weixin +||reportlog.dftoutiao.com^ +||cao0002.com/vip/js/ +||dyjqd.com/images/js/dyjqd.js +httpcn.com##a[href^="http://www.okbmf.com/"] > img +chem99.com###div_main_ta +||jy09.shop^ +acwifi.net##.widget_ssr +||touimg.com^$domain=dyzd1.com +||okooo.com/I/?method=system.data.ad& +mydrivers.com##.good_ths +||bjwj2y.com/JS/LsJS.aspx +tongxiang.net##.x15sdv.display_3_3 +55188.com###center-pic +ablesci.com#?#.able-container-body-right > .fly-panel:has(> div > img[src*="-alipay-autumn-hongbao.png"]) +||ijmxco.xyz^ +||ileled.xyz^ +focus.cn##.index-app-download +nanfengyl.com##.top-ad-txt +||217hs.com/js/jquery.js +||ruiwen.com/sp/ +||xvzfyra.xyz^ +mobilemagazinehk.com##.adv2 +||ktwwzqdx.xyz^ +||lsjazn.xyz^ +||159i.com/nd/scxd.js +ifeng.com##.js_url[href^="http://dol.deliver."] +||webkaka.com/info/script/articleAd.js +||1905.com/data/js/*.json?pwd=*.shtml&rand=$xmlhttprequest +le.com##.Banner +||6qyxeob.xyz^ +pilifx.com##.imoney +||shbzqkj.cn^ +@@||bdimg.com/advert/js/advert.js$domain=music.baidu.com +anjuke.com###xajk_down_new +||baidu.com/baidu.php?url=$popup +gvm.com.tw##.promotion_ad +2345.com##.cmoe-nxh-dx +||pcstore.com.tw/css/myacc_init.js +@@||kaitao.cn/public/wenda/ad/css/ds-un-detail.css +yahoo.com##div[id$="-Ad-Proxy"] +angelweb.cn##.gg250x250 +jkpan.cc#%#//scriptlet("abort-current-inline-script", "document.writeln", "\u") +||richh.cn^ +banjiajia.com##.register-box +360kan.com##.eb-rightbox +||qqtn.com/skin/know/ +kankan.com###modal-adv +cyol.net##.AD960_90 +||m.kukudm.com/mg/show1.js +mtrend.cn###topictabs1 +so.com##.js-left-rec-busi +bilibili.com#$#.bili-video-card:has(.bili-video-card__info--creative-ad) > .bili-video-card__skeleton { visibility: visible !important; } +||mcmod.cn/editor/upload/20221126/1669399546_2_ONBt. +gasaq.com###guanggao_right +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.banner-wrapper +sina.com.cn###commonSideBar +nfuwow.com##.crightbtad +||xliffnsc.xyz^ +163.com,~love.163.com##a[href^="http://love.163.com/"] +linovelib.com#$#body[style] { overflow: auto !important; } +||etadult.com*/images/20 +@@/adaffiliate_$image,domain=ipfs-lab.com +||51.com/up/bdfmt/ +||gocye.com^$third-party +duowan.com##.lolboxapps-qrcode +2345.com###corner-flash +||x1.52aoteman.com^ +blog.iportable.in##body > b[style="z-index: 10000;"] +anoneko.com,dmhy.org,ye1213.com##div[id$="_ad"] > a:first-child > img +||linuxidc.com/linuxfile/list +||bignqzm.cn^ +||lweriol.top^ +||tp.sgcn.com^ +||mlstx.cn^ +||alicdn.com/img/ibank/*_!!4231779133-0-cib. +3dmgame.com##.abstergo +military.china.com##.slide_doubleimg > .baiBox +||5ilog.com/qq/js/jsgg.js +bbs.fobshanghai.com##table[cellpadding="4"][style="background: #D6E0EF"] +xinhuanet.com##.adv3 +guahao.com##.link-modal +ltn.com.tw#$#.whitecon > .related[data-desc="相關新聞"] > li:nth-child(5) { margin-right: 0!important; margin-left: 20px!important; } +@@||yimg.jp/combo?*/ad/ +@@||translate.googleapis.com/element/ +||knfhxszj.xyz^ +51dll.com,fulisuo.com###aa +||sspai.com/api/v1/recommend*=article_ +firefoxchina.cn,taoyitu.com##.float-banner +baidu.com##.desktop-guide +ilvruan.com###text-14 +||yskicm.xyz^ +fengniao.com,zhiding.cn##div[id^="AD"] +omnitalk.com##tr[bgcolor="ffffc8"] +||awaw.asia^ +comic.qq.com###fixed_right > div +fastadmin.net##body > a[target="_blank"] +@@||autohome.com.cn/javascript/fingerprint.js +||nmmemzi.icu^ +||msg.ettoday.net^ +||uywoynr.cn^ +ifsp.tv##.video-page-right +||6zfem.icu^ +||922tp.com/wp-content/uploads/*0x +||51ui.cn/js/500200.js +||ygshu.com/js/h +||supfree.net/baotu. +iqiyi.com##li[id^="100000"] +mcdulll.com##body div[class*="-mib-ad-"] +||js.yanyue.cn^ +||lyislol.top^ +money18.on.cc#@#.ads-bg +||dsp.lenovo.com.cn^*&clientType=api| +le.com##.broadcast-adv +||zpgjz.com/cdn/new1/4.gif +||yyetss.com/static/modal.js +discuss.com.hk##iframe[src="/fb_page_plugin.php?interface=web"] +fx678.com##div[class^="hc_ad_"] +||xywy.com/zhixing/ +||anhuinews.com/include/ +txahz.com###archy_ad2 +mydrivers.com##.duilian2 +||3h3.com/js/homepage.js +||discuz.gtimg.cn/cloud/scripts/discuz_tips.js +||oaftaijo.net^$third-party +||adsame.com^$third-party +||shuakongbao.com/resource/images/banner/ +||hsvmtn.xyz^ +||php.cn/ad1. +||zvtnj.icu^ +||tnifdlai.top^ +image.so.com#?#.imgcell:-abp-has(.txt:-abp-contains(广告)) +||pztezl.xyz^ +it1352.com##.glyphicon-certificate +||jiandan100.cn/images/site/union/ +||captickc.com^ +||zhaweifeng.com^ +ifeng.com##.leftpopad +||*.$image,rewrite=abp-resource:1x1-transparent-gif,third-party,domain=rmdown.com +||835images1.com^ +||fbfrbt.xyz^ +czzy01.com#?#.swiper-wrapper > div.swiper-slide:has(> a[href^="https://"]) +||ostjpig.cn^ +||itad.linetv.tw/api/v2/vmap?ad_id=$xmlhttprequest,redirect=nooptext +||go.hangzhou.com.cn^ +||isdspeed.qq.com^ +||pengwei168.com/template/stui_tpl/html/vod/f.js +lenovo.com.cn##.bottom_ad_ban_bg +||qpgyy.com/add01.html +u7u9.com##.xw-right-ad +so.com###e_map_idea_detail_lists +@@||serving-sys.com/serving/adServer.bs?$popup,domain=hongkongcard.com +firefoxchina.cn##.feed-pmt +18avtube.com,mm-cg.com###partner +||iptv444.com/ad- +||qc1.cheshipin.com^ +ifeng.com##a[href*=".app"] +||giaoji.com/Runtime/Js/ +||ccmeng.com^$third-party +qidian.com,~game.qidian.com##A[href*="game.qidian.com"] +csdn.net##.float-left > div[id^="dmp_ad_"] +dianping.com##.votelist + .aside-box +@@||vipstatic.com/img/share/blank.png +en8848.com.cn##.list_adv +||pcpop.com/pv/pv.js +ggdoc.com.cn#@#.addiv +ahtv.cn,sexbarss.net##.l1 +99tianji.com###banner_gg +||1188.com^$third-party +szonline.net##.layout_ad +||szdzn.cn^ +ali213.net##.head-left +||mymahuxv.xyz^ +||dvlith.xyz^ +alu.cn##.Tg_590x60 +||rakuya.com.tw/position?task= +||gqwwshbdd1.fun^ +||1x6666.com/img/ +csdn.net##.padb0 +duba.com###fixedad +sina.cn##[data-videojc*="://sax"] +sex8.cc##.gd-list +@@||o.auspost.com.au.ssl.d2.sc.omtrdc.net +raenonx.cc##.main_ads-content + div +||tmoclbf.icu^ +sohu.com##a[href*="_Click_Flow_recommend_"] +||txhfgwgkwt7.asia^ +||szpzk.cn^ +||pxqqytk.icu^ +||dig.chouti.com/advert +||scint-x.com/js/ +xiaohutuwb.com##.ceo_ads +gamer.com.tw,pili.com.tw#@#.text-ads +159i.com##a[href*="/"]:not([href*="159i.com"]) +eepw.com.cn###startvideo +||esyliew.top^ +||kanshushi.com/js/nxnhsqe. +||redyzlmc.xyz^ +tech.qq.com##.kjad2 +@@||zpmobi.cn^*/ad.css?$stylesheet +ifeng.com##div[class^="bottomDbox"] +jitashe.org##.bc_side_250 +||shbzjgs.cn^ +baidu.dj###ETE +||bjmama.net/a/spc_ +||rrkouuz.icu^ +pilipili.site##.block-sales +||hasdjksndjk.com^ +||jyuskb.cn^ +||vqlwoy.xyz^ +baiduyun.wiki##.tecent-adsense +||121zou.com^$subdocument +downza.cn###priDownBtn + a[href*="?module="] +qinbing.cn##.zjlmad +||mzpecui.icu^ +||tiao1.cc/static/default/js/loadLM.js +||mvpqrydt.xyz^ +||tianyaui.com/cms_fragments/res/*/bbs_include_mod.js +||axhfeum.xyz^ +||pipix.cc/gg.gif +1688.com.au##.ad_300_p +tie.163.com,uump4.com,uump4.net###top-banner +||m.mianbao99.com/js/detail.js +||dm.aizhan.com^ +||xdcad.net/source/plugin/disad/disad.js +oschina.net##a[data-traceid^="questionbanner"] +||djxpnuo.xyz^ +jandan.net##a[href*="/money.php?"] +||duyewnf.icu^ +qq.com##.ad-foot +58.com##.guaguabox +||bad996.com/dakaads.js +fx361.com###k_s_ol_chatWinSm +nowscore.com##div[style="background-color:#F0F0F0;line-height:25px;height:25px;text-align:center"] +douban.com##.rec_topics_name[href^="https://erebor.douban."] +||yddjmpjo.xyz^ +||bnlbecm.xyz^ +fx168.com##.jy_ny2018_content_LeftAd +rjno1.com#%#function preventError(d){window.addEventListener("error",function(a){if(a.srcElement&&a.srcElement.src){const b=new RegExp(d);b.test(a.srcElement.src)&&(a.srcElement.onerror=function(){})}},!0)}preventError(/^(?!.*(rt-error.js)).*$/); +||bdcode.2345.com^ +||motsjnv.cn^ +||doc88.com^*/count.js +||mn1180.top^ +||vdggsd013.com^ +bfmusic.com.tw,workercn.cn#@#.ad_content +123.chinaso.com##.right-list6 +123.sogou.com,web.sogou.com##.dropBox_list > li > a > span[style="color:red"] +home.ifeng.com##.fengjc02 +||xn--xhq326aj6yqpw.com^ +vpser.net##.ab_cpb +||liantu.cn/script/ +||yibian.hopto.org/apng/load.php$important +yahoo.com##div[class*="bg-Ad"] +@@||rm.sina.com.cn/minisite/*/css/art_normal.css$domain=client.sina.cn +ilvruan.com##a[href^="http"]:not([href*="ilvruan"]) > img +yy.com###rbappend +||qzozsa.xyz^ +||2345.com/right/homepage/tqbChannel_ +@@||519.best^$generichide +||lhmgoik.icu^ +androiddevtools.cn###auto-scroll-ad-box +||gd.sina.com.cn/iframe/22/ +jrj.com.cn##.piboxtwo +cq.qq.com##div[class^="ad-box"] +||s7tu.com/images/*.gif +||edjjpgf.xyz^ +||daliantong.com.cn^$third-party +||xtrkhv.xyz^ +||revsci.net^$third-party +lenovo.com.cn##.game-bd +||nkfith.xyz^ +rjno1.com#$#body #aswift_1:not(#style_important) { display: block !important; } +131458.com##.divGuanggao +||rcnithgm.xyz^ +||ccement.com/js/ccement_new/open.js +||hackp.com/im/ +||sogou.com/uniplan/?pageID= +ifeng.com##.right_gg +2345.com###m_banner +||dlkoo.cc/down/$subdocument +||jhfcll.cn^ +||cqpph.cn^ +paopaoche.net##.down_btn2.green +||120askimages.com/ask/zhenshi/templates/pub/js/loadPart.js +baidu.com##.ad-list +ettoday.net###ticker_3 +pornbest.org#?#.container-fluid > div.row:has(> div.item > div.card > div.card-body > div > span:contains(/^ad$/)) +newtalk.tw###_popIn_recommend +||ljvc0.icu^ +qqxiazai.com##.bt_abtn2 +afzhan.com##.topRightAdv +||mahua.com/www/default/js/replace_ab.js +||bd1-china.6789.com^ +||rbrmhz.xyz^ +@@||tv99.tv^$generichide +69xx.one,69xx487.xyz,8mav.cc,av411.xyz,cable2055.cc,theav.xyz,thep178.com,theporn.cc,weav.xyz#?#[class]:-abp-has(>a>.q-responsive) +||doczj.com/js/common.js +||mphxyxk.xyz^ +||hongi7ie8owiie01.site^ +@@||fotor.com.cn/static/web/share/js/ +||biancheng.net/uploads/ggxc/ +touchgal.org##a[href*=".sailing.ink"] +||byscy.cn^$third-party +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video-js.min.css$domain=ulifestyle.com.hk +||5dmail.net/image/ad_ +cztv.com##.right_box +||myhaitang.cc/assets/public/*.js +||100xuexi.com/CssModel/*Layout.js +||esnysd.icu^ +||cacafly.net^ +maxthon.cn###festival-skin-link +hexun.com##.lck-module +technews.tw##.inside_AD +||973.com/static/js/pccom.js +||yizhibo.com/special/h5corner.html +||tangrenjie.tv/gg/$image +||uxrdg.cn^ +yicai.com##.dfb-ad +iciba.com##.footer_baidu +||a.zuowenku.net^ +||gjwind.com/xxmh.gif +v2ex.com#?##Rightbar > .box > .inner:has(>a[href]:only-child) + .sidebar_compliance > a[href="/advertise"]:upward(2) +bbc.com##section[class*="AdContainer"] +@@||sxjbjt.com^*/ad +4gamers.com.tw##.mobile-bottom-ads +||5axxw.com/extends/ad/ +||scanfang.com^ +||121.204.246.*.gif +||log.daqi.com^ +hh010.com##.a_hong_h +kocpc.com.tw###scroll_div +||mec9k.com^ +||tingchina.com/js/760 +||jsztl.com/img/particular/tbyhq.jpg +duba.com,newduba.cn##.s11_store_box +fsbot.xyz#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +xiazaizhijia.com###public_right_mid_ad +jyacht.com###zy_topgg2 +~umeng.com##a[href*=".umeng.com"]:not([href="http://www.umeng.com/"]) > img +to8to.com##.ask_side_opa +||hupu.com/_dace.gif? +edrawsoft.cn###bottom-banner-activity-md +||17173.com/new/ +||iprefer.com.tw^$third-party +||banzou.name/qq/qq2.js +oschina.net##div[name="detail_show_footer"] +||g.gegeyingshi.com^ +hao123.com###__elm_0_4 +||cnblogs.com/units/ +||dingniugu.com/newskin/js/backTop.js +||hihlj.online^ +||qiyipic.com/common/*/225x230.jpg +||zhangqifeng12.top^ +rjno1.com##main > div[class^="qnb"] +udn.com##iframe[src*="udn.com/mall/cus/cat/OutWebAd.do"] +world.huanqiu.com##.ad_txt +webhd.top##.justify-content-center.pt-2 +cr173.com,itmop.com,jisuxz.com##.xiazaiqi +||gg.gsdlcn.com^ +||aliyuncs.com/wjy99re/ +||1.jushtong.com^ +techbang.com##.phone-ads +now.com#%#//scriptlet('set-constant', 'preBid', 'emptyObj') +apk.tw#@##google_ad +||kccdk.com/Content/img/*.gif +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?#div[id$="_canvas"] +douyu.com##.IconCardAdBoundsBox +||chubun.com/images/banners/ +||douyucdn.cn/butterfly-java/*?width=1200&height=120& +zhihu.com##.KanshanDiversion +||iciba.com/web/static/scripts/kds2_record.js +@@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com +||mobiteu.cn^ +_300x250. +||sunshijc.com^ +||xadulxs.cn^ +@@||2345.com/images/activity/20171111/open/j/close.png +briian.com##.sidebar-widget-area > #custom_html-6 +sxrom.com##.tmk +||soft.mumayi.net/js/ +||g2ak5.com^ +gamicsoft.com##A[onclick*="'Advertisement"] +cztv.com###adsmall +@@||kk665403.pixnet.net^$generichide +||jmw.com.cn/m_v2/js/active.js +setn.com##.rightFloat +||ctfile.com/iz.php? +baidu.com##.wgt-bottom-ask +=fitacg.com/static/other1/ +1kkk.com,40407.com,5068.com,88148.com,chazidian.com,china.com,cnwnews.com,elecfans.com,ghjie.com,iask.ca,ifeng.com,iqilu.com,juqingba.cn,liuxue86.com,qzwb.com,sina.com.cn,zsnews.cn##.gg +mm-cg.com###ArticlesEx_box +duba.com##.hot-bottom +||chinaacc.com/lamu/*piao +alibabacloud.com##.hmod-alicloud-contact-sales-support +fortress.com.hk,youdao.com#@#.share-icon +||taobao.com/js/smartbanner/ +||pcxnrd.xyz^ +||ali213.net^*/promotion/ +||daima.yuzhulin.com^ +wdzj.com##.left-gg-box > div.sl-ggao > div.gg +@@||digit77.com^$generichide +sex-gen.com##.navi +||162.212.182.$subdocument +||mphcrjth.xyz^ +||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ +sina.com.cn###ad_tl_01 +||khrtac.xiangha.com^ +weihemenye.com#$##player_ad_div { display: none!important; } +||qudao.com/common/minisite.js +mydrivers.com##div[class^="jdong11"] +||gtrhnhg.cn^ +||o1b04.cyou^ +||lieqinews.com/json/zhiketj/ +||fanyi.baidu.com/wise/afd +||ali213.net/zt/twtk/images/tzxf.png +cnfol.com##.AdvDL +@@/common/cf/*$domain=66u.com|changhong.com|fei3d.com|oneplusbbs.com|readboy.com +||luyarvx.icu^ +moe-acg.com##a[href*=".x8o.de"] +mgtv.com##.c-95060-top +@@||chaintv.xyz/homestatic/js/adjs.js +||s11.cn^$third-party +||haokan5.com/js/haokanjs/playa +||spsfupq.cn^ +buzzorange.com##.ad_small_m +galacg.me##a[href*="/game"] +||u10*.com/*.gif$domain=bhuai.top +helloyishi.com.tw##.article-desktop-ad-wrapper +||wendangku.net/js/common.js +zhihu.com##.Banner-link +163.com##.u-index-ad +||daima.ysdui.com^ +m.56.com##a[data-statkey="newad_banner"] +||hgpdoa.cn^ +ccav1.com##a[href*="/go"] +||u0065.com^ +||8ovgk.online^ +nowcoder.com###jsSideTopicList +||wenxue.youzhicn.com^ +||unikoshardware.com/wp-content/uploads/*/*/WPointer_Ad_440x250.jpg +||cnkang.com/showcodejsonp? +jiayongluyou.com#?#.widget_html_myimg:has(> ins.adsbygoogle) +gamersky.com##.downLoadGame-2 + .dl_url +@@/share/js/*$domain=yunpanjingling.com +||fgadsqdma.top^ +||qunale888.com/files/h5/ +||baidu.com/common/fc/ +neihanshe.cn###mobile_client +||tzfdc.com.cn/userfiles/flash/ +||xn--gmq238c5fy.com^ +jingyan.baidu.com##.task-panel-entrance +||doujs09.xyz^ +tom.com###body_right_banner +||vbiakpu.icu^ +||stats.v.duowan.com^ +sogi.com.tw##div[class="row my-2 ad-slot-970"] +||wqvbuj.icu^ +mirrormedia.mg##.story__ad +youku.com##.newtrochanter_trochantercontent > .g-row > .g-col:has(> .g-box > .pack_yk_pack > .pack_pack_cover > .aplus_exp > .pack_p_rt_ad) +hao123.com##.newskin-tip +hmoe.one,hmoe.moe##a[href^="https://item.taobao.com"] +||doujs06.shop^ +||cbjg.cqnews.net^ +||skskssso.com^ +speedtest.cn##.speedtest-recommend +meijutt.tv##.a960_index +520cc.me#%#(function(){var b=window.setTimeout;window.setTimeout=function(a,c){if(!/myaaqqbpfun12\(\)/.test(a.toString()))return b(a,c)};})(); +ichunqiu.com###cnzz168_Login +91porna.com##div[class^="col"] div.filters:has(a.checkNum) +||myqcloud.com/ad/ +||ad.digitimes.com.tw/*_bigbutton.jpg +||alicdn.com/img/ibank/*_1591187313. +||ta20k.xyz^ +gamersky.com##div[id^="adscontainer_b"] +yiyouliao.com##.yyl-ads-swiper +element-plus.gitee.io##aside > .page-content +||enread.com/img/185-50.gif +||wm.szdushi.com.cn^ +||ly6080.com.cn/gg/ +||qunar.com/render/*Advertisement.jsp? +||m1.27com.com^ +||upyzqf.cn^ +||100ksw.com/inc/doc- +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##a[href*="www.clinique."] +||clkdbbvy.xyz^ +ifeng.com##div[class^="qrCode"] +@@||liumingye.cn^$generichide +||xitong8.com/theme/default/images/index_13.jpg +||log2.mtime.cn^ +||vbzrkme.xyz^ +ahhhhfs.com###ri_home_slider_widget-2 +pupudy.com##.sidebar +cpnn.com.cn##.leftgg +fx110.com##.down_Hx +||qescaen.com^ +||wendellyu.com/banner/ +oneinstack.com##.sidebar > .widget:last-child +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_listLiveTvCnt +@@||alicdn.com^*yksdk/*sdk.js$script,domain=youku.com +||jhpbtp.xyz^ +@@||securepubads.g.doubleclick.net/pagead/managed/js/gpt/*/pubads_impl.js$domain=line.me +||juxia.com/jxtp/indexbg.jpg +@@||wuyong.fun^$generichide +||snifdlab.top^ +hepuwang.com##a[href^="http://ad."] +||ewqws55.fun^ +fwwang.cn###n_s_300250ad +onebox.mydown.com##.advertisement_pic +555hd2.com##a[href^="https://57063683.com"] +||u7u9.com^$third-party +||mobantong.oss-cn-hangzhou.aliyuncs.com^ +aura.cn##.suspension +edc1014001.pixnet.net##a[onmouseover] +pconline.com.cn##.fixLeftQRcode +bdimg.com,tieba.baidu.com,tieba.com#?#.tl_shadow:-abp-has(> .ti_item > .ti_infos > .label_text_tag:-abp-contains(广告)) +||firefoxchina.cn/chome_*.html +||dasdujaosjdioad.com^ +||jsdelivr.net/gh/sex169hub/ +frdic.com,godic.net##a[onclick*="/ads/"] +||china.com/media/mm/ +||google-js-02.xyz^ +downkr.com#@#.address-left > ul:nth-child(2) +||i3535.com^$third-party +@@||cdnjs.cloudflare.com/ajax/libs/videojs-contrib-ads/*/videojs.ads.min.js$domain=linetv.tw +||jwhdgt.icu^ +||koudaiyundong.com^$third-party +||dssdfsf.cn^ +||bapa215.top^ +@@||eolinker.com^$generichide +nfstar.net#?#.myui-panel-bg:-abp-has(strong:-abp-contains(广告)) +||bmtfka93.xyz^ +||sonimei.cn/qipai.jpg +@@||hk01.com^*/scripts/ga.js +||xcypgd.icu^ +liba.com##.avdert1190 +hc360.com###newAppBox1 +||adsmind.gdtimg.com^ +100ec.cn,159i.com,1905.com,22vd.com,2345.cn,234fang.com,3gsc.com.cn,52youpiao.com,72g.com,8se.me,acg.bz,acg13.cn,acgbenzi.com,baiduyunpan.net,baike.com,bbs-mychat.com,cdyee.com,ce.cn,chinaqking.com,chinatimes.com,chinatruck.org,chinaz.com,cnforex.com,cnsoftnews.com,codepub.com,cq.xinhuanet.com,cxryun.cn,dav01.com,discuss.com.hk,djwma.com,dmzj.com,dmzj1.com,dngz.net,douban.com,dzwww.com,eastday.com,fengniao.com,focus.cn,fx112.com,gongkong.com,henan100.com,honglingjin.co.uk,house.jschina.com.cn,iciba.com,ifeng.com,ipeen.com.tw,isharebest.com,itavcn.com,jojf.cn,jrj.com.cn,kmeiju.com,kumi.cn,landiannews.com,lawtv.com.cn,lieyunwang.com,lncn.org,loveshang.com,ltn.com.tw,luo8.com,maxpda.com,mm111.net,moxing.net,mvcat.com,ncdiy.com,neotv.com.cn,newsmth.net,njdaily.cn,pc0359.cn,people.com.cn,pharmnet.com.cn,pixnet.net,pptv.com,ptbus.com,qncye.com,r3sub.com,sogou.com,sozi.cn,toolfk.com,tv.sohu.com,u-car.com.tw,weather.com.cn,xianbao.fun,yawin.cn,yb983.com,ydss.cn,yesky.com,yiche.com,yqxxs.com,zhihu.com,ziyuanyo.com##.ad +189.cn,zdzdm.com#@##share_list +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[data-click*="\"rsv_srcid\":\"10090\""] +||365xuet.com/assets/web/js/main.jsr_ +@@||joyk.com^$generichide +||54admin.net/images/ad_ +94itv.app##a[href="https://leo535.com/"] +linetv.tw#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +jqzb.com.cn##.zk_xf +fx678.com#@##ad_8 +backchina.com##.eis_subnav_area +eastday.com#@#.ad_center +ekamus.info#%#//scriptlet("prevent-setTimeout", "ins.adsbygoogle") +||olelive.com/v1/pub/index/anchor/check/pc/e? +||oa-panther.data.aliyun.com^$third-party +||avcao.cc/js/p.js +||qhapoq.xyz^ +||tanx.com^$third-party,domain=~1688.com|~alimama.com|~tmall.com|~www.taobao.com +iask.sina.com.cn###topic_ylzz_new +||szyhqj.com/js/ +mpyit.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +baidu.com###ad_xbox_1 +||1.qjhm.net^ +||link114.cn/template/js/showpics_ +ltn.com.tw#@#.adright +||pqnqrjxe.xyz^ +baidu.com##.container:has( > .bottom-section > .item_voice_room[data-yysid]) +||idipsumo.top^ +||clouddn.com/960x60.gif +||js.92aliyun.com^ +abmedia.io,appinn.com,carrotchou.blog,landiannews.com,laoliublog.cn,woniuyulew.com,zhain8.com##.widget_media_image +aicoin.net.cn,bccn.net,douyuex.com,hkepc.com,iviewui.com,juejin.cn##.advertisement +||shuihulu.com^$third-party +||ds.ruanwengfa.com^ +||mqjqripb.xyz^ +||tpyerxzn.xyz^ +@@/adbanner/*$image,domain=books.com.tw +||gaoqing.la/wp-content/uploads/*/kaiboer.gif +||fulitech.com.cn^*/float.js +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=line.me +fqsousou.com,kengso.com#@#.user-share +||maxun118.top^ +||g-years.com/tb/ +||rdxqbp.xyz^ +||cbdm.weathercn.com^ +ithome.com###hd_float1 +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###global_notice_wrap +redocn.com##.big_vip_gg +bjnews.com.cn##a[href*="/ads/"] +cartoonmad.com##table[width="890"] > tbody > tr > td > table[height="110"] +itheima.com##.nav1 +avbebe.com###wrapper > div[align="center"] +gamersky.com##.ad_cmt_cont +woniupai.net##.wnp-adbox +||baijs06.xyz^ +@@||banma.com/statics/js/?? +miaopai.com##.footer_banner +eol.cn###big-ad-img +114la.com,ylmf.com###imgArr +||danlan.org/KFC/ +||dianassb.com^ +@@/guanggao/*$domain=icbc.com.cn|igame.qq.com +cssqt.com###mainbox > a +sina.com.cn##.AD_hqbottom +eastmoney.com##div[style^="position: fixed; z-index: 100000; top:"] +||159i.com/video/pop/ +||oaiqksi.top^ +||mkscy6.cn^ +||ylplrhum.xyz^ +||www5.oss-cn-hangzhou.aliyuncs.com^ +thenewslens.com##div[class^="help-tnl-container-"] +360doc.com##.floatqrcode +||ccccc78kkkkk.com^ +cam4.tw###newTippingViewer + div[data-ab] +||xxlfteg.xyz^ +@@/home/ads/*$domain=esunbank.com.tw +xbgame.net#@#.google-ads +||chazidian.com/all/gg_ +||haochi123.com/J_Box/Inc_ +@@||seselah.com^$generichide +||bahamut.com.tw/js/ad.js +||sina.cn^*/impress? +||uewrutt.top^ +||proginn.com/cms/10000/ +||letvcdn.com/lc02_live/201803/18/23/40/1521387641261new. +||uugtv.com/x/app/videoSpread? +||swsegi.xyz^ +cna.com.tw,ettoday.net##.ad_970 +dzwww.com##div[style="margin:0;padding:0;width:620px;height:345px;overflow:hidden;background-color:#fff;"] +||xiaopinwo.com^ +||gpiagk.xyz^ +qq.com##.mod_stridead +cndesign.com##.index-add +||tamedia.com.tw^$third-party +||pianbar.net/JS/hottj.js +||longzhu.com/i/api/videos/dailyRecommend? +||bojyvp.xyz^ +anquan.org##.gj_download +||talyrt.xyz^ +mo.fish##.list-item-content-ad +||hoopchina.com.cn^*/ad-pc-sdk. +laifudao.com##.side-adinner +52asus.com###guiigo-black-mask +||pic1.dianshu119.com^ +zuoye.baidu.com,zybang.com###aside +@@||8maple.ru/comic.jpg$domain=video.bilibili.to +pansci.asia##div[class^="pansc-"] +||msvkfwth.xyz^ +||vgzytn.xyz^ +happymh.com##a[href*=".taobao.com"] +||cn6x.com^ +ygdy8.cc##.container > a[href^="/"] +porn5f.com##.video-promote-adv +||westca.com/server/ +8264.com##.advSection__wrapper +huaban.com#$#div[data-content-source="导航栏"] > a.modalOpenWidth { display: none !important; } +||chong-wu.net^ +cpnn.com.cn##.rightgg +||tb58.net/plugin.php?id=tb58_ +www.duba.com##.tiyan_a +qqyy.com##.ind_ad +~laifeng.youku.com,youku.com##a[href^="http://cps.laifeng.com/"] + .bg + img +slit.cn#%#//scriptlet("abort-current-inline-script", "alert", "typeof(ad)") +toy-people.com##.rightAd_3002502 +tieba.baidu.com##.top_toutu_admarks +udn.com###ad-pall +54new.com###imgshow +||07073.com/api/getKfList? +mcbbs.net##img[width="462"][height="78"] +||jmcomic1.me/static/resources/old/images/AD/ +||osusjsga.com^ +fang.com##.bannger_inbox +||en8848.com.cn/js/ad +@@||dlkoo.cc/down/*/*.htm$popup +||qizhihaotian.com^*.js +@@||hdslb.com/bfs/cm/cm-sdk/static/js/bili-collect.js +||d2.yingyongge.com/*?*&$subdocument +||cwrxgb.icu^ +||cdszgg.xyz^ +qingdaonews.com##.surround +2345.com###right > div:first-child +||a.52zxw.com^ +pinshan.com##.bea_adv2 +||51la.net^$third-party +||yrszy.com.cn^ +hao123.com##.sc-tips +||doko.moe^$domain=pantsu.cat +||aoji.cn/default/looyu/ +baidu.com##.ad-vip-close-bottom +appinn.com###sidebar a[rel*="sponsored"] +||adshows.21cn.com^ +||wsdwbfs.cn^ +youdao.com##.dialog-guide-download +||xhgpuxim.xyz^ +@@||gg.pl/wp-content/*/GG/ +@@||muzlan.top/ads/banner.png +preface.ai##.cs-sidebar__inner > .widget_media_image +||pchome.net/flow.php +||mobile.sina.cn/public/files/image/620x300_ +||160.com/statics/statics/js/code_15.js +||ftimg.net/s?z= +m.babytree.com##a[class$="-join"] +yesky.com##div[class^="ad1"] +youth.cn###identifier-pannel +||0439.com/javascript.php?part=advertisement& +||lingdianshuwu.com/js/content +||39.net/a.htm? +||sinaimg.cn^$domain=2c2.website|2p8.space|adultgao.com|caopop.com|caoporn.com|caouoo.com|caox.cc|h3e.pw|h3y.pw|k88.club|me88.pw|p5p.space|se88.space|t2p.space|tb001.xyz|te88.pw|vwan.xyz|xhao1.com +discuss.com.hk##div[id^="ad_"] +sina.com.cn##p + .article-video +||pconline.com.cn/ipJson. +sinoca.com##div[style="float:right;height:280px;width:336px;clear:left;background:#FFF;margin:15px 15px 15px 15px;"] +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.thread_recommend +||pvnzrr.xyz^ +||afoqs.cn^ +caoporn.com##div[style="height:160px; max-width:100%; width:945px; padding-top:10px; margin:0px auto;"] +zhujiceping.com##.fcode > center > table +danlan.org##.ad98090 +cnplugins.com##.pushbox1 +||666bbb888www.com^ +nfuwow.com###dl-right-first +||666ppp888ppp.com^ +||04stream.tv/sda/ +||ymniqh.icu^ +aa25.cn,kafan.cn###content_top +||mall.xinkuaituan.com/zhuanti/ +d1xz.net##.base_ad_640_90 +||develenv.com^$third-party +||sohu.com/api/photo/photo_bottom.json +||itongcheng.cc/amm/ +girlstyle.com,thecatcity.com,urbanlifehk.com##.desktop-sidebar__block--ad +||mlog.aipai.com^ +||citysbs.com^*swf +||moneyweekly.com.tw/Uploads/AD/*970x +91wenmi.com###xzsp +||truvidplayer.com^$domain=technews.tw +sogou.com##.sponsored +wapwenku.baidu.com,wk.baidu.com##a[href^="http://www.baidu.com/cpro.php?"] +codeceo.com,fuli8.net##.widget_text:first-child +league-funny.com#%#//scriptlet("prevent-setTimeout", "ad_num_show") +bkjia.com,zol.com.cn##.hot_tj +||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg +||dyzyhj.com/Jk/ +3dmgame.com##.mb30.warp_f +||chinapress.com.my/public/static_resources/img/600x337 +ifeng.com##.popoxiu_topic +2345.com##.dzc-hn-cmoe +hmitalk.com##div[class*="-pubadban "] +airav.cc###bottom-adv +||i322.com/ad_avshow/ +cntronics.com##.cnt-ads90 +||caoimgs.com/images/*.gif +@@||int.mwbbiz.com/static/*/videoShow.js$domain=91porny.com +||izqogb.cn^ +||kekenet.com/images/*/akasuo +hao123.sh##.box-banner +||1.lvshi567.com^ +||a6.hujiang.com^$domain=~class.hujiang.com +||dclpjx.xyz^ +||usyliet.top^ +thinbug.com###inktokad +baidu.com###tab_news_1 +netfly.*,netfly.tv##div[class*="tt-"] > a[target="_blank"] > img +||520z-2.com/uploadfile/sucai/ +||ps123.net/MyFile/ +eprice.com.tw##.ad-728x250-g +@@||colatour.com.tw/webDM/*/adbanner$~third-party +youdao.com#@#.open-share +qzone.qq.com##.gb-bill-area +mxdm.xyz#%#//scriptlet('abort-current-inline-script', 'Function', 'new Function(document[') +||a.icdol.com^ +||weiyuedu.cc/skin/v3/js/dibu.js +||vcxv73.fun^ +||ss9874.com/img/91_ +@@||bootcss.com^$script,domain=kan-tv.com +||cnpingpang.com/themes/v1.0/images/temp/ad/ +niuacc.com##.botLm-container +qinbing.cn##div[class^="Ad-"] +csdn.net###kp_box_58 +@@||rmdown.com/ads.js +||ab.cnbanbao.com^ +fashion.qq.com##.rv-js-root +@@||readmoo.com/images/social/ +blog.csdn.net##.t0 +||d2.sina.com.cn^$object,script +pconline.com.cn###JdlFixed +||1.ajiyuming.com^ +||biiepofl.xyz^ +||przbzr.xyz^ +||gxihcq.xyz^ +vmall.com#@#.iframeAd +||acqaghx.icu^ +waipian1.com,waipian2.com,waipian3.com,waipian4.com,waipian5.com,waipian6.com,waipian7.com,waipian8.com,waipian9.com,waipian10.com,waipian11.com,waipian12.com,waipian13.com,waipian14.com,waipian15.com,waipian16.com,waipian17.com,waipian18.com,waipian19.com,waipian20.com,waipian21.com,waipian22.com,waipian23.com,waipian24.com,waipian25.com,waipian26.com,waipian27.com,waipian28.com,waipian29.com,waipian30.com,waipian31.com,waipian32.com,waipian33.com,waipian34.com,waipian35.com,waipian36.com,waipian37.com,waipian38.com,waipian39.com,waipian40.com#@#.player-rm > a[target="_blank"] +pcworks.cn##.xintheme-ad +||kanshu5.net/js/index.js +||csdnimg.cn/public/common/indexSuperise/1.1.1/indexSuperise.js +wendu.com##.foot_adv +||dfcfw.com/tg/ +||allyes.$third-party +||sasadown.cn/source/plugin/drk_ledadv/ +||sciencenet.cn/html/js/n +big5.china.com.cn##a[href^="http://big5.china.com.cn/gate/big5/"]:not([href*="/science."]) +||huibaihe.net/static/730-580. +2345.com##.mco-ex-ndxh +~sinaimg.cn##a > img[src*=".sinaimg."][src$=".gif"][style*="width:960"] +baidu.com##.rel-exp-feed-ad-item +iqiyi.com##div[class^="video-slide_threeImagePages"] > a[href^="http"]:not([href*="iqiyi.com"]) > div +||360.cn/apis/qss/soweb/ad_proxy/internal/ +||githubusercontent.com/vip888vip/ug/main/*.gif +hackhw.com##.d336 +||jsdelivr.net/gh/cloud-files-cdn/jsfiles/lieqi. +creaders.net##.border_b > tbody > tr > td[height^="2"] +||777bbb777www.com^ +||163disk.com/static/aimgs/d +dingdong.ganji.com#@#.banner +||miycoc.xyz^ +@@||google.ps/translate_$media,third-party,xmlhttprequest +moe-acg.com##div[style="position: relative;width: 100%;height: 0;padding-bottom: 18%;"] +boce.com##.page10Box1 > a[href^="http"]:not([href*="boce."]) +||7daystodie.cn^$third-party +||lfjslil.top^ +||doxihz.xyz^ +||80s.us/9*.js +||xc.macd.cn^ +||wwwbaiducom.xyz/4/js4/ +114la.com###dlAD2 +||news.sina.com.tw/js/ti.js +||adsc.wasu.tv^ +nba.hupu.com##div[class^="nba-ad"] +||vip.panggugu.com^ +||ggsnyc.xyz^ +enread.com##td[width="326"][height="250"] +ltn.com.tw##.list > li[id^="apxzone_"] +sinolub.com##[id^="xker"] +||kejiwanjia.com/wp-content/uploads/*/1040x100. +||stbwhln.cn^ +qq.com##.adbutton-Aritcle-QQ +||askdlajfbv.top^ +||lotour.net/bcef/388.js +||p1.qxzsw.com^ +||codenong.com/dq.png +||gangjuw.com/style/lmjs/ +||njxzwh.com/pcsoft/statics/ycgg/ +||ads.tvb.com^ +||tv99.tv/wp-content/uploads/pum/ +||img2.126.net^ +||beiwo888.com/Runtime/js/ +||ecikmrm.icu^ +||er.5ykj.cn^ +||233.com/js/side.htm +hao.360.cn,hao.360.com###plane > .plane-hd +sina.com.cn##.m-p1-lb1-ad +||91hs005.xyz^*.gif +||iciba.com/static/images/download_banner.png +||brutvncv.top^ +||qronay.xyz^ +||news.cn^*_tlad.js +||xlgvlvbc.xyz^ +fanyi.sogou.com##.img-banner +||94n33.fun^ +pinggu.org##a[target="_blank"][href*=".cda.cn"] +mx-fm.com,ts.21cn.com#@#.ad_img +||dymmt.com/skin/mzitu/js/foot. +iqiyi.com##div[class^="list_list__"] > div[style*="margin-bottom:"] > div[style*="margin-right:"]:has(> div > div[style*="background-image:"] div > div[class^="video-list-item_"] > div[class^="video-list-item_"] > a > div[class^="video-list-item_"] > div[class*="video-list-item_"] > img[src*="/ADS/"]) +||cdnjs.hro-cosmetics.com^ +||oh100.com/js/pubuliu. +||seutop.icu^ +||whichav.*/qq/qq.js +||classic.39health.com^ +it165.net##.adv728a +||vrelai.com^ +||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$script,redirect=noopjs,important,domain=ebb.io +||vexilorath.com^ +~hrtsea.com##.widget_ui_ads +||ujrspnbf.xyz^ +||scupio.net/kanglei/ +||mdjdpyrt.xyz^ +||w0082.com^ +duote.com##.download-box:first-child +||fzxiaoshuo.com/source/ +bejson.com##a[href*="/kuaikuai."] +businessreview.global,zhihuishu.com#@#.sharing +szxx.com.cn#@##divAd +bg3.co###div_top_ads +tvshowbox.tw##a[href=" http://www.shumeimotel.com/"] > img +||dangdang.com/adall. +f2dsex1.com##div.link +pansci.asia##.ad-container +||aaaimg.com/images*.gif +||sh.sina.com.cn/iframe/522/ +||qkscga.xyz^ +360.com###rainbow-cat-screen +riaway.com##.info_message_container +:538/attachment/xjdb.jpg +landiannews.com##a[href*="ourl.co"] +zuanke8.com##.zuanpw +my0511.com###footerbannerad +||sogou.com/dr/p1.gif +||51hir.cyou^ +now.com#%#//scriptlet('set-constant', 'preBid.displayAd', 'noopFunc') +360doc.com###divaboveReflectionAd2 +cs.com.cn##.js-ad1 +||yzdh44.com/js/ +@@||sudupan.com^*/*.gif +xixik.com###news_contents_left > .left_gg +mydown.com##.adv2 +@@||060s.com/images_ad/*.png +||es3984.review/02_cn_ad/ +||mm.wxc.cc^ +_728_90_ +360kuai.com###xunjia-modal-btn +||china.com/zh_cn/etc/gghead +1kkk.com##.kk2.cc +||fghghh.cn^ +||qmbdta.cn^ +||kuxfznnf.xyz^ +18comic.org,18comic.vip,18-comic.work#$?#.col-xs-6 > div[data-type][style]:has(> ins + script) { remove: true; } +||snzfj.net^$third-party +ting89.com,tingshuge.com##.banner250 +@@||cocomanga.com/js/ad*/*.js +||sina.com.cn/3/2016/1114/45.js +||chinaz.com/news.js +||dcs.conac.cn/js/ +||bhiagi.xyz^ +nipic.com##.vip_homeshow +18comic.*##div[data-height="90"][data-width="728"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###duoku_servers_list +mpyit.com###sidebar a > img +||kryeia.xyz^ +||linkwan.com/gb/broadmeter/speed/cp.js +||xedpzh.xyz^ +||qidou.com^$third-party +@@||hboav.com/guga/images/20201021.jpg +||0460.com/images/banner/ +||dskjbvzvs.com^ +||ofdnkro.xyz^ +csdn.net##.p4course_target +||nmntgd.cn^ +@@/adbar/*$domain=outlook.live.com +adguard.info,adguard.com,adguard.app##.hello_from_adguard_ext +||wfqgfaa.cn^ +@@||da.mgtv.com/m5/page? +||rzfdbsn.cn^ +||nyt5j.cyou^ +||phpstudyimg.com/all/xiaojieqiantie.gif +xhd.cn##.xinad +qingwk.com##.c-footer-banner +mydown.com##.doubleDownload_content > .middle +||zhihu.com/api/*banners/ +||alicdn.com/img/ibank/*_687764080. +58.com##.topinfos +@@||taobao.com^*&adgroupid= +baidu.com###copyright + .banner +hupu.com##.m_text_ad +||053h94.com^ +||alicdn.com/img/ibank/*_1085845541. +chinaz.com##.Postcon-ad +haote.com##.bigmainIn +||webfunny.cn^$third-party +bilibili.com#?#.eva-extension-body > .bili-video-card:-abp-has(.bili-video-card__info--ad) +||wwxufo.com^ +||tieba.baidu.com/f/urlcheck? +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###plat_recom_carousel > .tbui_slideshow_list +@@||img.ads.tvb.com/news/min.js$domain=news.tvb.com +||yyefao.com^ +easou.com##.ecom-adTop +||chinaacc.com^$domain=100ksw.com +nfmovies.com#@##adright +||licai18.com/pic/article/*.gif +qiannao.com###main > div[style="padding-left:20px;margin-top:10px;"]:first-child +||sdss99.fun^ +msn.cn##.intra-article-ad-full +eastday.com##.video-mask +||m6j37.xyz^ +sonkwo.hk##.store-ad-waist +||xcholvbc.xyz^ +hao123.com##.title-wrap + .right-img +||nlhpxj.xyz^ +||xpdronhu.xyz^ +||tajdad.cn^ +@@||sjsmitaa.org/bin/showads. +||pwcegau.icu^ +||daqiso.com/ggbl/ +||vfchm.cyou^ +||fengbuy.com/recommend-new. +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.dialogJmodal +||hdickeu.top^ +||yorkbbs.ca/crm/section/v1/get/list/open +||jmipzsn.icu^ +||ps557.com/link/ +acfun.cn##.banana-ad +||oumnxiek.top^ +||er.5ykj.com^ +||on5ga.icu^ +76xh.com##.index_advertising02 +58.com#?#LI[sortid]:-abp-has(.jinico) +28188.com,28188.net###nav +||21uscity.com/zonelist.php +||cdndm5.com/*/default/js/ad_ +||520xingyun.com/images/188*.gif +||fogolakda.top^ +||88lm13.com^ +||pcauto.com.cn/zt/*_dialog/cjx-pc-half_ +||mebohjhh.xyz^ +niotv.com##.epg_ad_list +||23qb.com/skin/xiu.js +v.qq.com##.nav_link[href^="http"]:not([href*=".qq."]) +ca168.com##.admarket +||520xs.la/js/dianrui- +||qq.com/bbs/bbs_topgg.htm +||s.ssl.qhres2.com/ssl/ +||ip138.com/banana/ +silver.org.cn##.fixbottom_wrap_small +||wudizuqiu.com/img/dasai8/ybbj.png +||edickew.top^ +||stockstar.com/info/1200x90/ +17173.com##.js-lol-pop +4gamers.com.tw##.scroller-ads-wrapper +||delivery-pc.wasu.cn/d/frontJs/3.0$redirect=noopjs,domain=wasu.cn +||ifeng.com^*&ADUNITID= +chinaacc.com##.leftBox +so.com###e_idea_left +ifoodie.tw##.ad-container +itdog.cn##.col-12 > .card.mb-3[style="padding: 5px;"] +suopao.org##.t5[style^="margin-top:8px;"] +tmall.com##.fp-lazyload-con[data-path*="/floor-ad-"] +||nvdtdsd.xyz^ +||gg-led.com/uploadFile/uploadCompanyLogo/*.gif +||js.shunqi.com^ +baidu.com##.pauseadv +||absalomcsa.com^ +||web.51fishplace.com^$third-party +51wangdai.com##.couplet_gg02 +sohu.com#?#.news-wrapper > .news-box:has(> div[id^="taboola-below-article-widget"]) +||usejj.makepolo.cn^ +||books.com.tw/web/apActivityStick? +||oeryt111.fun^ +mini.eastday.com##li[class^="recommend_news recommend_ad_hot_"] +||ysx8.vip^$third-party +@@/images/*_share.png$domain=service.weibo.com +||m.ygexing.com/d/js/acmsd +||lbjdbym.xyz^ +||ttwwzqdx.xyz^ +||baidu.com/rmaAjax/getGame? +wdzzz.com##.zz +||freedidi.com/wp-content/plugins/death-luhubaoyu/ +myexception.cn##.c_a_3 +||5ips.net/love/ +||jpysvip.net/ad/ +goosedaily.com##.lightboxbnr +myqqjd.com##aside[id^="sponsor-"] +||molimao.top/imp/upload/vod/*.gif +||wangzhanmeng.com/link/link.html +||dhgxl8qk9zgzr.cloudfront.net/js/log.js +||ifeng.com/iframe/quickbet +chineseinla.com##.forum_banner_ads +78dm.net##.ad_logor +||gdmm.com/api.php?mod=js&bid=2111 +zi.media##body > div[style="height: 300px;"] +winshang.com##.ggwrap +159i.com##a[href*="ai69"] +@@||runative-syndicate.com/do2/*$domain=onemanhua.com +detail.zol.com.cn##.link_jd +firefoxchina.cn##.side-shping +m.babytree.com##.recommend-brand +||qiyipic.com/zongyi/fix/runningman20141008_bg02.jpg +~hupu.com##div[id][style="width: 100%;"] > iframe[scrolling="no"][src^="http"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +2345.com###leftPacketBox +||laowangblog.com^*-ad +||taoguohe.com^$third-party +||bigear.cn/cache/htmlcache/ +sg169.com###coupleft +chinatimes.com#@#.page_ad +||hboav.com/guga/*.php$domain=5278.cc +eol.cn###small_adleft +||qinxue100.com/qinxue/pc/js/add_js.js +||xeryt111.fun^ +sydneytoday.com##.news-list > .row > .col-xs-12 +@@||cdn.staticfile.org^$script,domain=movieffm.net +league-funny.com##.w336center +@@/adsense/*$domain=piseneasy.com|taobao.com +@@||stjscn.s-msn.com/portal/hp/2011/udctrack. +||jingdianlaoge.com/static/js/q.js +tigtag.com###Home280x80_A16 +||awunkse72.shop^ +36kr.com##.kr-ad-home-flow-banner +apiref.com###navbarRightAd +hupu.com##div[class*="-banner_"] +||fantuan.name^ +||yqdnad.icu^ +||a.duduji.com^ +chinese.engadget.com##body #ldrBoardAd +||kuaijuwu.net/js/abc/ +||zhainanba.org/ac/ +||nwrgdifq.xyz^ +||yhubsxmg.xyz^ +x6d.com#?#li:-abp-has(>.myad) +easylearn.baidu.com##.vip-banner-cont +||heiye.cc/js/hei +||brtzgnd.xyz^ +icourse163.org#@#.sns-link +||nownews.com/assets/js/setAds.js +2345.com###J_Banner_Special +||zeryt111.fun^ +||gszetzdm.xyz^ +||44629.com^ +yahoo.com###module-tabadsw +||jqvajfvs.xyz^ +qzone.qq.com###appCanvasTopBanner +||ruiwen.com/css_ +||m1905.cn/afp/mdsfw.js +||lovek01.com/gif/97- +ananvod.com##.rbPicAll +nfuwow.com##.adtopnewnewbox +||xiaobi*.com/layer/layer.js +drvsky.com###bz_position +eastmoney.com##div[style="width: 300px; height: 250px; margin-top: 10px;"] +cctime.com###ad_three +boniu123.cc##a[href^="http"] > img[src*="/bn_"] +dnxtc.net##div[style="width:1200px;height:108px;margin:0 auto;margin-top:15px;"] +||vansky.com/agdg/infoRight/ +||kmruv.cn^ +||it165.net/index.php?m=poster& +||hebei.com.cn/eap/ +||bytravel.cn/images/cus/ +||mckgmkh.icu^ +xc6b.com###rightbottbox +||mtwwzqdx.xyz^ +bendibao.com###wxbox +m.mydrivers.com##div[style$="px 0px 0px 0px;text-align:center;"] +:2048/jsb? +rebooo.com###gong +||alicdn.com/kf/U0732534bf37c454e84b8378ceaa5d7c2V. +landiannews.com##.sidebar > section#block-4 +42xz.com##.xzbox-lf > ul:not(:last-child) +||hyretuu.top^ +yule.iqiyi.com##div[style="width:180px;padding:25px 0 20px 20px;float:right;margin-right: 30px;"] +hao.360.cn##.hot-word +||loli.net/2020/06/17/vGALJ4mQx26T75u.gif +||a.qunzou.com^ +||bdimg.com/site/games/yxtg/*.js +||yunzhan365.com/resourceFiles/js/weixin-share.js +123pan.com##div[style="width:100%;position:absolute;bottom:0;height:96px"] +chromecj.com##.topblock +||91avv8.com/vU18BNDYo1ktVpge.js +||t2.picb.cc/2022/08/07/6rpPj1.jpg +7hcn.com##.rCont +||bdasd.chinabig.com.cn^ +udn.com##.inline-ads +7junshi.com##div[style="position: fixed; right: 0px; bottom: 0;z-index:999;width: 300px;height: 250px;"] +||isoffss.com^ +udn.com##div[class*="edn-ads"] +@@||redguide.top^*/ad.css?$stylesheet +blog.163.com###topbar_yxpArea +||eaqgsw.xyz^ +||mbfhwag.xyz^ +@@||th-sjy.com^$generichide +world68.com##.guanggao +baidu.com##.ec_wise_ad +||yxzp.net/left.js +||2rbda.icu^ +newtalk.tw##div[id^="ATS_"] +||juejin.cn/content_api/v1/advert/query_adverts? +||c-ctrip.com/images/0101r120009e1kn7oCDCA.gif +chinese.engadget.com#$#body [data-spotim-module=recirculation][data-spotim-showing-slots~="1-start-300x250"] .sprc2PlxR [data-spotim-row="1"]::before { left: 0!important; } +||b168.net^*.*?$image +||cresqoirz.com^ +kuaihou.com##.address_like +yahoo.com##div[id$="-Banner-Proxy"] +9miao.com###deanrlc22 +@@||pingan.com^*/rrweb-record- +~taobao.com,~tmall.com##A[href="https://s.click.taobao.com/cTAwFvu"] +@@||a1.itc.cn/pv/js/spv. +github.com##a[href="http://gk.link/a/103EK"] +||vanpeople.com/gg/ +||kdsahkln.xyz^ +pc841.com##.w1050 +zol.com.cn##.down-append-mol__pic +||aadmei.xyz^ +||94lm.com^ +||ibaglhc.icu^ +uuu9.com###top +||alu.cn/aluTrade/Fragments/ListAdvertisementProductsHandler. +firefoxchina.cn##.side-recommend +to8to.com##.common-tender-wrapper +stat-nba.com###ad_video +@@||captcha.qq.com^*?*=*=*=$subdocument +||wfjslie.top^ +||ljzcawea.icu^ +@@||ad.vivo.com.cn^$~third-party +m.07073.com##.new_heads +pcsoft.com.cn##iframe[id] +@@||dlkoo.com/down/copy0 +||ofd.meng-an.cn^$third-party +feebee.com.tw###ad_mid_module +bilibili.com##a[href$="_suning.html"] +||ixxoo.asia^ +||0351dvd.cn^$third-party +||koufqy.xyz^ +mbd.baidu.com##.related-news > section:first-child + div +sohu.com##.x-adv-band-panel +||doubleclick.ctfile.com^ +tw.news.yahoo.com###mrt-node-Lead-1-Ad +||szpbh.cn^ +||gtimg.com/adxcdn/ +||china.com.cn/statics/js/henan/ad/ +2345.com##.activity-skin-trig +qq.com###adImgHref +@@||appledaily.com.hk/admedia/ +||bba9603w.com^ +hqdoor.com##.index_newad +jkpan.cc#%#//scriptlet("abort-current-inline-script", "jQuery", "\u") +guancha.cn##.member_recruit_index +||1kqfzwd.com^ +ablesci.com##.able-container-body-right > div.fly-panel:has(> div[style="text-align: center; padding: 5px"] > img[src$="-alipay-hongbao.png"]) +||90mh.com/mip/qdbao +@@||noahedu.com/advertising/ +doubibackup.com,github.io##.guangg +||baidu.com/fanyiapp/image/wise_banner_ +||dngz.net/x/ +bilibili.com##a[href*="cm.bilibili.com"][data-target-url*="gaoneng.bilibili.com"] +baidu.com##.opr-zhaopin-ad-ctn +pqworld.com##.left-float-tx +||ptfish.com/*/ad$image,object +||uu22662.com^ +@@/adback.$domain=pg-wuming.com +||666aa777bb.com^ +netbardh.com###bg_left +javhope.com###havhope +moneynet.com.tw##.ads-fixed-bottom +||eqqwgw.xyz^ +vsping.com##.cell > span > a[href]:not([href*=".vsping.com"]) +sohu.com##.god-main +@@||pubads.g.doubleclick.net/gampad/ads?*&description_url=https%3A%2F%2Fani.gamer.com.tw$domain=imasdk.googleapis.com +||ad.wurangxian.top^ +||gaipuzui.com^ +sm.cn###index_haodongxi +||t0sfe1.com^ +||dsbqvj.xyz^ +image.so.com##.cmitem +||zdjtxjp.xyz^ +||52rd.com/Pic2/*_600_60 +||qzone.la/Scripts/m.js +ifeng.com##DIV[class^="enquiry_bottom"] +||aliyuncs.com^$domain=9xav.cc +@@||tt1069.com/adserv.js +||btbt.tv/dd/ +:4443/ty/x-$script,third-party +2345.com###jswbox +dpp.org.tw,shuaijiao.com#@##ad_big +meizhou.com##.adwords + div +nxing.cn##.main:nth-child(-n+6) +||kozhyf.icu^ +jingyan.baidu.com##.aside-pro-container +netfly.fun,netfly.tv,netflytv.xyz##.banner[href^="http"] +supertaste.tvbs.com.tw##.ad_m_top +jinhua.com.cn##.banner935 +flyblog.cc###links > div[id] > div.hslice:not(#search):not(#counter):not(#category):not(#calendar):not([id*="-article"]):not(#latest-comment) +libaclub.com##.ui-ad +||airouba.com/public/js/global.js +||share.dmhy.org^*.*?$image +||51cto.com/iframe/get-station-ads +||eeyy.com/otherhtml/poster_js/ +lusongsong.com###main > center +zol.com.cn##.local-spe-bottom +eroacg.com##.weimg1 +mail.pchome.com.tw##.good_ad +||1328f.com/js/jquery.js +ijiandao.cn,ijiandao.com,jojf.cn##.index-ad +duba.com###top_joke +||e3ol.com/inc/ +t66y.com#%#AG_onLoad(function(){var a=document.querySelector(".tpc_content img");if(a){a=a.attributes;for(var b=0;b tbody > tr > td[bgcolor="#FFFFEE"]:has(> div[id*="ScriptRoot"]) +buzzhand.com##div[style="text-align:left;margin-top:0px;height:600px;"] +cnyes.com#?#.content-main > div:-abp-has(>div[id^="div-gpt-ad"]) +||hsutav.icu^ +dajie.com##.envelop_layer +@@||youku.com/cms/playlog/get? +||bhovrath.com^ +zhihu.com##.TopstoryItem--advertCard +chinaz.com##.scrollload-content > .single-mode:first-child +nb.zol.com.cn##.article-cont > div.zol-eshop +||nb.zol.com.cn/detail_*.html +apple.com.cn#$#html #globalnav { top: 0 !important; } +||tianshui.com.cn/newbg +ifkdy.com##.hb +||gmbbku.com/img/top.js +||uwursert.top^ +||xkzzz.com/zb_users/plugin/MoreLinks/MoreLinks. +||jsdelivr.net/gh/*/960x100.gif +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[id$="2"] ~ #\31 [data-click^="\7b \"rsv_bdr\":\"0\",\"p5\":"] +maomaomom.com###execphp-4 +le.com##.lay_body[style^="width:980px;height:90px;"] +||js0573.com/images/cus/ +baike.baidu.com##.pinzhuanWrap +@@||res.aidegelin.cn/dom2/js/app.js$domain=69xx03608.xyz +zhufaner.com###dist_footer +||netded.com/templets/gfan/js/global.js +||vrdxznr.xyz^ +||85566.net/js/loadjs/jquery +@@||adobedtm.com^*/satelliteLib-$script,domain=samsungmembers.cn +chinanews.com.cn###ad_right_fc1 +||bydcxdy.cn^ +cool3c.com##.col-xs-12 > [class="board board-article board-cool3c_superboard_article3 board-new clearfix"][data-board="cool3c_superboard_article3"] +||wenkuxiazai.com^*reward +dailymotion.com#@#.ad_box +||l.ykimg.com^ +||yyttmyy.cn^ +ctee.com.tw##.qxd +||ccb.com.cn/V5/images5/right0.gif +||cdnjs.mopair-erm.net^ +zhuanlan.zhihu.com##.RichText-MCNLinkCardContainer > a.GoodsRecommendCard +||zxqiwe.cn^ +baidu.com##.ecom_pingzhuan +hao.360.cn,hao.360.com###plane-ria +||zztxfj.xyz^ +||pvtest.zol.com.cn^ +||macx.cn/js/jquery.$domain=game.macx.cn +@@||vvic.com/monetize/ads/index/ +@@||adnxs.com/ast/static/$domain=outlook.live.com +sina.com.cn##.adH +||ifengimg.com^*/aplayer.xml +hlgnet.com##.co_ad +_ad01. +||shfq.com/wuyue +json.cn,pianyuan.org,qixingquan.com##.modal-backdrop +3987.com,drv5.cn,pcsoft.com.cn,win7w.com##.gaosu +||ddlzlr.xyz^ +||zhibok8.com/images/*.gif +||sexyno1.com/mk-banner/ +||iis7.com/ys/css2018/ggw.js +||admin25.com/ad/ +||js1.dadiniu.cn^ +||y1.spreton.com^ +||e0575.com/attachment/image/ +shejidaren.com##.ads-post-foot +ithome.com#?#.placeholder:-abp-has(> a > .plc-con > .plc-footer > .tip-gray) +baidu.com##.top-banner-ad-wrap +||movieclassic.net/templates/frontend/airav/js/*avs-0.4.js +||x2y22.fun^ +makepolo.com,mycar168.com,mysteel.com,pchome.net,rjfcw.cn##div[id^="ad"] +tw.yahoo.com##div[id^="applet_p_"][class^="dealstdv2wafer"] +||untitled.dwstatic.com^ +bilibili.com##.online + .adpos +woshipm.com##.article-topAd +||69shux.com/js/otherad. +||7car.com.cn^ +qdmm.com,qidian.com##.qdRead_redscan +||api.cupid.qiyi.com/track2 +alu.cn###sanjia +||api.cupid.qiyi.com/etx? +hao.360.com###left-float-animation +cnyes.com###full_ad-popup +baidu.com,bdimg.com,tieba.com#?#.l_post:-abp-has(div[class*=" fc-"]) +||slkdnlkfnskl.com^ +bingfeng.tw#$##ypaad { height: 3px!important; } +@@||huke88.com^*-tracking.js +@@||alicdn.com/t/img/TB1DmcoJXXXXXavXpXXXXXXXXXX-26-26.png$domain=dlkoo.com +||bwz4e.icu^ +nownews.com##div.modal.ad +lzacg.one#?#.content-layout .zib-widget:has(> .textwidget:only-child > a[target="blank"]) +||uslsjwnk.xyz^ +||zacff.com^ +||wismog.xyz^ +||yunsennet.com^$popup +||qvnbjjd.xyz^ +wenxuecity.com#?#div:-abp-has(>label[class^="adlab"]) +||tingchina.com/js/dp468 +||js-js.oss-cn-beijing.aliyuncs.com/mnpc-umeng.js$domain=dianyingim.com +@@||toolfk.com^$generichide +bingfeng.tw###adbt +csgoob.com###ADback +||zlongad.com^$third-party +||96kso.online^ +||dlkoo.com/down/copy +@@||ntu.edu.tw/modules/banner.php +||wuxibus.com/Image/title +||julefhgu.xyz^ +||eccn.com/js/gg.js +douyu.com##a[href*=".youzan.com"] +jianshu.com##a[id^="web-note-ad"] +@@||baidu.com/share/count? +8ziyuan.com##.deanadsside +bkill.com##.half-ads +||sina.com.cn/js/87/20140101/hongbao/ +nownews.com##article > [class^="contentAd_"] +||bing009.shop^ +baike.com###ad-xnsc +58b.tv#$##banner { display: none!important; } +||sigjuw.xyz^ +||programmer-club.com.tw/images/uuu/ +itdog.cn#?#.card:-abp-has(.partner>a[href*=".jimcloud.net"]) +||sonimei.cn/images/gg.png +||mscbsc.com/images/5g300x90.jpg +zxzjtv.com##.container > .none +||jitashe.org/template/jitashe/image/bc/3 +||enet.com.cn/counter.php +||khcsvdc.icu^ +||macfans.org/vip/ +||baijs04.shop^ +@@||ad.kazakinfo.com^ +||pklujb.xyz^ +||imgtp.com/2023/02/18/KkRe64ff.png +baidu.com##.container_frs:has( > .voice_room_card_frs[data-url*="yylive"]) +17173.com,am730.com.hk,cdyee.com,chinaz.com,eastmoney.com,epochtimes.com,hsw.cn,ifeng.com,lantian.tv,maoken.com,phoenixtv.com,pyccoo.cn,xineurope.com,yesky.com,zdzdm.com##.adbox +||iobvmtx.xyz^ +booklink.me,p9.com.tw###ad2 +||kfvjdvjzhddhc.com^ +maiziedu.com##.msg +||djicdn.com/uploads/ad_image_file/ +bilibili.com#$?#.container > div.floor-single-card:has(> div.skeleton) { remove: true; } +tmall.com###J_Recommend +ffxiv.xin,fotor.com.cn,weiyun.com,youdao.com#@#.icon-share +@@/adview_*_ads_300x250.js$domain=yaociyuan.bid +||p8u.hinet.net^ +zhihu.com#@#.FollowButton +||sinaimg.cn/large/0076zeZ4gy1gw0if4mgwoj30tj03ptbj.jpg +m.qu.la#?#:-abp-has(> a[href*=".bcebos."]) +||kolsh.cn^$third-party +||cpgou.cn^ +dyhjw.com##.guessEntranceOpen +chinabidding.cn,chinabidding.com.cn###erweima_r +duba.com,uu114.cn###redbagRain +ltn.com.tw##div[class*="adHeight"] +news.163.com##.mod_pageh5 +||v2rayssr.com/wp-content/plugins/eazy- +tbxt.com###headad2 +hboav.com#@#.close_box0 +||easou.com/brandImage/ad/ +qq.com##.txp_ad_link +lenniu.com##.caClass +||4399.com/baiduad/ +||88lm03.com^ +||v.laogu.wang/template/*/images/g_js^ +||ewaterw.top^ +||dadatuwz.com^ +haote.com###playBox +21yq.com###AD1 +biquge001.com###content > a +||peryt111.fun^ +shulink.com##.er_g +||supfree.net/england/ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=video.udn.com +||htyusiu.top^ +||apptry.easylife.tw/pub/js/common/common.js +||anei.tv^$third-party +2dfan.com,galge.fun##.collapse > a[href*=".taobao.com"] +qidian.com##div[style^="width: 426px; height: 644px; background:"] +58.com##.listpage_detail +||189.cn/actpush/$popup,third-party +wantgoo.com##div[type="adv"] +||fmmirep.icu^ +makaidong.com###cyWallsplugin +sxqjdy.com##.gg2 +jiegeng.com,qq.com##.banner_1111 +||jable.tv/assets/images/wejo/$image +||twqtf.boats^ +||vista.tuwan.com/s.js +||doujs010.xyz^ +||bdimg.com/brands/yxtg/source/juhe-v2.js +qingwk.com##.c-meiqia-wrapper +@@||soufunimg.com/count/uvbforpc.js +followme.cn##.money-box +||oxkqeu.xyz^ +@@||guahao.cn/common/js/plugins/fingerprint.js +||ykwykw.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-loan-list-card +megatime.com.tw,pchome.com.tw##.tripplead +@@||goodinfo.tw^$generichide +||uigxgg.xyz^ +fsylr.com##.plus_r +csdn.net##.advert-bg +||apic.91bixin.net/api/thirdadv/ +||badmintoncn.com/cbo_include/js/cboaaa.js +eprice.com.hk##.article__content > div[style*="text-align"] +||7junshi.com/static/red-envelopes.js +||yzs.com/d/file/2020/06/21/5358e14b4556663a91f145f0635f95de.jpg +||gtimg.com/newsapp_bt/0/1846661534/641 +win007.com##a[href^="http://www.edewin.com/"] +@@||alicdn.com/img/ibank/2019/975/700/12603007579_1230538058.jpg +fantuan.tv##.app-guide +jianshen8.com,manwa.me##.index-banner +||iddhui.com^ +sina.com.cn##.yyy-wrap-2021 +||oqnkur.icu^ +qq.com##.mod-ad-full +hupu.com###shihuo1111 +ghxi.com##.entry-content > div[style^="position:"] +||piaohua.com/js/yzz/$script +||zongheng.com/upload/recommend/game/ +||elecfans.com/webapi/advertisement/ +btime.com##.shop-guid +study.163.com###j-newpeople +diyifanwen.com##.Hzh1 +||mp83fkx.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[class^="ecl-edu-"] +mgbbs.cn##td[width="960"][height="60"] +||bymahuxv.xyz^ +||cjjjs.com/image/banner/ali +qciss.net###lightbox1 +9le8.com###program_play_right +||balili2024.top^ +||15tianqi.com^$third-party +ganji.com##.footer-b +www.wangjing.cn##.content > div[style*="980px;"] +||fzlol.com/images/$script +health.tvbs.com.tw##.h-\[280px\] +||53shop.com/img/*.js +bodu365.co##.bdnav + .focus_show +||starredvs.com^ +codeforge.cn##.webnotice-right +nodejs.cn###biz_center +||xinwenren.com/index.php?m=poster& +||yxrxsov.xyz^ +bmlink.com##.tg +||sinaimg.cn/cj/finance/forex/res/searchCallup.js +||cdhfvrug.xyz^ +seqing.world,singlove.com,whichav.com,whichav.net,wokao.co##.qq +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,important,domain=linetv.tw +||live173.com/BANNER/ +shejidaren.com##.widget-banner +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_frs-aside\/pagelet\/hottopic +||dxg*.com/img/A*.js +||ddaixdz.cn^ +||p.eikuaitao.com^$third-party +cn-healthcare.com##.fh_ad_wrap +||otmebdr.cn^ +||dorper.cn^ +||cai110.com/js/2 +workercn.cn#@#.ad_main +jiegeng.com##.coolsite-recommend-linked +storm.mg##.storm_magic_placeholder +pcbeta.com#?#div[class]:-abp-properties(/height: (169|171)px;/) +itheat.com##.hot_ad +||qiuw.com/static/xin-ad.js +anjuke.com##.list-item > .jx-sign +fx168.com###ImgText_01 +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[class^="EC_pla_"] +51yfx.com###tmall_1111 +||z91f4.top^ +||c4d.cn/template/iscwo_zcool/iscwo/ad/ +||3bxe2.cyou^ +||bw66.cn/template/default_pc/bbs/ +||shx11.xyz^ +||acglover.*/wp-content/uploads/*-720 +mmonly.cc###\32 vm_box +firefoxchina.cn##.ff-open +||alicdn.com/img/ibank/*_1082732848. +ld0766.com###portal_ad3 +||fdswrgg.cn^ +||ynet.com/c/js/manto.min.js +51cto.com##.suspend +||dwfdsfkw.xyz^ +||555bbb333bbb.com^ +||wisealty.com^ +||zhnnaxe.xyz^ +||e0514.com/gglist/ +||haokoubei.top^ +||jsb.qianzhan.com^ +||hwymoyv.icu^ +portablesoft.org##.rightside > :nth-child(n+2) +||5068.com/*gg +||jijidown.com/static/img/dongcidaci/ +||fonfn.com^ +||92ghai.com/zz/ +cssmoban.com##.btn-host +ruten.com.tw##.side-advertise +@@||trip-jam.com/resources/js/adsense.js +||3324.cn^$third-party +2345.com##.top > .fred +btmovi.in##body > span[style] +@@||aliyun.com/scratchCardSlide/analyze.jsonp? +||pro.iweihai.cn^ +||uavejnys.xyz^ +||pniao99.com/statics/js/stat.js +||stats.chinaz.com/tool_img/ +myptt.cc##p[style="padding:0;margin: 5px 0;color:#ff0000;"] > a[href][target="_blank"][style^="display:inline-block;"] > img +||baidu.com/ecom$image,script +||bcb5.com/gg/ +zyue.com##div[id^="divad_"] +||cpwlctfk.xyz^ +tw.news.yahoo.com##.caas-body > .caas-iframe-wrapper > .flourish +||n0644.com^ +114la.com##.search_ad +||acodes.b2b.cn^ +||jxnews.com.cn/assets/js/dspshow.js +tv.sohu.com###miaozhenad +||tmlwvxae.xyz^ +baidu.com##.FYB_RD +||pwhtip.icu^ +@@||qq.com/web201602/js/ad.js +||ar611.xyz^ +||qrkhwe.xyz^ +||kyaywy.xyz^ +duba.com##.bgOpen +||1.66law.cn^ +fx168.com###SquareBanner01_01 +||static.doyouhike.net/partner/ +||mmeimh.xyz/static/images/ +xiushuang.com##.fix_app +taoziba.cc##.vddb2 + a +zznews.cn#@#.ad-wrapper +||achost.top/uploads/ads/ +||ahtfzhs.xyz^ +ygdy8.cc##body > a[href^="/"] +douyu.com##.summer_enter +||destinyssa.com^ +caixin.com##.incubator +||a32a.com.cn^$third-party +||trpyceq.cn^ +||chinaconcrete.cn/ggImg/ +||17173cdn.com^*/js/task/src/task/live/greenhand/ +||wnacg.*/zec/ +||elecfans.com/static/home_ad/ +:8888/js/cctv.js +33am.cn##.bd_980_90 +||aliyuncs.com/ghdb.gif +mnw.cn##.mnw_960 +163.com##.redpacket-footer +||gk1.582582.com^ +||kekeshici.com/pc/images/pcAd.gif +myday.com.tw##.myday_ad_right +||btrwxz.xyz^ +duba.com,newduba.cn##.side_taobao +5278.cc###rightside_banner_top +bjd.com.cn##.screenadButtom +yxdown.com###tl_adv +||oprece.xyz^ +||xnnews.com.cn/adgl/ +||qy0.ru/data/game/ +||xytcboyz.icu^ +||china.com.cn*/ads_js/ +||iabao.com/sladewap.js +58pic.com##.activitySettings-fixedBottom +9xav.cc#$##alert_windows { display: none !important; } +||cmqxy.cn^ +||easou.com^$third-party +||tgrpzl.xyz^ +||picnewsss.com^ +t.cj.sina.com.cn###sina-cont000 +||foreveryoung.gz01.bdysite.com^ +winwin7.com##.xzbox-lf +firefox.com.cn,firefoxchina.cn##.cont-promote +104.com.tw###aidma-job +||vmr6t.icu^ +18avtube.com,adultwefong.com,aicoin.cn,aicoin.net.cn,avmimi.com,fsdpp.cn,ip138.com,mangahax.com,mm-cg.com,sports.qq.com,suopao.org,timecn.cn,txzqw.me,youxi.baidu.com###banner +kengso.com,pansoso.com,xgsoso.com##a[href*=".click.taobao.com"] +||jiangyahuir.top^ +17yy.com###addiv +||eduad.baidu.com^ +qzone.qq.com###appCanvasRightBottomTips +||alicdn.com/kf/Hbbe53cc824914cf09276b642ea8c57af3.jpg +||uymahuxv.xyz^ +e0575.cn###main > div:first-child +||zzohucf.icu^ +||52zy.com/other/js/ +||mfacelive.com/Scripts/social/openchannel_min.js +||3dh9y.com^ +||ma1.meishij.net^ +||news.cn/imgad/ +@@/show_ad_$domain=wb.qq.com +gfan.com,gfan.net.cn#@##shareBox +||linkvans.com^$third-party +||y3600.cc/20 +onlinedown.net##.m-safedown-center +||lznfuab.xyz^ +||x23qb.com/skin/themex.js +keywin.org##.pindaolist +||aifei0755.net/123/ +||b7yy.com/ad/ +||mphhgat.xyz^ +||hlegsdh.icu^ +csdn.net##.csdn-tracking-statistics[style$="250px;"] +||gtdf33.fun^ +||qvonje.cn^ +||seectech.cn/scm/ad/list +||76e.org^ +jable.tv###site-content > div.container > section.pb-3.pb-e-lg-40.text-center +||ajffubz.xyz^ +||iask.cn^*model. +||39.net/js/wt.js +||itrdqbg.xyz^ +novipnoad.com##.ad_single_title +||hinm.online^ +||sohu.com/api/labs/mp/load? +||8maple.ru/comic.jpg +||gd.189.cn*/push/$popup +||szpwg.cn^ +||rdiono.cn^ +sm.cn##div[id^="ad_ele_"] +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.1.commercial.jumpUrl', '') +||3h3.com/gmobile/gujs/ +||static.zongheng.com^*/adClickStat.js +world68.com##.content_l_flml.zzs +||galacg.me/wp-content/uploads/*750x +zcool.com.cn#@#.advtop +||tv002.com/img/down1_ssp1.gif +||1ng2l.space^ +||play6111.com/js/ +yeyemo4.com,yeyemo5.com,yeyemo6.com,yeyemo7.com,yeyemo8.com,yeyemo9.com,yeyemo10.com##center > a[target="_blank"] > img +||dz19.net/addimg/ +||1002.men^ +||yyddkm526.shop^ +||hxsxw.com/hx8899/ +||nczsks.com/SCWB/WebResource.axd +||bdstatic.com^*/her/static/indexher/pkg/treasure. +||alicdn.com/img/ibank/*_1409595492. +||123cha.com/counter.js +kuman.com##.guide-download-footer-box +||159i.com/sxxd.js +||mnfhxszj.xyz^ +||aeryt111.fun^ +||goupu.org/1files/*.htm +||cengqinglin.cn^ +tuwan.com##.Video-r-ad +atyun.com###r_banner > ul > li > a[href^="http"]:not([href*="atyun."]) +avgle.com###avyc +||movshow.com/*portal/ +||vdggsd005.com^ +||cbgrqi.xyz^ +||rising.cn/rxbox/ +||95590.org/v1. +worldve.com###img +||house365.com/js/fixWin.php +gfan.com##.downs +||ulukaris.com^$third-party +||m549z.site^ +||88liu.com/data/attachment/portal/ +@@||mcc.xunliandata.com/mci-reward/static/img/ad. +sina.cn##[data-href*="://sax"] +||wmbd.gamersky.com^ +||ieryt111.fun^ +||quelorimu.com^ +jb51.net##.gsdw +||awifi.cn^$third-party +alu.cn##.Tg_260x70 +epwk.com##.head_banner +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl="houses_new"] > .c-border +||wnacg.com/1sdfdc1/500_60-1.gif +hao123.com###hao123-gw11 +||imwxsu.xyz^ +mcmod.cn##a[href^="https://link.mcmod.cn/target/service-ad-vat"] +speedtest.cn##.speed-bottom-activity +jsbooks.com.cn#@#.left-ads +||imgdb.cn/item/66a73333d9c307b7e9dbb6ef.jpg +||kznizrhd.xyz^ +||itopdog.cn/itopdog/d*.js +||jscode.jbzj.com^ +@@||colamanga.com/js/*/load.js +a9vg.com###guide-download +||zcck60eqyw.world^ +huize.com##.hz-bottom-reserve-link +||jxeyhgw.cn^ +psdhtml.cn##div[role^="structure_"] +honglingjin.co.uk##.rs-side-ads +tgbus.com###neck_970 +||lafacw.xyz^ +ptbus.com##.content14 +||soduso.com/js/sat.js +||chinanews.com/ad2019/wujiu_ad.jpg +1point3acres.com#?#div[id^="portal_block"]:-abp-has(a[href*="fiverr.com"]) +pxedt.net##.index_nav_juzhong +cbmay.com##.widget +||xitonghe.com/SkinNew/js/init_g. +zhideqiang.com##A[href*="quan.zhideqiang.com"] +ruanyifeng.com###cre +dnwx.com#@#.ad_250 +lenovo.com.cn#?#.imgNewText:-abp-has(>footer>.info>.source:-abp-contains(/广告/)) +||w94.1qlgi.top^ +||yyodimq.cn^ +||13txt.net/js/ssgdd. +ekamus.info#%#//scriptlet("set-constant", "isAdsDisplayed", "true") +sports.sohu.com##.allsee-list > .bd-wrap +itavcn.com##.topadvzone +muzhi.baidu.com##.wgt-best-answer + script + div +||sukneyu.com^ +||ee.m08pe.cn^$third-party +||ettoday.net/style/hot-trip/js/travel-action.js +423down.com##.entry > p[style$="111"] +||ldipsuml.top^ +||alimama.com^$third-party +@@.png#$domain=3dpchip.com|9zvip.net|club.tgfcer.com|coolinet.com|d1-dm.com|digit77.com|e9china.net|upxin.net +||msdn.hk/templets/msdn/css/msdng.js +||tquspo.com^ +so.com##li[data-cpc_query] +||vecggfp.icu^ +55188.com##.wz_text +||hrjg.com.cn^$third-party +||feedou.com/nzq/style/pc/js/popbig.js +pconline.com.cn##.bk_art_banner +||sccnn.com/SF/zt.jpg +maxthon.cn###festival-fix-bottom +||udn.com.tw/upf/2015_money/SSI/ad/ +lahoo.ca##.view_page_ads +jb51.net,makaidong.com###txtlink +||mb.gulongbbs.com^ +||kfpnqug.cn^ +baidu.com###exp-fixed-bottom +||pvhjkzo.xyz^ +||bestpush.pconline.com.cn^ +||1.bh5.com.cn^ +||1.uc129.com^ +hao123.com##.bar-text +||pfjtgxc.cn^ +||hsoubnp.icu^ +careonline.com.tw##.wrapper > script + a[href][onclick] +awaker.cn##.good-price +||fjqcqdr.icu^ +||jmbbs.cn/sjgg/ +golinksworld.com###btn_download +cnool.net##.third-banner +||wbnbocz.xyz^ +||a.91nets.cn^ +||ridirre.com^ +haojiyou.la##.iqshwad-div +||williamlong.info/script/sidebar.js +udn.com###mainbar > #ec.area +||1.zou114.com^ +||bidvertiser.com^$third-party +fx168.com##.jy_fx168_gjs_content_Right_advise +||rghqrj.xyz^ +||liuxue86.com/css/liuxue_output.js +163.com##.post_recommend_ad +||awhsaso.cn^ +||img2.win007.com/image/*.jpg +||fspddt.xyz^ +||163.com/special/*=ad_ +||pinggu.org/api/bbsgg. +://xingkong6688s.oss- +18comic.org,18comic.vip##div[data-group^="skyscraper_"] +lihkg.com#?#div[class^="_"]:-abp-has(>div>div>.adsbygoogle) +iqiyi.com###videoBuyContainer +||1.1010pic.com^ +view.inews.qq.com#?#div[class^="_"]:-abp-has(>div[data-action-id]>div>.react-swipeable-view-container) +||1342a.com/js/jquery.js +javhd.com##.benefits-list-holder +||yaojingweiba.com/inc/ +51cto.com#@#.addarea +||mnwor.xuanlishi.com^ +||fywaaox.icu^ +||qtciam.xyz^ +360kuai.com##.g4.undefined +173.192.147.21,sejie.com,sejie3.us,thesoccerline.com###wp > br +apachecn.org###coo_banner_WideScreen +||pjtime.com/js/show_ad +||jhpxlyd.cn^ +hao123.com###bottom-be +@@||cmoney.tw/vt/js/google_analytics.js +||ulktyi.xyz^ +||downlinker.*/ads.js +||gahejiao.com^ +iqiyi.com##.qy20-h-carousel-wrap[data-focus="ad-focus-image"] .qy20-h-carousel__a +muchong.com#?#.forum_Post_index:-abp-has(nobr:-abp-contains(18)) +||abixkw.xyz^ +||iccjkn.icu^ +||cdoshbf.top^ +tw.news.yahoo.com###sda-LREC2-iframe +@@||113.com.tw/www/image/index-ad.png +360kan.com##.info-flow__ad +||jueyds.top^ +||azsqkrc.icu^ +||yxdd.com^$subdocument +||henan100.com/d/file/indexad/ +shengxinwang.net###floatDivBoxs +eprice.com.tw##.ad-970x90-g +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ylbx_game_desc +||extopae.icu^ +news.ebc.net.tw###marquee-box +@@||inpad.com.tw/data/adv/ +||6789.net^$third-party +||hongi7ie8owiie03.site^ +||qmwxb.com/skins/2/images/qp001.gif +iqiyi.com##.rightLink +||ali213.net/js/3g/newsdetail.js +ilxdh.com,subaibai.com##.v-modal +zzkdhb.com##li[style*="important"] +||mdsahkln.xyz^ +||11.yiqig.com^ +pcauto.com.cn##.ad_onlyone +mydrivers.com##.jdong11 +mydrivers.com##a[href*=".dangbei.com"] +||xkgttas.icu^ +||51688.cc/ya/ +||u1010.com^ +||gxx4t.online^ +@@||oiihk.com^$generichide +||qfjsliy.top^ +141jj.com,99kubo.tv,jumi.su,preface.ai,r3sub.com##a[href*="bit.ly"] +||img.0279.net^ +||nzlrfdv.xyz^ +||e9377f.com^$redirect=noopmp3-0.1s,domain=eastday.com +5173.com###gg330 +||52dytt.net/images/bbs_btn.gif +hktvyb.com##div[style="text-align:center;"] > a[target="_blank"] > img[alt="APP"] +||faxffjo.com^ +sssam.com#%#//scriptlet("set-constant", "ads", "") +mangabz.com###bb1 +||yigujin.cn/img/abc/ +||w51t.com^$subdocument +v2ex.com##.fr > a[href^="https://www.digitalocean.com/"] +@@.com/js/a_d/$domain=colamanga.com +163.com##.mod_ad_toutu +shejidaren.com##.AND +||imgxr.com^$domain=xiuren.org +||xls.go.sohu.com^ +||mahua.com/www/default/js/mahua_show.js +alexa.cn##.importantTop +@@||ads.tiktok.com^$~third-party +sojson.com##a[href*=".upyun."] +||sibehgtq.xyz^ +baidu.com##.first-card-container +hao123.com##.cjcard2017Container +bdimg.com,tieba.baidu.com,tieba.com##div[class][lgoinprompt="prompt"] +||kekenet.com/images/*/tom468X60.gif +||thztv.*/tool/ +||kyuxym.xyz^ +||wingsurf.cn^ +||udn.com/upf/2014_sales/testpage/Bannerimage/*x*_*.jpg +||100.pncdn.cn^ +||uznizrhd.xyz^ +||snalzlb.top^ +showtv.com.tw##.side-AD +||news.cn/pc-log? +v.163.com###v_shapeRight_divId +ohmanhua.com#%#//scriptlet("abort-on-property-write", "__DOMAIN") +shangyexinzhi.com##.hang-baidu_adv +||eastmoney.com/cachedata/ad.js +||actitat.com^ +||bxw666.com/storage/*.gif +||ui8l2.xyz^ +||m.qhxcdmfj.cn^$third-party +||tingroom.com/skin/dy/images/enread.jpg +@@||battlecats-db.com^$generichide +||blciqbk.icu^ +||tcheeter.com^ +||linuxidc.com/linuxfile/linux$script +@@||cntv.cn/include/video/js/cntv_Advertise.js +xgw5.com###app-card-list +@@||58cdn.com.cn/tuiguang/center/ +my0832.com##.xx_div +nunuyy3.org#%#//scriptlet("abort-current-inline-script", "$", "infoid") +1010jiajiao.com##.fixedbox2 +rising.cn##.search-news1 +||jin10.com/news_service/static/config/details.config. +@@||fang.com/stats/clickm2011.js +sdzbcg.com##td[width="580"][height="279"] > table:nth-child(2n-1) +pconline.com.cn##.juletao +hotpets.com.tw##div[class^="code-block code-block"][style^="position: fixed; z-index: 9995;"] +pixiv.net##.ads_anchor +@@||upxin.net/advertisement.js +||qpic.cn/qqgameedu/0/cfc175896f5b4d6a9ff115b3096dcebe_ +opticsky.cn###head > .tac +pchome.com.tw###test2 +||qdipsumy.top^ +huya.com##.small-handle-tip +mmff30.com##.titletablediv .titletablecell > a[target="_blank"]:not([href$="html"]):not([target="_self"]) +skyarea.cn#@#.post-share +||c1.chajiaotong.com^ +jable.tv##.uu-ads +weiyun001.com##.agency-list +||12.cookcai.com^ +||techritual.com/wp-content/uploads/*/HDcource_ +||rvtfwryz.icu^ +||iqiyi.com/etx? +ecpoc.com##.arcbodyad +@@||bitauto.com/bglogpostlog.js +||mqwtgq.xyz^ +||fc.3dmgame.com^ +||ll.hudong.com^ +||css.mangabz.com/*/mangabz/js/mobile/newyb.js +chinaxinge.com##.sy05 +mydrivers.com#?#li:-abp-has(>.titl+:-abp-contains(好物)) +||bvpqrydt.xyz^ +||gdbyhtl.net^*adfix/ +iyf.tv##.player-right +||hsbianma.com/Ad/ +jmw.com.cn##.mr_1 +||itiexue.net/wap/tiexue/js/chuping/nativeshare +423down.com#?#.post-related > ul > li:-abp-has(> a[href^="http"]:not([href*="423down."])) +||imniel.com^ +big5.china.com.cn##.Advertising > a +||yemancomic.com/static/xiaomage.js +mtrend.cn##.hdlist +||bdcpro*.techweb.com.cn^ +@@||advert.kf5.com^ +||baidu.com/ndwkasp/ +taoguba.com.cn##.ct_app +zzbaike.com###topnav + div[style] +||bmjs.xzw.com^ +||forrzp.xyz^ +||xvpcjl.xyz^ +||google-js-08.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="right_chris_prize_list"] +ithome.com.tw##div[class="span4"] +||duba.com/static/*/js/min.pop.js +acg17.com##.yhq +||ahm.135320.com^ +||wzzlnld.xyz^ +||slashlook.com/_resource/html/_bloggerAdsInline1.html +amz123.com##.two-activity-style +bt1207ma.xyz##a[href*="/uuribao.com/"] +163.com##.kaola-ad +||tptp002.cfd^ +||xkesqbp.icu^ +yutu.cn###botfocus-res +baidu.com#@#.share-line +||wnacg.*/5eg/ +acfun.cn##.app-guide +apk.tw##.sitemaji_banner +creaders.net##.pinglun > .btmlist-title +9uu.com##.relate-container +||btbtdy.*/templets/btdy/js/ad +apple.com.cn##.adv-wrapper +||gtimg.com/sports/000/ +aeink.com##.widget_ui_adsf +rouman5.com##a[href*="tyrantdb.com"] +techbang.com##.google-dfp +baidu.com##.hotad-list-box +||bavei.com/img/*.png +wbiao.cn###popupImgCorner +||chexun.com/delivery? +||csaimall.com^$popup,third-party +||lefengtv.com/js/tj.js +||xbiqugela.com/js/basisc. +dk95.com##.advs +chinairn.com##.bizrpt +||suresdb.top^ +||eic.org.cn^*/analytics +||wenku8.net/js/ +||taiwannutrition.com/blog/wp-content/plugins/arscode-ninja-popups/ +||sums.suning.com^$third-party +mtrend.cn##.tjlanmu_2 +lz13.cn##.left_box3 +||foxoxn.xyz^ +||3dmax8.com/atu4/ +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=gamer.com.tw +||zisu.cn.com^ +haoweichi.com#%#//scriptlet("prevent-setTimeout", "adsbygoogle") +||szaction.cc/public/*/plugins/ +||qhres.com/static/4b6ab193405b6ca3.js +||syzjxz2018.cn^ +pconline.com.cn###JrightSideFocus +firefoxchina.cn##.feed-tm11 +||supfree.net/poland/mobile.js +@@||mlbstatic.com/mlb.com/video/config/mlb-vpp-aws^ +||cnwnews.com/templets/images/jccf +petrochina.com.cn#@#.ggbox +ieforex.com##.header > .left +||cnblogs.com/ajax/bigbanner/ +||doujs08.xyz^ +5054399.com###gg2 +||bznizrhd.xyz^ +||baidu.com/static/html/cbjs.html +finance.sina.com.cn##.tg_bank_top +ck101.com#?##threadlisttableid > tbody:not([class]):not([id]):has(> tr > td[id^="popin_"]) +e3zy.com##.jiacu +bilibili.com##.operate-card[data-target-url*=".miaozhen."] +uc.cn##div[data-ad_url^="http"] +baidu.com##.openAppCarsouselTpl +||fqbjzj.xyz^ +423down.com#?#.excerpt > li:has(.info .cat a[rel$="tag"]):contains(产品推荐) +@@||ahhhhfs.com^$generichide +||nyaa.*/static/js/ccheck.js +iplaysoft.com###sidebar > ul > li[class^="widget"]:nth-child(-n+3) +||ee021.com/Runtime/js/ +||hahamx.cn/upload/data/list_sidebar_ +:2048/b.js +league-funny.com##div[class^="dan_pmp"] +ksbbs.com##div[id^="mimi_"] +||eyuyao.com/yyad/ +||opwoga.xyz^ +||mwqetvn.icu^ +qzwb.com###Javascript\.RightDiv +||dzvy7.space^ +xc6b.com###leftbottbox +isso.com.cn##.right-content-div > .top-div + div +||shbzjkj.cn^ +china.cn##.search_video +||6820tp1.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###ecl-weigou-view-container +@@||ttkdex.com^$generichide +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="33%"] +||udiab1.jianshu.com^ +@@/bag2?r[]=*&r[]=$domain=free.com.tw +||m.qiushuzw.com/9CB0D8A5/2dfc69b0d8a5.js +baidu.com##.adLog +||80juqing.com^ +||sogoucdn.com/app/a/200692/960_80_feedback_ +fastadmin.net##.panel-body > a[href$="="] +whnews.cn###gd_r +||xiexingcun.com/tyong.js +duba.com##.taobao_search +||tianyaui.com/global/dashang/vip_seat/js/ds_vip_seat.js +||wclsylk.cn^ +itkeyword.com##p[style="line-height:1.4; margin-top:8px; margin-bottom:10px;"] +cctime.com,doyo.cn###top_banner +sina.cn##.sw_c0.fix_top +ddooo.com##.guoasu +911cha.com##.sideqr +||uxlvk.cn^ +||bhlntz.xyz^ +||chinaxinge.com/gif3/ +rvlev.com,t66y.com#?#[class]:-abp-has(>a[onmouseover="this.style.background='#DEF5CD';"]:nth-child(n+160):-abp-contains(/赌|娱|澳/)) > :nth-child(-n+170) +yes-news.com###content-728-top +||static.ichehome.com^ +||kuaihou.com/c/you1.js +baidu.com##.img-adv-swap1 +||mps.wenkuzu.com^ +||atpanel.com^$image +huya.com##.ab-wrap +bejson.com##.t-small-margin > ul:first-child +mc.163.com###NIE-topBar-news +||xu27r.com^ +@@||sdc.pingan.com^$~image +dav01.com##.adwraper +6665.com###fgdiy01 +@@||av30.xyz/cs/2.js +||btwwzqdx.xyz^ +||gsdedash9b.fun^ +||5888.tv/User_Ad/ +uc123.com##.bg-wrapper +||wuliao.chzsport.cn^ +hk.xfastest.com##.adv_v2 +lanzou.com##div[style="text-align: center;border: 1px solid #eee;"] +||mitbbs.com/ad_ +qq.com##.qiye-Article-QQ +||l80ays.com^ +||189.cn/dns/ +||kjeqga.xyz^ +unikoshardware.com##.elementor-image > a[href^="https://bit.ly/"] +||v34s6r.com^ +||rjlfolk.xyz^ +||szpnz.cn^ +360doc.com###divyoulikead +jq-school.com##.setfarme:nth-child(7) +||jmcomic1.cc/iframe_v*?type=exo&idzone= +dep-family.hccg.gov.tw#@#.ad_2 +||tp4sul.jwzd.com.cn^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_frs-header\/pagelet\/head_content_middle > div[class]:not([class*="_"]):first-child +17173.com##.mod-tg1 +||oswowg.xyz^ +||oqaejin.icu^ +||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg +131400.best,vikacg.com,vikacg.xyz##a[href^="http"] > img[src*="/assets/main/"] +||d4vd.life/love/ +||lwprdv.xyz^ +||setlwsb.top^ +||mqrupjsm.xyz^ +le.com##.lbzDaoliu +||fanhaodang.org/Runtime/js/ +||91danji.com/js/lmt.js +||chazidian.com/mobile_general_ +chunyuyisheng.com###ad_modal +||cyuwkbf.top^ +||zojyob.icu^ +||lajevt.xyz^ +jinhua.com.cn##.banner465 +||ii1.chajiaotong.com^ +motobuy.com.tw##.adbig +wenku8.net###adv300 +163.com##.redpacket-subbox +||bnfhxszj.xyz^ +eworldship.com##img[height="70"] +||zhenben.cc/2000/ +@@||jianshu.com/asimov/ab_test/info +popbee.com##.adblocker +liaoningmovie.net##.list-subCont > li[style$="height: 98px;"] +||baidu.com^*/directad? +c114.com.cn###barrage_bg +7hcn.com##.pr > a[href^="http"]:not([href^="http://www.7hcn."]) +hc360.com###newAppBox +||beijingbang.top/scholar/xljsci +||bd1.click.com.cn^ +||sinaimg.cn/mw690/005uyUwYjw1eocc98cbgag30gk02ygm9.gif +fffdm.com##[style^="width"][style*="height"] +baidu.com##.player-pause-code +3g.qq.com##div[id^="feed-omgad-"] +||zeqvqb.icu^ +uc123.com##.s-left +kairos.news#?#.theiaStickySidebar > div.widget:has(> div.textwidget a[href^="https://kairos.shopping/product/"]) +1kkk.com,dm5.com,dm5.hk###beitou +||gftefmt.icu^ +ifeng.com##.topAdBox +||eraygc.xyz^ +diyifanwen.com##.Hzh2 +||u0071.com^ +|http://*.us/ad/ +54new.com##img[width="1280"][height="100"] +sina.com.cn##.redPacketCont +@@||ldxinyong.com^$generichide +||zwzdjb.xyz^ +||binga07.shop^ +||tihdjd.xyz^ +||3987.com/images/ +||s-msn.com/portal/xiatui.js +@@||58b.tv/static/js/ad.js +||ndthdte125.shop^ +||zeuqmpe.icu^ +@@/advertisement/*$domain=ininin.com|midea.com|muyingzhijia.com|nmkjxy.com +||lckjqtx.xyz^ +||kfjpren.xyz^ +fx678.com##div[class^="fx_fa_"] +||frtnqpw837.shop^ +||1x5jlh.xyz^$popup +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.frs_act_repost_wrapper_outter +||gixgav.icu^ +||dmzj.com/module/js/float_code.js +||22588888.com^$popup +sportsplanetmag.com##.adshow +pc6.com##.Advbox +fpdisplay.com##.class_adv1 +qinbing.cn##.adspic_mid2 +||1buu1.penyouw.com^ +@@||youku.com/cms/player/userinfo/ +||uweriot.top^ +||cpplay.com/inc/ +||a.bxwblog.cn^ +||sihbb.com/yang/ +||pdfbook.cn/wp-content/uploads/2017/11/049.jpg +smzdm.com##.foot-banner +||prpmdp.xyz^ +@@||10086.cn^$generichide +||gtimg.cn/mediastyle/event/20160306_music_live/img/skd.jpg +chyangwa.net,motorfans.com.cn###scrollPics +tmall.com###J_BottomSmartBanner +mydrivers.com##.yTv3AMqP +||ck33.top^ +||jdrlfn.xyz^ +||hao123img.com/v4/MB/xU/jy/VY/YX/MBxUjyVYYX.js +@@||vlist.se/advertisement.js +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:-abp-has(>ins+script) +||vwvatp.xyz^ +||bnextmedia.s3.hicloud.net.tw/dp_cp/cp_prebid +slashview.com#$##SlashviewAdDetector { display: block !important; } +||cp121.com/js2/ +||skldbklsbvss.com^ +cartoonmad.com##table[width="950"] > tbody > tr > td > table[width="210"] > tbody > tr > td > table[width="210"] +||zhangzishi.cc/cdn-cgi/apps/ +||g.163.com/*&affiliate= +||polepole.cn^ +||666ppp222ppp.com^ +#%#var AG_removeElementBySelector = function(selector) { if (!document.querySelectorAll) { return; } var nodes = document.querySelectorAll(selector); if (nodes) { for (var i = 0; i < nodes.length; i++) { if (nodes[i] && nodes[i].parentNode) { nodes[i].parentNode.removeChild(nodes[i]); } } } }; +||cdn77.org^*.mp4$badfilter +app.n26.com#@#.bl > .gg +||mangahax.com/images/ima_ +heiguang.com##.pbAddPic +bbs-mychat.com#@#.adContent +@@||fengkongcloud.com/fpv2.js +cpnn.com.cn##.part3-adverd +||dflkndkzf.com^ +||hfwld.cn^ +||outbrain.com^$third-party +||vip1.loli.net/2020/02/17/A9jmsY41EwiUzou.png$domain=ddrk.me +vid.onlymu.site##.tips +18-comicfrieren.xyz,18comic.org,18comic.vip##style + div[style="cursor: pointer; position: relative;"] +yiyouliao.com##.yyl-weiruan-news-ad-item +dy.xdf.cn##div[id^="adModel_"] +||luresdl.top^ +36dm.club,36dm.com,acgsou.com##img[width="700"][height="60"] +fuliba.net,fuliba2023.net,uliba.net###focusslide +pcccp.cn##DIV[id^="xydl"] +jiankang.com##.all_eye +@@||manhua.weibo.com/adv/ +||jiusudie.com^ +csdn.net#?##feedlist_id > li:has(> div[id^="kp_box_"]) +||avcity.twavtv.com/iframe/ +mingpao.com###photo_transition +||api.wudizuqiu.com/bocai.js +90pan.com###tt_6 +chinasmartgrid.com.cn##.ht60ad +hupu.com##.hp-header-banner +||chakd.com/images/xitie160x60.gif +fulibl.com##.widget_banner +||zhan.com^*/middle_ad_modal.js +autohome.com.cn##.activity-app-layer +qzone.qq.com###QM_Container_100005 +||gavbus*.com/assets/common/js/ad.js +||akuziti.com/tu/*.js +||codeceo.com/images/*/boxuegu +nownews.com##div[class^="leftSide_"] > div[data-reactid] a[data-event-action="page-recommend-ad"] +wmzhe.com##.aibyte_ad +||gtimg.com/pingjs/ext2020/dc2017/dist/m_tips/tips.js +coderutil.com##.head-recommend-adv +||rshsk.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###worldcup_topic +eepw.com.cn###hiddenLayer +||qpix.com/2021/05/20/Aqcp.gif +||9g659.xyz^ +||ovnrmvg.cn^ +||55sky.com/js/diecuo/ +hutool.cn##.hutool-top-ad +||4kwu.cc/static/js/tj.js +||51liucheng.com/js/dialogLogin.js +kaoyan1v1.com###showAD +||baidu.com/?action=getadsdata& +1090ys8.com#%#//scriptlet("abort-on-property-read", "adBlockDetected") +@@||passiontimes.hk^*-ad.php? +upsangel.com##a[href="https://upsangel.com/check/surfsharkvpn/"] +||paopaoche.net/public/bd/article_inc.js +||aixifan.com/cms/*/w/1160/h/100 +||lzzqfj.xyz^ +||tszoxhtk.xyz^ +m.biqiugege8.com#%#//scriptlet("set-constant", "lists", "undefined") +logi.im#%#//scriptlet("prevent-setTimeout", "ins.adsbygoogle") +||qiyipic.com/common/*980x +21cn.com###embed_hzh_div +||mnnmnn.com^ +163.com##.imglist-bobo-app +163.com##a[href*=".kaola.com"]:first-child:last-child +new-reporter.com##div[id^="mdl-elmt-"] +||qpesok.xyz^ +||eastday.com/jsfile/kuaiya_ +||zxrcfw.com^ +iplaysoft.com##.crumb_ad +||mlicci.xyz^ +||alicdn.com/img/ibank/*_56164670. +||962.net/show/index_ +||firefoxchina.cn/v2/json/floatBanner.json +||chinaacc.com/lamu/*dl- +||ydmnlxtu.xyz^ +@@||wl.jd.com/wl.js +||hotpress.info/blog/asian-javdl/wp-content/uploads/irvsxp.js +||etjui.cn^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.app_forum_top_nav_tab +jandan.net#?#.commentlist > li.row:has(> div > font:contains(广告)) +||hc360.com/images/14826/289x90.jpg +||jy08.shop^ +yahoo.com#?#.stream-item:-abp-has(>div>div>div>span:-abp-contains(即日熱搜)) +v.qq.com##a[href*="amway.com.cn"] +wuyong.fun#?#.sidebar-innter > section[id^="b2-widget-html-"]:has(.adsbygoogle) +||aiknx.cn^ +||webservice.360doc.com^ +||npnpxoz.xyz^ +_728_90. +csgoob.com#$##ADback { background: none !important; } +muzhuangnet.com##.widget_sentence +||dqzehgha.xyz^ +||szhgmd.com^ +360che.com##div[id^="PAGE_AD_"] +||hibj.online^ +||videojj.com/api/v1/plat_tags? +right.com.cn###hd > div.wp > div.hdc > h2 +||l.qq.com/lview? +lanyes.org##.kuanpin +||wumii.cn/ext/relatedItemsWidget +ifeng.com##.adbox03 +@@||assets.giocdn.com/2.1/gio.js$domain=saicmg.com +sogou.com##.recommend-pop +||chmueyv.icu^ +||goodvibe1.com^ +||ghost580.com/js/nei4.js +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="920"] +||dm1.zjydt.com^ +ck101.com##.bt-ad-728x90 +@@/pub/ad/*$domain=ruten.com.tw +oschina.net##div[data-traceid*="_ad_"] +||oclasrv.com^$third-party +ktsf.com###sow-slider-7 +2345.com###leftPacketMain +||jioed.cyou^ +||07073.com/pc/js/right-ad. +pinggu.org##.index-somelinks +chinaz.com###setPbottomMedia +||uumnxiet.top^ +||vihqpr.xyz^ +||y66xvgo5i.chuimg.com^ +bilibili.com##span[style*="height:"][data-loc-id] +qq.com,sogou.com##.daohang-gamecenter +kissjojo99.com##.g-adv +||iupian.com/mstyle/js/topinfo.js +||doujs07.xyz^ +||zfvtswv.xyz^ +||jrjtibez.icu^ +ifeng.com##div[class^="games_ad_"] +||3gmfw.cn/js/wap/ +||szfcol.com/images/wxright240.jpg +macd.cn###hbad +||9ye.com/Files/Editor/ad/ +nlc.gov.cn###lovexin12xx +adbug.cn#@#.google_ads +||qbsday.xyz^ +idanmu.ee##.entry-body > div[class]:first-child +unikoshardware.com##.elementor-widget-sidebar a[href^="https://bit.ly/"] +@@||slashlook.com/_resource/js/_js_ads.min.js +qiuziti.com##.popularize +huaban.com#@#img[width="240px"][height="400px"] +||dswcrlf.cn^ +baidu.com##.app-side-banner +le.com##.Ad +dianping.com##.J_midas-3 +||mgqtcs.xyz^ +gonglue.us,kocpc.com.tw###custom_html-6 +2345.com###J_gul_yglist +so.com###e_idea_pp +zhenbuka3.com,zhenbuka2.com,bukaivip.com#%#//scriptlet("adjust-setTimeout", "CloseAd", "", "0.02") +||chazidian.com/all/mobile_ +||mewrutx.top^ +jingyu.com##.stream-app +egame.qq.com##.pop-widget +ctwant.com##.m-adpopup +||anhuinews.com/zhuyeguanli/*ad/ +||huarenjie.com/attachment/myfiles/ +bestcclm.com##.wp.cl > a +||ietlwso.top^ +lohas.pixnet.net###box785805 +58cam.com##.syads +||hwnojj.xyz^ +@@||bagehd.com/iplookup. +||sowsuwm.icu^ +2345.com##.spreadHotWords +wenku.baidu.com##.edu_class_pop_dialog +||undm.qibulo.com^ +||wnacg.*/data/game/ +cartoon18.com##.embed-responsive.position-relative > a[href^="http"]:not([href^="/"]):not([href*="cartoon18.com"]) +||200218.com^$third-party +||docin.com/jsp_cn/ad/ +||meishichina.com/v3/ +ali213.net##.zadmainholder +||192.luyouwang.com^ +@@||research.hchs.hc.edu.tw/*/banner.php$domain=research.hchs.hc.edu.tw +||58.com/demand/content? +teepr.com###topAdBlock +baidu.com##.baiduapp-ad-container +||bbs.hotavxxx.com/images/201*.gif +||15hn.net/data/content +||mmonly.cc/js/mmonlyAPP.js +mpyit.com###post-0 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_content +hexun.com###bottom_extension +||m.20mao.com/*/BOT.js +||5.ccutu.com^ +||f7fe0.cyou^ +||dieka888.com/app_ad/ +||5ydj.com/images/banner/ +crsky.com##.banner-leader +||8d07a.xyz^ +||yrr56.com/mp4/pt_720. +dailygh.com###video_fade +kocpc.com.tw##.single_ads +@@||cnki.com.cn/cnki/images/ad/2020/1112_45711271.jpg +||u0056.com^ +sina.com.cn##.ad_main_top +||uohvxrvd.xyz^ +@@||toy-people.com^$generichide +||ypvtw.com^ +||18-comicfrieren.xyz/media/albums/*?$media +||xpyjyhny.xyz^ +||xpj08.oss-cn-beijing.aliyuncs.com^ +ifeng.com###video_p +||bdstatic.com/tb/cms/*%E5%BA%95%E9%83%A8 +||yximgs.com/bs2/adcarsku/sku1563a96c-38ca-4563-a4b5-522208113126. +||ei1s7b.cn^ +yocoolnet.in###mobile_inplayer +||adserve.work^$third-party +||bytupkvc.xyz^ +||hugo3c.tw^$csp=script-src 'self' * 'unsafe-inline' +||southmoney.com^*/Inc/ +||vfgajrk.cn^ +||ohkfmi.xyz^ +||jlmhk.com/images/data/ +||heiguang.com/_r/2015/js/hrBottomBar. +@@||masterkong.com.cn/adimages/ +=SOGOU_WAP_SETJSONADSLOT& +wed114.cn##.adtwo +scsjgjj.com###floatinfo +||szxf4.icu^ +||guwohvw.icu^ +||mnpkxgfp.xyz^ +@@/adimage/*$domain=scyts.com|wacom.tw +qciss.net##.d1 +newtalk.tw,phbzj.com##.ad-container +||pv.dakawm.cc^$third-party +||klmohbk.icu^ +tools.2345.com##._hb-box + .mod +huya.com##.room-sidebar #public-screen-ab +baidu.com##.s-tutorial-tip +||xphcrjth.xyz^ +||a.xuezizhai.com^ +sinami.com##.banner_centerLeft +elle.com.hk##.tpc-container +@@||freereceivesms.com/weborama.js +hupu.com##.hupushihuo +||nfmovies.com/pic/tu/ad +github.com##a[href="https://start.aliyun.com/"] +||baidu.com/buy/ad/home +ifeng.com##.ad08 +||vflorp.xyz^ +ifeng.com##.ad07 +||vjpgm.space^ +||javhd.com/banners-mainpage/ +||ydfhidrk.xyz^ +||jeryt111.fun^ +||appimg.0575bbs.com^ +||vansky.com/index_files/*.gif +m.youku.com##.hdwrap +douyu.com##.vcode9-sign +||51credit.com/51api/creditcard.php?mod= +=mumumoniqi-piaochuang- +||msxoux.icu^ +||c1.4qx.net^ +pinshan.com##.b_taobao +onemanhua.com##body > div[style^="position: fixed;"][style*="z-index:"] +||xqjqripb.xyz^ +weebly.com##a[href^="https://www.ebay.com"] +||fcgxidqwcx.xyz^ +||wx.sina.com.cn/iframe/pdps/ +||ggw.watertu.com^ +||myqmgm.xyz^ +||wantgoo.com/wantgoofiles/banner/ +viu.com##div[id^="info"] +||2cnjuh34jbman.com^$third-party +||union*.365inews.com^ +chineseinla.com###weixin_ads2 +||fpvdrzx.xyz^ +sina.com.cn##.clearAd +youku.com##div[data-adext] +nczsks.com###wzyxjs +||mdfsbn.com^$third-party +||citysbs.com/no/*/650x50- +||dfan4.icu^ +||ohopao.xyz^ +||alicdn.com/img/ibank/*_1095372465. +||haiyuer.com/uc +so.com##.atom-adv +kaolashuwu.com###ZF_tanchuang_p_right +@@||ibf.tw^$generichide +||dxwksqa.icu^ +foodmate.net,weather.com.cn##.ad4 +||156.233.32.123^$third-party +weihemenye.com#$##player_div { display: block!important; } +||c1.czcol.cn^ +||qdjsiyt.icu^ +||davtvd.xyz^ +||jijidy.com/640x200down. +9y01.xyz##.in-friends +||fwsir.com/static/cpt/ +||befyah.icu^ +||guojitv.com/m/js/ad_ +||n2faw.site^ +||chzjidgc.xyz^ +@@||create.jd.com/ad/ +||lecai.com/page/zhuanti/baidu/ +||n3567.com^ +2yjw.com##.widget-tops +hit180.com##.widget_ui_orbui:nth-child(-n+2) +twavking.com##.da_single_video +||fwcnex.icu^ +||stat.img-space.com^ +ks.js.cn##.height200 +bbs.xmfish.com##.adv-760 +||efs604.top^ +||bdstatic.com^*/plugins/every_cookie_ +||meiyouad.com/user/admin? +tsdm39.com###ct > div > a[target="_blank"] > img +2345.com###rightXieCheng +||ifxqubw.icu^ +||80yc.com/js/yidong/ +||laogu.com/cms/images/ad +jdbbs.com###archy5 +||yl04z4v.cn^ +||ycmgeb.icu^ +||thavrils.com^ +52pk.com,hao.rising.cn,vpgame.com##.add +dianping.com##.button_bao-jia +||2048hd1.com/js/tc.js +360.com###festival-mario-screen +@@||inoreader.com^$genericblock,generichide +applefans.today#$#.tipi-overlay { display: none !important; } +bbs.my0511.com##.outertxt > tbody > tr > td[height="80"][align="right"] +:818/nowscore/ +||chubsxmg.xyz^ +oschina.net##a[data-traceid$="_ad"] +||e23.cn/js/aaa.js +||lvuptech.com/wp-content/plugins/deblocker/ +||cqcrci.xyz^ +||d24fnxkxwarvg8.cloudfront.net^ +pconline.com.cn###app-ewm-tg +||u2w95z.xyz^ +chanpindashi.com##.personal-information > a[href^="http"]:not([href*="chanpindashi."]) +lenovo.com.cn##div[id^="ad_bd_"] +renren.com##.toplive +||yi.ximizi.com^ +||fq04.shop^ +||ruiwen.com/js/p.js +maxthon.cn##.top-right-pop-wrapper +||jc001.cn/ci/jad/fix. +aa25.cn###content_head +||kyuwkbd.top^ +||jrjimg.cn/common/foot/allfc.js +||sgozmks.icu^ +||wneia.iaskhot.com^ +||image.39.net/style/ +bitauto.com###dyAdv +hao123.com##.adMainMiddle-box +||imevzbn.cn^ +||cdn77.org^*.mp4| +manmanbuy.com##.app-activity-download +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_thread_list[data-field^="\7b \"id\":4756933479,"] +@@||ipstatp.com/business_center/dist/img/ad-$domain=tiktok.com +||n0544.com^ +@@||85tube.com^$generichide +baidu.com##.banner-wrapper-defensive +fx678.com##div[id^="hta_"] +||css.juqingba.cn^ +||jpwsuix.icu^ +||iiwoqm.xyz^ +||xixil.cn^ +libaclub.com#?#.ui-list-item:-abp-has(>.ui-list-item-title>a[onclick^="SendAd"]) +|http://ad.$domain=~ad.cnr.cn|~ckckk.com|~jxnews.com.cn +||163.com*/special/*_ad_ +||gw2cddpt2hao.cloud^ +||pidurrmu.xyz^ +||2481e.com^$popup +hinet.net###media_ad_popup_overlay +baidu.com##.picad +heirui.cn##div[id$="MASK"] +||img.qxwoiv.com^ +price.com.hk###ad5 +||pv.sohu.com^$domain=chinafund.cn +||rabc1.iteye.com^ +baidu.com##.manual-spread +||zbjimg.com/static/union/ +weishangshijie.cn##.head_imgwl +||oshaq.top^ +||ekltes.xyz^ +||bp.blogspot.com^*/s1600/dealer +||js.mumayi.net/jiujiang +||jishuqq.com/images/haodian.gif +360doc.com##.ggwz +||hdslb.com/js/core-v5/picment. +colamanga.com#$#html { overflow: auto !important; } +||acglover.*/wp-content/uploads/*-520-245. +||ydolhlwq.xyz^ +||2345.com/js/index/activity/ +||kewaishu.org/m- +||8208tp.com^ +pchome.com.tw##div[style*="982"][style*="85"] +||huanqiu.com/ssi/show_*_mall.ssi +||izalflh.cn^ +finance.sina.com.cn###ny-link-r0 +||sass.hk/js/ggcn.js +||slit.cn/slimages/ +||dpweupc.icu^ +||ra5.xyz^ +||hefei.cc/templates/default/index_ad +@@||poedb.tw/js/adsbygoogle.js +gamer.com.tw,pili.com.tw#@#.textAd +||nfuwow.com/static/nfuwow/source/front/new/images/ +||obdjzhq.xyz^ +||aaread.space/images/*0.gif +@@||3dpchip.com^$generichide +||runmang.vip/img/ +hqew.com##.pop-banner +||onedala.tv/uploads/banner/ +hgitv.com##.gg09 +||nlfbdgr.xyz^ +coderutil.com##.search-module + a +||xianliao.voto^ +||c-5uwzmx78pmca09x24aiux2euavx2ekwu.g00.msn.com^ +||copyfuture.com/images/zhifubao.jpg +||phpstudyimg.com/all/hrl.gif +||huohuo.huamuwo.com^ +||yahoo.com/embed/tv?site=buzzhand& +qqyy.com##.right_dcotor_tab +ctwant.com##.l-ad__article +||phjtxx.xyz^ +discuss.com.hk##iframe[src^="yna"] +||tianshif.com/zeis/ts.gif +||panpan.org/plus/img/ +fishpi.cn#?#.module:-abp-has(>.ad) +32r.com##.gscbtn +zhihu.com#?#.TopstoryItem:-abp-has(.Popover > .TopstoryItem-advertButton) +||vansky.com/agdg/homegg/ +||aiiaqw.xyz^ +500.com###live_top_ad +zhangxinxu.com##a[href*=".taobao.com"] +|http://*/ad_bj.js? +||people.com.cn/img/gjt/ +rjno1.com#@#[id^="aswift_"] +zol.com.cn###btmLoginLayer +||gcylkq.xyz^ +||bixingjia.com/js/hf. +bilibili.com##A[href*="cm.bilibili.com"][data-target-url*=".biligame."] +applnn.cc#%#//scriptlet('trusted-set-cookie', 'gg_info', '$now$') +@@||nobugin.com^$generichide +||alicdn.com/img/ibank/*_1545027917. +xinmin.cn##span[style^="position:fixed;right"] +mjzj.com##div[id^="sidebar-top-carouse"] +||ssp.kdnet.net^ +||tzfdc.com/fdcSell/ +||csdnimg.cn^*#/preview/ +bigear.cn##a[href^="/?module=dantian&"] +codejie.net##.s-ad-tit-box +||ovjlccs.xyz^ +hvhbbs.com##.margin-add > style + div +aaread.space##.navi +douguo.com###dlayer +||91jbz.com/file/script/A +kaitao.cn##a[href*="/a.php?id="] +||d2tf0.icu^ +boylov.xyz,boylove.cc,boyloves.fun##.swiper-wrapper +||qhimg.com/clk.gif? +hcomic.net##div[class^="multiBanner_bannerBox"] +yahoo.com###ACT_crazy +||vjharl.xyz^ +||ndthdtr586.shop^ +||mrutvncx.top^ +||lzk.hl.cn/lctp/ +gamer.com.tw,pili.com.tw#@#.text_ad +sogou.com###bottom_appad +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$redirect=googlesyndication-adsbygoogle,domain=youneed.win +||vsqovxf.icu^ +||jsx.luyouwang.com^ +||90oo.com/tp/down.gif +||irutvnco.top^ +blog.sina.cn###pl-float-bar +||tietuku.com/d57c01987e74d8f8.gif +||sgwsss.xyz^ +||tjj.com^ +znds.com###diy_mobanbus_view_right2 +jianhuadaily.com##.alignnone[width="1050"] +||acgbase.com^$third-party +||dup.baidustatic.com^ +||eeyy.com/templates/js/popback.js +||yiqifa.com^$subdocument +||iwatojc.cn^ +eservice.7-11.com.tw,4399pk.com,downkr.com,cardu.com.tw,cw.com.tw,hk.on.cc,share.acgnx.se##.banner +||todayapp.tv^$popup,third-party +||acc.3gbizhi.com^ +motobuy.com.tw##.AD1 +game2.cn###pop-flash +@@||daxiaamu.com^$generichide +||ysxs8.vip/ysgg/ +||92dp.com/home/showga? +||uskoie.xyz^ +||httpcn.com/Images/banner +kocpc.com.tw##ads +||xitek.com/idzone +cbber.com,xiaot.com###diy_chart +||store.7box.vip/ad/ +||sqszcg.top^ +||baijs05.shop^ +||qq.com/tencentvideo_v1/script/module/propeffect/prop.effect. +2023.allthingsopen.org#@#a[href*=".com?aff="] +||mydrivers.com/images/hongbao +||05826.online^ +@@/advert/*$domain=csxbank.com|fjgcjxgl.com|locuspublishing.com|moretv.com.cn +526bt.com,guojitv.com###slider +3g.baidu.com,m.baidu.com,m5.baidu.com,www.baidu.com#?#div:-abp-has(>div[id$="_1"]+div[id$="_5"]) +||bdstatic.com/searchbox/icms/searchbox/img/*.jpg +||kantv6.com/index.php/Popularize/ +||ttavav6.com/zz/ +@@||sinopac.com/applyweb/OpenAccount/js/oas. +||cntvboxnow.com//ads_ +eprice.com.tw###goldlink +||bt.cn/bbs/newsimg/ +bbs.my0511.com##embed[width="970"][height="70"] +qidian.com##div[style="background: rgba(0,0,0,0.4);position: fixed;left:0;right:0;top:0;bottom:0;z-index:9999;"] +||nqyrywn.icu^ +||nrzzaep.xyz^ +||dm.17xuexiba.com^ +||ccav1.com/wp-content/uploads/bMShkpexGYJd/ +||btn.pchome.net^ +||inszu.com/js/qian/ +||91160.com/nykj/f=static/v4/common/tj.js +||u1055.com^ +sanv.org##.p_left +m.youku.com,v.youku.com#%#//scriptlet('set-constant', 'Object.prototype._adData', 'emptyObj') +||baiduapp.app^ +crsky.com##a[href^="http://count."][href$=".exe"] +||yaseok.com//static/src/images/loading.gif +||ifengimg.com^*/embed*.js +||m.tiebaimg.com/timg?wapp^*imgtype=0$image +||99kubo.tv/static/img/adsfree.png +||vipyearha.com/uploads/20*.gif +news.baidu.com##.recommend-animate +@@||520call.me^$generichide +ibaotu.com##.ibaotu-md-click[ibaotu-md-value="detail_top_ad"] +||display.itmemo.cn^ +||sgk.xyz/static/js/pc.js +epwk.com##.collect-info-icon +cardu.com.tw##.diamond-txt-ad +||dai.siyuetian.net^ +liaoningmovie.net##.banner +oschina.net##div[name^="index_banner_"] +||8s8s.com/data/banner/ +m4ff.com##.content2 +||shili.wanyx.com^ +||dfcfw.com/js/news/fundfloatmedia_ +||lizijing12.top^ +||touimg.com/u/20200306/12094716.gif +52pk.com##.wxbox +||chushoushijian.cn^ +||uu22332.com^ +||xonlines.com/yyh_qp_200_200.png +||wbqqo.com^$third-party +||gg.cs090.com^ +423down.com##a[href*="/go."] > img +://btt*/Runtime/js/psData. +||taosq.net/public/250x250.jpg +@@||adapi.zcool.com.cn/api/adstrategy/realtime/get_ad_info?location_id=$domain=zcool.com.cn +qxfun.com###beautiful-things +caoporn.com###bottom-gg1 +||fsijngnfsfk.com^ +daniao.org,geekpark.net,speedtest.cn##.sponsor +77kpp.com##div[style="z-index:1000000;position: fixed;top:0;left:0;"] +||vwsgmf.icu^ +||jia.com/js/zixun/zixun_ +eprice.com.tw##.ad-728x90-g +baidu.com##.wa-zp-exact-new-border +@@||ssports.com/images/resources/web/live/js/LiveAds.js +com.tw###space > a[target="_blank"] > img[width="160"] +||mydzfldt.xyz^ +so.lenovo.com.cn##.AdSite +||blueidea.com/js/ajs.js +@@/urchin.js$domain=on.cc +taiwanus.net##td[width="900"] + td[width="320"] +@@||mobinovels.com^$generichide +@@/analytics.php?$domain=xcar.com.cn +||zol.com.cn/js/ask/ask.js +||jili9.io^ +||power.adhacker.online^$third-party +8591.com.tw###active_enter +||90oo.com/tp/hg +||thisav.com/js/bioep. +||struhuts.com^ +||ihgluu.xyz^ +bbs.liyuans.com#?#div[data-widget-area="sidebar"] > div[class="panel panel-primary"]:has(> div.panel-heading > h3:contains(广告)) +jinghuasoft.com##.zhifubao +rou.video##.grid > div[class^="col-span"]:has(> div[class] > ins) +||1.codesdq.com^ +||myweb.hinet.net/menu.htm +sina.cn##div[data-adid] +||ikafan.com/js/novel.js +djljz.cn##.bottom_slide_box +||asryrzpu.xyz^ +||ams.fx678.com^ +@@||dmhy.b168.net^$generichide +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv#?#.slider-group > .nut-swiper > .nut-swiper-inner > .nut-swiper-item:has(> .swiper-page > span:contains(/^AD/)) +yd.baidu.com##.ui-distribution-bar +||qiyukf.com^$third-party +||sass.hk/plus/mytag_js.php?aid= +||bd-s.baixing.net^ +||qbhmz3.com^ +||962.net/show/down_ +||ebp.renren.com^ +||cdntxt.com/t1/ +cngold.org##.fiexdAdvsClosed +||adp.cnki.net^ +jingyingjiajiao.com##.bdgg +520call.me#%#//scriptlet("set-constant", "all520dddaaa2022aaa", "undefined") +||gg86.pinggu.org^ +douyu.com##.BargainingKit +@@||popart.hk/newweb/$generichide +||lsnzxzy1.com/Runtime/js/psData.js +||yhbheroq.xyz^ +||cssqt.com/a/images/right +hao.360.cn###snatch-logo +||qq.com/Index/getAdsAndHotspot +||hyth74.fun^ +||66.fmx.cn/js/ +money.163.com#$#.finance_header { height: auto !important; } +||lenovo.com.cn/lenovo/bid?clientType= +gtloli.live,gtloli.one##.sd_recpic +hkmovie6.com##.hotmobad +igo.cn##.adBG +||widget.ezprice.com.tw^$third-party +||gtimg.com/ent/final2009/dp_tebu_logo.png +||7bspu.site^ +tui18.com##.wp[style^="width:"] +||p1.zhongyoo.com^ +||baidu.com/resource/tuisong/ +||baidu.com/showbrand/banner_ +oh100.com##.mySwiperBox +exoav.com##.place +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-weigou-nav-buy +||9553.com/otherhtml/ +@@||hk.on.cc/mobile/js/lib/adbanner.js +firefoxchina.cn###promo +163.com,changsha.cn,jrj.com.cn,neotv.com.cn,sina.cn,sina.com.cn##.topad +||m8oxd.xyz^ +bccn.net##div[style*="height:90"] +discuss.com.hk##div[id^="div-gpt-ad"] + div[id] +edrawsoft.cn##.publicity-entrance +hexun.com##.side618 +||jtzdld.xyz^ +ltn.com.tw##.evt.e22 +||ldvdwlt.xyz^ +:8898/ads_ +||cnzz.yifenghuyu.com^$third-party +||nsfsfn.xyz^ +||itopdog.cn/itopdog/ad.js +mitbbs.ca,mitbbs.com##.newskuang2 +ifkdy.com,ilxdh.com##a[href*=".yhm11.com"] +baidu.com##.bottom-right-dsp-ad-wrap +||80s.la/m/js/ +||mlegyu.xyz^ +gamefy.cn,sitv.com.cn##.tit > span[style="float:right; width:285px;"] +||limopf.top^ +||tdljuuw.xyz^ +||acdref117.cn^ +||wandhi.com/img/ +21ic.com##.appxb +||w010w.com.cn^$subdocument +||baidu.com/api/wikiui/getasp? +||moon.ibytecdn.cn^ +image.baidu.com###imgid > .fcimgpage +@@/cpc_cpm_$domain=ygo-sem.cn +||mestrip.com/widgets/ +||qiyipic.com/common/*/980 +m.youku.com##body > [style="width: 100px; height: 100px; position: fixed; top: auto; right: 0px; bottom: 0px; left: auto; z-index: 188;"]:not([class]):not([id]) +||count.candou.com^ +gas.goodlife.tw###leaderboard_banner +||w11.zhongkaohelp.com^ +||bphcrjth.xyz^ +@@||viu.com^*/tracking/ +||vip.luanren.com/data/*.gif +chinaz.com##.titright +||nlvwdlnhfnnw.com^ +alist.nn.ci##.ss +2345.com###sideCat +||iid97.com/wp-content/cache/autoptimize/js/ +||backchina.com/banners/ +||yzpsb.net/js/jquery. +||tanseb.com/vads/ +reaff.com,yangmaodang.org##.entry-content > p[style="text-indent:0"] +||zvhlzb.xyz^ +51wangdai.com##.top_AD +xdf.cn##.popup-wrap +lihkg.com##iframe[src^="https://pb.lihkg.com/"][style^="height:"] +||osujcq.xyz^ +||fefgvh.xyz^ +fanyi.sogou.com##.survey +mtv-ktv.net###aShow +eastmoney.com##iframe[src^="//fund.eastmoney.com/trade/hqb_hq.html"] +#%#var AG_removeElementById = function(id) { var element = document.getElementById(id); if (element && element.parentNode) { element.parentNode.removeChild(element); }}; +wallstreetcn.com#@#.banner +||jke1.jianke.com^ +||soso.com/wenwen/i/ad/ +||yigujin.cn/faaa/ +||5118.com/g/ +||haoxxoo.com/player/ad.html +jyacht.com##.adve_4 +||imgs.cc/img/8Pl6FJY.gif +#%#var AG_removeCookie=function(a){var e=/./;/^\/.+\/$/.test(a)?e=new RegExp(a.slice(1,-1)):""!==a&&(e=new RegExp(a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")));a=function(){for(var a=document.cookie.split(";"),g=a.length;g--;){cookieStr=a[g];var d=cookieStr.indexOf("=");if(-1!==d&&(d=cookieStr.slice(0,d).trim(),e.test(d)))for(var h=document.location.hostname.split("."),f=0;f [class]:-abp-has(span[data-tuiguang]) +cnbeta.com##.wdj_box +||tongjiniao.com^$third-party +||jp.twww.sbs^ +||cb.baidu.com^ +douyu.com##.XinghaiAd +hb163.cn##.ad_panel_980 +||jqtnft.xyz^ +fanyi.baidu.com##.appbanner +||t.yzwr588.com^$third-party +||rhzvlcu.xyz^ +||8feichai.com^ +||linkwan.com/gb/javascript/c5- +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.bonus_forum_aside +||2325fdrf.fun^ +||pw321.com/bulu/ +@@||sinajs.cn/open/api/js/wb.js$domain=sc.sina.com.cn +huya.com###J_roomGgTop +||mydrivers.com^*728_90. +@@/pubads_impl.js$domain=mytvsuper.com|tvb.com|tvbs.com.tw +_popAds. +2.taobao.com##.download-layer +sina.cn##iframe[id^="sinaadtk_"] +||ppsj.com.cn/images/ppsj300.gif +||baidu.com/feproxy/ad/list? +finance.ifeng.com##.sConRbox +lenovo.com.cn##.daily-hotwords +||xizi.com/js/rotator.js +@@||ad.8maple.ru/8ads.gif +||ywokwlx.icu^ +wuzhuiso.com###mohe-hotnews_right +baidu.com##.s-news-banner-wrap +@@/rwd_cap.js$domain=ibf.tw +||jrzj.com/img_index/guanggao +dianping.com##.J_mkt-group-1 +||m1.nn670.com^ +||sozi.cn/images/tj/szdown +||xlrjnhxi.xyz^ +||66wz.com/eap/ +zhiyoo.com##.prompt +||uchks.com/2018/% +nowscore.com###toperBaskText +||ggdm1.nhaidu.net^ +||heryt111.fun^ +msn.com###taboola-above-homepage-thumbnails +||ewurserw.top^ +||kyyfsw.xyz^ +||ioaiqp.top^ +||atdlbgx.xyz^ +||93692zubo66936.com^ +ditu.so.com##a[href^="https://e.so.com/"] +doubiuser.github.io,doubibackup.com#?#.custom-html-widget:-abp-has(div[style^="position"]) +@@||aobi.100bt.com/play/ad/ad*.swf +||chinasexq.com/js/tpgg +||zdqx.com/statics/v1/images/gif/ +||adx.mala.cn^ +||haolepic.com/js/ +6park.com##table[width][align="center"] > tbody > tr > td[bgcolor="#FFFFEE"]:has(> table[width="100%"] > tbody > tr > td > div.adv-6park) +||3dmgame.com/index.php?m=games&c=index&a=ztad& +||hdaidj.cn^ +7k7k.com##.pendant +2cycomic.com,whnyd.com,yemancomic.com##body > a +||6699fa.cn/imagestb/ +kostool.cn#?#div:-abp-has(> h1:-abp-contains(推广)) +||imgsrc.baidu.com/*/pic/*.jpg$domain=/87[0-9]{2}ck\.cc/ +freecodecamp.cn,freecodecamp.one#@#.btn-social +||962.net/show/all.js +||urutvnct.top^ +ifeng.com##div[class^="layout-"] > div#subNav + div +||xilele.com^ +@@||jinyongci.com^$generichide +||kkjshsj.com^ +free.com.tw###custom_html-11 +||126.net^*analysis +||kopvx.cn^ +@@||yimg.com/ss/rapid3.js$domain=style.yahoo.com.tw|tw.answers.yahoo.com +||duo*.top/Runtime/js/psData.js +ltn.com.tw,stheadline.com##.ad_w300 +@@||baidu.com/hm.js$domain=cainiao.com|dwz.cn|ramboplay.com|seo.chinaz.com +||oodcd.cn/pan/config/copy. +5eplay.com##img[width="1240"] +||nhbprf.xyz^ +@@/adverts/*$domain=onlychild.cn +||mikanani.me/images/Masha/ +52ch.net##div[style^="margin-top:5px; height:60px;"] +hao123.cn##.top_2_2 +||xiacaidd.com/xiacai/ad/ +||gtimg.com/qqlive/ +2345.com##.event1-hasList +focus.cn##.qhb-fixed +@@||nthu.edu.tw^*ad +||163.com/special/*_960/ +||yupoo.com/dapenti/5cfa8673/c6045c69.jpeg +douyu.com##.pendant-wrap +||manai521.com:88/bocai/index.html +baidu.com##.businessvip-wrapper +downkr.com##a[href*=".xitongzhijia."] +gamme.com.tw###bd +hao.360.cn,hao.360.com###top-full-column-tips +||gcddashb3.fun^ +huya.com###J_roomGg2 + a +feebee.com.tw###bottom-ad-after-search-result +hao123.com##.widget-topbanner +||main.jiukang.org^ +||dongtukj.oss-cn-hongkong.aliyuncs.com^ +||pipc.top^ +19lou.com##.zx-link +||hkmte.com/seo.js +||yxad.com/yxad/ +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video.min.js$domain=setn.com +||puma.com^$popup,domain=hupu.com +youku.com###ykBottomBanner +||ft.com/a.html +id97.cc##.fed-part-case > a +58.com###banjiaAD +||u0078.com^ +||9906g.com/js/jquery.js +||ifengimg.com/pmop/2017/*_w600_h793.jpeg +||jun01.oss-cn-beijing.aliyuncs.com^ +||ukkkmg.xyz^ +||iyuwkbo.top^ +||xg6hb.xyz^ +duba.com###J_BottomAdBan_bg +@@||getitfree.cn/wp-content/plugins/adunblocker/public/js/banner_ads_*.js +supportdap.online##.td-post-content > a[rel="nofollow"] > img +@@||blackmod.net^$generichide +||yigujin.cn/wp-content/themes/Three/js/cebian +win7xzb.com##.ware_gs +||gtimg.com/finance/js/st/p/cms/ce56e2f3303d17b6.js +||18av.mm-cg.com/*/7mmtv.gif +bjd.com.cn##.bjd-advertisement +btmulu.com#?#.item:-abp-has(> a[target="_blank"]) +||w7044.com^ +ouyaoxiazai.com##div[id^="cs_"] +||90vs.com:3389/zs_img/.__ +soft4fun.net###xad_mu +||78dm.net.cn/acg_201*_760 +cnblogs.com##.bannerbar +spbo1.com##td[width="100%"][height="18"][bgcolor="#ffffff"][align="center"][colspan="13"] +msn.com##.ad +||loli.net/2023/05/08/w4aGFUIVmKgOT78. +ruyo.net##.textwidget a > img +news.mydrivers.com#?#.news_info > p:has(> a[href^="https://dt.mydrivers.com/"]) +||68287zubo85737.com^ +autohome.com.cn###packetsWrap +||5jzu5t.com^ +||sd173.com/images/ +||douyu.com/member/gamegift/gameList/ +qq.com##.notice[class^="jsx-"] +||nubcdaqa.xyz^ +szhk.com###h_banner +xunlei.com##.mini-pop +||utlove02.com^$third-party +||iyf.tv/play/$xmlhttprequest +||souche.com^*.gif +ganji.com##.house-ads-img +||wrtjojn.xyz^ +||a.tainengchong.com^ +docsmall.com##.modal-connection.show +ettoday.net##amp-embed[type="dable"] +97hj.net##.widget-zfb +||hdxyj.icu^ +||itv.hexun.com +||xrrhwgj.xyz^ +||masturbation22.com/d/ +||ruliaoqi.com^ +||azyuuk.xyz^ +||eqcwpeo.cn^ +vpsdx.com##.container-fluid > .gsfha3 > .gsfha3 +baidu.com##div[style="padding: 20px 9px 20px 10px;widget:250px;height:250px;"] +||cvfgere96.cn^ +newcger.com##.banner_recom +||ffdafx.xyz^ +5iyq.com##div[class^="index_ad"] +||img.3sjt.com^ +||bkjia.com/bkjia/js/banner +||kxdhrqz.xyz^ +||molimao.top/ad*.js +gasaq.com##.guanggao_ime_big +||pblymbu.cn^ +||bytravel.cn/images/t/usa_250_120.gif +||ssp.moeli.net^ +||28t1ya.cn^ +ifeng.com##.mr_top_box +||jia.com/js/zixun/news.js +||baixing.com/widget/ +||lgmi.com/windows/*-Advert. +codejie.net##.gg_banner +@@/fingerprint2.min.js$domain=csdn.net|neets.cc|passport.vpgame.com|shixiseng.com +||m1.we556.com^ +track718.com##.track-adsense-ad +||bendibao.com*/tuangou.gif +||tdjdpyrt.xyz^ +||diskaa.com^ +zh.moegirl.org.cn#?#.swiper-slide:has(> a[href^="https://m.tb.cn/"]) +||voc.com.cn/adsClick/ +duangks.com###a_d_sidebar +||bnalzlv.top^ +||jlwz.cn/js/xf*.js +||shangxueba.com/ask/images/woxiaoyun.jpg +m.youku.com##.cmt-more +|http://*.in/ad/ +||f2dsex1.com/public/fb*.png +@@||dydog.org/*/DPlayer.min.js +3g.baidu.com,m.baidu.com,m5.baidu.com,www.baidu.com###banner_call + div[id] +zuoyebang.com##DIV[class^="questionQRCodeWrap_"] +gamer.com.tw#$##BH-bigbanner { position: absolute!important; left: -3000px!important; } +||kwyamu.xyz^ +healthylives.tw###contentBox > div[style^="width:336px;height: 280px;"] +olevod.com##.L1 +||thisav.com/player/video-js-banner/ +gezila.com##.tishi + dl +||grondrens.com^ +xc6b.com##.chao_ggw +||jiasule.com/static/js/http_error.js +||xuehi.cn/reward/reward +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_left > [class]:-abp-has(span[data-tuiguang]) +||nsjnmx.icu^ +ithome.com##.-hongbao-container +||maxun103.top^ +||faloo.com/ou/site/ +ludashi.com##.div_text +baidu.com##.content-adv +||chinaqking.com/images/qkw/jobApply1.jpg +@@||cmbc.com.cn^*ads/ +@@||tvbanywherena.com^$generichide +||eiv.baidu.com^ +tingroom.com##a[href*="weidian.com"] +||lkiterl.top^ +||xingwangzz.com/123/ +bing.com##.OpInNwWndw +o8tv.com##.myui-panel_bd > .col-xs-1 > a[target="_blank"] > img +@@||www.ruanyifeng.com^$csp=script-src 'self' * 'sha256-0McqMM66/wAVZmxF6zXpjNsb1UMbTl4LXBXdhqPKxws=' +||daima.ssata.cn^ +msn.cn##gaming-discover-strip +hexun.com###videoLeftAd +iyaxin.com##.huand3 +||a1.99966.cn^ +@@||ads.cdn.tvb.com^*.key +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_list_and_rank +finance.sina.com.cn##div[class^="side-btns-"] +||ctmrso.xyz^ +||dytkgl.icu^ +pansearch.me#%#//scriptlet('prevent-xhr', 'adsbygoogle') +to8to.com##.float +||s1.hanlinzhijia.com^ +||heiye.cc/js/bancity. +qq.com##img[data-module="advertisement"] +||buzzhand.com/images/$subdocument +||595image.com^ +ithome.com.tw##.ad-text-in-middle +||bcqnbge.cn^ +||sinaimg.cn/finance/ny_live*.js +mydown.yesky.com##.main_left_advertisement +oschina.net##a[href^="https://citiccard.wjx.cn/"] +gaoqing.la###sidebar-follow +||dy8c.com/JieShaoBu-secret/uploads/hongbao +chok8.com##div[onclick] +@@/sensorsdata-$domain=aixiaoyuan.cn|zkh.com +||99mst.com/upfiles/adv/main02.jpg +||dugapiece.com^ +luyixian.cn##.side +91danji.com###bg_ad +||imgsrc.baidu.com/*/pic/*.jpg$domain=8727ck.cc|8726ck.cc|8724ck.cc +||haoqu99.com/d/haoqu/haoqu +baidu.com##.na-ec-waterfall +||fzpzrqou.icu^ +||gavbus*.com/assets/common/js/admenu.js +||lahoo.ca/api.php?mod=ad& +manhuagui.com##.w250 > .mt10[style="width: 300px; height: 250px;"] +19lou.com,cqmmgo.com##.ad-place-logo +firefoxchina.cn##.layout > .banner +||ulwfys.xyz^ +dujiaoshou.cn###ad1 +||um5xcgngmart.xyz^ +@@||annhe.net^$generichide +@@||ifengimg.com/a/201*Player +||assets.msn.cn/bundles/v1/microsoftNews/latest/placement-manager.*.js$domain=microsoftnews.msn.cn +||xkzzz.com/zb_users/plugin/MoreLinks*/show. +sina.com.cn##.m-p3-ad +||xmm.wxc.cc^ +||alllget.com^$third-party +douyu.com##.layout-Slide-banner:not([href*="douyu"]) +||nuhgpx.xyz^ +||yhtpsy8888.cc^ +nick20.com###body_page_sharer ~ table[width="100%"] +douguo.com##.mbs +||bootcdn.net/ajax/libs/jquery-cookie/*/jquery.cookie.$domain=zaixianjisuan.com +||107.167.22.*.gif +||bcc878.com/js/abc/ +||dsbudkwq.xyz^ +lahoo.ca###diyrighttop +ulifestyle.com.hk#$#body { overflow: auto !important; } +||11.mydrivers.com/drivers/ +159i.com##.a1d +27ka.cn##a[href*="/go/"] +pornbest.org,ptt.sex##.btn-group + .row +||zxpgfl.xyz^ +@@||newver.api.dedecms.com/index.php$subdocument +||makaidong.com/img/ +||soft.mumayi.net/images/download.gif +baidu.com##.text-link-ads +china.cn##.search_RightShow +||uqrcuxp.cn^ +brtn.cn,btime.com##.business-item +||iqiyi.com/marketing/*/oppo. +||ifjslio.top^ +||zrkksps.icu^ +duba.com###oneone +blog.163.com###topbar_gachaArea +||tqtqvb.xyz^ +tw.beanfun.com###flybeanfun +ebb.io#%#//scriptlet('set-constant', 'ga', 'noopFunc') +||omgnqu.xyz^ +||poke88.com^ +||wckkl.online^ +3g.qq.com##li[id^="feed-omgad-"] +||tengfun.com/attachment/*/w_1200 +78dm.net##.add-980 +hao.rising.cn##.bd-lmhot +||cosmo001.top^ +||gnyuhzd.icu^ +||mvcat.com/ad/ +||ad.52av.one^ +||nddld.cn^ +159i.com##.a4d +360.cn###weishi-alert +||cpro.bdrmb.cn^ +||hoopchina.com.cn/web/ad/ +news.qq.com##.time > a[style="position: absolute;top: -8px;left: 296px;"] +today.line.me##.adModule-root +||xjtosdof.icu^ +feed.baidu.com##a[data-type="ec_ad"] +||cnzz.cn/badu.gif +baikequ.com,lkyw.net###bottommob +i-part.com.tw##.newAd +||sh996.dftoutiao.com^ +||ti4la.icu^ +9u8u.com##.tc-box +baidu.com##.qb-other-answer-wmad +m4fz.com##a[data-etime] +||pic50.pingguolv.com^ +rent.591.com.tw##.listRight-ad +||ckxxbao.com/templets/default/js/wx.js +iqiyi.com##.banner3 +rjfcw.cn##li[style*="1200px"] +jianshen114.com##.index_temp +esu.moe,esu.wiki###siteNotice +||yprdmnlo.xyz^ +jd.com#@#.ads-content +||fx168.com/am.js +hitime5.com###gg250 +||images.sohu.com/cs/ +||inping.com^$third-party +||sssvd.china.com^ +ssuip.com###mask +||vtbfgnf00.fun^ +||kandaju.net/js/js2. +||dwq661.biz^ +||cdncg.com^*/peiyinquan +||mysteelcdn.com/gg/ +ttshow.tw##div[id^="ad_article_"] +||lewrutl.top^ +||kuresdd.top^ +||oiu09.cn^ +pcsoft.com.cn##.gsxzdl +||luolitang.com^$third-party +hao.360.com##.licai-right +||localau.vip/plugin/ad_ +||mlzjepc.xyz^ +@@||xnimg.cn/n/apps/profile/modules/tuiguang/ +||liisex.com/images/banners/ +||qixin007.com/webbanner/ +||neess105.top^ +||tphcrjth.xyz^ +@@||pptv.com/webdelivery/webafp?cb=loadAdStatus&*sports.pp +||tufzdj.xyz^ +php.cn##.layui-show > UL > .top-img +||qqjia.com/images/ad +@@||cnbeta.com.tw^$generichide +||gaosan.com/js/b.js +||bnextmedia.com.tw/feed/fetch.js +||ca.cbsi.com.cn/rpv? +ifeng.com##.advmark +fx168.com##div[class$="_ad"] +||weiyun.com/cgi-bin/tianshu_get?position=4& +||iqilu.com/static_files/richmedia/ +||dataryon.com^ +c.biancheng.net##.ggxc-box > a[target="_blank"] > img +ggjav.com###ads_6 +ziqiangxuetang.com###tutorial_btm +i.maxthon.cn##.module.tools-main[data-s-n="bottom"] +||s8.pw^$third-party +1688.com###cpm-ad +evget.com###popelevencenter +sogou.com##.mobad +5217kdy1.xyz##.alert-success + center +egame.qq.com##.lurk-dialog +pcbaby.com.cn###jpopWinBottom +@@/adsystem/*$domain=adcenter.dhgate.com +||mobads.baidu.com^$third-party +ssr.tools##.asb > div[style] > a[target="_blank"] > img +fuliba2021.net,ypojie.com##.orbui-post-footer +douban.com#?#.rec_topics:-abp-has(>.rec_topics_name[href^="https://erebor.douban."]) +||cvmuia.xyz^ +||acfun.cn/appSpreadContents/danmuad/ +banjiajia.com##.register-ten +||a.78yx.net^ +||m1905.com/asp_js/k.js +baidu.com##.pop-manager-view-containter +baidu.com##.afd-ad +kaifu.com##.news-t-adv +jitashe.org##a[href*=".makeding.com/"] +||bmxvxl.xyz^ +eastday.com##.ssy_right +badmintoncn.com###bottomad_big +chinanews.com##a[href*=".jiuxianfeng.com"] +finance.sina.com.cn##div[id^="st01_cont0"] +52life.cc##table[style="margin-top:0"] +xiaoz.me###mygg +||rivdxb.xyz^ +||gzzkjdam.cn^$third-party +||trebleperfect.com^$third-party +kaka12345.cc###main +||m.ybstwl.com/public/tpl/m2/js/ +||mzyz.com/image*/tj/ +||qiyipic.com/common/*/250-230. +||adsage.com^$third-party +avbebe.com###content > div.single-post > div[align="center"] +163disk.com##.gg_990_90 +@@/sensorsdata.$domain=36kr.com|binance.com|by56.com|canon.com.cn|chuanglan.com|fenbi.com|guancha.cn|imooc.com|kuque.com|modian.com|saicskoda.com.cn|shanbay.com|tianyancha.com|ttcdw.cn|xinrenxinshi.com|zzjiasuqi.com +pixiv.net#@#.ad-footer +||skdunkig.xyz^ +||c114.com.cn^*/js/ad_load-new.js +||phcrjth.xyz^ +letv.com##.newyear_red_wrap +||changsha.cn/front_js/site_ad/4/site_ad_284.js +||birdmedia.com^$third-party +||xiaoma.com/kf.php?arg= +||iask.cn^*.data. +pcauto.com.cn###PcPoPmarket +guofs.com##.style2 +tiexue.net##a[href*="game.tiexue."] +baidu.com,bdimg.com,tieba.com##div.thread_item_box[style="position: relative;"] +@@/needsharebutton.min.js$domain=leetcode-cn.com +omnitalk.com##td[bgcolor="#ffffc8"] +||chinagcdxyjng.cn^$third-party +||wiwlqc.xyz^ +||maxun066.top^ +||ad.ettoday.net^$redirect=nooptext +baidu.com##.eye-catching-tpl-container +@@||hmvod.com.hk/website/static/skin/images/share/ +||goupu.org/1files/guidebar/ +114la.com,78dm.net,chinairn.com,chinanews.com.cn,dav01.com,qncye.com,qzwb.com,silisili.in,silver.org.cn,solidot.org,ylmf.com##.adv +hao123.com##.cn_tips +lm-us.com#@#.advertisement_above_footer +||yximgs.com/bs2/adcarsku/sku9c0e68cc-2f12-4e47-a340-a7293ee88c88. +||alicdn.com/img/ibank/*_794019354. +yyrtv.com##li[class*="baidu"] +||asserts.avple.tv/file/avple-asserts/ad.js +||dzwww.com/data/js/asp_$script +mydrivers.com###track-link +||jxjpnd.xyz^ +||kugoucdn.com^*?_t=$xmlhttprequest +fuyang.net###portal_block_474 +chinaz.com##.adSpon +1688.com###cpm-ad-2 +u17.com##div[id^="u17-advert"] +||xltmjevd.xyz^ +xineurope.com###qmenu_menu + .wp +||newspage.xilu.com/model/visitlog.js +||vzmz.com/template/paody/aaaa/357.js +~houdask.com###kfivtwin +||entry.baidu.com/rp/home? +||33yq.org/static/1. +sgcn.com,wangjing.cn##.fad +3dmgame.com##A[href^="http://web.3dmgame.com/h5/game?"] +eastday.com##.golden_adv_1 +tbtdg.com##.s11text +||toutanymm.asia^ +||qjoges.xyz^ +jrzj.com##a[href^="http"]:not([href*=".jrzj."]) > img[src^="https://img."] +||xh33g.net^ +||cntsgsd.top^ +lihkg.com#?##rightPanel div[id^="page-"] ~ div[class] > div > div[style^="display:"] ins.adsbygoogle:upward(div[style^="display:"]) +||1.yuexw.com^ +fastadmin.net##a[href^="https://www.fastadmin.net/go/"] +||w0057.com^ +||11.yiqig.cn^ +foodmate.net##.zx_ad +eeyy.com##.top-bg +hgitv.com##.xinwen_right_gg01 +||a.armystar.com^ +emumax.com##.tbanner +ifeng.com##.yy_right_bottom +||ulink.cc^$third-party +baidu.com##.app-side-ad +iqiyi.com##.iqiyi-shangcheng +duba.com,newduba.cn##.side_game +dzbhdm.net##img[width="950"] +_ad_images/ +||hbzjht.com^$third-party +fuyang.net###portal_block_502 +||nanaimostarkle.com^ +||qpigoa.xyz^ +||paopaoche.net/skins/count.js +||otxlhpm.xyz^ +||zantj.com/diao +||zzbaike.com/main/host +||alicdn.com/img/ibank/*_392352300. +||beryt111.fun^ +||jokerlu.com/upload/vod/ +qq.com##.ad_670_90 +ilvruan.com##.site-AG +||cenyou.net/wp-content/uploads/1200-200. +@@||mcbar.cn^$generichide +h5.17k.com#$#html { overflow: visible!important; } +iqiyi.com##.mod_focus-index_list > li:last-child +||v1.kwpewga.cn^ +iask.sina.com.cn###daily_topic_flnr +||ipqajyy.icu^ +||dzfzak.cn^ +||yjcf360.com/ad. +szxx.com.cn###A1 +tuwan.com##div[style$="height:90px;"] +@@/image/ad/*$domain=gashpoint.com +360.cn###openCenterScreen +bejson.com##.alert-dismissable +wnacg.com#@#.ff-ads +ali213.net##.newright +51cto.com##.upopbg +||zk.91post.com^ +yahoo.com###module-appPromoBanner +icbc.com.cn#@#.adRight +||5442tu.com/style/ads5442.js +suizhoushi.com##div[id^="sznew_ad"] +@@||javedit.com/d/js/acmsd/thea0. +||szmnk.cn^ +||ytse*.top/Static/Home/GongGao/img/ +||haiyuer.com/didi +||u0081.com^ +||tengzhihh.com/image/*-950x277. +cw.com.tw##.article__promotion +||ewjhic.cn^ +qiuziti.com#@#.banner +||2ccc.com/images/show/ +|http://*.tw/ad/$domain=~ruten.com.tw +5119.cn##div[class="downDz"] +||rjsos.com/channel/laomo_dibu.png +||a.duanmeiwen.com^ +||as1.m.hao123.com^ +||6651tp.com^ +wantgoo.com###FixModal +manwa.me#@#.ad-area +||atm.youku.com^ +||bebohjhh.xyz^ +qq.com##._switchad +||justapp.top^ +||static.jfrft.com/js/main_list.js^$script,redirect=noopjs,domain=dilidili.wang,important +@@||img.ads.tvb.com^ +||birgga.top^ +hao.360.com#?#.cube-container div.cube-mod:has(span.adMark) +tingfm.com#%#//scriptlet('set-constant', 'can_run_ads', 'true') +||3dmgame.com/tools/gamead? +ddl826.pixnet.net#?#.article-body > div.forward ~ div[style^="position:"][style*="important"] +duba.com##.tempAd +fuliba2022.net###focusslide +||tu6767109513.cc^ +||1200555.com^ +gamme.com.tw##.post_adwrpt +||pgieqr.top^ +greenxf.com###speed-downloader +91wenmi.com##a[href^="http://www.91wenmi.com/xiezuo/"] +||myqcloud.com/wp-content/uploads/huoxingyun. +||xoqsxdpx.xyz^ +mydigit.cn##.view-hover[channelid="aitao"] +||huibaihe.net/js/dddd.js +||go2av.com/for_ad/ +baidu.com#?#.rec-item:-abp-has(> .vbox > div > .appad-relate-rectpl) +||img*.365rich.cn/image/$image +||sinaimg.cn/large/a518ed97jw1eu4mxubbe6j209q01e3ys.jpg +||daniujiaoyu.com/js/zk +||xdazjxso.xyz^ +||qcohkm.xyz^ +3dmgame.com##.Indexadd-100 +||sinaimg.cn^$domain=aotu43.com +||66wwvv.com/js/ +||javazhijia.com/skin/ +mm-cg.com##.ut1_img_content_js +sports.qq.com##a[href="http://teramont.svw-volkswagen.com/"] +@@||googleads4.g.doubleclick.net^$domain=renfei.net +pconline.com.cn##.pop-huodong +_ad2. +hao123.com##.treasure-game +cztv.com##.ad_003 +||tw.jav321.com^$popup,domain=ucptt.com +||rou.video/_next/static/chunks/pages/fuli- +||wbgafrr.icu^ +||qdtzbbh.xyz^ +||mbalib.com/common/a_mbalib/ +||affyun.com/wp-content/uploads/2018/10/file.gif +||a.xue126.com^ +||mydrivers.com/img/2005/202112011849.png +||bilec.xyz^ +||above.tw/blog/wp-content/plugins/popups/public/assets/js/public.js +||win2008.info/gongyi.gif +||nahjzx.xyz^ +mail.126.com,mail.163.com##div[id$="_AdDiv"] +||qidian.com/Images/990x40_ +t66y.com##.sptable_do_not_remove +||lixiangmo.com^ +||speedtest.cn/assets/images/ce_ +itdog.cn##.gg_link +||yqlxkzs.cn^ +ptbus.com,weather.com.cn###duilian +||hqol.cn/up/ad/ +||8maple.ru/dzcm$redirect=1x1-transparent.gif,domain=8maple.ru +ptthito.com#?##main-content > div[style*="margin-top:"]:not([class]):has(> .adsbygoogle) +daniao.org##.sponsor +bmcx.com##div[id^="ggwz"] +@@||ssl.o.auspost.com.au +||jingujie.com/public/js/*html.js +dianping.com##.J_mkt-group-3 +||tyaqzjp.icu^ +||itqwesk.icu^ +meitu.com###meipaiFixed +yes-news.com##.notification +xhzyw.com###HtmlMoKua_752383 +mobile01.com###_popIn_recommend_side +||egidskiw.top^ +||ghgasdt963.shop^ +||nhjnw78.fun^ +@@/adblock_$domain=xingk.cc +ofiii.com#%#//scriptlet('trusted-replace-fetch-response', '"play_ads":true', '"play_ads":false') +bg3.co###interstitial_fade +@@||qiantucdn.com/static/images/adsbygoogle.js +||3987.com/statics/tow_skin/new_img/20 +ikjzd.com##.foot-advert-box +ceiea.com##.adclass2019 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.lot_wrap +heirui.cn##.index711-mask +||xindingwealth.com/js/39. +16888.com##.cardataclass +@@||ads.alafish.cn^$~third-party +||a.qinghua5.com^ +chinanewsx.com##.side-nav +58.com##a[href*="to8to.com"] +||eastmoney.com/cp/left_index.html +||cgqwgv.icu^ +3g.qq.com###header-mlcz +||shangqun.com/webforms/embed/ +||izwmfmu.icu^ +||yyyaih.icu^ +csdn.net##.post_recommend +msn.cn#%#//scriptlet('json-prune', 'configs.*.properties.slideshowWCSettings.interstitialNativeAds configs.*.properties.fullScreenSlideshowSettings.interstitialNativeAds properties.componentConfigs.slideshowConfigs.interstitialNativeAds properties.componentConfigs.slideshowConfigs.slideshowSettings.interstitialNativeAds') +boylove.cc#?#.stui-pannel__bd > div[class]:has(> div[class] > div[class] > a[href][target="_blank"][rel="nofollow"] > img[src^="/bookimages/img/"][src$=".gif"]) +||28kys.com/cpstupian/ +||huaban.com^*/ads +@@||icbc.com.cn/Portal_Resources/Common/AdCss/ +||fpfbbn.xyz^ +popart.hk###slideshow +qdmm.com,qidian.com##.qdRead_client +||binga01.shop^ +||d.win10com.com^ +laohu8.com#@#.tweet-article +24kplus.com###custom_html-3 +qq.com##.app-qrcode +||aizhan.com/images/img/ios-sign.png +dm010.com##a[href*=".apk"] +dcfever.com##.col-md-right > div[style^="margin-bottom: 20px; text-align: center;"] +163.com##.uc-fixed-ad-wrap +5ifxw.com##.gg_300250 +||gp123.cc/20*ad/ +||xvbjctqs.xyz^ +||jialingmm.net/dm/tj.js +2c2.website,2p8.space,adultgao.com,caopop.com,caoporn.com,caouoo.com,caox.cc,gao1.cc,h3e.pw,h3y.pw,k88.club,me88.pw,p5p.space,se88.space,t2p.space,tb001.xyz,te88.pw,vwan.xyz,xhao1.com##div[style="margin-top:5px;margin-bottom:5px;"]:first-child +||afzhan.com/JavaScript/ad_Couplet.js +proginn.com##div[style*="width:1000px;height: 250px;"] +matongwu.com.cn##div[style="height:90px;clear:both;"] +||xcmfu.com/cp. +letv.com##.vip_popBox +hao.360.cn,hao.360.com###left_float +||1ny3r.icu^ +||hahamx.cn/img/x.jpg +6fzd.com,fzd3.com###tuiguang +||houyi.baofeng.net^*.html +afzhan.com##.bannerAdv +||qziuwzn.cn^ +||3400.org^ +@@||img3.126.net/ntesrich/*/adControl-indexx-$script,domain=rjno1.com +5217kdy1.xyz##a[href$="/smsf.php"] +||gogorenti.wang/js/m_cp +howbuy.com##a[href^="https://www.howbuy.com/advertisement/"] +chchzhan.com,xxizhan.com##a[style^="position:fixed;z-index:"] +nowscore.com###toperAd +||d0.xcar.com.cn^ +tw.nextapple.com##[class^="na-ad-"] +||yiwckti.icu^ +||shbzpgs.cn^ +@@||muzlan.top^$generichide +||sdfsad562.xyz^ +@@/images/adv/*$domain=gueizu.com +cableabc.com##a[href*="/img1/"] +||9tour.cn/x2/images/czmf.jpg +apk.tw##.postlist > div > div[style="margin:0px 0px 0px 0px;width:300px;height:250px;overflow:hidden;"] +||tyaduqq.icu^ +||fengniao.com*/pv.js +||chushoushijian.cn^$third-party +vidhub.me,vidhub.tv##.promotelink +||heirui.cn/static/hb_ +mydrivers.com#?#li:-abp-has(>.titl+:-abp-contains(/推*广/)) +||huya.com/leaf/*=vodadv&$redirect=noopmp3-0.1s,domain=huya.com +@@||shmeea.edu.cn^$generichide +mianbao99.com##.downApp +||tfzah.icu^ +91.com,beihaiting.com,guitarchina.com,hao123.com,site.baidu.com,sojson.com##.banner2 +so.com##.e_idea_wenda_spread +||jrzj.com/images/bgright_ad.jpg +@@||yiqifa.com/ad_images/$~third-party +ac.qq.com##.in-hd-mod +||gwivqo.xyz^ +baidu.com###ec_im_container +||iyisloo.top^ +ettoday.net###for-ec +cmbc.com.cn#@#.adBox +||hi.xiunm.com^ +||p.qlogo.cn^$domain=jumi.tv +||qzorwe.xyz^ +docin.com##.sider_gg +jia360.com##.hjadv +aotter.net##.ag-revenue +18183.com###gsBtn +||img.sex169.info^*.gif +||kunpeng-sc.csdnimg.cn/?timestamp=$subdocument,domain=blog.csdn.net +yomahub.com##.sidebar-slot +plus28.com##div[style="width:270px; height:180px;"] +||trip.com/partners/ad/ +@@||073img.com/*,*, +@@||r3sub.com^$generichide +||saeo.cn^ +||balmoralmkt.com^$third-party +mati.hk##.banner_middle +||88448.com/images/appkai980x100.gif +||sogoucdn.com/nstatic/js/bottom_shopping. +easylife.tw,ez3c.tw,softwarebrother.com##.popup_bottom_block +dlemm.cn,isiyuan.net##.themead +||difmnd.xyz^ +||a.xixiyishu.com^ +||gfdfegg.cn^ +mozhatu.com##a[target="_blank"] > img[alt="ad"] +||adrs.sdo.com^ +extfans.com##.b-ad-1 +18h.avmimi.com##body > table[width="100%"]:nth-child(2) +2345.com###abanner +||1sk27.fun^ +||u22099.com^ +||ctanet.cn/aqq/JS/ +||abczxw.com/skin/bbb/pc/js/bd.js +@@/ad/images/*$domain=37-express.com|vnnox.com +||g4y7uuk.com^ +||88148.com/UpFile/a/2016040849191350.jpg +||gd.189.cn/gz/promotion/$popup,third-party +rvlev.com,t66y.com#?#.tpc_content:-abp-has(>b:nth-child(n+40)>span>a[onmouseover="this.style.background='#DEF5CD';"]:-abp-contains(91TV)) > :nth-child(-n+45) +||4paradigm.com^$domain=sina.com.cn +||jieshengit.com/1*.js +||hsvchnsvncvvd.com^ +||gizlnr.com^ +hjenglish.com,hujiang.com##.lamu_banner +||wanwan.sina.com.cn/kb/ +||loli.net^$domain=9kanqq.com|acglover.me|hdsky.me|magnet2048.com|nulltm.com +||94ab.com^$third-party +||ozolei.xyz^ +||ithome.com/file/js/lapin-load.js +blog.csdn.net##dl[id^="yd_a_d_feed_"] +||xxxx68xxxx.com^ +boylove.cc##.dzxvovcm +||gouhb.com/skin/jww/images/20141029114*.png +||xc.mydrivers.com^ +||1.isanxia.com^ +||bdcode.35d1.com^ +||pajhvd.xyz^ +||nkdgnsfsk.com^ +@@||99ybcc.com^$generichide +||kjdbcjkmc.com^ +jlpcn.net##.vodAd +||sohu.com/interaction/get/ +||05pg9z.com^ +||hrjctx.xyz^ +gucheng.com##.s_news_qc +||iwerioo.top^ +stock87.com##div[id^="Javascript"] +||caibaojian.com/d/uploads/*/atop- +||dsjhcgvhjsvc.com^ +||adxxx.info^$domain=avgle.com +ebiotrade.com###pop_banner1 +||sozi.cn/images/tj/hukead.gif +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-tg-content +||kdicked.top^ +||glruh.site^ +4gamers.com.tw##.aroma-tab > a[href^="https://www.4gamers.com.tw/r/"][target="_blank"] +||stockstar.com/*DUILIAN&t= +xgw5.com##div[style="z-index:10;margin-bottom: 10px;margin-top:10px"] +js0573.com###gotopr +||feptbh.xyz^ +military.china.com##.item_list > .medialist +rrjc.com###alertBox +zhidao.baidu.com##a[class="cur"][href^="/mobile/board?"] > img +||biddingx.com^$third-party +||gfjn5.xyz^ +||ljhbhy.cn^ +||kuaishang.cn^$third-party +2345.com##.top-browser-wrap +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="job"] > .c-border +||bzzxyyh.xyz^ +||jads.co^$domain=avgle.com +||s.yimg.com/uv/dm/scripts/syndication.js +||kwflvcdn.000dn.com^*.flv +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_right > table > tbody > tr > td > div:not(#con-ar):not([class]) +@@||qcheng.cc/x/statics/js/guanggao. +hz66.com##div[class*="lb_gg"] +||hao123img.com/res/ecom/ +||p0w2r.cyou^ +sogou.com##.pop-tuiguang +ftchinese.com#@#.AdsBox +||qgidskiy.top^ +||av01.tv/av01/floating_video_ads +||shejiben.com/common/widgets/ui/*zb.js +setn.com###aspnetForm > .rightFloat +||faxingw.cn/js/*ad +32r.com##.gsbbtn +hao123.com###layout-guess +||xuexi.hydcd.com^ +ifeng.com###minefields_bottom +||zrljzgs.xyz^ +||stockstar.com/api/?id= +||xywy.com/gk?a= +||script302.top^ +blog.csdn.net##.blog-slide-ad-box +dzbhdm.net##a[href^="https://www.dzbhdm.com/news/"] > img[src^="https://www.dzbhdm.com/"] +=loginExtAD. +||wwhsxwow.xyz^ +luanren.com##.luanren_dbhfad +||u22088.com^ +elecfans.com###fix-tdkad +lzacg.one##.content-layout .zib-widget > .textwidget > a[target="blank"] +||6pznpz.com^ +||thisav.com/nb/ +@@||th7.cn/sanda2015/css/ads.js +||fol9v.xyz^ +||efgh.5lu.com^ +@@||icbc.com.cn/icbc/include/AD_ +wnacg.com#@#.hlol_ad +||*xav.*/guang/*.jpg +||lkdybkwi.xyz^ +@@||notafree.host^$generichide +dy.xdf.cn,haoweichi.com##.ad2 +||kyjwtxei.xyz^ +||ypojie.com/wp-content/uploads/*.js +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,domain=wuyong.fun,important +||kppt.cc/zb_system/script/common.js +javdove.com##.recommend-link +||47.100.0.249/js/thea +||diyijjj.com/data/content +||zcfhi.cn.com^ +||100xuexi.com/CssModel/botad.js +duba.com##.ad_middleModal +||ad.886112.xyz^ +dm5.com##.index-side-code +55188.com##a[href^="http"]:not([href*=".55188."]) > img[src*="/portal/"] +ghxi.com#@#.social-item +||gridsumdissector.cn/gs.gif? +||lozmtk.cn^ +||7xdown.com/idcgg/ +car16.com##.modal-overlay +ruian.com##.ad_opera +porn5f.com#?#.row:has(> div.col-lg-3 > div[style] > div.carousel-inner > p.ad-title) +qq.com##.mod_float_banner +storm.mg##div[data-addom="storm_ad_wrapper"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.per_list.j_per_list.per_list_frs +||nfmovies.com/pic/tu/a191124004. +||kt51.com/bjl666.gif +gamme.com.tw##div[class^="topad_"] +@@/ad_file/*$domain=7-11.com.tw|pxmart.com.tw +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_cover_head_wrapper +||cifnews.com/common/js/d/d/tea.js +@@||res.aidegelin.cn/dom2/js/com.js$domain=69xx03608.xyz +||aoakss.com^ +||img8e51zy4bg.com^ +||biancheng.net/templets/new/images/index_pc/fudaoban_ +||swerilxb.top^ +||35336.net/35336.jpg +||aixifan.com/apsdk/apsdk.js +baixing.com,leiphone.com,sina.com.cn##.top-banner +easyai.tech##.sidebar-inner > .widget_media_image:nth-child(n+2) +||hxwscp.cn^ +||mhnzhlase.xyz^ +||xpkxahje.xyz^ +hao123.com##div[alog-alias="hot-goods"] +gov.cn###ippad01 +qidian.com###tr-banner +@@||baidu.com^*&cb=BaiduSuggestion. +gugeys.cc##.am-g +||cyretuf.top^ +||52che.com/Inc/FooterComm_ +||fp.nanrenwo.net^ +t66y.com#%#//scriptlet('prevent-setTimeout', '/tpc.?[A-Z0-9].?tml/') +||hexun.com/pc/js/dataPopup. +||jingjs.top^ +easylife.tw,ettoday.net##.idleAd +wasu.cn##div[class^="play_ads"] +||cnjxol.com/jxrbPaper/pc/static/js/scroll.js +mangabz.com###cc2 +||setoniale.com^ +||rmduuv.icu^ +qunar.com##.flight_ad +||adunite.com^$third-party +gamer.com.tw###flyRightBox +||17house.com/zt/style/pc/js/zt_ +steamstats.cn##.card-link +||chinatruck.org/index.php?m=poster& +cardu.com.tw##img[src*="/ad_images/"] +boke112.com,dzbhdm.net,mzh.ren,whsir.com##a[href*=".aliyun.com"] +youku.com#$#.swiper-wrapper > .swiper-slide:has(> a[target-url]) { visibility: hidden !important; } +||vdianying.cc/img/youhuiquan250.gif +||gbqgwes.icu^ +cnys.tv#%#//scriptlet('set-constant', 'config.group', '') +baidu.com###tab_news_1 > div.tab-news-content.water-container:nth-child(2) +||2kandy.com/js/123/ +gz0668.com###framec32DR1 +||hiao.com/node/node_27508.htm +bitauto.com###folieAdNews +789ys.com,ruanyifeng.com##div[style*="important"] +vod1769.com##.banner_img +m.07073.com##.new_heads_bg +baidu.com#$##content_left > div[style*="display:block !important;"]:not(.result) { position: absolute!important; left: -4000px!important; } +||chinaz.com/c0g/ +gmgard.com,hggard.com###blog > div[style="overflow:hidden"] +||vip.min1319.com^$third-party +||betteredu.net/js/pop_tuiguang_ +||shnpetdn185.shop^ +||abc.douguo.com^ +18h.avmimi.com##body > p[align="center"]:first-child +zhicheng.com##.sf_1 +||doii.cc/mmm/ +||mqaoweu.icu^ +423down.com#?#li:-abp-has(> .pic[href^="http"]:not([href*="423down."])) +cool3c.com##.col-xs-12 > [class="board board-page board-Cool3c_SuperBoard board-new clearfix"][data-board="Cool3c_SuperBoard"] +hupu.com###topPub +duba.com###qq_adv +@@||digiland.tw/advert.js +||ppluoli.xyz^*.gif +||jqbddp.xyz^ +iyf.tv#$#.player-side > .block { visibility: hidden !important; min-height: 390px !important; } +||wlrjy.com/assets/images/tuidc.png +||cndzys.com/huanlian/ +cupfox.love,hcomic.net,olevod.com##.swiper +vgtime.com##.vgart_top > img +hk01.com##.md\:min-h-\[90px\] +||yxcrcc.xyz^ +||kqwerp.top^ +lqz.cn###ad_index +boylove1.mobi##.fuafxnfq +sogou.com##.tg-box-1 +||applinzi.com^$domain=soyunpan.com +||z4a.net^$domain=aotu43.com +||enifdlaw.top^ +||hwuogmusthxfpk.xyz^ +exoav.com##.table +||ysxs8.vip/js/play_db.js +caibaojian.com##a[onclick*="aly"] +onebox.mydown.com##.fcAgain +||quzmtpxw.xyz^ +||nshypdry.xyz^ +~baidu.com##a[href*="/cpro/"] +||520click.com/ad.$domain=~video.520cc.cc +||nowhern.com^ +||bd1.flfgw.cn^ +=ad_top_slider& +:11211/t.js?MAC= +||cdnny.com^ +||zhuashi.oss-cn-beijing.aliyuncs.com^$domain=~zhuashi.com +mpyit.com##.cboxElement + center[style=" padding-top:10px; "] +mobanwang.com##.box960x90 +||wuliao.epro.sogou.com^ +taobao.com##.J_smartBanner +@@||paypalobjects.com/pa/js/min/pa.js +||n0488.com^ +||putonghua520.com/skins/10ym/3jin.gif +lzdcctv.cn##.widget_ssr > a > img +||ysdm*.ys137.com.cn^ +dmhy.org##div[id$="_ad"] > a[onclick*="'ad'"][target="_blank"] +||alicdn.com/img/ibank/*_2021817714. +||upaiyun.com/system/post_tile/new_web_banners/ +o8tv.com#%#//scriptlet("abort-current-inline-script", "document.write", "tips") +||taizexy.com^*.gif +udn.com##.sponsor-wrapper +cngold.org##.pageAdv +125.la##.forumlist_ad +4gamers.com.tw##video[src^="https://img.4gamers.com.tw/ads-media/"] +||cdntxt.com/m1/ +letv.com##.fl_app_wrap +||crxs.me/upload/ad/ +||d5.sina.com.cn^$image,domain=~www.sina.com.cn +tianya.cn##.book-box +55188.com###top-pic +||stat.download.xunlei.com^ +@@||jsdelivr.net/combine/npm/$domain=ulifestyle.com.hk +||plotafb.com^ +||a304.top^$image,domain=hihbt.com +5173.com###ggFloat +||gw2cddpt2hao.site^ +gas.goodlife.tw###widgets +||milimili.tv/template/JOELEO/*.js +doudoudm.site##a[href*=".kxyike.com/"] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="right_game_recommend"] +hao.360.cn##.applist > .app:nth-last-child(n+2) +yiyouliao.com#?#.yyl-weiruan-ads-list-item:has(> div#small1) +m.autohome.com.cn###s2205 +||mkiterx.top^ +||ifengimg.com/static/js/*Adv. +||analytics.tv189.cn^ +mydown.com##.doubleDownload_bottom +||lejshxao.xyz^ +hao.lenovo.com.cn##.right.icons +ifeng.com##section[class^="fixSlide-"] +sdo.com##.mod-public-ads +@@||doubibackup.com^$generichide +||qyoqeq.xyz^ +shangyexinzhi.com##.img2text-adv_wrapper +||0o0.ooo/2017/01/13/58787d42bbad6.jpg +||dfcfw.com/public/js/left.js +||hendehy.com^ +||ifengimg.com/ifeng/sources/ +||alicloud.b-cdn.net/1.js +||stat.ijinshan.com^ +soyoung.com##.cash_back +:8080/js/v2.1.js$third-party +||vcjczwnc.xyz^ +baomidou.com#%#//scriptlet('set-constant', '_AdBlockInit', 'noopFunc') +xchina.co##div[style*="width: 300px;"][style*="height: 455px;"] +||521000.com/co/ +gametower.com.tw###tableAD +||7791.com.cn^ +qidian.com##.games-op-wrap +wnacg.com#@#.google-ads +8se.me##.push-bottom +233.com##.gads +@@/adimages/*$domain=p9.com.tw +||zhihucloud.xyz^ +0597kk.com###kk_content1_left_ad1 +2345.com##div[class*="act-navspec"] +||js.kt250.com^ +||qqyy.com/js/commAdv +||mvxz.com/img/ +||wyuwkbe.top^ +||kebi1.top^$third-party +||eaezoi.xyz^ +||baidu.com/api/wikiui/guesslike? +fenghuo.in##.mimi +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##style[id^="s-"] + script + div[id] +||picsuperfast.xyz/imageUpload/images/*AD_ +||yuntue.com/zb_users/plugin/MoreLinks*.php +||ssylieb.top^ +||bdasd.chdbook.cn^ +||l0ix1.site^ +||sahqoo.com^ +||magedu.com/wp-content/uploads/*/xwzx +||pimg2023.com^ +||beyers.cn^ +||douban.com/?unit=dale_movie_trailer_after_play& +tingroom.com###play_ggr +ganji.com###recommend_storeg_div +58.com###erweimaAd +||duomai.com^$third-party +||blntzf.xyz^ +ixueshu.com##a[href^="https://adapi."] +||wuxingruoyin.top/public/*/plugins/ +||hgyouxi.com/data/hgyouxiad/ +@@||mmstat.com/eg.js$domain=1688.com|taobao.com|tmall.com|tudou.com|youku.com +||uzelzfnj.xyz^ +m.youku.com###banner +||120askimages.com/ask/js/q +||log.mtime.cn^ +||inalzlo.top^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,wefan.baidu.com,xingqu.baidu.com##.tbui_aside_float_bar + .clearfix +blog.csdn.net###kp_box_www_swiper_ban +||mgzjin.cn^$third-party +||qqvlsr.icu^ +||txmeeqz.icu^ +sigure.tw##.Ads-Sidebar +gamersglobal.de#@#.gg-box +||qqfby.com^*ad +user.qzone.qq.com##div[id^="fct_20050606_"] +hybbs.com##div[class^="adtop"] +vipthz.com###fwin_content_imc_attachad [style="WIDTH: 100%; padding-left:10px;"] > div > a[href][target="_blank"] > img +18-comicfrieren.xyz,18comic.org,18comic.vip##a[href*="//"]:not([href*="comic."]) > div[style] +||sd1v.yitongwl.cn/site/ +58.com#?#tr[sortid]:-abp-has(> .t > .ico.accurate) +onemanhua.com##div[id^="rn_ad_native"] +||t6.china-xian.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##body > div[ad-dom-img] +zzbaike.com##.left > .bottom[style] +hcbbs.com###framec9562h +||xyj321.com/static/zx/js/zx-con-jsq_ +||wttuuyd.cn^ +||tebohjhh.xyz^ +mydown.com##.advertisement_pic +@@||wenxuecity.com/include/editor/*/media/ad/ +||ylgvlvbc.xyz^ +@@||hdslb.com/u_user/$~object,domain=bilibili.com +md.hkgolden.com#?##viewpage > .post:has(> :is(div[id^="div-gpt-"], .hkg-ad)) +||yhlpshi.xyz^ +malimali5.com#?#.container > .section:has(> a[href^="https://www.odancool.com/"]) +@@||douyucdn.cn^*-share-master/ +||aili.com^$third-party +ekamus.info#$#.adsbygoogle { height: 1px !important; } +||44jui.top^ +gamefy.cn,sitv.com.cn##.area > div[style="float:left"] > a +||vk922.com/img/ +360kan.com##.eb-mini +@@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl$domain=ff14angler.com|logi.im +||boylove.cc/static/js/yymh.js +||price.com.hk^$domain=discuss.com.hk +taiwancall.com##.gad +||p.zol-img.com.cn^ +@@||genshuixue.com/??/*/counter/action_ +||1cjzfyb.com^ +pc841.com##.w300 +midifan.com##.top-aaa +||ebioweb.com/newsf/js/inpic.js +hqew.com##div[class^="g-ad-"] +||xudarl.xyz^ +||bkxpph.xyz^ +huya.com##.tt[style*="1200px"] +oneplusbbs.com,wstx.com,xiaot.com###diy4 +||evkzqs.xyz^ +||gd.189.cn^*.htm?SP=$popup,third-party +||code.ditiezu.net^ +||gdwudmv.icu^ +house365.com###ft-login +||houvxliu.top^ +||aaaf.info^$script +||chongdiantou.com/wp-content/uploads/2019/02/pzb.jpg +wenku.baidu.com##.service-entry +||hwerilxu.top^ +||kycxhgrp.xyz^ +||16sucai.com/ads/ +||sooopu.com/js/contentad330.js +||gg.kugou.com^ +||86uk.com^$subdocument +||baigh8eosmgie02.site^ +le.com#%#//scriptlet('set-constant', 'isAdLoaded', 'true') +||uljoifw.cn^ +jb51.net##p[style$="text-align: center; padding: 0px; margin: 20px 0px;"] +porn5f.com##.position_fix_bottom +duba.com###leftHot +||bvdenx.xyz^ +||hy90.cn^ +@@||tkec.com.tw/api/ad/ +||uaiosio.top^ +nick18.com,nick20.com###sex +||iuou.myadobe.cn^ +||soufunimg.com/imgd/viewimage/*/640x210 +wenxuecity.com###adt +qlwb.com.cn###scroll_box +||qnvod.net/qna/ +douyu.com##.PrivilegeGiftModalDialog +123.com.cn##.img-banner +uc123.com###right_elevator +||a.tbcdn.cn/s/tb-tracer-min.js +||happyhongkong.com/images/client/ +cl.wpio.xyz##.tpc_content > a[target="_blank"][onmouseover] +cartoonmad.com##table[width="737"] > tbody > tr > td[valign="top"][height="100"] +baidu.com,cntour2.com##.topBanner +auto-online.com.tw##div[style="width:336px;height:280px;margin:0;background:#000000"] +danyang.com###global-hd > div[align="center"] +fanyi.youdao.com##.dict-download-guide +acglala.cc##a[href*=".jigdh.com"] +appinn.com###sidebar > .widget:first-child +o8tv.com#?#.container > .row > .myui-panel-bg:has(> .myui-panel-box > .myui-panel_bd > .myui-vodlist > .col-lg-8 > .myui-vodlist__box > a[target="_blank"]) +||xkd*.com/layer/layer.js +goodcome.com.tw##.Phase2_BigAdbox +chajiaotong.com##div[id^="cjtad_"] +||citysbs.com/no/*/1190x60- +||127.net/external/js6public163_ +||iyf.tv/a/$xmlhttprequest +the-sun.on.cc#@##ContentAd1 +cztv.com##.ad003 +||lyuwkbl.top^ +||aty.sohu.com/v? +360che.com##.adver300_150 +news.hf365.com##.main-r > div:first-child +77mh.nl###bdtopbot +||oxkyaq.xyz^ +bmvc2020-conference.com#@#div[id][style="width: 100%;"] > iframe[scrolling="no"][src^="http"][src*="?"][src*="="][src*="&"][width][height][frameborder="0"] +17173.com##.pic[href*="Room"] +51xiazai.cn###xzbtn1:nth-child(2) +weather.com.cn##.ggt +||daima.wenkuwenku.com^ +://www.*.js|$script,third-party,domain=159i.com|r3sub.com|thisav.com +||rkxy.com.cn/js/text_ +:88/lighttpd/default/ +||uqwbcm.xyz^ +runoob.com#?#.sidebar-box:-abp-has(.re-600160) +||a1.sumiaowang.com^ +gaokao.com###J_fixed_popbox +edu.sh.gov.cn#@#.short-ad +58b.tv##div[style^="width: 300px; height: 250px;"] +||qekgcdcjr000.fun^ +||my4700.com/js/*.js +||qqhuhu.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###ecl-temai-general +blog.csdn.net##div[style="min-height:250px;"] +||m1905.cn/images/vod/vod*-90.jpg +||cdunwi.xyz^ +news.tvbs.com.tw##.sidebar_div:has(> div.nolazydiv) +@@||dayanzai.me/image/ad/$image +||16888.com/ajax/loadcardata.php +||hjfile.cn/site/hj-lzs/ +||bhktalt.cn^ +bibgame.com##.topicContent > font[color="red"]:last-child +||azkrya.xyz^ +ruten.com.tw###AdRelatedTitle +||56img.com^*/baidu-promotion.js +||n.baminw.com.cn^ +13tv.top,freehao123.com##.box +tiexue.net##.reloadCont > div:first-child +msn.cn#%#//scriptlet('json-prune', '*', 'list.*.link.ad list.*.link.kicker') +msn.cn#%#//scriptlet('inject-css-in-shadow-dom', '.ad-container, .vd-ad, cs-native-ad-card-no-hover, display-ads, .display-ad-container, .display-ads-container, .views-right-rail-top-display, #entry-point-hp-wc-banner, .me-stripe-title-subtitle, #displayAdCard, a[href*=".booking.com/"], a[href^="https://amzn.to/"] { display: none !important; }') +sogou.com##.tgad-box +itavcn.com##.mb_right > .mt8:nth-child(3) +||hjfile.cn/analytics/site/TrackEvent.js +||jnlc.com/www/fund/newsmarket +||ycwuoq.xyz^ +||abcd.cnhuoche.com^ +||enokouv.icu^ +||cdn.xiuting.cc/js/go016.js +sina.com.cn###ad_blk_fixed +||ctags.cn/9/j2.js +doyo.cn###article_top_down +||igo.cn/liuxue/js/slideBar +xiadele.com##.details-small-carousel +booktxts.com##div[style*="position:"] +||alicdn.com/kf/Hd5708bb280a64af781d74222ad3d8005w.jpg +||huya.com*/cache1min. +||chuantu.biz^$domain=aotu43.com +||ad-survey.com^$third-party +||69t49.com/floating/layer.js +image.baidu.com###imgCmsAdPart +douyu.com#?#.SharePanel:-abp-has(> .SharePanel-content > .SharePanel-contentTitle:-abp-contains(福利)) +||sina.com/rm/ +||srootshare.com/otmyjs/ +||ecma.bdimg.com^ +||b7sw62.pingshu8.xyz^ +fang.com,soufun.com##.add1200 +gg-led.com##.regg +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_search\/pagelet\/search_ad +||tyisloi.top^ +||hgthpj.xyz^ +||1.pncdn.cn^ +||catwalkoutled.com^ +||pites.cc/js/top.php +||awoudsoo.xyz^ +||brixel.cn^ +||vutjnt.xyz^ +||cidianwang.com/js/right +||tuyiyi.com/tuyiyi/m.js +kpzpw.com##.header-pic +@@||16668tu.com/css/ad.css +||dingniugu.com^*public. +||itc.*^prod=ad& +smzdm.com##.side-stuff +pcdown.net##.bzxz +||pstatp.com/growth/mobile_list/image/bonus_ +||book118.com^*/js/crm. +||zutevd.xyz^ +qqyouyue.com##.table-responsive +stoneip.info###text-57 +123.sogou.com,web.sogou.com##.m-12[pbflag="guess"] +iqiyi.com##.m-hotWords-bottom +||ertlisw.top^ +jinti.com###mei +||netease.com/fz/interface/frontend/fz.do?pos=tongyong- +17travel.net##.ui_adblock +17yy.com##.t2_3 +||cnvmhzt.cn^ +||mstkvnya.xyz^ +||aymwiq.xyz^ +gotrip.hk#?#._more_content_ > div._page_:has(> div.oath-lrec-player) +longzhu.com##.pop-up-button +cww.net.cn##.adlinkR +hao.360.cn###festival_baijian +163.com##.gkk_bj_yw +||live173.com//AD/ +tieba.baidu.com##.j_post_list_item[data-info^="\7b \"un\":\"\\u623f\\u4ea7\\u5c0f\\u7ad9\\u957f\""] +||ssjv1.com/dm/ +||z4a.net^$domain=9xav.cc +hk01.com##.min-h-\[250px\].mb-3 +||mitbbs.*/servicedata/static_ad.php +||liuxue86.com/js/ideng/liuxue-show +plus28.com##div[style="margin: auto;width: 960px;margin-bottom: 10px;"] +news.mydrivers.com#?#.news_info > p:has(> strong:contains(双11红包活动推荐)) +99kubo.tv##table[width="970"][height="260"] +||tuwan.com/events/courseiframe? +32r.com##.gsdbtn +||jiaoben.ganji.cn^ +||dangbei.net/img/db/downdangbei.gif +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###replyBusinessImg +@@||88box.com/images/ad_images/ +||htrurb.xyz^ +||ithome.com/images/1068.jpg +||jinhua.com.cn/ad_pic/ +hcbbs.com###fwin_dialog +||7vnkf.online^ +ifeng.com##.newAdImg +so.com##li[data-id^="cm_display_init_text_"] +||ivbgpax.cn^ +||5251.net^$third-party +||a.huocheba.com^ +||qeedaa.xyz^ +||vfxrpl.xyz^ +||90oo.com/tp/msn.jpg +||edler.cn^ +3g.qq.com##.template_gdt_div_blue +chinaz.com##.kwLink +||acggd.com/4d22b/ +||xxsmad1.com^ +||vdggsd001.com^ +enews.tw##.newsCardForLeftAdGadCode +||8585go.com/recommend +ldqk.xyz,masuit.com##.ibox-content > .wow[id] +||juzi6.com/js/dp.js +||3337738.com^ +jingangjing.com##.free +||fenxi.com^$third-party +weibo.com##div[ad-data] +||sinaimg.cn/wap/project/blog_to_news_banner/ +||caixin.com/file/content/js/mobile_news_app_banner.js +||ydttxdqe.xyz^ +ifeng.com##.vAdbox +elecfans.com##div[id^="new-listAd"] +~h5.dilidili.wang,dilidili.wang#$#a[href*=".11h5."] img { position: absolute!important; left: -3000px!important; } +fsdpp.cn##.sidebox > a > img +||panpan.org/templets/ad/ +1010jiajiao.com##.sbox +||tencent.com/developer/api/common/getAds +niutuku.com###downAD1 +||pajtll.xyz^ +house.yahoo.com.tw##.content_r > .rbox:first-child +||antpedia.com/include/js/view_news/l_banner_js.js +||xbiquge99.cc/js/dj +ruanyifeng.com#%#//scriptlet('prevent-setTimeout', 'checker') +||bnifdlav.top^ +||jingdianlaoge.com/static/js/360-displaywindow-advert.js +||api.dmcdn.net/all.js$domain=gotv.ctitv.com.tw +||javhoo.net/pop/pop.jpg +tiexue.net##div[id^="g_d_"] +137.175.73.220,xnxxw.net##a[target="_blank"][rel="nofollow"] > img +hgitv.com##.index_gg01 +nivod5.tv,nivod8.tv##.qy20-h-carousel__li:nth-child(-n+2) +jingdianlaoge.com##.leisure-popup +docin.com###docindex_ad +36kr.com##.kr-ad-home-flow-article +hmoeh.com#%#//scriptlet('set-constant', 'google_tag_data', 'emptyObj') +||mrtlisx.top^ +||ezprice.com.tw/js/*_ysm_ +||analytics.21cn.com^ +right.com.cn##a[href^="https://jd.dangbei.com/"] +||penxiangge.com^ +||asfklgnbvx.com^ +downkr.com##.address-right > div > a[target="_blank"] > img +4399.com##BODY[bottommargin="22"] > TABLE[width="100%"]:first-child +||xpwlctfk.xyz^ +||wdoshbe.top^ +@@||tui.click^$generichide +||vjzjpt.xyz^ +ifeng.com##.yiyuan +pjtime.com###Couplet_l_small +dhaomu.com##.ceo-footer-h +wenku.baidu.com##.header-wrapper > .fixed-activity-bar +||easyliao.com^$third-party +||picgd.com/images/*.gif +firefoxchina.cn##.popup-small +las.ac.cn###img +||tuqnwz.icu^ +||rnwenpn.icu^ +@@||cmechina.net^$genericblock +||wnacg.*/1sdfdc1/ +auto.163.com##div[class^="ga ga"] +||dfsgppz.icu^ +ck101.com###wp > .videoAdWrapper +e-learn.cn###block-gyouer +dj92cc.com,djkk.com,tingqq.com#@#.share_list +jxedt.com###footer +taoguba.com.cn###tbgzInstallBG +||duba.com/dhads?id= +||kgymoc.xyz^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=linetv.tw +||s1.tuzhaozhao.com^ +tieba.baidu.com##.tl_spread +||yigujin.cn/tp/*_hengchuangfuwqi. +||krtlisd.top^ +||piksrie.icu^ +@@||ad.ourgame.com^ +||dmg-dd.oss-accelerate.aliyuncs.com^ +@@||seyise8.com^$generichide +||meishiba.com.cn^$third-party +||qqddc.com/homeSite/news/js/newsad.js +||hjapi.com/v1/pageSoftText? +||yhdm44.com/123.html +||goutong.baidu.com^ +niusnews.com##a[href^="https://www.niusnews.com/index.php/main/gotoBanner/"] +udn.com###simplemodal-overlay +||163.com^*/boboData +duelmeta.com##.single-top-html +||vdggsd016.com^ +||live800.com^$third-party +gzmama.com###zone_banner_1_new +ip.sb##.rivencloud_ads +sci-hub.org.cn##.gs_red[style="color:#EB7F00"] +iqiyi.com##div[id^="div_theatre"] +||zdf3q.xyz^ +||xueaaaw.cn^ +||vupsnx.xyz^ +||zn46.com/images/*0x +||1.201980.com^ +||hao123img.com/res/js/common/erjiAdv. +||uvklgw.xyz^ +||szhongzi.com/js/ +@@/store_ad/*$domain=pcstore.com.tw +||f1.zaojv.com^ +||88lm07.com^ +||wnmoobz.icu^ +wandhi.com##.table-bordered +bilibili.com##.gg-floor-module +baidu.com##.invoke-app-san-container +wd.znds.com##.dxb_bc +tvboxnow.com##td[style="width:15%;height:100%;"] +@@||sax.sina.com.cn/video/newimpress? +||variflight.com/carnoc/ad/ +||gougou2018.com/js/item +||segmentfault.com/sponsor/ +||hoopchina.com.cn/topn +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=news.now.com,important +||xklrsj.icu^ +||acg.youku.com/webfile/*.jpg +||9fum.ifeng.com^ +||ads.yeeyi.com^ +wendangxiazai.com###ft_hb +||agefans.top/js/wap2-jm-ms.js +104.com.tw###aidma_588 +cwyuni.tw###banner > h2 +||avgle.topgirlsdating.com^$domain=avgle.com +||qcvf.ifeng.com^ +||ielgag.top^ +||zjliloveyou.ixiunv.com^ +||hixutb.xyz^ +||kncrya.xyz^ +alexa.cn##.importantList +||v.center^$third-party +||piclect.com^*.gif$third-party +||cctv567.com/b/ +||easyicon.net/gg2019/ +codejie.net##.h--banner +||blinxmi.icu^ +~fishmsg.net,~briian.com##.a_pt +||ad.byfuh.com^ +||3g.cn/baidualading/ +||hnyishidengbao.com^$third-party +||ac*.pingguolv.com^ +||zhev.com.cn/file/weixin/ +||hinet.net/radio/getAdcode.do +guba.eastmoney.com##.redian +51.ca##._51_a_c +||anjneia.xyz^ +niuacc.com##.yure +touzi.com##.pop720-box +||yzz.cn/global_gg/ +||oyksoft.com/show/b. +autohome.com.cn##.union-ad-placeholder +||boplgt.icu^ +||kuaizhan.com^$domain=yuese46.com +taoguba.com.cn###joinTGB +159i.com##.a2d +2345.com###sidel_lvy +briian.com##div[class^="hentry-gad-mobile"] +||sina.com.cn/131/20150515/266.js +gebi1.com###fwin_dialog_cover +||serengeseba.com/static/view.js +:8891/v*/$script,third-party +||pv4b.com^$popup +4399.com,sxrtv.com,yundaex.com###ad1 +||i2wq4.icu^ +||kdgjsf.com^ +||sinaimg.cn/finance/hq_finapp_ad/ +||lw881.com/public/js/gw.js +cangku.moe##.slider +chinaz.com##.adfixbug +||xvbnrh.xyz^ +||shouji.com.cn/static/v1/js/appinfo.js +||yinghua8.*/bar/ +||bjhockey.org/public/pc/video/test.mp4 +cnbeta.com.tw##.cbv:not(#cb_share) a +miercn.com##.show-img-box +chajia123.com##.foot_dybox +cnfol.com##.allAd +||tw.beanfun.com/bfweb/NEW/commonlogin +sspai.com##.content hr:nth-last-child(-n+4) ~ p +qq.com,sogou.com##.cs_dropbox[pbflag="xialaresou"] +||ysont.cn^ +||22pixx.xyz/l/ +abbao.cn,tt1069.com#@##adcontent +||cnblogs.com/group/T2 +||kdoshbd.top^ +||mzhhdn.com/hongbao.jpg +||bd1.szhk.com^ +||cache.ltn.com.tw/js/cache_ads_h1.js +guancha.cn##.full_nav1 +||hmwang.icu/skin/images/*.gif +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv###video-container + ul[style^="width:"] > li > img +||nyfstb.xyz^ +||kuakao.com/index.php?m=content&c=index&a=show_ad +manhuaren.com###lb-win +||mikuclub.*/pub/ +||xwvnhe.cn^ +gongkong.com###dull_left +||qqyjis.xyz^ +||33dav.com/static/js/banner.js +||8961.jianbihua.com^ +house365.com##.left_fudong_ad +||88lajs6.com^ +ac.qq.com###qgirlRefreshLead +||jiayu.net/comiis_ad/ +||xpicj6.cc^ +||icqeou.xyz^ +ali213.net#@#.subscribe-container +||szdgl.cn^ +stock87.com##div[style^="position:relative;width:1000px;height:90px;"] +@@||softwarebrother.com^$generichide +czsp12.com##.iswindow +uc123.com##.header-push-container +||niubixxx.com/seo/ +duonaolive.com##a[href][rel="nofollow"] > img[onclick*="track"] +||1.gunsuo.com^ +nfuwow.com##div[style*="width: 1160px;"] +ifeng.com###optimusPrimeContentId +cnfol.com##.Ad310 +||rising.cn/js/haoAdData.js +||longdidi.top^*.js +||bjmantis.net^ +hao.360.cn###festival-theme > .left-entry +28hse.com###floating_left_div +||vupload.duowan.com^ +ifeng.com##.ad200-2 +||upaiyun.com/wp-content/uploads/2016/12/wenzhangyouce +maguays.cc##.animate-bounce-up +||pengtu.cc^*.png +@@||xxxxx520.com^$generichide +juksy.com##div[ad-uid] +||qhres.com/static/*/common/seed.js +||outbrain.com^$domain=wenxuecity.com +@@||static.hdslb.com/ad-images/$image +||phk.nmkstcrt.xyz^ +||yefu365.com/rebo/function.js +baidu.com###spage-top-banner +||shbzqgs.cn^ +||photo.*/native?tk=$third-party +||jdipsuma.top^ +423down.com##.content > h3 > a[rel="external nofollow"][target="_blank"] +||jd100.com/cwmpc/ +nick20.com##table[width="702"][bgcolor="#D1DDAA"] +search.bilibili.com#?#.video-list > div.col_3:has(> div.bili-video-card a[href*="//cm.bilibili.com/"]) +://abc.*.js?adv= +bbs-tw.com##table[ondragstart="window.event.returnValue=false"] +so.com##.js-busi-item +@@||wenxuecity.com^$generichide +ksbbs.com,kshot.com##div[id^="read_ad_"] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[id^="ecl-pc-game-"] +||kiiepofl.xyz^ +||chinaacc.com/upload/*_mjy_ +@@||gooogle.how^$generichide +@@||alicdn.com^*/tanxssp.js$domain=dlkoo.com +hao123.com###append +||yahoo.com/gdsale/gdsale.asp$domain=beephone.com.tw +||i-gamer.net/promo_ +moe.best##.alert +=window.awall.adblockwalltemplatefetchdef& +x3cn.com#?#body > div#qmenu_menu ~ div[style]:has(> a[target="_blank"]) +||sexy-more.com^$third-party +99.com.cn##.hzh_botleft +php.cn##a[href*="/go."]:not([href*="Fwww.php"]) +||bian-min.com/javascript/a/detail.js +3dmgame.com##.fell_left_advertisement +||0hq6k.site^ +||so.com/com/ads? +17ce.com##a[href^="http"]:not([href*="17ce.com"]) img +||show.kc.taotaosou.com^ +||sc4mh.cn^ +||591hx.com/zyrk_dy/gwjl.html +||uqueae.xyz^ +qq.com###ay-tips-close + h2 +||ydstatic.com/fanyi/fanyi-ad-place/ +@@||hanjuwang.com^$script,~third-party +||hj8gf.icu^ +||imgoss2255.top^ +||xxsmad3.com^ +csdn.net##.fourth_column +||pcbeta.com/data/cache/_djwbhgprrtnmby.js +||q1.yyxwzx.com^ +||ydazjxso.xyz^ +||vdggsd015.com^ +hao.360.cn,hao.360.com###header-patch +||gtxkze.cn^ +||ygh5.cn^ +||chinaz.com/imagead/ +airav.cc###air_top_banner +@@||pv.sohu.com/suv/ +||baidu.com/xda? +||eiegkg.xyz^ +hsex.men##div[style="margin:0 auto 10px;width:900px;height:250px"] +||ggcode.2345.com^ +||wdickee.top^ +||sjbaiduadv1.redou.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-health-pagelist-wrapper +||fkhxlz.xyz^ +qciss.net###lightbox +||bianxianmao.com^$third-party +cnfol.com##.wid595AdBox +bt.cn,lotour.com##.btad +wenku.baidu.com##div[id^="html-reader-AD-"] +||hblarn.xyz^ +||16m.cc^$third-party +||uxxux.com/js/zd.js +||jkzbjv.xyz^ +||a3.jandan.net^ +||b4dg.life/love/ +ifooday.cn##.myzs +||guanjiabo.net^ +||jzb.com/website/fe/pub_js/dbclickshow.js +||cdfhidrk.xyz^ +v.shensgo.com##body > div[id][class*="animated"][style*="position"][style*="z-index"] +||pstatp.com/large/pgc-image/e8bd997e82874259a66207d2f77f0c6c +||11dyw.com^ +||geddsashb3.fun^ +||doujs07.shop^ +home.firefoxchina.cn##a[title][track_key="sites_saoma"] +||hotavxxx.com/images/*96 +||diaoyu123.com/cpro/show.js +1010jiajiao.com##.bdgg +||rntdqwc.xyz^ +||akjdbjkcbacj.com^ +||ky595images.com^ +cnforex.com##.mleft > a +||haowenwang.com/js/Header.js +24k99.com,fx168.com##.yy_guangao +||chinanews.com/fileftp/2016/08/2016-08-04/U194P4T47D36220F967DT20160804155100.jpg +||51yhzp.com^$third-party +duba.com,newduba.cn###J_FloorWave +||caqreg.xyz^ +||tyretui.top^ +user.qzone.qq.com##li[id^="fct_20050606_"] +pc0359.cn,pc6.com##.ad-download +||leryt111.fun^ +||ttgbnmk.top^ +e23.cn##div[id*="adv"] +world.huanqiu.com##.ad_bot +brushes8.com##.zjianad +@@||livew.l.qq.com/livemsg?pf=H5&ad$domain=m.v.qq.com +briian.com###main > div[style="width:100%; height:auto; margin: 5px 0 15px; background:#FFFFFF; text-align:center; padding:7px 0 10px 4px;"] +baomidou.com##.sidebar-content > astro-island +life.tw##div[style="width:630px;height:700px;"] +ltn.com.tw##.C3.boxTitle +zol.com.cn###official_url +||rltdxt.com/files/h5/ +||poiejdhmkjcnd.top^ +||ihhmh.com/mg/show +douxie.com##.ndxBanner +||woaidu.org/images/20180802/3.jpg +||txzqw.me/attachment88txzqw/*.gif +||r.trwl1.com/s1/$subdocument +e0575.com##.tg1 +shouji56.com###gg_top_banner +||dzuht.cn^ +||zhimg.com/80/v2-503830bc48217331677fc5c7b67eee12. +||dshangyan.com/pc/advertising/ +||tom.com/adsender/ +supertaste.tvbs.com.tw###lightbox--ad +85tube.com##.block-album > .table > .opt +||913mj.xyz^ +csdn.net##.blog-column-pay +||a1.tbuz.com.cn^ +||googlesyndication.com/safeframe/$third-party +5054399.com,hitime5.com###gg +||cdazjxso.xyz^ +jable.tv#?#div.col-6.col-sm-4.col-lg-12:has(> div.video-img-box > div.img-box > a[href*="?banner="]) +||2529.com^$third-party +||buresdv.top^ +ct.999wan.wang#?#.container .card:has(> .card-body > .flex-fill > #ad_text) +mamibuy.com.tw##.content-ad-spa +||lixonj.xyz^ +||9duw.com/pic/ +qiushibaike.com##.shopwindow +||bdimg.com/static/wkview/widget/download_after_activity_new/download_after_activity_new_ +||cm.baidu.com^ +||ktyusid.top^ +chinamedevice.cn##.ads_img1 +||bdx.playnext.cn^ +||romiyee.icu^ +||ssp.hinet.net^ +weishangshijie.cn###wad_left +||88lajs4.com^ +||everyonepiano.cn/Public/*0x +sac.net.cn###rightDiv +||bosw.net/js/bos/*960 +||ycgfdf.cn^ +||irgxwk.xyz^ +xiuren.org###menur +||rkwxfi.xyz^ +||dytt8.com/js1y/ +||zzlong14.cn^ +||16sucai.com/images/*0 +kdslife.com###ad_swip +||a1.syfj.net^ +||lnifdlal.top^ +||kfqizu.cn^ +||s.yimg.com/ja/ap/$script,subdocument,domain=hk.news.yahoo.com|hk.yahoo.com|tw.news.yahoo.com|tw.stock.yahoo.com|tw.yahoo.com +||oppnfev.xyz^ +playzuan.com###ShouYe_ShangBu +||pwbuhb.xyz^ +||ltbyw.top/data/images/*.gif +||img.zuowen8.com^ +||a4bj6.xyz^ +ifeng.com#?#.box_list:-abp-has(.tuig) +cocomanga.com#%#//scriptlet('prevent-setTimeout', 'loadErrorTip') +yahoo.com##div[data-content="廣告"] +@@||590103.idv.tw/advertisement.js +||muoizbtl.xyz^ +fwxgx.com##.baibaoxiang +hao123.com###leftbannerv2 +||zdw.w8.com.cn/p.ht? +||chinalawedu.com/js/zxkf.js +||dmr.cnhoney.com^ +||fl6n.com/adtop/ +easyicon.net##.page_big_adv +||18183.com^*.php? +||zgwvcv.icu^ +||duba.net/skins/2009/images/db300_250.gif +kdslife.com##a[href*="kds.2144.cn"] +||pupudy.com/images/wxrj.gif +||hanadrmc.xyz^ +||cdntxt.com/node/doit. +||p.junshifuxin.com^ +||itmsc.cn^*ad0 +||n2wqmr4lmaummar.xyz^ +mtrend.cn###morecontent > .morecontent_next[style] +1616.net###stool +ting89.com,tingshuge.com##.banner688_1 +://a.ads. +crsky.com##.Adown_v_gs +hao.360.com##.right-nav-bar-hd +playno1.com###m7 +||baigamp.icu^ +itmo.com##.right-side-pop +5184.com##.fixed_bgg +||xmcdn.com/storages/97b8-customerservice/E7/5E/GKwRIJILApO8AALGLwMrioMa. +@@||cdn.bootcss.com/fuckadblock/3.2.1/fuckadblock.min.js$domain=share1223.com +hao123.com##.browsertip +||crfjxfoe.xyz^ +lenovo.com.cn##.coffee-top +sojson.com##a[href^="https://www.sojson.com/ad/"] +ishuhui.com##.a_xx_d +||kafuzcxr.xyz^ +lgn.yy.com##.m_left +ifeng.com##.h_top_box +||suiyishop.cn/zhuangxiu_ +||uczfl.com/data/content +1905.com##.mobile_ad_promote +||static.chinatimes.com/scripts/2019/ad2019.min.js +||159i.com/nd/b_slest.php +netfly.*,netfly.tv##.content > div > [style="display: flex; flex-direction: column;width: 100%;"] +downkr.com##.download-btn > .text-right +||soaspx.com/images/iiszj.gif +jjdong4.com##div[style="width: 80%; text-align:center; margin-left: auto; margin-right: auto"] +fx168.com##.zixun_ad +tiantianzhibo.com###sliderb_container +acfun.cn##.right-activity +baidu.com##.sfc-image-content-ad-container +||super.bad996.com/*ads.js +||lsjxs.cc/js/html +||cww.net.cn/include/show.asp?boardID= +yxdown.com###highdown +niotv.com##.right_ad1 +||ggxwb.miguvideo.com^ +||xiaopi.com/statics/new_js/15.js +||7k7k.com/js/bg-img.js +xhzyw.com##.ads_bottom +poedb.tw#%#//scriptlet("abort-current-inline-script", "document.getElementById", "/#myModal'\)\.modal/") +mail.pchome.com.tw##.sceng +||eoof.net/PicZone/qzgg +dataguru.cn###bg +@@.adserver.$domain=litv.tv +douyu.com##.tab-content.promote +||1.feihua.net.cn^ +tw.yahoo.com###abu-live +fuliba2022.net##li[style="margin-top:5px; "] > a[target="_blank"][rel="noopener"]:not([href$=".html"]) > img +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > div[class][style]:not([id]) +||776.jstatic.xyz^ +||cdilm.cn^ +||thgthgfg.cn^ +||hexun.com/pc/img/diversionToWXBottom_ +40407.com##.con_tj +||news.99k.tw/open/open*.php +||lleo.top^ +||same.chinadaily.com.cn^ +motocity.com.tw###rotator +xuite.net###single-ad-300-250 +||r3sub.com^*0.gif +autohome.com.cn##.vocalcon-btn +||3399.com/act/$third-party +mwrf.net##.uc1_focus_pics +||orbxiul.xyz^ +||chubun.com/uploads/pic/img +||a2.xinhuanet.com^ +||j.sdqoi2d.com^$third-party +||histock.tw/ad/ +3d66.com##.down-adver +22vd.com##.widget_custom_html:last-child +toy-people.com##.article_insertAD +||ca.yangshengtv.com^ +||cwmlm.com^$third-party +||yueipaoo.xyz^*.gif +||dfejqmh.cn^ +||cqisam.xyz^ +starbaby.cn###top_ad_show +||diyifanwen.com/siteimages/jiqiren +||xchina.click/upload/*.webp +acfun.cn##.pause-display +||cnzz.trafficmanager.net^ +||ov8ct.icu^ +||bbxyxt.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_couplet +||dyguo.com/pc/nr336.js +||qheose.xyz^ +yahoo.com#?#.js-stream-content:-abp-has(a[href*=".promotions."]) +||3987.com/skins/*201 +||fuoo1.top^$third-party +||gowinxp.com^$third-party +||241hs.com/js/jquery.js +||faxingw.cn/js/detailgcbox.js +baidu.com##.rightAd-skin +@@||show.g.mediav.com/s?type=$script,domain=miercn.com +||js.entm.top^ +||isky.ltd/skin/js/ad.js +rfidworld.com.cn##div[style="width: 100%;position: fixed;top: 0;margin:0;"] +feebee.com.tw###afsh_bsearch_list_top +||360buyimg.com/babel/jfs/t1/209256/22/21888/60206/627b7a6aEa5f2d78b/219868beb169203f.jpg +||eastday.com/assets/js/resources/detail/ +||to8to.com^*_bottom_ +||90oo.com/tp/90232.jpg +||chaospace.fun/wp-content/uploads/*/tg- +nicekkk.com,briian.com###custom_html-4 +liantu.cn##.side > .h250 +mumayi.com##.clientBox +||ax1x.com/2020/06/14/NSoyHe.png +||npbtnl.xyz^ +||alicdn.com/img/ibank/*_1794478205. +||ygfgzmzo.xyz^ +||ip.sb/assets/images/*_ads. +||static.gaomaer.cn^ +iqiyi.com###middle_banner_ad_bk +||amuguu.xyz^ +||ruqwgb.icu^ +||jypvzd.xyz^ +wealth.com.tw#?#div[class]:has(> div[class] > div[class^="rytass-ad-manager-"]:only-child) +||fmkipgm.icu^ +||chahua.org/aimg/ +||0755rc.com^$third-party +nxpaaq.com#$##mainContent { display: block !important; } +xiuting.cc#$##chaptercontent { filter: unset !important; } +||huaren.us/Adverts/ +wantgoo.com##.fab-ad +||njenlz.cn^ +||jatfugios.com^ +duba.com##a[w="topad"] +baidu.com##.redenvelope-small +||chazidian.com/Statics/xly/huorezhaosheng.png +@@||gov.cn/scripts/Comm/AdRotator.js +||sofseo.cn^$third-party +||ytqeavc.icu^ +51live.com###waterMark +dailygh.com##.div_removeable +||yt-adp.nosdn.127.net^ +3yan.cn##img[style*="300px"] +@@/adx.$domain=tanx.com +jingyanlib.com##.adToastWin +||jsdelivr.*/npm/@bootcss/*/assets/img/aliyun +my0511.com###duilianrightdiv +sina.com.cn##[data-info^="ad_"] +chinaz.com##.txtAdBox +||runsky.com/phpstat/ +||bbuni.com^$third-party +?adunitid= +xinmin.cn##span[style^="position:fixed;right"] + a +||thcdy.co/baidu2/foot.js +||fqtljn.xyz^ +591hx.com##.banner_w +hamivideo.hinet.net#%#//scriptlet("set-constant", "myPlayer.adDisplay", "undefined") +||jxtest.bolecdn.com/player/*.gif +my0511.com###duilianleftdiv +||iuuwuk.xyz^ +||k6syi.space^ +||dmzj.com/js/m_BtmApp.js +||xianzhenyuan.cn/data/attachment^$image +||1708t.com/js/jquery.js +||99zuowen.com^*/gg.js +||cadizer.com^ +||999db.cn^ +hao123.com###shortcut-box > .tip +||xzrhvv.xyz^ +cnblogs.com##.c_ad_block +so.com##.g-a-noline[data-md*="sad"] +2345.com###kz +||dns.chuzushijian.cn^$third-party +||imgoss1380.top^ +||jmcomic1.me/exads +||huimg.cn/e/hd.e.wap. +||fuvbbjl.xyz^ +16fan.com##.item-newad +@@||ads.tiktok.com^$generichide +||tietuku.com/b975a9f7c494738b.gif +foodmate.net##.m[style="height:40px;"] +dizhanw.com,jiangjunzy.com##div[style="background: #fff;padding:5px;"] +||54new.com*/da/ +||baijs011.xyz^ +||onxeacj.cn^ +||airav.cc/iframe/ +||av6k.com/templets/default/video-ad/ +||dm.zuowenku.net^ +news.pchome.com.tw##div[class^="adnewlist"] +||shbzhgs.cn^ +||autohome.com.cn/api/platformData/getFinanceBanner +firefox.com.cn,firefoxchina.cn###thside-left-banner +||me360.com/swt/swt.js +csgoob.com#?#div[class^="dark:shadow"]:has(> a[href^="https://www.k7csgo.com/"][target="_blank"]) +cocomanga.com,ohmanhua.com,onemanhua.com#%#//scriptlet("set-constant", "__jsadsuccess", "true") +||jgmywh.icu^ +@@||gamer-cds.cdn.hinet.net/vod/gamer/*.m3u8^$domain=ani.gamer.com.tw +image.baidu.com##.sample0 +||law-lib.com/wstyle/images/gffirm.jpg +||17123.net^ +||pengwei168.com/addons/321.gif +||qdoeki.xyz^ +||demaxiya.com/v4/dd/ +finance.sina.com.cn##.f_app_screen_wrap +||1.yac8.net^ +djljz.cn###toolbar +it165.net##.adv728b +xxxsm.vip##.ad280x165 +||to8to.com/assets/wap//common/widgets/appGuide/appGuide. +||9j9zo.cyou^ +||x1fyw.icu^ +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=hoy.tv +||jmcomic1.me/static/resources/lp.php +||imgme.me/images/*.gif +||mediav.com^$third-party,domain=~dev.360.cn|~g.360.cn +||154.7.80.158^ +image.baidu.com##.imglist > .fcImgli +||m.yhdm.so/bar/yfgg.js +||hf365.com/0/14/31/00/14310068_933922.png +||cilimao.*/amaod/ +||k366.com/images/smxs^ +howbuy.com##.topBigAd +||tw.partner.buy.yahoo.com^$domain=cool3c.com +qianzhan.com##div[id^="baidu_ad_"] +||mldzwmt.xyz^ +beephone.com.tw##a[href^="http://www.beephone.com.tw/adlink.php?id="] +liba.com##.ad-split +||ytelc.com^$third-party +faayoo.com###footer_fd +im286.net##.im286-t +||3dmgame.com/page/img/shangcheng +||chengtongled.com/gg/ +@@||costco.com.tw/jsps/website/zh/images/location/AD +||hs.cnfol.com/Cm/Imgs/Load.gif +||127.net/external/js6public126_ +||uetlwst.top^ +iis7.com###QTGG +msn.cn#%#//scriptlet('json-prune', '*.*', 'adFeedbackData adType adServedUrls') +||ceisip.com/static/js/plugin.js +||66zhuang.com/public_2017/js/count-gou.js +||7dusx.xyz^ +||a.yellowurl.cn^ +zhujicankao.com##.eboxx +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":50012654,"] +ltn.com.tw##.Slider > li.L1ad +||mmtalk.net/images/banner +||pincai.com^$third-party +hao.rising.cn##.baidu-banner +ncnews.com.cn##div[id^="ban"] +||2008xxx.com:888 +||baijs07.shop^ +||0575bbs.com/updateimeags/ +||tu3921276844.cc^ +66huacai.com##.soft-downUrl-list.underline +||chinanewsx.com^$csp=script-src 'self' * 'unsafe-eval' +@@||cdn.runative-syndicate.com/sdk/*/n.js$domain=onemanhua.com +||qkitery.top^ +brtn.cn,btime.com##.promo-item > a[href^="http"]:not([href*=".b"]) +||baidu.com/tb/cms/game/*_banner_ +||mifengtd.cn/ad- +||hhausq.top^ +||cycyw.com/qdj/ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [class] > [id*="00"] > ul +||dio66.net/images/*.gif +||tagtoo.co^$third-party +||ftchinese.com/a.html +||aryici.xyz^ +||bdad.123pan.cn^ +cnblogs.com##.h_ads +||eypqbjju.xyz^ +||xghylt.com/api.php?mod=ad&adid= +sina.cn#?#.page_main > .specSlide2Wrap:has(> div > #midThreeAds) +ifeng.com##.pic1000 +||zanghaihua.org/js/ +||zagyjnn.cn^ +@@||media.jd.com/static/*/ad +||ktvtxir.xyz^ +||my0832.com/xyz/xx/ +||qpic.cn/wwpic/471270_J6SyU3sDRNuKUnZ_1680798399/0 +||rsvvfx.xyz^ +||szjjzs.com/js/piao.js +so.com##.garllery_ad +v2ex.com#?#.box:-abp-has(>.inner>div>span[style]:-abp-contains(Sponsored)) +naifei.im##div[style="position: fixed;bottom: -10px;right:0;z-index:999;width:250px"] +touzi.com##.pop720-bg +||hboav.com/guga/ +qingdaonews.com##.da66050 +||vvadz.cc^ +?key=$popup,domain=verystream.com +||egesdashb8.fun^ +blog.sina.com.cn##div[style*="WiDTH: 200px;"][style$="HeiGHT: 300px"] +||hulichuang.mobi^ +||twlmq.space^ +20-0.net###biedamadeyouchongtule-aa +@@||csdn.net/static/static/js/apps/popShow.js +52pk.com##a[onclick^="ga"] +||iqiyi.com/player/common/adflash +||loveshang.com/api.php?mod=ad&adid=custom_ +||krutvncd.top^ +||fanyi.baidu.com/ait/config/cms/list? +||cdn.galacg.me/img/*.jpg +@@||piccool.com/2home/phpAdsNew/ +||2ccc.com/images/sdo.jpg +||vhotcvp.xyz^ +porn5f.com##.aa-dd-body +@@||haoweichi.com/Public/js/ads.js +cpnn.com.cn##.leftewm +||img*.win007.com/image/*.gif +||huaren.us/bbs_ads/ +cheetahfun.com##.guide +hall123.com,hi.people.com.cn##img[width="1000"] +bmlink.com##.Tg_190x70 +32r.com##[onclick*="@"] +||pchome.com.tw/iframe/$domain=mail.pchome.com.tw +douyu.com##.adcontainer +||snueirk.icu^ +chinaz.com###loc.Mnav-right02 +||grewash1b.fun^ +qianhua.biz###framelzHoHY +||su.bdimg.com/static/dspui/js/ +||egadfe.xyz^ +esdict.cn,eudic.net,frdic.com,godic.net###bodycontent > style + div[id] > :nth-child(n+2) +||cxy88.friok.com^ +||grihaith.com^ +businessweekly.com.tw##.Single-hot-news +||lsntzzy3.com/Runtime/js/psData.js +sporttery.cn###newDiv +||zhuys.com/js/ysmm. +703804.com##.hotad +||gt.yy.com^ +||chengzijianzhan.cc^$subdocument,third-party +@@||520cc.cc^*/ad.php +qiannao.com###downTb + div +||fdyacma.icu^ +||miwpkk.xyz^ +~05wang.com##.a_pr +aliyun.com##.yq-main-left > a:first-child +||iolsrikq.xyz^ +||astrill.com/bnrs/ +58pic.com##.activitySettings-Fixed +91porny.com##.row > div.colVideoList:has(> div.video-elem > a[target="_blank"]) +win007.com##td[id^="Ad"] +||hh.jiankang.com^ +778772.com##a[href^="http://www.yh988y.com"] > img +||stat.ts.cn^ +hao123.com##.wm +ditu.so.com##.label-ads +ahtv.cn,sexbarss.net##.r1 +||xiaobaipan.com/tb.html +||abcd.5lu.com^ +||tdlyfz.xyz^ +||mitbbs.com/img/app +||lyz.radio366.com^ +||ctrip.com/Domestic/tool/AjaxGetCPTList.ashx?advpositioncode= +||lsyliel.top^ +||fgwerg.top^ +iqiyi.com##:not(.qy-index-page) > div[id^="100000"] +downxia.com###gaosu_div0 +||ttdpxh.xyz^ +xgan.cn##.container center > a[target="_blank"] > img +||imgoss511.top^ +||scoldak.com^ +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:-abp-has(>ins+style) +pconline.com.cn##.twentieth +brushes8.com###flxgg +weibo.com##div[feedtype="ad"] +udn.com##.more_ad +teachinghand.com##.actions__wrapper +hxnews.com##.banner-90 +abmedia.io###block-12 +163.com###yjj_pop_wrapper +||tt1069.com/bbs/zgg_ +baidu.com###wgt-ad-right-fixed +159i.com##.aa +||sdd.hi1718.com^ +epinv.com##A[href="http://www.epinv.com/post/10450.html"] +||yhgfoe.xyz^ +||yitongkan.com/splash.xml$redirect=noopjs,domain=yitongkan.com +netbardh.com##.js-static[data-position="3.3"] +@@||bookwalker.com.tw/images/p_img/pc_ad*.png$~third-party +||titan007.com/js/indexshow. +||zhihu.com/api/v4/commercial/ecommerce +csdn.net##.toolbar-redpack-advert +||aoji.cn/static/js/pushadv.js +||loublil.top^ +||tq.cn/floatcard? +||212ehae.fun^ +||n0499.com^ +||cpro.xixiliya.cn^ +lkong.com##.lkong-ads +m.07073.com##.main_content_tit + div +@@||swsc.com.cn/download/ad_images/ +||738atf.xyz^ +||bilibilijj.com/image/right_bottom.gif +||lesasfp.icu^ +itxueyuan.com##a[href*="guanggaowei"] +||lianmeng.la/cde/text.js +||sravga.xyz^ +||xulizui6.com^ +m.baidu.com##a[href*="m.lecai.com"] +||9i8i.com^ +||av6k.com/shop/a4.jpg +brushes8.com##.baidugg580 +tieba.baidu.com##.hongbao_page_pop_common +||fv77e.icu^ +h5.17k.com#$#body { overflow: visible!important; } +sm.cn##.crumb-link + .other +||ieymhkx.icu^ +||9527yy.com/images/02/9527.jpg +||skdaj.cn^ +people.com.cn##.ipc_none +||koolearn.com/v2/js/wxewm.js +||samoryinaner.com^ +||kekenet.com^*/zhike +||tingchina.com/js/*220- +netfly.fun#?#.content > div:not([class]):has(> [style="display: flex; justify-content: space-between; width: 100%;"]) +gohome.com.hk#@#div[id^="div-gpt-ad"] +mydown.yesky.com##.leftGg +@@||share1223.com^$generichide +||shen4club.com/style/*.js?v= +qyer.com###zpui-head-ad +||quge66.com/jdjd/ +tieba.baidu.com,wapp.baidu.com##a.fixed_bar +hao123.com###ecom +ahtv.cn,duhama.tv,frdic.com,huasing.net,it168.com,qinbing.cn###ads +||ye120.com/swt.js +||guhai.com.cn/AD/ +neihanshequ.com###pageletBottomBanner +||img1.eywdf.com^ +avbebe.com##.sidebar > .xoxo > li[id^="execphp-"] +52youpiao.com##div[style^="position:fixed; right:40px;"] +||zlyk.com/Runtime/Js/m_footer_top.js +apk.tw#@#.google_ad +||tencent.com/developer/api/common/getOneAds +jav777.xyz##iframe[src^="//ads.exoclick.com/"] +||4438x*.com/Runtime/js/ +||er1h4.icu^ +||ddielv.cn^ +||hz.shouyoutv.com^ +||clypzbzs.xyz^ +||it168.com/pv.js +||xnfhxszj.xyz^ +faayoo.com##.qr_code +breathofthewild-link.com#?#div[id^="cc-matrix-"] > div.j-htmlCode:has(> ins.adsbygoogle) +||unecne.com/wp-content/uploads/*ad- +||178.com/glr.js +||yvudqzoa.xyz^ +ruanyifeng.com##a[href*=".kaikeba.com"] +||iykig.cn^ +||591hx.com/js/floatbox.js +||888aa222bb.com^ +||cmbmtpjm.xyz^ +lspdfrcn.com###cancms_float_bar_fixed_bottom +||taobao.com^$popup,domain=52movieba.com|btee.net|ck180.net|friok.com|iqiyi.com +||owyame.xyz^ +||bdstatic.com^*/static/itemrep/afdTuJiTuiJian/ +hyperallergic.com#@#.ad-above-footer +auto.sina.com.cn###bottomInquryBar +playno1.com##.eis_adv +zjhlcp.com##.middle_list +||myfenxi.com^ +fwwang.cn###n_s_300250 +||wnacg.*/data/ds/ +10fang.com##.tfy-ab +||mnpzrgz.xyz^ +||mypianku.net/ajax/MyJs/ +90pan.com###tt_xker +18comic.org,18comic.vip,18-comic.work#?#.col-xs-6 > div[data-show][style]:has(> p:only-child > a[target="_blank"] > img) +epubee.com##.reader-to-vip +163.com##.topnav_ad +||5s98.com/img/ +xiazaizhijia.com##.down_list +baidu.com###couplet-left +baidu.com##.openAppCommonTpl-100 +baidu.com##div[id^="toast"] +||1722t.com/js/jquery.js +||catbox.moe/bb5wdv.jpg +||uoosqk.xyz^ +ifeng.com##div[class^="slideBannerBox"] +||xvgrszkg.xyz^ +||hgxwhpba.xyz^ +||88lm12.com^ +||owkmmo.xyz^ +||gaofuwu.org/js/dd2.js +18av.mm-cg.com##.ut_ad_box +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="ecl_health"] > .c-border +tigtag.com###Home1000x70_A29 +||onosyej.icu^ +||kaoyan.com/__pub/shop_book.html +||haolepic.com/blz/ +||iia1.pikacn.com^ +||ynfxxbp.xyz^ +51.com,55188.com##.couplet +twinsyang.net,free.com.tw###custom_html-7 +||property.hk/js/adside.js +||maodh.com/admin/up/*.gif +||ofjslik.top^ +tieba.baidu.com##.frs_pb_leadapp_pop_show +||dahe.cn/indiboy/ads/ +rfidworld.com.cn###divTopContainer +@@||tangdou.com/sample/share/advert?$domain=tangdoucdn.com +56.com##.sohu-app +||ed2000k.com/ad/ +||5dmail.net/image/$object +360game.360.cn##[class*="banner"] +||bd.ahsrst.cn^ +||crtlisf.top^ +chunyuyisheng.com##.ad-modal-left +v2rayssr.com##.single-top-html a[target="_blank"] > img +||xgjidt.xyz^ +||rdbd.xsread.com^ +redian.news##.bottom-0.fixed +||tongj.xilu.com^ +||rbhunp.xyz^ +xcar.com.cn###show_car +||199.180.100.185/love44^ +||storm.mg/ad? +||lemida.xyz^ +udn.com###ec +||yckamq.xyz^ +chinaz.com##.HeaderAdvert +ddooo.com#?#span:-abp-has(>p:-abp-contains(高速)) +gucheng.com##a[href*=".liaogu.com"] +nick18.com,niko18.com###mov > .content +china.com##.baidu +autohome.com.cn##.monkey_box_big +||28.com/count.js +||mybjx.net/theme/default/js/common/bjx_service_ +moxing.net##.pic_txt_list +2345.com###corner_a +talkfx.co##.slidebox +@@||book.com.tw/image/getImage? +||115img.com/static/115tj.js +renfei.net#$#.ant-modal-root { display: none !important; } +||96382zubo66756.com^ +5555op.com,router.houzi-blog.top##.img +@@||atanx.alicdn.com/t/tanxssp.js$domain=alimarket.tmall.com|www.taobao.com|www.tmall.com +||jianxun.io/ad/ +baiten.cn##.JS_advertisement +||bt1.patexplorer.com^ +||sam*.baby-kingdom.com^ +@@||webmail.smartlinkcorp.com/dotrans_20160909.php +||dnpz123.com^$third-party +itavcn.com##img[width="722"] +||uiuaey.xyz^ +cartoon18.com,pornbest.org,ptt.sex###links +niaogebiji.com##.adImgBox +so.com###mohe-360pic_ext--normal +||sky.dunsuan.com^ +2345.com###J_hot_event +||xhd.cn/topic/leyu-piaofu/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_l_post:not([data-field]) +||gsdpw.com/file/script/A +||wan.liebao.cn/zt/ +qq.com##.AdBox-Article-QQ +||oweriok.top^ +||yuwqsk.xyz^ +||okmwfq.xyz^ +51zxw.net###video div[class^="adlink"] +solarbe.com##.RT_banner +||renwai.ren/cdn/pic/ad +uc123.com##.side-hot +:99/js/ads/ +tigtag.com##div[id^="Home942x70_"] +gongkong.com###dull_right +||byuwkbv.top^ +boyoushe.com##a[href^="http"]:not([href*=".boyoushe"]) > .j-lazy +||youy14.com/js/tj.js +||taozi888.com/a*.js +itdog.cn##.pic_gg +bilibili.com##.is-rcmd > div:only-child +||jingyanlib.com/home/data/getAdOnlineList? +||guilin-ly.com^*.gif +||qq.com/getadv. +firefox.com.cn,firefoxchina.cn##.sd-promote +||bkill.com/css/js/abcbl.js +||zeddjv.xyz^ +ettoday.net##.top-sky +@@||quanzhi.cn/v3/images/index_ad/ +||qqyy.com/js/public_end_add.js +||sinaimg.cn/tech/*/sidebar.js +||ppxscy1.cn^ +||bewrutv.top^ +88448.com###ad_forum_banner +||bvnjeqa.xyz^ +||hxsxw.com/hx8899/$image +||syuwkbb.top^ +||fidelius.cn^ +||imp.zol.com.cn^ +||nz04com.com/aabdd/ +1688.com##.sm-offer-item[p4p*=".1688."] +1688.com.au###pop-up +memexie.com##div[style^="width:9"][style$="#C8E4F0"] +||c1km4.com/mobile/app.js +||bd.ershenghuo.com^ +||umwcyw.xyz^ +:8888/mb1/pc_ +kt51.com,nfstar.net##.bottom_fixed +||js.shangxueba.com^ +||8xtm6i.cn^ +://m.*.cn/*/*.js?ssid=_ +||8mg050.n3cdn1.secureserver.net^*.gif +ks.js.cn##.height70 +58.com###infolist > .recycleInfo +@@||sinaimg.cn/ad/adimage/50x50_ +ghoffice.com,ksbbs.com,kshot.com##[id^="ads_"] +||superfish.com^$third-party +||abc.hkepc.net^ +||luofk.xyz^ +@@||nvidia.cn^*-300x250- +62422.cn##td[width="760"][height="75"] +||ewxufqs.cn^ +||d1.handdiy.com^ +alibabacloud.com##.b-alicloud-bottom +rising.cn###pageflip +@@||gamersky.com/Common/GetHits.aspx? +bbs.nga.cn##div[style^="background:#423d35;box-shadow:"] +qhnews.com###xwyc +sohu.com#?##allseeList > .allsee-item.bd-wrap:has(> div > script) +||z3p9f.xyz^ +||99496.com/static/ +||eastmoney.com/tghtml/ +||amazonaws.com/91/ads_ +eastday.com##.news-promote +||1999019.com^ +||mesh.if.iqiyi.com/portal/lw/search/$xmlhttprequest,removeparam=ad +||chnvgdkw.xyz^ +||bdstatic.com/static/article/widget/left-promo/ +mpyit.com##.cboxElement + a[target="_blank"] +baidu.com##.intro-adv +||dytt8.net/js3/ +@@||scyts.com^$generichide +||expreview.com/baba/ +whcykj.cn###BDBridgeInviteWrap +||cprdmnlo.xyz^ +||zlclgzs.cn^ +||youle55.com^$third-party +||upload.cc^$domain=141jj.com|mizhiav.com +@@||cdn.bootcss.com/fuckadblock/3.2.1/fuckadblock.min.js$domain=1090ys8.com +||cfdvd779.fun^ +||3dmgame.com/templets/common/show_js/show_js.js +@@||googletagservices.com^$script,domain=creaders.net +finance.ifeng.com###box_img +||uuuzuu.xyz^ +pharmnet.com.cn##.ad9502 +||static.xshuyaya.com/m/d.js +||*/ad/$redirect=noopmp3-0.1s,domain=huaren.tv +||prettyvirgin.com/images/banners/ +||bbtta91.shop^ +||ww7814.win/pic +||funshipin.com/v1/js/footerhongbao.js +||lianmeng.la/cde/image.js +weather.com.cn##div[id^="adpos"] +sg169.com##.Mappdiv +||3h3.com/js/show/ +sm.ms##.advertising_1 +||aesxgy.xyz^ +||reqwevf3.fun^ +||qnqtgyq.icu^ +||img.911787.com^ +||wtyusie.top^ +@@||google.pn/translate_$media,third-party,xmlhttprequest +||bdu1.coozhi.cn^ +||acgshenshicha.cn^$third-party +biz.ifeng.com##.riodel +||xlwrdnrw.xyz^ +wnacg.com##a[href^="http"]:not([href*="wnacg."]) img +playno1.com##.sd.pph +@@||wuyou.com.cn/Js/ad.js +||bdstatic.com/img/image/su/ +163.com##.idx_top_ad +||lunhua5.com/images/more.gif +||qhocciks.com^ +||z.tudouxy01.com^ +ck101.com##.adfixWp +||ydstatic.com/dsp_website/ +||elphhrj.xyz^ +||axutongxue.*/js/yes. +@@||3d66.com/??*ad- +||aiyuke.com/position_js*_*_ +anjuke.com##div[class$="-poster"] +alu.cn##.Tg_390x60 +@@||adcdn.pingan.com^ +image.baidu.com##.tjad +||lewhrzv.xyz^ +||0op8kh.cn^ +qq.com##.m[pbflag="guess"] +@@||changyan.sohu.com/debug/cookie? +||315che.com/tree/ad.js +pc841.com,zol.com.cn##.today-hot-layer +141jj.com#?#li:-abp-contains(/贊助|推廣/) +ifeng.com##.slideImg-lGG7Uta- +||wlxww.com/html/analytics/ +flyblog.cc,maxfoodfun.com#?#.article-body > div[style]:has(> div[style] > div[id] > ins.adsbyfalcon) +||ithome.com/js/lapin/hot.js +||tdhnxf.xyz^ +jiayongluyou.com##.widget_image_myimg +||87uq.com^ +||enalzlw.top^ +||longzhu.com/i/api/playpage/recommendPop? +||2345cdn.net/js/index/activity/ +||aspku.com/z/ +@@||translate.googleapis.com/translate_ +||uwsaqoi.icu^ +||vrnblp.xyz^ +||cjw123.com/jx/static/picture/ +||dalipan.com/api/taobao +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="25%"] +||aiuw.com/images/*?from=ad +||uwumr.cn^ +||0j775d.cn^ +||sinaimg.cn/finance/app2018/js/appbar.js +tmioe.com##.widget_image_img +@@/advertisement.$domain=gametower.com.tw +||44180055.cn^ +cjw123.com##a[href="http://tb.cjw123.com"] +cnblogs.com###cnblogs_c1 +@@||vodjk.com/offlights.js +fanqiangzhe.com###news-include + .text-center +yesky.com###flayer +||aniede.xyz^ +||ff.psd8.com^ +||yhdemu368.shop^ +||igidskio.top^ +@@/adjs_pic_$domain=168gamer.net|slit.cn +ifeng.com##a[href^="http://yemei.tv/"] +||ustv123.com/images/axd.js +||a.4aqq.com^ +||163.com/special/*/bobo.html +||dmzj.com/js/ad/ +18comic.org,18comic.vip##div[data-group^="photo_center_games_"] +||ad-api.cnblogs.com^ +money.163.com##.ad1200 +||urqwzbu.cn^ +fx168.com##.jy_fx168_home_default_Mcontent1 +jianshu.com#?#div[id]:-abp-has(> .ad-badge) +||qq.com/vfpage/visual_focus_page. +4399.com##.setlide a[href^="http"]:not([href*=".4399."]) +||ipad.pc899.cn^ +jmcomic1.me##div[style^="max-height: 600px"] +yingav.com##.spots +99meijutv.com##.follow-qrcode +yufile.com##.lo_box +h-ciyuan.com##.aligncenter > a[target="_blank"] > img +mobile01.com##.dable-side_theme +||bjswhpy.cn^ +agmov.com,huaban.com##.promotion +ihome99.com##.ad-980x60 +||a.shenchuang.com^ +||loli.net/2019/04/24/5cc0027b4f2f1.png +@@||golangnote.com^$generichide +52av.one##div[style^="text-align:center;"] > a[target="_blank"] > img +||g.cnzz.cn/Static/js/*- +||wkrhel.icu^ +||lioyfmp.cn^ +||vdoqomz.icu^ +chongbuluo.com##a[href^="https://cn.udacity.com/"] +||ip.tianqiapi.com^ +||icao4.com/uploads/pic/2.jpg +sinolub.com##.gg_cen +fuliba2022.net#?#.sidebar > div.widget:has(> div.textwidget > ul[style] > li[style="margin-top:5px; "] > a[target="_blank"][rel="noopener"]:not([href$=".html"]) > img) +@@||dnbus.com.tw/AD/tab_route.html +i8k.cc##.module-adslist +||lalabaos1021.top^ +58cam.com###huyou_nologin +||guokr.com/apis/flowingboard/item/m_ +||003store.com^ +||jxdown.com/statics/js/all.js +||ithome.com/images/hb1212/ +||henan.sina.com.cn/iframe/7/ +||gfdfgfgr.cn^ +||kwgqaqf.icu^ +||uuiaoq.top^ +||3.cjcp.cn^ +||jcfnbhqo.icu^ +||sprewcereous.com^ +health.tvbs.com.tw##.ad_desktop_top +||icnkr.com/cnkradv/ +||yun.baidu.com/act/api/activityentry? +kekenet.com##.h_news_c +||treferty33.fun^ +||tmjwlmhc.xyz^ +||adwordsing.com/img/1.jpg +xc6b.com##.activity-box +pixnet.net##div[style="width: 620px; height: 250px; padding-bottom: 10px;"] +||vsjrnh.xyz^ +||cojvur.icu^ +_ad6. +libaclub.com##.ui-adsame +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#(function(){window.eval=new Proxy(eval,{apply:(e,c,n)=>{const o=Reflect.apply(e,c,n);if("object"==typeof o&&o.banners)try{o.banners.forEach(((e,c)=>{e.commercial&&(e.commercial={})}))}catch(e){console.debug(e)}return o}})})(); +||wdakda.cn^ +||shandian.biz/wp-content/themes/inove/js/comment.js +ditu.so.com##a[class^="index-bcItem"] +||czouthy.cn^ +ssr.tools##.widget_custom_html:nth-child(n+2) +@@||520call.me/jspopunder. +||ejdhmed.xyz^ +v.ifeng.com##.keyword +||img.vim-cn.com^$domain=522dy.com +||mtnwxhjv.xyz^ +||enviousinevitable.com^ +||eweriow.top^ +yahoo.com###module-tabadktw +hao123.com###topbeWrapper +||rfrhfh.xyz^ +||moqdy.icu^ +||kkkkdm.com/js/comic- +cw.com.tw##.cw__advertising +||dms.xuexxing.com^ +sina.com.cn###J_forAutoShow +||php1.cn/uploads/huayun.jpg +111os.com###btmBox +qinzhou360.com##.Txtadv-show +acfun.cn###bd_ad1 +manhuagui.com##div[style^="width: 300px; height: 250px;"] +mydowndown.com##p[style="color:#ff0000;"] > a[target="_blank"] +||fwsfwef2.fun^ +||uuoizbtl.xyz^ +pixnet.net##div[class*="-ad-"] +hmoe.one#?#.widget_text > .inn-sidebar__widget:has(> .poi-panel__header > .poi-panel__header__title:contains(赞助商)) +||uaoaig.xyz^ +msn.com###displayAdCard +||adutp.com^$third-party +||stlpnom.xyz^ +||aiqks.top^ +||huoxun.wang^ +||aqdy.net/js/tj.js +||ddgjjj.com^$third-party +||e3c7.com/dh/ +xgan.cn##a[href^="https://www.jspp9.xyz"] +sunofbeach.net##div[id$="-ad"] +||gumgo.cn^$third-party +||lh168.net^*/attachment/portal/ +||lvse.cn/output/block/html/ +zuowen.com##.cj +||mahua.com/api/$subdocument +||yc444.cn^ +||kuaidi100.com/assets/ext?method=mainprofile +btbtt18.com##.wrapper_bg_c +epubit.com#@#.article_share +||dzmanga.com/s/page_runtime_v5.js +||dm.wenshenxiu.com^ +xitonghe.com##.sidebar-wx +||cdftizu.xyz^ +||twj6s.icu^ +||heiviek.com^ +jiangjunzy.com##img[style="height:75px;width: 100%"] +||18comic.*/templates/frontend/airav/js/*1_2df4.js +||offcn.com/index.php?m=dbsource&c=call&a=get&id=75 +||gtimg.com^*/ad/ +instrument.com.cn,tool.lu##.swiper-container +||molpmh.xyz^ +||hznzcn.com/moban/youxiajiao.js +360doc.cn###artnewdiv +cwyuni.tw###links-row-1 > div[id^="box"]:not(#box32499):not(#box1026387):not(#box34614) +image.baidu.com###relEcom +jyacht.com###zyc1r_05 +://*:*/yeyue.html?k=$csp=script-src +||dzdnffs.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.live_show_aside +subaibai.com##.el-dialog__wrapper +#%#var AG_abortInlineScript=function(g,b,c){var d=function(){if("currentScript"in document)return document.currentScript;var a=document.getElementsByTagName("script");return a[a.length-1]},e=Math.random().toString(36).substr(2,8),h=d();AG_defineProperty(b,{beforeGet:function(){var a=d();if(a instanceof HTMLScriptElement&&a!==h&&""===a.src&&g.test(a.textContent))throw c&&console.warn("AdGuard aborted execution of an inline script"),new ReferenceError(e);}});var f=window.onerror;window.onerror=function(a){if("string"===typeof a&&-1!==a.indexOf(e))return c&&console.warn("AdGuard has caught window.onerror: "+b),!0;if(f instanceof Function)return f.apply(this,arguments)}}; +@@||tianxun.com/min/f= +||vzdkngmf.icu^ +weibo.com#?#.wbpro-side-panel:-abp-has(span[class^="wbpro-icon-search"]:-abp-contains(商)) +||sjluuom.icu^ +||ugbler.icu^ +||savionl.com^ +techug.com##a[href*="/222.html"] +69vj.com###nta +dyxs23.com,dyxs20.com,dyxs15.com,dyxs14.com,dyxs13.com,dyxs12.com,dyxs11.com###player_pic +||motcmn.icu^ +||crxs.me/scripts/my_ +haorooms.com##.right_guanggao +||uctutu3789.xyz^ +yes-news.com##.new-sidebar-today-300ad +123-bt.cn###mianze_mask +||cnr.cn/s?z= +||nanfengyl.com/static/js/zdad.js +kuai8.com###right_Ad +sex8.cc###nv > ul.cl > li > a[href^="http"] +||17house.com/zt/style/*_bottom_module.js +||jackdd.xyz^ +||ac1.pingpingw.com^ +||jdbstatic.com/ads/ +||cvudqzoa.xyz^ +||api-a.ganjingworld.com/*/adsserver/get-vast-xml/ +||wap1.laogu.wang^ +union.58.com#@##advertise +e3zy.com##img[style="height: 80px; width: 100%;"] +@@||mmff30.com^$generichide +||securepubads.g.doubleclick.net/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=line.me +||img1.leyun365.com^ +||bdmjs.xywy.com^ +||hitoxx.xyz^ +||videowood.tv/popjavascript +||51bczx.com/images1/ +getrelax.cc#?#.nav > li.dropdown:has(> ul.dropdown-menu > li > div.mega-menu-content > div.container > div.row div.blog-grid > a[href^="https://getrelax.cc/ad"]) +htmlsucai.com,sucai8.cn,ui.cn#@#.adv_img +||bdcode.qinglm.com^ +||xflybplr.xyz^ +||icourse163.org/dwr/call/plaincall/CommonBean.obtain.dwr +api.so.lianmeng.360.cn,pos.baidu.com##body +discuss.com.hk###ab_div_px1 +||fxjnfn.xyz^ +||qunar.com/js/ga.min.js +||h6295.com^$popup +wealwomen.com##div[data-cptid] +||1.zw3e.com^ +||28.com/public/js/w3c_float.js +||qifake.com^ +baidu.com###activateGuidePopupOuter +ctwant.com##.l-ad__wrapper +@@||tbskip.taobao.com/json/ +||clqjyw.xyz^ +||alicdn.com/kf/Hd502cbfb24a74a469a3f70f010818498m.gif +||socos.gitee.io/ss/poster/ +||cndns.com/incs/js/website_mobile.js +||fpb*.51edu.com^ +porn5f.com##.alb_320x250 +||right.com.cn/forum/static/image/common/logo*.gif +cnpingpang.com###forum_rules_1 +||fwffa.cn^ +baidu.com###ggbtm +pinshan.com##.b_adv2 +douxie.com##.ndxChdjBox +||rxrdjb.xyz^ +hao123.com##.guess-recommend +t66y.com##a[href^="http://www.viidii.info/?https://po88_"] +||xdf.cn/v4/js/leyus/ +dcfever.com##.trading_top_banner +lan-sha.com#?#.post-list > li.post-item:not(:has(> div.post-item-container a[href^="https://www.lan-sha.com/"][href$=".html"])) +||17ok.com/focus/3j_right_jdt.shtml +||yidengfe.com/launches/01/yd.png +||ocryndsu.xyz^ +||mzelzfnj.xyz^ +||hkljed.xyz^ +||owurserk.top^ +afzhan.com,cngold.org,hbzhan.com,panjin.net,qq.com,tongxiang.net##.advs +||bdcm.kandianla.com^ +world.huanqiu.com#@#.ad_all +uotan.cn###fuck-ads +@@||eden.org.tw^*/ad_banner/ +||rakuten-static.com^$domain=cwyuni.tw +||okbmf.com^*950_120 +jmnews.com.cn##div[id^="couplet_"] +md.hkgolden.com##.hkg-ad +gkstk.com##.layui-layer-shade +jmcomic1.me#%#//scriptlet('remove-node-text', '#text', '中間廣告') +wcjbb.com###frameo834m9 +ithome.com.tw##.span4:nth-child(5) +=AdCode_sjdb +sina.com.cn##div[class*="farmpop"] +||jsdelivr.net/gh/supfree/supfree/top.gif +||ourusababy.com/bsj.js +:8080/advserver/ +||2efgcdcjr000.fun^ +||a.qsjiajiao.com^ +512ms.com##div[id^="fy_"] +||loldyttw.com/blr.js +microcontrol.cn###body > table[width="758"] +||kekenet.com/images/*/app +||2024114t.shop^ +firefoxchina.cn##a[track_key="sites_saoma"] +||opticsky.cn/images/2015/gy-px201 +||23.231.151.252^ +||vfvdvd99.fun^ +||utewyc.xyz^ +51xiazai.cn##.downgs +||qiyipic.com/common/*/250230. +||postimg.cc^*-960x60. +||bfjsliv.top^ +||mlhtr.cn^ +2345.com##.mainbg1 +||msstatic.com/huya/main3/widget/DiyActLayer/DiyActLayer_*.js +||dota2.uuu9.com^$subdocument +xbgame.net#@##google-ads +||ipeen.com.tw/js/frame/ad-actions.js +||jwerilxa.top^ +wnacg.com#@#.RMss1 +cztv.com##.drop_down_ad +tgfcer.com##.portalbox +||jingalbundles.com^ +maxthon.cn###festival-bottom-wrapper +duba.com##.slidebar + .extend +||xiongdong.com^ +||bqg23.cc/js/hf +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###encourage_entry +redocn.com##.small_vip_gg +avgle.com###nft +@@||anyknew.com^$generichide +||iqilu.com/static_files/multiads/ +||uoqsxdpx.xyz^ +||hongi7ie8owiie02.site^ +||shopping.udn.com/mall/cus/cat/OutWebAd.do? +||osanyc.xyz^ +dngz.net##.tongji +3h3.com,downxia.com##.bendown +thepaper.cn###head_ask_app_down +hao.rising.cn###bbTao +||pjy55d.com^ +cankaoxiaoxi.com###qihupic +||sbdvjsbjslkv.com^ +||nyahentai.pw/js/check_cat.js +||videowood.me/assets/js/popup.js +||yangpinwang.com/wp-content/uploads/*E5%B9%BF%E5%91%8A. +firefoxchina.cn##ul[track-key="adv_links"] +doc88.com##.dk-side-gif +||rczudr.xyz^ +||anixwallpaper.com^$csp=script-src 'self' * 'unsafe-inline' +||189.cn^*/push/$third-party +||amazon-adsystem.com^$third-party +40407.com,lzep.cn,qudong.com,xitong8.com##.top_banner +||2345.com/images/activity/20180618/search-actimg +ldqk.xyz#@#.google-ad +yznnw.com##.content > div[id]:has(span + img[src]) +||meiqia.com^$third-party +oeeee.com##.homeAD +zol.com.cn##div[style="width: 300px; height: 250px; position: fixed; right: 0px; bottom: 0px; z-index: 9999; display: block;"] +hy5.com.cn##.toppicad +smzdm.com##.feed-stuff +||mmgap.cn^ +olevod.com##.L4A +||fxgkktj.icu^ +||v1.phb123.com^ +||u2tu4.icu^ +||dm.lianzhixiu.com^ +fnjiasu.com##.layui-layer +newxue.com##.dashuggtop1 +@@||zaixianjisuan.com^$generichide +@@||40017.cn/cn/min/???/ +||courtoyz.com^ +hao.360.cn##.small-obj +||ykxwn.com^ +yzl333.com#?#.row > div.col-sm-6:has(> div.well > a[href^="https://jump.9118ads.com/"]) +||vjie.com^$third-party +hcbbs.com###frameXM5QbM img +@@||seyy66.space^$generichide +||forex.com.cn/index.php/Invoking/tanchukuang +||5q7eb.website^ +||w3wci.site^ +||1ketang.com/Runtime/js/play +tangrenjie.tv##div[class$="_acmsd"] > a[target="_blank"] > img +mydrivers.com##.vwE9JmqU +@@||tce.alicdn.com^$domain=alimama.com +gz.bendibao.com##.content_r_ad300 +china.cn##.extension_ul > .special +hao.360.cn###background.festival +sex8.cc##.a_oscar1 +||cp2.eastmoney.com^ +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###questionnaire_contianer +||vsping-*.myqcloud.com/ggw/ +||video.qq.com/checktime? +||gamecps.com^$third-party +||hgfutf.xyz^ +||kmqianneng66.com^ +||ssb.ah499.com^ +||4l903.com^ +||ryhkft.xyz^ +bioon.com###ad_tb +steachs.com##.sidebar:first-child +chongbuluo.com##.search > div[style="width: 607px;margin-top:30px;"] +||matwbp.iask.sina.com.cn^ +||50bang.org^$third-party +||meteor.today/ad/ +||zol.com.cn/pvn/ +||yimg.com/no/$domain=~yahoo.com +so.com##a[data-log*="cpc"] +lanrentuku.com###divjdgg +||js.yjbys.com^ +||downxia.com/dgjs/download.js +@@||friday.tw/backend/uploadpic/adindex/ +hea.cn###top_slides_box +yiche.com##.h-middle-gd-box +||fmjjvb.xyz^ +||s1-a1.dnvodcdn.me^*.svg +||jitapu.com/inc/adv +||mzzfree.com/file/upload/202109/14/180421861.gif +||mybjx.net/theme/default/js/common/duilianchn.js +||uiakq.top^ +cnbeta.com.tw##[class^="cbv"] +hlgnet.com,sina.com##.tad +||ukbbjtfp.xyz^ +||fpelfyeesuoivy.com^ +||onetad.com^$third-party +ettoday.net###pc_inread_overseas +||dnn1300.top^ +nasyun.com##img[width="970"] +genshin.honeyhunterworld.com#@#.a_p +||wei2008.com/js/*0. +||c114.com.cn/default_inc/a/images/ +qiniu.com##.extra___2cdPz > div.pc___3nUEX.extraBlock___1mGPY +chazidian.com##.ggin +||xzji.com/data/block_js/softShow_ +stheadline.com###jetso-wrapper +||szmtd.cn^ +||replays.net/j/pinglunshang.png +hcbbs.com##table[width="100%"][bordercolor="#CCCCCC"] +exoav.com#%#//scriptlet('abort-on-property-read', 'exoNoExternalUI38djdkjDDJsio96') +phpvar.com##.post_content_linkad +codeceo.com##div[style="width:970px;margin:0 auto"] +||qq.com/mp/cps_product_info? +boce.com##div[class^="money"] +||frgre33.fun^ +||edoshbw.top^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.head_middle > div[class]:first-child +||btmovi.in/static/js/xf.js +smallpopo.com##.fabox +||fgdkfr.xyz^ +baidu.com###search_bottomad +koding.work#?#.sidebar > .widget_text:has(> .textwidget > .adsbygoogle) +||macoms.la^ +pupudy.com##.sidebar > .widget-textasst:nth-child(n+3) +guancha.cn###ewm_app +qinzhou8.com##div[id^="v4ad-"] +||myretux.top^ +yigujin.cn##a[href^="http"]:not([href$=".html"]) > img[src*="/tp/"] +||sinajs.cn/t6/home/js/pl/guide/bigday/ +hgamefree.info###text-7 +||sinaimg.cn^*/everyoneReading.js +||uoowu.com/a/zh*.js +||baomihua.com/yy/ +minwt.com##.g-336-280 +||lrtlisl.top^ +douyu.com##.noble-up-guide +yes-news.com##.new-index-main-ysm +mcdulll.com##.header-fixed-area +||dnpalh.xyz^ +||a2put.chinaz.com^ +||kdh095.cn^ +||up.qingdaonews.com/up/$object,script +bbs.my0511.com##div[style="margin-left:auto;margin-right:auto;text-align:center;margin-top:5px;"] +3dmgame.com##.adshop +baidu.com##.ad-vip-close +gameinns.com##a[url^="/api/ads?"] +||hsbianma.com/content/images/*-ad- +||mmo2350.top^ +gaodun.com###LRdiv1q +||zjxc.com/source/plugin/e6_xc_ad/ +||mw6.me/images/*.gif +||p.pstatp.com/origin/$domain=pianba.tv|pianba.net +||ehrhrrx.xyz^ +weishangshijie.cn##.head_0905 +dysfz.cc##.adv_f +||fpbone.ihowguide.com^ +||idns.online^ +hifidiy.net###part_left2 +jrj.com.cn##.jrj-ad +yxdown.com##.pc_down +to8to.com##.btm-float +||om.cn/api/ad-om/ +||i-part.com.tw/js2/newShineStar +||0uyt5b.cn^ +||oschina.net/promotion/ +||ttroytj33.fun^ +||eabvmue.cn^ +jingdianlaoge.com##div[style="width:970px; height:130px;"] +||ctfile.com/img/*ssp +||tudxhzj.cn^ +baidu.com###sning3 +||78dm.net.cn/acg_201*_250 +yaofangwang.com##.bad +||aliyuncs.com/public/v1/js/ad-config. +||gamersky.com/g/gamerskyflash.js +||graesol.com^ +||auisaoa.top^ +xiaoz.me##.gg5 +bilibili.com###b_app_link +||uyretut.top^ +||biancitiao.com^ +erji.com,erji.net##.black.y-style +mtrend.cn##div[style="float:left; width:100%; margin-bottom:25px; text-align:center;"] +olevod.com##.swiper-wrapper > div.swiper-slide:has(> img[src^="https://static.olelive.com/uploads/file/"]) +||liujiahao6.cn^ +2345.com###xxl_game-new +haokan.baidu.com##.page-top-rightinfo-popover +eastmoney.com###zwbtextlink +goodav17.com###sticky_ads +cool3c.com##.board +vjmedia.com.hk###author-spotlight + .clear + div +||uojoqx.icu^ +xc6b.com###sidebar > .box-b img +||yu.dlxxjsh.top^ +||ra1.xyz^ +||meiju8.cc/js/m_ban_ +||ogznfgl.cn^ +||jc001.cn/img/yhj.gif +||qpyrqg.xyz^ +freejavbt.com##div[data-selector*="ai-insert-"] +@@||51img1.com/??*/adsys. +||c9qh3.website^ +sohu.com##.lottery-box +||jsdelivr.net/gh/diyibanzhu/ +tyenews.com##div[id^="custom_html-"] +tiexue.net##a[href*=".junp"] +||manqian.cn/async/adLocationConfig +opticsky.cn##.p83_gridC > .cc +||rnpkxgfp.xyz^ +ck101.com#?#.readingList > ul > div:has(> li > span:contains(PR)) +adguard.info,adguard.com,adguard.app##.hello_from_adguard_chinese +ghxi.com##.ad_single_12 +||qoubliy.top^ +axutongxue.net##body > article[style] +autohome.com.cn##.fixqbot +||21sq.org/js/downloadbanner.js +image.baidu.com###plz-albums +||szapaqi.cn^ +||imgdb.cn/item/6098ab56d1a9ae528f16192c.jpg +dasai8.com##.L > font[color="#0000FF"] +||u.xogu.cn^$third-party +cnlinfo.net##.guanggao-right +||cvtbdap.xyz^ +sm.cn##div[id^="dl-banner-"] +||iqilu.com/static_files/zones/ +||m4pgay.com^ +qq.com##.mian-ad +||jhnnnb.xyz^ +shejiben.com##.bottom_zb_box +||126.net/2022/0315/c82ed9e0g00r8seoy015pd00104003cp.gif +||p1.360soucha.com^ +tvmost.com.hk##.main_ad_b +||gjjskhdnm.top^ +||55726zubo56686.com^ +2345.com###topHf +||9669.cn/jsam/play_ +che168.com#@#[data-adid] +||alicdn.com/img/ibank/*_368737028. +@@||securepubads.g.doubleclick.net/tag/js/gpt.js$domain=line.me +||epxfjcb.xyz^ +@@||cntv.cn^*_ad.js +huanqiu.com##.adindexList +||sinaimg.cn/news/diversion/index2/static/js/index. +||unifdlat.top^ +||chinaz.com/tools_img/ +dict.cn###tjcd +||uosxdmk.cn^ +cnplugins.com###pop_div +||baidu.com/tbliveact/data/xiu8/ +||a1.shusanqi.com^ +||airav.cc/static/js/*_ad.js +||jsdelivr.net/gh/a901361/ +chinanewsx.com##.card-body > .my-3:last-child +xitongzhijia.net##.btn-dl_swift +gz0668.com##.deanad +||timecn.cn/image/alipay.jpg +kuke99.com##.index-dialog-mask +@@||ad.8maple.ru/close.png +||ag1.zuszw.com^ +||bobo.com/special/mod-follow/ +||obgekjz.icu^ +||ykgfcs.xyz^ +||video.itxueyuan.com/1672473525178992.mp4 +brandsales.58.com#@#div[id^="ad_"] +ithome.com##.related_buy +||gueikw.xyz^ +9upk.com,ouyaoxiazai.com##.ad_show +js0573.com###gotopl +||chinaqking.com/images/newPage/JLW.jpg +cb.wpio.xyz##.tpc_content > a[target="_blank"][onmouseout] +baidu.com##.wapAd +||avseesee.com/htmls/vlinks.html +||quresdy.top^ +||muyxmmz.cn^ +youku.com##.sub-slides-wrap .swiper-wrapper > .swiper-slide:has(> a[target-url]) +tw.yahoo.com###tabTemplate +||ifengimg.com^*/red2018icon. +||counter.pcauto.com.cn^ +||oeya.com^$domain=myptt.cc +qidian.com###banner3 +||thpte.cn^ +sohu.com##.sogouService +||pixfs.net/module/fullPage/dist/ad-full-page-enter-fly. +||poco.cn^*_info_banner +||jcrb.com/ZYW$subdocument +||bdasd.wmxa.cn^ +chinaz.com##.newsMainBox-textad +163.com##.quickmark +||qq.com/livemsg? +||kzpizjp.cn^ +16rd.com###quick_pub_form +||dm.pw0.cn^ +qixingquan.com##.zdm +guilinlife.com##a[href*="adclicks&"] +||jd.com/static/js/cpc.js +ouyaoxiazai.com##div[id^="cs_"] > * +||birtw.cn^ +zhihu.com##.Pc-word +114la.com,ylmf.com###GameAdv +6park.com##img[width="980"][height="90"] +||jsdelivr.net/gh/*/%E7%89%9B960-80.gif +wenxuecity.com#@#.otherposts +duba.com###J_S11 +360kan.com##.js-welcome +chinaxinge.com##.sy07 +||xunsfr.xyz^ +||googleads.g.doubleclick.net/pagead/ads$subdocument,redirect=noopframe,domain=rjno1.com,important +||booking.com^$domain=honglingjin.co.uk|sunnylife.tw +baidu.com##.adTopImg +ifeng.com##.conRgg +bing.com###bingBrand +||8684.com/local/bdadv. +ruanjianxia.com###gaosu_downloads +||trutvnci.top^ +||rydyvv.xyz^ +||aliyuncs.com^$domain=5kym.com +||oq6ry.com^ +||kmmgoogle.oss-ap-southeast-1.aliyuncs.com^ +18avinin.com##a[href^="http"]:not([href*="18avinin."]) > img[src*=".18avinin.com/wp-content/uploads/"] +||kaoyan.com/school/js/yz.school.packed.js +||vrinqop.icu^ +sogou.com###sogou_vr_21222401_wrap_0 +baidu.com###adMainTopRight +||360.cn/int/getadurls? +||hoteastday.com/newspc/show? +69story.com##aside#secondary > section[id="text-2"] +||meitulu.com/css/*showgg.js +minecraftzw.com##.e3lan-top +||qkikkg.xyz^ +@@||cdnjs.cloudflare.com/ajax/libs/fuckadblock/3.2.1/fuckadblock.min.js$domain=papalah.com +dayanzai.me##.stopban +||78dm.net.cn/acg_201*_980 +ynet.com###ynetG_B1 +||jsdelivr.net/gh/vip888vip/*960x80 +@@||cruisecenter.com.tw/data/ad/ +||52rd.com/Pic/Click/ +||bdlm*.hc360.com^ +zuoyebang.com##img[class^="bottomBanner_"] +123.sogou.com,qq.com,web.sogou.com##.cs_right_hw +368015.xyz##div[style="height:60px;width:100%;"] +21ic.com###IC2008Ad +||qiming360.com/mingJs/xmKu_ +||9831tb.com^ +||laod.cn/wp-content/uploads/*/ad- +||crodfnyk.xyz^ +elecfans.com###company-ad +lzacg.one#?#.sidebar .zib-widget:has(> .textwidget:only-child > a[target="blank"]) +||uerbgnkas.com^ +||kvkcei.xyz^ +xtuan.com###foot_zhaobiao_bar +fx112.com##div[class*="floatap"] +||12img.com/ad/ +huanqiu.com#%#//scriptlet('set-constant', 'AD_SURVEY_Add_AdPos', 'noopFunc') +||mggzah.icu^ +||kkeojk.xyz^ +||56ads.com/js/main.js +||chinairn.com/Template/*/upload/ad +||script-bd.baixing.net^ +bh.sb##.large +iqilu.com##.kejie_ad +||qetlwsy.top^ +||bbyfsfo.cn^ +yicai.com##.gg_preview +klyingshi.net##.row > div.url-card:has(> div.url-body span.badge-danger) +||static.meijiacun.com^ +||gg163.net/js/163bbsad.js +tieba.baidu.com##.client_ad_topBanner + .statistics_img_view + li[class] +||sinajs.cn/t6/home/js/pl/guide/adforfqy/ +foodmate.net,ksbbs.com,kshot.com,oschina.net##.banner_box +finance.ettoday.net##.all_news_text1 +||csdn.net/msg.popup.js +fun48.com##.margin-big-bottom +||wangjing.cn*/upload/com/ +pixiv.net##.multi-ads-area +so.com##.res-mediav +||xiumb8.com/js/lm_ +||jgvkxp.xyz^ +||ofweek.com/pop/ad/ +aiyuke.com##.GGad +||ceryt111.fun^ +@@||gameflier.com/ad/ +@@||google.rs/translate_$media,third-party,xmlhttprequest +py91.net##.widget_textads +affyun.com##.text ~ a +baidu.com###fengchaoad +bcbay.com,creaders.net##.syzx +||7xdown.com/bz/ +||yiihuu.com/assets/common/yh/js/yh.ad. +qq.com###AdRight-Article-QQ +||mvcat.com/api/wx/follow.js +||poster.weather.com.cn^ +||beijing-air.com/images/a/j +dianping.com##.bottom-contrainer +ping.chinaz.com##.sth > .col-red +yzzk.com##.promo +||ssp.zf313.com^ +||drummers.cn^ +||zx.docin.com^ +||iwursero.top^ +imeee.cn##.DA336 +||json.cn/d/dt/ +eprice.com.tw##.ad-970x250 +||bing005.shop^ +@@||shine.cn/showadcode2.asp?posid=68& +||oneinstack.com/images/oneinstack- +||apiimg.com/huaer/xiahe. +||maxthonimg.com/v6/festival/ +||gedafdshb7.fun^ +||games.ifeng.com^$subdocument +||zylizz.xyz^ +||jp1357.com/addon/ +||kxmusic.cn/tc/js/script.js +||awcdst.icu^ +hcomic.net##div[class^="horizontalBanner_"] +aimazu.com###gotoTop +||crs.baidu.com^ +||dragon-guide.net/pic001/pic/shangcheng/ +||rouman5.com/cps/*.gif +90oo.com###right > div[style^="height:60px; width:750px;"] +ifeng.com##.ad1000_2 +||cwssfg632.shop^ +4gamers.com.tw##.vue-portal-target > div[style="min-height: auto;"] +||yvbjctqs.xyz^ +oschina.net##.recruitment +wnacg.com#@#.pcd_ad +||gzzza.com/html/ +||hjjshv.xyz^ +v.qq.com##.module-image[style*="width:1100px;"] +||mcighme.icu^ +ettoday.net#@#.iframe-ad +edrawsoft.cn##.activity-banner +21yq.com##div[style^="width:980px;height:80px;"] +||monnsutogatya.com/himg/monst/ +||mvevgi.xyz^ +||gg.blueidea.com^ +hao123.com##.hao123-search > .notice-fixed +||u78s.top^ +||iaosua.com^ +||sodhef.com^ +@@||doubleclick.net^$xmlhttprequest,domain=yyets.click +jingangjing.com##.free-popup +@@||123dhang.com/supo/advertisement.js +||news.ssp.qq.com/app +zhujiwiki.com##.ssrtop +||yy8090.vip/js/abc/ +||dffy.com/static/popUp. +lalulalu.com###overture-side-bar-ads +dacota.tw#?#section[class*="widget_text"] > .widget-wrap > .textwidget > div[class^="Zi_ad"]:upward(3) +||drpsjp.xyz^ +||183yf.cn/img/nz.png +||jp2468.com/api/vip/vipshow.php +||plnbnd.xyz^ +||rupmlh.cn^ +@@||jsdelivr.net/gh/bde4admin/*/prebid-ads.js$domain=bde4.icu +csdn.net##.toolbar-advert +x9av1.com,jsav2.com##.row > div.colVideoList:not(:has(> div.video-elem > a[href^="/video"])) +||irqaci.xyz^ +rjno1.com#@#main > div[class^="qnb"] +ntm.gov.tw#@#.ad-left +csdn.net,itboth.com,iteye.com,itkeyword.com###ad_pop +baidu.com##.ggbtm-vip-close +||dytt.com^*yb.js +||uessnah.icu^ +||qncye.com/ads/ +||aiyidu.com/aiyidu/adver/ +mafengwo.cn###float-pannel-gloable +||zoom.zshu.net^ +w3cschool.cn##.abox-item +||79181531227.com^ +qyw0.com##.s11 +||qedgcxi.cn^ +@@_ads_cpc_$domain=90lover.cn +||4gamers.com.tw/ads- +@@||adobedtm.com^$script,domain=sonystyle.com.cn +cangjige.net##.wp[style="height:36px;padding-top:15px;"] +chinanews.com,chinanews.com.cn###dingtong +||2005net.net^$third-party +#%#var AG_each = function(selector, fn) { if (!document.querySelectorAll) return; var elements = document.querySelectorAll(selector); for (var i = 0; i < elements.length; i++) { fn(elements[i]); }; }; +||xhsdwjes.xyz^ +||1dcbzuv.com^ +||qbhjokk.xyz^ +ifeng.com###optimusPrimeContentId_left +||mydrivers.com/m/images/v1/kkjapp_down.gif +xdf.cn##.middleadv +||bxlmrl.xyz^ +2345.com##.mzdh_bottom +||gdd08.com^ +||lzep.cn/ep/sda/ +||httpwwwdcom.com/js/aaa/ +||360.cn/index/showjokes?callback= +1x6666.com,365kl.net,3qled.com,52ch.net,bbs.qbaobei.com,chinafix.com,cnyw.net,cqsq.com,gz0668.com,hcbbs.com,i5qs.com,mahoupao.com,mcncc.com,qilindao.com,susongbbs.com,xsool.com,xydai.cn###diynavtop +||fyexyd.icu^ +||bt121.net/ats/ +ldqk.xyz,masuit.com#?#.panel:-abp-has(>.panel-body>a>img) +||3987.com/all_site/ +||yktj.yzz.cn^ +||gtimg.com/comic/pics/hv1/29/74/1631/106074674.jpg +||taoguba.com.cn/res/js/tgbgg/ +ifeng.com##.vAdImg +jishulink.com##.invite-code-dialog +jinbaodm.com##div[style^="position:fixed; top"] +||hahusa.top^ +||zol.com.cn/active/*guomei +||ilxdh.com/navig/2020-09-08/1599538164_1474.png +||static-cn.plista.com^ +||ejxo0.online^ +iqiyi.com##.qy20-h-carousel_con-gray a[href^="http"]:not([href*="iqiyi.com/"]) +||novipnoad.com/bd/ +jsphp.net##.widget_tuijian +||d1.1ppt.com^ +crx4.com,galacg.me,moneyweekly.com.tw###carousel-example-generic +bilibili.to###yytf +||b1.91jucai.com^ +159i.com#?#div:-abp-has(> img+a) +mcdulll.com,mcdulll.pixnet.net###box1989082 +||tmall.com^$popup,domain=eyusky.net|iqiyi.com +||dayujs.top^ +58.com#?#TR[logr]:-abp-has(> .t > .mt-p-tit > .jingpin) +||w3cschool.cn/index/*Advert +||o1.jyjyj.cn^ +||xs.houyi.baofeng.net^ +||hthvc.icu^ +||cbttnmo.xyz^ +kanman.com###\5f _acgn-virtual-coin__ +||bilibili.com/html/ads-index.js +||onalzlk.top^ +webkaka.com##td[id$="_SPONSOR"] +yahoo.com###crazyad_mask +ixigua.com##.banner-section +iqiyi.com##.video-ad_right +webjx.com###middleimg +ithome.com##.sb_list > .bx +ddzimu.com###popup +||mito03.top^ +||itc.cn/activity/activity_js/changyan_config_ +||mianwww.com/wp-content/uploads/2014/05/insigmaedu1.gif +||wanfumei.net^$third-party +health.tvbs.com.tw##.ed-hidden.ed-xl-block +||wuiqiq.xyz^ +hao123.cn##.llc +news.ebc.net.tw##.inline_text.has_marker +||wdcigo.xyz^ +douyu.com##.his-sign-cont +qinbing.cn##.logo_right +||ettoday.net/ad/*_action.js +hamivideo.hinet.net###overlays-ad +||ruian.com/img/y13/ +jdyou.com###popWrap +2yjw.com,fuliba2021.net,itdog.cn,zhujiceping.com##.orbui +skydy.top##.swiper-slide[style="width: 1170px;"] +cb.wpio.xyz##.tpc_content > span > span > a[target="_blank"][onmouseout] +baidu.com##.reader-pop-manager-view-containter +||ecmb.bdimg.com^ +gov.cn###ippad02 +||60.190.139.164^ +zrblog.net##a[href^="http://u.zrblog.net"] +||hentaicomic.*/data/game/*/wap.gif +@@||sozi.cn/images/ad/tj +3dmgame.com#?#.downl_list:-abp-has(style) +||44pd.com^*xds/ +||fzjbsvgz.icu^ +btyingshi.com##.aside > .card:last-child +@@||cgmodel.com/plugin/share/ +||lgidskil.top^ +csdn.net##.passport-login-mark +mcbbs.net###lsform + .y +firefoxchina.cn##.engine-jokes +@@||udp2p.com^$generichide +||yerhfnytky.top^ +52movieba.com,acglala.cc,awaker.cn,bimiacg4.net,bimiacg5.net,ccav1.com,cgown.com,cn163.net,comicat.org,cosersuki.org,dzbhdm.net,epinv.com,eroacg.com,galacg.me,gmgard.com,haochi123.com,hexieshe.cn,hexieshe.com,hexieshe.xyz,hggard.com,hmghmg.com,hmoe11.net,idanmu.ee,ifenpaidy.com,jitapu.com,jitashe.org,kelatv.com,kisssub.org,languang.co,llss.bz,mtrend.cn,mydrivers.com,mzh.ren,nxing.cn,oyksoft.com,souxue8.com,speedtest.cn,tingroom.com,touchgal.org,whsir.com,xxshe.info,xxshe.xyz##a[href*=".taobao.com"] +58b.tv#$#.playmar > .playl { visibility: hidden!important; } +6park.com,club.6parkbbs.com##.adv-6park +||baidu.com^*/getrelatedbusiness? +||jishulink.com/images/content/visitor-footer- +swoole.com##.swoole-resource +hqyman.cn##a[href="https://hqyman.cn/taobao/"] +||chenjiayu.cn/gg.js +||bceapp.com/jj/1716mid.js +19lou.com,ihome99.com##.ad-190x60 +||bzvhgbr.xyz^ +||shbxugs.cn^ +dl.pconline.com.cn##.dlTips +||cc.8181zx.com^ +2345.com###header-news +@@||sogou.com/adpub/cfg/sendmsg. +||jy04.shop^ +@@||jpush.cn^$domain=jiguang.cn +||tptoon.com/skin/js/tjtjkk. +||yuayku.xyz^ +||ssgg.chazidian.com^ +rjno1.com#%#(function(){const b=function(d){const a=Math.pow(10,d-1),b=Math.pow(10,d);return Math.floor(Math.random()*(b-a)+a)}(12);window.addEventListener("load",function(){window.google_image_requests=[],window.google_global_correlator=b,window._hmt=window._hmt||[],_hmt.id=b})})(); +gcxa.cn###edu_ad63 +||ze5.com^$third-party +||facebook.com/v2.6/plugins/video.$domain=storm.mg +ofweek.com###fixedADWrap +360kuai.com##.taskbar +@@||google.it/translate_$media,third-party,xmlhttprequest +aoshitang.com###msg_win +||imnks.com/ad2023/$image +world68.com##.zzs_ad +duba.com###ad-zongyi +porn5f.com###dprecommend +||ayxz.com/images/$script +58b.tv#?#.datal.main:has(> table div[id^="revive_zoneid_"]) +cw.com.tw#?#.adActive > div[class^="leaflet"]:has(> div[id^="div-gpt-ad"]) +||qingsedhh.com/images/gg.gif +||zca31.com^ +baidu.com###fengchao-dialog +||miningzhizhong.top^ +||fdtlfl.xyz^ +abmedia.io##a[href^="https://www.okx.com/"] +||xchina.*/ad/ +||i9klo.com^ +||eastmoney.com/banner/ +chexun.com##.attr-outside-ad +autohome.com.cn,sina.com.cn##div[class*="game"] +feebee.com.tw###fsa-srp-top-container +91rb99.com##.top +||tvgkatu.icu^ +||szaction.cc/public/1/assets/js/custom/tt. +10086.cn###bottomBigBanner +tbtdg.com##.reveal-modal-bg +10jqka.com.cn,hepan.com##.onead +@@||momovod.com/js/momo/adsbygoogle.js +toutiao.com#?#.has_action:-abp-has(> .icon_ad) +3g.qq.com###template_gdt_div1 +9uu.com##.gao-bg +iqiyi.com##.rm-header-ad +||mvbvvch.xyz^ +55188.com##a[href*="/gg-link."] +finance.sina.com.cn##.downLink +baidu.com,bdimg.com,tieba.com##.fengchao-wrap-feed +||dabajd.xyz^ +||ad-img.diyidan.net^ +||rapfdf.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###j_worldcup_info_banner +||tyodot.icu^ +yiche.com##.right-box > div[class^="ad"] +||chinaz.com/newshome/ +||bb1nn.com/js/i.js +||mycodes.net/js/*.js +||mrthav.xyz^ +||a.52wubi.com^ +aura.cn##.left-zc +||zhenbuka*/statics/js/toastr/jquery.toast.js +||ydhfvrug.xyz^ +||szbxw.cn^ +||zjplnz.xyz^ +silver.org.cn##div[class^="ads_"] +||elecfans.com/images/*/675x90. +||tgwfaz.icu^ +qciss.net##div[style^="border-style:solid;"][style*="border-width:2px;"][style*="width: 80%;"] +v.shensgo.com##brde[id][style*="height"] +educity.cn##.content_relate:nth-child(5) +||z1.o8h7d.cn^ +hjenglish.com###uzt-mask +ddooo.com##.gadat_list +||xiaoxiuapp.com^ +||hccoeutg.com^ +apiref.com,iodraw.com,matools.com###popAd +boo.tw##.blockUI +@@||camerabay.tv/ads/entry/camerabay/fullbk/bg.jpg +||akqipai.com/m/Tpl/v3/js/indexbottom.js +@@||anime1.me/ads.js +qq.com##.business-Article-QQ +||facai383.oss-cn-guangzhou.aliyuncs.com^ +||btyhnbmn289.shop^ +||gtimg.com/finance/js/st/p/news_ad_ +@@||s.tgfcer.com^$generichide +||vrosqolcg.com^ +||qhtdmlf.xyz^ +||av30.xyz/cs/ +||xayjbz.com/static/images/apc. +||jrutvnca.top^ +image.baidu.com###only-lady-sec +ltn.com.tw,ctwant.com,mobile01.com##div[id^="_popIn_recommend"] +3h3.com,downxia.com##.gaosu_down_div +||oryhic.xyz^ +||shipostrich.com^ +||pcgames.com.cn/g/ +||img.ferlie.net^ +psnine.com##center[style="overflow:hidden;"] > a > img +ifeng.com##div[class="adbox02"] +@@/jquery/*$domain=sobooks.cc +vpser.net##.ab_cpr +sea-group.org###text-7 +||jdrnpei.xyz^ +||mm.jbzj.com^ +||whrwlxg.icu^ +||nzhzzd.xyz^ +||img1.hblds.com^ +||dm.sanwen.net^ +cnr.cn###gtop00 +liaocao.tv##[onclick] +hk.xfastest.com##.adv-side-wrap +weiyun001.com##.g-side-r > a[onclick^="onLogs"] +||boce.com/statics/img/img27b.png +html-js.com##.ad-blank +vjmedia.com.hk###text-33 +16sucai.com,bbxxbbs.net##table[width="960"] +||mweriox.top^ +sohu.com##.godR +||tvpqrydt.xyz^ +||kkacrgx.icu^ +||51ztzj.com/res/web/img/download_sign +||fptbdr.xyz^ +||tnvnnn.xyz^ +pixabay.com##div[class*="sponsoredWithResults"] +duba.com,newduba.cn###J_FloorWrap +||stats.chinaz.com/tool/ +ifeng.com##.blockR.ipad_none:nth-last-child(2) +2cto.com##div[style^="float:left;width:300px;"] +||kxxfdwt.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.opr-xmas-game-container +||firefoxchina.cn^*_topbanner +jijidown.com##div[style="position: fixed;right: 0;bottom: 0;"] +||xzxforn.xyz^ +||dwstatic.com^*/sidebar.js +||uyohyy.xyz^ +8727ck.cc,8726ck.cc,8724ck.cc##.stui-vodlist > li:has(> div.stui-vodlist__box > a[href][target="_blank"]) +||oyotqp.icu^ +||kfpicimage.xyz^ +||sspai.com/attachment/sponsor/ +yam.com##.axdBox +||guokr.com/apis/flowingboard/item/guokrapp_ +||dshjbn.xyz^ +||88p2p.com^$popup +||cmiega.top^ +eeyy.cc##.ads650 +laowang.vip###frameYl5IOf +||wkitere.top^ +china.cn###pic_banner +||wdff.buzz/hengf. +cw.com.tw##.ad--video +||doujs06.xyz^ +||u33011.com^ +||5vdd.com/mobile.jpg +||3.5646.cn^ +sogou.com##.js-ad-item +c114.com.cn###barrage_ad +||188soft.com/js/PCsoftDetailAD.js +||bmp.ovh/imgs/2020/09/3e4e11ecc19c4bd6.png +||89hdn.cn^ +douyu.com##.imageItem-wrap[style="width: 1200px; height: 120px;"] +||360kan.com/v1/block?blockid=544& +maxfoodfun.com###links > div[id] > div.hslice:not(#search):not(#qrcode):not(#category):not([id*="-article"]):not(#latest-comment) +esnai.com##table[width="960"] > tbody > tr > td[height="90"] +byxx.com##.cataAD +78dm.net##div[class^="couple-"] +52pk.com##.down_adv +baidu.com###asideLeft +baidu.com##.result-op[tpl="b2b_prod"] > div > .c-border +ifenpaidy.com##.btn-copy + .btn +||baidu.com/newspage/api/getimagelandafd? +||ithome.com/file/js/money/ +||jdbeht.xyz^ +yfsp.tv,aiyifan.tv,iyf.tv#$#.bg-overlayer { pointer-events: unset !important; } +gzmama.com###zone_left_couplet +17house.com##.suiping +||shbzkkj.cn^ +||antpedia.com/viewnewsrightboxtop. +baidu.com##.home-app-promotion +||weike87.com/images/*0 +1kkk.com,dm5.com,dm5.hk##.adform_1 +||lianyexiuchang.cc/js/ +chinanews.com###dt_advert +||1s8pj.cn^$third-party +w3school.com.cn###fttg +qingwk.com##.l-red-packet +hqew.com##.js-ad-tips +yahoo.com###hp-ad-right +||jcodecraeer.com/plus/fuckblok. +getrelax.cc#$#iframe[src^="https://syndication.exosrv.com/"] { display: none!important; } +||guyhok.xyz^ +ysgc.fun,ysgc.tv##.swiper-slide > a[target="_blank"] +wenxuecity.com##.otherposts > ul > li > a[target="_blank"] +dngz.net##.listright > a[target="_blank"] > img +||2sfpy.icu^ +today.line.me##div[id^="ad-module-"] +||alicdn.com/img/ibank/*_775661713. +taobao.com###J_shopkeeper +4c.cn##div[id^="mid_ad"] +aishoujizy.com##a[target="_blank"] > img[src^="/upload/1/"] +19lou.com##.ad-980x40 +||rvnaxwqe.icu^ +sohu.com##.adv_960 +baidu.com##.wgt-ads +yahoo.com#?#.js-stream-content:-abp-has(div:-abp-contains(雅虎搜尋)) +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##li[data-daid] +||agogo.tv/images//uploads/ad/ +qq.com##div[class^=ad-type-] +tuliu.com###red-envelope +||bianshengruanjian.com/tu/%E6%89%93%E8%B5%8F. +||mobile.sina.cn/public/files/image/600x150_ +||26gg.bnq86.com^$third-party +csai.cn##a[class^="gg"] +sina.com.cn##A[href*="/comfinanceweb."] +||alicdn.com/img/ibank/*_755908572. +||igo99.cn/js/freetest.js +phpvar.com##.qrcode-swiper-container +h-ciyuan.com#?#.gridview-featured-posts-area > .widget_media_image:has(> .gridview-box-inside > .wp-block-image > figure > a[target="_blank"]) +||6v4.cn^$third-party +sysin.org##img[src^="/img/promotion"] +||autoimg.cn/bi/mda/ahas_body. +muchong.com##.xmc_green + a[href^="creditshow."] +||xonlines.com/upload/gg/ +||downhot.com/Res/js/arc.js +ccoo.cn##.n_adbox +||6park.com/parks/$script +chajia123.com###dy2 +||tv699.com/Templet699/js/ +||cwerilxf.top^ +sina.com.cn##DIV[class^="side-btns-jifen"] +gamer.com.tw##.a-mercy-d:not([href*=".gamer."]) +10086.cn##.advertisingOther_img +www.17173.com##.pn-tg +||sx.fakjkwp.cn^ +||juresda.top^ +cnyes.com#?#article > div:-abp-has(>div[id^="div-gpt-ad"]) +||kjacgk.xyz^ +so.com##div[id^="guang-"] +||cnki.com.cn/cnki/js/adimgdetail.js +||dkvakldvnsv.com^ +||sweriob.top^ +58b.tv#$#.playmar > .playr { visibility: hidden!important; } +||cdntxt.com/t2/ +@@||a.alimama.cn/tkapi$domain=ieeee.com +jianshu.com###web-note-ad-1 +mobile01.com##.u-ad-image +||weike87.com/images/*1 +||iwmigu.xyz^ +||4oz4n.icu^ +163.com###bobo +szxx.com.cn###A2 +chinanews.com.cn##.wap_adv +||www.china.com.cn/node_$domain=news.china.com.cn +||jmesxbe.icu^ +||autohome.com.cn/vr/*?pvareaid= +jisilu.cn##div[style^="height:60px; width:960px;"] +||kwongwah.com.my/wp-content/plugins/dibs_engine/js/dibs_popup.js +hackhw.com##.entry-banner +cupfox.app#?##outer-container > .model:has(> .model-content > a[href*=".jd.com"]) +@@||icbc.com.cn/Portal_Resources/Common/AdRes/ +423down.com##.menu > .menu-item:nth-child(n+6) +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > .result ~ div:not([class]):not([style]) +||guifudi.com^ +||8zkt7.xyz^ +disp.cc##.ads_bot_block +||hackhome.com/js/zt.js +52ch.net##.chn_pb +fx110.com,fx110.uk##div[id^="ghz"] +||cjn.cn^*/ad/ +||ghgasdb365.shop^ +ksbbs.com###main > div[style^="height:65px"] +so.com###js-mh-news-sdk-sad +@@||guancha.cn/ad/m_ +||wmnraj.icu^ +||stat.xgo.com.cn^ +||ijinshan.com/images/gk/game +||xvorpqz.cn^ +||ljnrjt.xyz^ +||emdcadvertise.eastmoney.com^ +163.com##.bobo-area +poedb.tw###head_toolbar + .text-center +||cmdcdacq.xyz^ +||evscnfj.cn^ +cnfol.com##.wid325AdBox +||ersjnpwf837.shop^ +5588.tv##.ringhttu +||putonghua520.com/skins/10ym/baicai.gif +||xoimg.com^$domain=18board.com|18p2p.com +||m1.kuanff.com^ +@@||mens1069.com^$generichide +moerats.com##div[style="box-shadow: 1px 1px 5px 5px rgba(17, 150, 196, 0.35);border-radius: 15px;"] +||1615vip.com^*.jsonp +||xlam.cn^ +||ldb.cc/js/top.js +516qq.cn##.w1100 +tw.nextapple.com##[id^="lrec"] +||ghabnq.xyz^ +fznews.com.cn##.kuang100_right +||dotuij.top^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_left > [style*="important"] +||yhutou.xyz^ +porn5f.com###main_video_block > .m-t-5.pull-right +||zhimg.com/80/v2-c991beef44875fa5971c6bbfc6dc0ad2. +qq.com##.tb12-activity +||hhffks967.shop^ +||bd9wv.icu^ +cnfol.com##.FixedRight +ltn.com.tw##.list > li[id^="newest-native"] +||panmeme.com^*/common.js +||js.yanyue.net^ +||koyi.pub/wp-content/plugins/dh-anti-adblocker/ +||8jkx.com^ +||eastmoney.com/js/*Share.js +douyu.com###js-live-room-recommend +guokr.com##.side-adv +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(div[class*="head-info_"]>img[src^="data"]) +makaidong.com###bdcs +@@||wwads.cn/js/makemoney.js$domain=baomidou.com|nodejs.cn +plus28.com##div[style="width:960px;margin: auto;"] +jingyan.baidu.com##.activity-entrance +||zhy333.com^$third-party +@@||hkjc.com/bannerad/ +||qxvp6.site^ +||kreisis.top^ +||fq07.shop^ +||ytoeyxz.icu^ +gucheng.com##.fixed_img +v.qq.com##.slider_item[href^="http"]:not([href*=".qq."]) +baidu.com##.ad-block-1 +||ye120.com/zool.js +||301848.com^ +||m28458.top^ +||tonghuacun.com/js/uc.js +th7.cn###PcPoPmarket +||mongoosejs.net/docs/images/lagoujika.jpeg +@@||exoclick.com/iframe.php?*=2596969&$domain=jav777.cc|jav777.xyz +||775mz.com/js/jquery.js +||tenmax.io^$third-party +wdzj.com###ggao-article-bottom +techbang.com##.ad_grey_floor +||ezprice.com.tw/ezysm/ +pchome.net###rightbar +||shewang.net/images/*/banner +nownews.com###ads-footer-bar +||xvideo.cc/etology2.js +||zuowen.hydcd.com^ +||58file.com/down/xyk. +||riju.com/pr/$domain=jpfans.com|jpseek.com +||tuicool.com/images/upload/aliyun +mop.com##.post-content[href*=".taobao.com"] +@@||cnzz.com/z_stat.php$domain=newsite.sherpa.com.cn +||kanjuwo.com/js/6 +iqshv.com#?#.post-list-item:-abp-has(.thumb-link[href^="http"]:not([href*=".iqshv."])) +_btbttme/fox/img/QT_ +||chinaz.com/section/ +qq.com##.dongfengad +hao.360.com###sidebar +gamme.com.tw##.adread +||ylkdbbvy.xyz^ +||zq.lansedir.com^ +||hello-jm.com/foot.js +||*.$image,redirect=1x1-transparent.gif,third-party,domain=rmdown.com +||linecg.com/uploads/banner/ +||168gamer.*.php?mod=js +||mail.pchome.com.tw/img/classifieds/300120.gif +||ga1.3dmgame.com^ +||2d4f.com/love/ +||kvhtsvy.xyz^ +||hvlitr.xyz^ +10jqka.com.cn##.top-bar-fl > .top-hot +||qouvxliy.top^ +||iuytfvhl.top^ +nick18.com,niko18.com##.list_ads +||uu8811uu.com^ +||jianpian.vip^$third-party +ilvruan.com##.n2-section-smartslider +sina.com.tw###cboxOverlay +||wbiao.cn/common/adapi/ +||m1.81312.com^ +||gblxtlo.xyz^ +subhd.com##.container > div[style="margin:0 auto;"]:not([class]):not([id]) +xmfish.com##.advert-entry-list +||knifdlad.top^ +||retinaesprent.com^ +cngold.org##.ag_fwindow_ywp +eastday.com##a[href*=".uugtv.com"] +flyzy2005.com##.widget_kratos_ad +||m7i1k.fun^ +||imgs.cc/images/ad_ +iyf.tv##vg-player.ng-star-inserted > vg-pause-ads + div.caption.show > .inner +||uvekyvs.icu^ +csai.cn##.keifu +||iapolo.com/myjs/ +2345.com##.top-lvy +||tcfgtd.xyz^ +yodu.org#$#body[style] { overflow: auto !important; } +talkfx.co###frameff1Hu9_left +||qsyliey.top^ +||chinacloudsites.cn/api/promotion? +://m.*.pw/*.js?ssid=_ +||sogou.com/wap_ask_service? +||eastday.com/gg_channel.html +||baidu1.codejie.net^ +9tour.cn##a[href^="http://union.zhuna.cn/"] +kxmusic.cn,kxmusic.top##a[href*="smsf8.com"] +||sqevnrb.com^ +||moegirl.org.cn/insight/MoegirlInsight. +||kmf.com/da/do +win7w.com###xldz +||aourgk.xyz^ +||1mxabnt.com^ +||douyucdn.cn/dyfelocal/act/*/ad.png +||c1d8i3p6.com^ +||iy.com.cn^$third-party +060s.com###header4 +||gold.szonline.net^ +timedg.com##.crossAdvertise +bbs.liyuans.com##div[class="panel panel-infot"] > a[href^="https://www."] > img[height="100%"][width="100%"] +||fekpcd.icu^ +||qeuckn.icu^ +||yliffnsc.xyz^ +||ixstng.cn^ +||ejieban.com^ +fuyang.net##.eis_fbox_260:nth-child(n+3) +||gewqashbwq.fun^ +15w.com###rec +||dajiahao10.top^ +||sogoucdn.com/nstatic/js/tmallskin_ +elecfans.com###diy_company +bella.tw##.hide-mobile[style] +||eewrutw.top^ +||kaixin001.com.cn/js/cpm- +||cngoldres.com/advservice/ +||pcauto.com.cn/zt/halfprice/ +editcode.net##.fwinmask +||qwerioy.top^ +bilibili.com###slide_ad + .ad-report +||huuocxu.icu^ +||ifengimg.com^*/100-100- +tw116.com###t365 +159i.com###top > div[class]:first-child +||iwerilxo.top^ +||4btbtt.com/slade.js +esu.moe,esu.wiki##div[style*="position: relative; max-height: 400px;"] +||ali213.net/js/common/zpro/zprotxtpicurl.js +zuowen.com##.dialogP +hao123.com##.top-test +||s.so.360.cn^ +||rfidworld.com.cn/js/RFID.js +||zzc.cn/b1/live_b_ +||vyriglq.cn^ +mabiji.com##.celan +iqiyi.com##.banner980 +firefox.com.cn,firefoxchina.cn###promote-top-list +discuss.com.hk###gamepage_banner +portablesoft.org##.downcenter +||dun8qk8.lkmxqq.com^ +||cdmyeg.xyz^ +jijidown.com##div[style="height: 462px;"] +bnext.com.tw##div[id^="sponsor-"] +||kdeh.cn^ +||xitong8.com/theme/default/images/725x90.gif +||hahamx.cn/images/float-ad/ +||wm.mipcdn.com^ +||galaxymedia.xyz/app/images/banner.gif +||sogoucdn.com/dhfe/ +waerfa.com##section > div.content > p > a[href*="taobao.com/coupon/"] > img +||hxqu.com^$third-party +hao123.com###top-anim +||zkfojr.xyz^ +||stnew.xyz^ +||58.com/show/ads? +||bdstatic.com^*/js/m.js +||a.hbf23.cn^ +v.youku.com##.laifeng +||fxsc6.net/js/ +orsoon.com###new-actentry +||nkjkvn.xyz^ +5icool.org##.ads300_show +||jeepyy.com^$third-party +||bowvses.icu^ +||aknkvallbfml.com^ +||osyliek.top^ +||judthih.cn^ +||xrmfjzqo.xyz^ +||eng24.com/js_new/copyright_float. +||hewrutu.top^ +||aixuntupian.oss-cn-hongkong.aliyuncs.com^ +||lvse.com/9 +||90oo.com/tp/188jj.gif +aipai.com##.video_gg +||dhukul.com^ +||rc.ie13.com^ +||5173.com/__tra.gif? +||78dm.net/acg_201*_1680 +||ifengimg.com/a/*_w300_h250. +jianshu.com##.aside > div[aria-label="3rd-ad"] + div:last-child +6665.com###fgdiy09 +||jhlnlt.xyz^ +so.com##.e_idea_wenda_detail_spread +360kuai.com###content_top_gg +@@/prebid-js-$domain=mytvsuper.com|tvb.com|tvbs.com.tw +||tgb1l.icu^ +aiyingshi.tv###ADmask +||yxad.com/baidu/ +||pconline.com.cn/intf/hot_ +myhack58.com##.adv32 +||upload.cc^$domain=99re.com +acgking.com,dbtmn.com##.asst +huya.com#?#.item-pic:-abp-has(>.img-tips) +||ktzhk.com/file/adv/ +||nfptyfk.xyz^ +||czpnpjrg.xyz^ +v.163.com###v_shapeLeft_divId +@@||renfei.net^$generichide +@@||dlkoo.cc/down/Copydown1 +||a.baidinet.com^ +||qhimg.com/static/5dcd236fc857be9c,5b391c33a0748022.js +subaibai.com###note +qq.com##.father-ad +||xn--sssy7vrppusjyv0a.com^ +||zol-img.com.cn/detail/js/module/app-download-float/script.js +chinatp.com.cn###FloatRb +macdaxue.com##.content > div.asb +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.dialogJ.umoney-promotion-dialog +power.baidu.com,zhidao.baidu.com##.wgt-clew[data-type="goods"] +||18comic.vip/templates/frontend/airav/js/92_81c7.js +_300_250_ +||sina.cn/cm/sinaads_ +m.kuaidi100.com##.adsbygoogle + a +||bzhanyy.com^*.gif +js0573.com##.gg_bnr +||21.zhaozongjie.com^ +||zc173.com/173fee/ +||kukuplay.com/upload/*.swf +||ggtp-1255424916.cos.ap-chengdu.myqcloud.com^ +coolaler.com###hd +news.china.com.cn##.Wrapper > div[style] +weibo.com###pl_common_ali +_click*(com? +||ksrgsc.xyz^ +||pqzjki.cn^ +||jia.com/js/common/jia-common.js +||caoav.net/img/*.js +||tahznx.xyz^ +@@||jandan.net^$generichide +123pan.com##.advBanner +th-sjy.com##.banner-post +||ac*.faxingchina.com^ +||baidu.com/WerbungAjax/getTonglan? +||oodcd.cn/pan/config/history. +xiaolz.cn###zzbuluoled_sx +dxqck.com##.myadswiper +lenovo.com.cn##.hotAd +segmentfault.com#?##question-wrap > .row > .col-xl-auto:has(> #first-ad:first-child + #gridAd + #second-ad:last-child) +msn.cn##cs-native-ad-card +||faaqgje.icu^ +||bjhhbox.xyz^ +chinatimes.com##.l_ad +||adp.cnool.net^ +||gtimg.com/www/mobi/js/app-bar- +||xrllybr.xyz^ +nivod9.tv,nivod8.tv,nivod7.tv##.nav-ads +||muresdx.top^ +||ip138.com/banner/ +||bdstatic.com/tb/cms/com/mis/spreadad/dasense_iframe_api.js +||xrrxodz.xyz^ +||baijs08.shop^ +||btmao.cc/Public/yd/ +||zzsky.com/images/a_d_ +juksy.com##.ad__wrap +qunar.com##.list_promotion_bar +sasadown.cn###float_mask +llysc.cn###fbi-top-fixed-ad +aotu43.com##center > a[rel="nofollow"] > .king +159i.com##a[href^="//159i.com/tz/"] +gameflier.com#@#.adbanner +ifeng.com##.ad_09 +||tui.cnzz.net^$third-party +d1net.com##div[style="width:1000px;height:90px;margin:15px auto 15px auto;"] +164580.com##table[width="950"] > tbody > tr > td[width="105"] +mmbang.com##.footer_adver-warp +||ali213.net/images/bg_lt.jpg +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-health-poplist-wrapper +||zhiyoo.com/mplus/images/banner.jpg +||admaimai.com/inc/adv +||qusfybj.cn^ +@@||hoy.tv/wp-content/themes/vodi-child/videojs-event-tracking.js +||470kk.com/js/config.js +m.tvsou.com##.story_ad_android +wenxuecity.com##label[style*="darkgrey"] +||sykzow.xyz^ +||c78zf.xyz^ +@@||lesports.com/pc/??*/click_statistics/ +pengbocloud.com#@#.ad-bg +||wowfan.net/static/js/index. +pixnet.net###pixblogad +w3cschool.cn##.abox-content +baidu.com##.w-question-list[data-sign] +@@||shopeesz.com/shopee/*/modules/ads/ +||sv5nm.icu^ +||maoskk.com^ +china.com.cn##.Banner_left +@@||8891.com.tw/js/v3/blueKai.js +||25662zubo23739.com^ +||pics.wanlibo.com/js/pagemodulestat.js +||lulgef.icu^ +douyu.com##.double-festival-pop +||eastday.com/jscss/v4/js/lib/DSPload.js +||kgdyoh.icu^ +||sina.cn/interface/*_game_wap_home_mid_list_in. +||af29.com/banner/ +antpedia.com###luxury_car +||042.cn/adver/ +qqaiqin.com#@#.ad_468 +@@||video.520cc.cc/ad.php| +slashlook.com#$##mdAdsAnnouncement { display: none!important; } +||797sun.com/include/js/common_footer. +||baidu.com/game/asset/common/performance. +||img999.com^$popup,domain=tt1069.com +||ifengimg.com/a/*/yemei +qq.com##.mod_ad_main +||bbs.gmbbk.com^*.js +||wqcfg.cn^ +china.cn##.feeds +||ryhuzj.xyz^ +||sentcss.com/get/cors/spread/ +||sunofbeaches.com/ast/assistant/ad-item/ +||f8dy.tv/template/m1938/js/b +kaixindy.com###pege_ad1 +~dongman8.com##.pc_acmsd +mtrend.cn##.new_right > .morecontent_next +||sohu.com/adgtr/ +@@||rltdxt.com/files/h5/app.js +@@||4399sj.com^*/adview_pic_ +||d5.sina.com.cn^$object,script +enews.tw##.gadRightP +||kpbqlqv.cn^ +||cnpingpang.com/banner/ +qidian.com##.qd-game +||laosiji.com/static/js/lib/od_statistics.js +||mafengwo.cn/uva/i.gif? +||r3sub.com/images/ccc/ +@@||republicbharat.com/_app/immutable/assets/FloatAd.*.css$domain=republicbharat.com +e10000.cn###imgFloat +||mninoq.xyz^ +||nen.com.cn/eap/ +@@||mediav.com/js/feed_ts.js$domain=china.com|mini.yyrtv.com +sina.com.cn##.ad_01_right +||hackhw.com/ckjs/ +fanyi.baidu.com##.hot-link-middle +12306.cn##.fix-yh +@@||adoi.cn^$generichide +||bfgtfxd.com^ +xiaozhongjishu.com##.apd > a[target="_blank"] > img +cartoon18.com#?#.row:-abp-has(.badge:-abp-contains(ad)) +||kovvild.com^ +520cc.me#$##acornerinner1122 { position: absolute!important; left: -3000px!important; } +bilibili.com#$?#.container > div.feed-card:not(:has(> div > *)) { remove: true; } +||kggikf.icu^ +||dqlhuf.icu^ +||ppshk.com^*banner/ +||bjtgds.xyz^ +||3boys2girls.com/templates/default/2013/randlinks.js +||downmn.com^$popup,third-party +sm.cn##.ad-wolong-container +||20mao.com/js/sj. +bilibili.com#%#//scriptlet('json-prune', 'data.cm_info.ads') +secretmine.net##div[id^="secre-"] +csdn.net##.pulllog-box +||bzthxv.xyz^ +||sgsosi.xyz^ +||links.cn/mmshow +||xrdqdd.xyz^ +hao.360.com#?#.cube-list-recommend > div.cube-mod.cpc-card > div.cube-bd > div.cube-card > div.dh-cpcad-container:upward(div.cube-mod.cpc-card) +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv##a.focus_title_inner[href*=".ad_click"] +@@||tt1069.com/dfp. +lihkg.com#?#div[data-body-portal] > div[class^="_"] > div[class^="_"] > div[class^="_"] > div[class]:has(> div[class^="_"] ins.adsbygoogle) +subhd.com##div[style="position:fixed;bottom:20px;left:20px;"] +||bd.beimap.com^ +||itavcn.com/images/2013/ad_ +duonaolive.com##*:not(.carousel-item) > a[href][rel="nofollow"][onclick*="track"] > img +ruian.com##div[class^="gg_"] +||kdopag.xyz^ +||k1.wendahu.com^ +||vulitd.xyz^ +nicekkk.com,c4dm.live###custom_html-2 +||u22066.com^ +lenovo.com.cn##.BottomBar +qq.com,sogou.com##div[pbflag="coolsitefeed_ad"] +||chinesean.com^$third-party +github.com##a[href^="https://cloud.tencent.com/redirect."] > img +speedtest.cn##div[class^="speed-twoads"] +@@||yantuchina.com/gg/tmp/hong.gif +anny3805201314.pixnet.net##.header_web_to_app__container +||wenxue.weimeifan.net^ +||totheglory.im/pic/business/ +jsphp.net##.rightAdBtm-wrap +||zol-img.com.cn/ad/ +anhuinews.com###ewm +||88lm02.com^ +||klkk66.fun^ +||kiees.cn/jm.png +||xliuits.icu^ +bde4.icu#$#a[href*="/entry/register/?i_code="] { position: absolute !important; left: -3000px !important; } +||2hpg0.fun^ +||statis1.mama.cn^ +cw.com.tw##.bottombar +@@||pchomepay.com.tw/share/js/ +mobile01.com##.admicrobtn +||888bb555ww.com^ +||2021.dxsbb.com^ +ipcfun.com###sidebar > ul > li[style] +||9191.site/ad.js +guandianzhiku.com##.jconfirm-open +||avjj26.com/api/?d=pc&c=advert& +pptv.com###installApp +so.com###rt-interest-list +||cs.37see.com^$third-party +dan-teng.top##.nav +gamemei.com###ft_right_bottom +||chunmiaosh.com^ +||tfg2.com/images/upfile/AD/ +||swarku.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [id*="00"]:not(.result):not(.result-op) > tbody +||laowang81.com/getfuolist +@@||weiyun001.com/banner_ads.js +||dqzsteel.com/Website/Image/Index/ytgg.gif +czbj.js.cn#@#.adArea +tianshui.com.cn##td[height="420"] +sina.cn##.dfz_sd_news > a[href*=".10086.cn"] +hcbbs.com##a[href*="&adid="] +world.huanqiu.com##.img_flow.ad_all +6park.com##a[href*=".php?key="] +gd163.cn,itavcn.com,jmnews.com.cn###msg_win +||dftoutiao.com/dfpcitv/pcitv?type= +getrelax.cc#$#iframe[src^="//adserver.juicyads.com/"] { display: none!important; } +makepolo.com##div[class*="_ad"] +huaban.com,start.firefoxchina.cn##.extra +gamme.com.tw##[class^="sidead_"] +m4ff.com##.index_gg_wz +||wujinzy.com/images/ok.gif +||dada8828.com/js/aaa/ +w3cplus.com###block-block-49 +3czol.com##[class^="ban_"] +hcbbs.com###framerG6o99_left +||linkhelper.cn/mmshow +@@||koyi.pub/wp-content/plugins/fuzqing-ad-plus/assets/js/*.js +||yjyc-ask.com/res/ads/ +yfsp.tv,aiyifan.tv,iyf.tv#%#//scriptlet('remove-class', 'publicplay', '#main-player') +||bdimg.com/static/m-question-new/widget/ad-union- +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.advertise_right_index +||mhzftye.xyz^ +cntour2.com##.txtPicAd +3dmgame.com##.downl_list + script + div +tgbus.com###guide-download +||at885.icu^ +||gtimg.com/v/pics/hv1/88/83/1734/112774603.jpg +sd.ifeng.com##div[style="width:1000px; margin:10px auto 0 auto;"] +||0460.com/js/txtrec.js +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:not(body):-abp-has(>script[src*=".realsrv.com"]) +||fh21.com.cn/js/passport/createQuickMenu.js +tieba.baidu.com##.j_feed_li[fid="3665221"] +baidu.com##.wgt-ad-bmc +api.guailie.com#@#.google-ad +://dmhy.org^*.*?$image +php.cn##.zwwad +58.com##.zhiding-border +||mdipsumx.top^ +||0ghijkl.com^ +||azureedge.net/wp-content/uploads/*-AD0 +||mipujia.com^$third-party +||sa669.com^$popup +360.com###channel-game +@@||em.hk/wp-content/uploads/*_300_250. +||cls.cn/v2/web/ad? +||dsikpuv.icu^ +18183.com##.down_url +||alicdn.com/kf/H831ca346aac84070b2461d27b22a382ah.jpg +shoubozhan.com##style + div[id] +||smbx8.net^ +||app-g.39.net/NNN/ +poedb.tw#?#div[id]:-abp-contains(ad blocker) +||uwants.com^*_prod.html +||bimiacg*.net/template/JOELEO/asset/js/jquery.leeleo.js +maxthon.cn###festival-center-wrapper +h-ciyuan.com#%#//scriptlet('abort-current-inline-script', 'document.write', 'adbyunion') +iqiyi.com#%#(()=>{let e=!1;window.qyMesh=window.qyMesh||{},window.qyMesh=new Proxy(window.qyMesh,{get:function(a,t,d){return!e&&a?.preload?.Page_recommend_1?.response?.items&&(a.preload.Page_recommend_1.response.items.forEach((e=>{e.extData?.dataExtAd&&(e.extData.dataExtAd={}),e.video&&e.video.forEach((e=>{e.adverts&&(e.adverts=[]),e.data&&(e.data=e.data.filter((e=>!e.ad)))}))})),e=!0),Reflect.get(a,t,d)}})})(); +||jwursera.top^ +||rigengjihua.cn/banner/ +||vrnrpzy.xyz^ +ttshow.tw##div[id^="ad_index_"] +@@||g.alicdn.com/??*/criteo +xuite.net###side-special.special +nfstar.net##a[target="_blank"] > .img-responsive +||nanrenvip2021.com/old.html +||bianzhirensheng.com/img/banner.jpg +||888bbb555www.com^ +yibian.hopto.org###no-adblock-box +||tuxpfiok.icu^ +3d66.com##.King_Chance_LayerCont +tropica.cn##.bm.a_c1 +||cnbd1.appmobile.cn^ +3987.com##.c-gg +||bollenhurkle.com^ +huya.com###ab-item +mydrivers.com##.fbh_float +||good8866.com/js/*.js +onebox.mydown.com##.fcGg +tigtag.com##div[id^="Show300x"] +||2345.com/right/site/like/gul_ +||163.com/special/*_netease +||kydzfldt.xyz^ +||atmcdn.com/www/*.js +||u0079.com^ +||boubliv.top^ +||xiyouence.com^$popup,third-party +||en8848.com.cn/js/lianxi.js +@@||l.qq.com/lview?$domain=888.sports.qq.com +news.sohu.com,www.sohu.com#?#.list16 > ul > li:-abp-contains(广告) +||so.com/index/advertise +||ismuwcm.icu^ +tw.stock.yahoo.com###ysmcm +||chinanews.com/fileftp/2016/06/2016-06-13/U194P4T47D35171F967DT20160613093733.jpg +||69shuba.cx^*/shu.js +@@||zjjcxy.cn^*/ad.css?$stylesheet +||ntlzvrv.xyz^ +cnxz.cn##[class*="-ad"] +r3sub.com##div[class] > a[href^="show.php?id="][target="_blank"] > img +apk.tw#@#.ad300 +huanqiu.com#%#//scriptlet('set-constant', 'AD_SURVEY_Add_AdPos_Simple', 'noopFunc') +zhidiy.com###festival_float_bottom +vidhub1.cc,vidhub.me,vidhub.tv##.promolnk +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.play_list_panel +||kuaidi100.com/images/kuaidi/201612081*4 +||skfda5.com^ +||pconline.com.cn/jrzcz/*/intf +||sina.com.cn/other/src/app/SFANewVersionPop.js +hahamx.cn##.article.mt-20 +||18comic.*/media/albums/*?$media +||cai75tp.com^ +edutt.com##.foot-fixed +||hi.xiunm.cn^ +m.lelekan.com#$#body { padding-top: 0!important; } +@@||520click.com/ad.php$domain=520cc.cc +@@||cmbchina.com/ads/ +sinolub.com##div[id^="bs_"] +||inlishui.com/index.php?m=poster& +||1990tu.com/i/*.png +bbs.fobshanghai.com##.maintable > div:nth-child(7) +iqiyi.com##.dove_banner +||mop.com/newIndex/gg.html +kehuan.net.cn##.bread_728x90 +@@||edmondpoon.com^$generichide +||tdsahkln.xyz^ +qzone.qq.com###top_tips_seat +yahoo.com###my-adsHPSPON +military.china.com#$?#.slide_doubleimg > .baiBox { remove: true; } +smm.cn##.top_taishan_jinzhu +||hevctt.xyz^ +@@||jsdelivr.net/gh/bde4admin/*/prebid-ads.js$domain=52bdys.com +kuakao.com##.addTQBar +www.kafan.cn##.comeing_show_box[style="padding:10px;"] +||xinshijue6080.com/Runtime/js/ +fx168.com##.yjl_fx168_focus_TodayNews_jiasheng +||fanpingbi*.gaokao.com^ +||17173cdn.com/a/oms/oms-data. +netfly.fun##.player-box-main ~ [style^="display: flex; justify-content: space-between;"] +7k7k.com##.skin-link +||oyuwkbk.top^ +xcar.com.cn###eMeng +19lou.com,ihome99.com##.ad-980x90 +docsmall.com#@##google-ads +qq.com###image_ad +||uyuwkbt.top^ +||lianaiyx.com/d/js/cst/ +||ark.letv.com/t? +||alicdn.com^$domain=pianba.net +||m.20mao.com/*/TOP.JS +||f11.hackhome.com^ +enews.tw##.divADFrame +sogou.com##.tgad-title +||kikinote.net/iframe +||cdttxdqe.xyz^ +lvmama.com###centerDialog +baidu.com##.ec_im_container +||delivery-pc.wasu.cn/d/js/ +||b1.51scw.net^ +image.baidu.com###relecom54 +||btbuluo.com/uploads/*.gif +qingwk.com##.c-meiqia-Air +||chinaxinge.com/gif4/ +gameapps.hk#$#body { background-image: none !important; } +||gkeolwi.icu^ +||zbxtcwi.xyz^ +||video231.oss-cn-beijing.aliyuncs.com^ +5ykj.com##.ls-b-large-margin +cocomanga.com,ohmanhua.com,onemanhua.com#%#//scriptlet("prevent-setTimeout", "checkSiteNormalLoad") +steamstats.cn##.v-window +||138vps.com/image/ +yxlady.com##.game_wrap +aguitar.cn##img[width="470"][height="60"] +||100yangsheng.com/a1/a.js +||dianyingim.com/statics/recommend/ +||yxdown.com/cj/ +kekenet.com###weixinwz +||uyislot.top^ +dm5.com,dm5.hk##.cl970 +||ooejkd.xyz^ +||cloud.tencent.com/developer/api/common/getOneAds +||ithome.com/js/recommend.js +||vhzivz.xyz^ +gamefy.cn,sitv.com.cn##div[style="float:left; width:220px; padding-top:15px;"] +pjtime.com###Couplet_r_small +||maolihui.com/wp-content/themes/miaonew/images/adb +||sv2fo.icu^ +taobao.com##.rb-op +hjenglish.com##.module-recommend-course +||zsjjob.com/user/member/google.htm +news.cn2che.com##.banner01 +||wkzsmj.icu^ +||img.scupio.com$domain=briian.com +||tpzatf.xyz^ +@@/wp-content/themes/radio-hub/static/js/adpro.js$domain=tingfm.com +||huaxia.name^ +douyin.com#?##douyin-right-container > div[class] > div[class]:has(> ul[class] > li[class] > a[href][target="_blank"] + div:contains(广告)) +||macos.space^ +bilibili.com#$?#.van-slide > .item:has(.bypb-icon) { remove: true; } +24k99.com##.jy_24k99_suspended_ad +||aqburrae.xyz^ +@@||cdn.staticfile.org^$domain=00ksw.com|147xiaoshuo.com|91zww.com|biququ.info|bxwx.live|lzbao.net|shenzu.org|tianz.la +||jisusoft.com/ads/ +doyo.cn,lgmi.com,people.com.cn##div[id^="gg"] +||bdstatic.com^*/tam-ogel/ +susongbbs.com#@#.ad_banner +||fytpft.xyz^ +v.baidu.com,v.duba.com##div[id*="categoryPageColumn"] +||lihuasoft.net/images/ad_ +firefox.com.cn,firefoxchina.cn##.side-notice +||irulws.xyz^ +||jjvzqjh.xyz^ +qyw0.com##.iad +||wr.yiyouliao.com^ +jiyingw.vip##div[style="text-align:center"] > a > img +wdzzz.com##.zz_nr +||hqdoor.com/Web/ +||mogtrmjz.xyz^ +||qtyusiy.top^ +||yiqiv.com^$third-party +||3wk.cc/images/*.gif +||ltfpbp.xyz^ +itdog.cn##.div-tg +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###attention-game-wraper_dialog +@@||jav777.xyz/advertise/ +iqiyi.com##.headerLink01 +||7down.com/static/js/foot_ +timedg.com##.middleCrossAdvertise +muchong.com##.viewad +@@||api.ads.tvb.com^ +||cifnews.com/ajax/adrequest/ +uuu9.com##.c_box +||mil.news.sina.com.cn/iframe/109/2013/1015/hotpic.html +||guang1.zhakao.cn^ +||bp.blogspot.com^$domain=avmimi.com +||lbjekygz.icu^ +||esqzwq.xyz^ +||q2usj.icu^ +99a21.com##.wrap-head-spots +||ntdtv.com/assets/themes/ntd/js/article_ads.js +||ifengimg.com/1d124ac5e89463af/2013/0125/rdn_51023a5071d32.jpg +hao123.com###headJoke +||baidu.com/tb/zt/$subdocument,domain=tieba.baidu.com +cqmmgo.com##.ad-230x60 +||fq67.top^ +||88lm08.com^ +||abcqq36q.vip^ +||hjfile.cn/lib/uzhi/uzt. +||eapect.icu^ +bestopview.com###pubtextnone +||88lm04.com^ +image.baidu.com##.mod-promo +hao.360.cn##.icon-text-nav +jd.com###toolbar-qrcode +||pgcciax.icu^ +liaoningmovie.net#$#.c-ad-103 { height: 0 !important; } +houdao.com##a[style^="background:url"] +||alixixi.com/adsview/ +firefox.com.cn,firefoxchina.cn##.btn-email-show + p +maxthon.cn##.tmall-nav-v2 +||1684sm.com/js/1684/ +@@||ez3c.tw/js/adblockDetector.js +jable.tv##a[href="http://uus52.com/"] +th7.cn##.main > .mb5 +ruanyifeng.com#@?#.asset-content > p:-abp-contains(/二维|助教|0 元|报名费|原价/) + p + p > img +boylov.xyz,boylove.cc,boyloves.fun#?#:-abp-has(>.adsbyexoclick) +163.com##.a_topad +tgfcer.com##.ad_text +||ikstatic.cn^*.gif +18-comicfrieren.xyz,18comic.org,18comic.vip##.row[style="display: flex;flex-wrap: wrap;"] +||373nn.com/java/ +le.com###a_title_11628 +baidu.com##.c-container.ec-container +||zdcj.net/html/weibo +||fjxstt.xyz^ +i-part.com.tw##.googleAD160x600 +||zwdtvx.xyz^ +39.net##.banner_g +||nljrvdh.xyz^ +prts.wiki##.nomobile[style*="810px;height:240"] +cna.com.tw#$#.fb_fanpage_inpage > .other_news_box_2 { padding: 0 0px!important; margin: 26px 0!important; } +||zol.com/index.php?c=ZolShopIndex +youneed.win#%#//scriptlet("abort-on-property-read", "daau_app") +fastadmin.net##.text-center > .carousel +baidu.com##.ec_sma_im +||zuiacg.com/images/client/ +kkj.cn,mydrivers.com##div[style*="width: 1"][style*="height: 90px;"] +hb.qq.com##div[style*="width:960px; height:90px;"] +xmfish.com##.readCon_right +||liepin.com/event/jobadver/ +||zztongyun.com/static/js/sh.min.js +autohome.com.cn,jdzj.com,loveshang.com##.advbox +0594.com##div[id^="PCMSAD_"] +52bdys.com##center[style*="background"] +json.cn###shuangshi1Modal1 +52che.com##a[href^="http://count.52che.com/goto.html?"] +||88tm6.cc^ +image.so.com##.sc-similarcm +gamer.com.tw###flySalve +||wew.dushiwenxue.net^ +||mohvxrvd.xyz^ +||bflybplr.xyz^ +ipcfun.com###sidebar > ul > div[style] +sg169.com###couprigth +wacowla.com###home-top-narrow +kdslife.com###tao +||pvk2e.icu^ +||hdapp1003-a.akamaihd.net^ +v.youku.com##.youku-advertise-layer +baidu.com##.fc-ad-line +||roxwusak.icu^ +||eyyqwd.icu^ +||chromeba.net/wp-content/uploads/ +||avivid.likr.tw^$third-party +500.com##a[href*="sanyol.cn"] +||gucheng.com/2016/ggimg/ +||muzisoft.com/static/*_f.js +cgown.com##.banner-gg +@@||macauo2o.com/advertise/ +||c.tvsou.com^ +icourse163.org##.promotion-banner-wrapper +||rouman5.com/a2/*.gif +||exqvak.xyz^ +beanfun.com#@#.ad-slider +||q6gub.website^ +||douyucdn.cn/butterfly-java/*?width=242&height=489& +||aassy4.com/dm/ +||go2tutor.com/lifebox.asp +||ruanyifeng.com/9he/ +||ifengimg.com^*couplet$script +||autoimg.cn/Space/help/HelpRdTask.js +ganpapa.com###wrapper + div +||jpg1.oss-cn-beijing.aliyuncs.com^ +||bdstatic.com/tb/%E8%B4%B4%E5%90%A7- +baoliny.com,gasaq.com,hgitv.com,ifooday.cn,nen.com.cn##.guanggao +||ifeng.com/ssi-incs/ +||wfiles.hcomic.net/indexSwiper/*_*x*_*_TC_gif.gif +85wp.com###a3_diy2 +league-funny.com##.widgetBox.w300600 +thecatcity.com##.article-page__ad-block +pixnet.net##div[id*="-Ad-"] +silver.org.cn##.logo_dsaas +||4399.com/loadimg/loading.htm +||arhnuin.xyz^ +||chengdu.cn/acts/phoneqss/openCornerWin/ +||vxdpmxw.xyz^ +||iwwmaq.xyz^ +hjenglish.com###bottomBar +||hubpd.com/hubpd/images/dingtong +||yuedu.baidu.com/hybrid/wkrec/search? +enjoymore.fun##a[href*="urlto.pw"] +6789.com,hao.360.cn,hao.360.com###daily-hotwords +@@||mmaa99.xyz^$generichide +my0511.com##div[id^="topad"] +csgoob.com##.lg\:basis-1 +olevod.com##.pc-ads +pan.baidu.com##.decrease-active +chinatp.com.cn###FloatL_2 +yufile.com##.fb_r > a +||qujishu.com^ +||365kl.net/data/attachment/portal/ +torkitty.com,torrentkitty.app,torrentkitty.io,torrentkitty.lol,torrentkitty.net,torrentkitty.se,torrentkitty.tv##a[href*="/aff_"] +||bavkvoks.xyz^ +||51wady.com/me.php?id= +elecfans.com###AdHtmlRight +||eoucxzw.icu^ +@@||easylife.tw^$generichide +||dogfight360.com/Usbeam/*_ad/ +||wbnlwyj.xyz^ +423down.com##.entry > strong > p +wenxuecity.com##.sidebar > .banners +||bpxbzps.xyz^ +||alicdn.com/g/mm/afp-cdn/JS/ +liaoningmovie.net#$#.main_ad_head_wide { padding-top: 0 !important; } +||cnwnews.com/images/kgt +baofeng.com##.ad-bar-l +||dqlrfmwp.icu^ +bodu365.co##.top_show +||qiyeb.iaskbus.com^ +||ishisetianxia.com/tb.js +msn.cn##.game-advertise-container +||apis301.com^ +||uakxkb.icu^ +||sinaimg.cn/tech/zcapp2018/zcapp.js +||zyzo.cn^ +sina.com.cn##.ad_01_left +newsmth.net###ban_ner +cww.net.cn##.ggbar +||analyse.weather.com.cn^ +hao.lenovo.com.cn##.IconLink +guitarchina.com##img[width="420"][height="60"] +hao123.com###mingzhanresource +ip138.com###banana +jikexueyuan.com##.pewm3 +@@||bdimg.com/static/wapwenku/static/common/widget/share/share_ +||autoimg.cn/club/v1Content/images/young +||php.cn/hezuo/ +||ccsshn137.shop^ +||ysxs8.vip/js/bd_top.js +||mgidskix.top^ +hao123.com###puzzleBox +shmet.com##.spb-biz-cont +zhibo8.cc##.ad_box_250 +lihkg.com#?##rightPanel > div[class^="_"] > div[class^="_"] > div[class^="_"] > div[data-post-id] + div:not([data-post-id]) +51.com###game_advlayer +btime.com##.top-bar +52bug.cn###index-code +||jiawen88.com^$third-party +||baidu.com/resource/ads/ +||h1.wk2.com^ +||pics.xgo-img.com.cn^ +||taobao.com^$popup,domain=dlkoo.cc +gebi1.com##.offical-account +@@||acgbenzi.com//dist/images/top.png +||yingshizxw.com/js/tc/ +||lzvjtxe.xyz^ +||agufoi.xyz^ +||qixingquan.com/partner/ +||ahyyqq.xyz^ +||qbhzghb.xyz^ +||aotu43.com/templates/defboot/js/duilian.js +nmgnews.com.cn###div_ad4 +element-plus.org##.toc-content > div[style="margin-top:16px;"] +linovelib.com#$##byspider { display: none !important; } +||beephone.com.tw/ad-middle.php +||ctlacnh.icu^ +setn.com##.header-left-banner +880sy.com##.foot_gg +hao123.com###\5f _wgt_0_1 +xxxsm.vip##a[href="ilupian8.html"] +||zzzyk.com/js/ +smm.cn##.ad_front_container +||cos1999.top^ +||bdstatic.com/tb/img/icon_coo_operation_ +||tfcdn.jingmiuyyds.com^$all +||a1.99933.cn^ +||suning.com/getCpcDatas? +||kebohjhh.xyz^ +||geqshb22.fun^ +||yugqqqq.icu^ +0594.com,164580.com,2234.cn,appinn.com,appledaily.com.tw,china.com,chinamedevice.cn,cnodejs.org,danyang.com,doyouhike.net,e3zy.com,haokan5.com,hc360.com,helloavgirls.com,hkjunkcall.com,meiyouad.com,moe48.com,qq.com,sina.com,sogou.com,tongren.gov.cn,uc123.com,up01.cc,wokao.co,yeeyi.com##.ads +thinkphp.cn##.a6 +taian.com##.ggtp +36dm.club,36dm.com,acgsou.com##img[width="250"][height="250"] +ifeng.com##div[class^="middleAd"] +||hongyingbbs.com/jj/ +typecho.wiki##span[style="height: 17px;margin-left: 10px;background: #000;border: 1px solid #000;"] +morningpost.com.cn##div[style="margin:0;padding:0;width:648px;height:345px;overflow:hidden;background-color:#fff;"] +||sogou.com/img_logo/wp.js +xingkbjm.com##.d_textbanner +||market.178.com^ +freedidi.com##a[href*="/bittly.cc"] +douyu.com##.row.row-3 +||hibiquan.com/uploads/images/ +||qhimgs1.com/t029762bc960d5104ef.jpg +ce.cn,chenjiayu.cn,chinabidding.com.cn,eastmoney.com,ieforex.com,laod.cn,likefont.com,shangyexinzhi.com,zp365.com##.advert +aizhan.com###home_text_content +shuowan.com##.side_flash +baike.com###newsfix-on +||vrdfxioe.icu^ +||vsojfsoj.com^ +17173.com##.slide-list > li[style]:has(> a[href*="&ad_code="]) +duba.com##.plane_ads +nodeloc.com###wghtml +cmhello.com##.gpost-above +||arojgi.xyz^ +||niuza.com^$image,subdocument,third-party +163.com###layout-love +||1905.com/data/js/*.json?pwd=*?fr=videoplay_*&rand=$xmlhttprequest +i.qq.com##.linwei-txt +cm.k366.com##.rightpart td[width="300"][height="270"] +||jxwqu.cn^ +||lcxw.cn/i/*dl.js +||0j91h.cyou^ +lxapk.com,lzacg.one##.custom-html-widget +baidu.com##.index-module_drawerHand__aRhcO +||godlu.com^ +itavcn.com##.ad_wordxin +ddooo.com##.gs_list +||zhongyoo.com/shuju/ +zhihu.com##.MBannerAd +||hxbt.alading123.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###baiduweishiDown +789ys.com,fffdm.com##ul[style] +||newpgqnfapkamg.xyz^ +ks.js.cn##.height80 +||c1ecda.com^ +||iummqg.xyz^ +@@||pro.gooooal.com/ad/ad_2.js +||yxgqgq.xyz^ +51cto.com###ADsList +||szbhb.cn^ +||zjib0.icu^ +||bkzmtp.xyz^ +jisuxz.com##.dl_gaosu +mydrivers.com##.drivers_right > div[style="padding-top: 10px;"] +xclient.info###pop_business +||news.ssp.qq.com/ad +huawei.com#@#.ad-wrap:not(#google_ads_iframe_checktag) +51yfx.com###widget-gouwu +360kan.com##.js-playicon[href*="wan.360.cn/"] +hc360.com##a[href^="http://e.cn.miaozhen.com/"] +carrotchou.blog##.item > a[href^="http"]:not([href*=".carrotchou."]) +||shbxukj.cn^ +firefoxchina.cn##.bottom-0 +||diendh.xyz^ +boke112.com##.hotspot +||xtnwxhjv.xyz^ +||ithome.com.tw/media/serve? +||shbzkgs.cn^ +drv5.cn###xzq +||mipcdn.com^*/mip-*ad. +||zrtlvtsy.xyz^ +miercn.com##.hongbao +ccoo.cn,hackhome.com##.adn +@@||192.168.*.1/$generichide +||ol-img.com/channel/tuku/js/tukuPopup.js +||yaolan.com/ylk.mini.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###activity_countdown_head +caibaojian.com##a[data-href*="aliyun"] +||vansky.com/agdg/middle/ +~allthingsopen.org##a[href*=".com?aff="] +5imx.com##.ad4:first-child +||pojdnf.xyz^ +||js.tlt.cn/js/ +||kan98.com/images/*.gif +||po2qgo.xyz^ +90bifen.com##div[id^="ShowTopAds_"] +||amocyq.xyz^ +duba.com,iduba.com,newduba.cn##.left_slidebar_con +||bdstatic.com^*/QSURrcmRKV.js +||tv7box.com/Runtime/Js/ +@@||alicdn.com/t/img/TB1tWvVJFXXXXc_aXXXXXXXXXXX-40-26.png$domain=dlkoo.com +baidu.com##.top-ad-cont +||bytmfj.xyz^ +zuowen.com##.couplet_left +tieba.baidu.com##.j_post_list_item[data-info^="\7b \"un\":\"\\u8d34\\u5427\\u89e6\\u70b9\\u63a8\\u5e7f\""] +||hjfile.cn/site/js/pop_gift_plugin.js +||cifnews.com/yuguo3.0/live_dynamic/js/live_dynamic.js +zuoyebang.com##div[class*="moreDialog_"] +||apsgo.com/go/ +firefoxchina.cn##a[track_key="outside_right_bottom_adv"] +so.com##.map_business_con +||esqhsm.xyz^ +huya.com##.huya-ab +ifeng.com##div[class^="coupletBox"] +||alicdn.com/img/ibank/*_456388. +bodu365.co##.top_s_ad +@@||panjiachen.github.io^$generichide +||ymwjwe.xyz^ +7654.com##.dh2_bottom_wrap +duba.com###oneTip +||kanjuwo.com/js/8 +||gmbbk.com/bbsgmbbk/ +||abds.pingpingw.com^ +wanmeikk.me##a[href="http://qq.wanmeikk.me/index"] +||qyuwkby.top^ +||mianbao99.com/a/mianbao +||tieba.baidu.com/game/markConf? +||javhub.net/img/r18_banner1.jpg +||537images1.com^ +||ucjevgue.xyz^ +anjia365.com#@#.adv_bg +||hgidskiu.top^ +||xlypzbzs.xyz^ +||119xiazai.com^$subdocument +||iocoder.cn/alert/js/alert.js +77bike.com,ghoffice.com##.tac[style="border-top:1px dotted #ddd;line-height:1;"] +antdv.com##.main-menu-inner > div +||img.175532.com^ +bodu365.co##.side_g_seat +||163disk.com/static/images/51 +||jy010.shop^ +||nfydd.com/template/wap1/js/dd.js +@@||passiontimes.hk^$generichide +cna.com.tw##.ad_336_2 +ziqiangxuetang.com##a[href="/j/coding/"] +x3cn.com##div[style="margin:3px auto"] + table +||168img.com/a/ +@@/fingerprint.$domain=abchina.com +duba.com##.ad_leftTip_out +||eiuoom.xyz^ +eastmoney.com##.fund-pop +||zhizhizhizhi.oss-*.aliyuncs.com^ +||cklithuw.xyz^ +@@||cpro.baidustatic.com/cpro/ui/cm.js$domain=ali213.net|bigpixel.cn|tangdoucdn.com +wenku.baidu.com##.dialog-ad-hd +@@||firefox.com.cn/media/img/mozcn/spread/468-60- +gpsuu.com##div[style="margin:0 auto; padding-bottom:10px;width:960px;height:60px;"] +||xdnice.com/themes/xdnice/public/assets/images/xdnice.png +gamer.com.tw,pili.com.tw#@#.pub_300x250 +||uooyoo.com/hz/*str.js +guruma.net##.s_body_top +||zmk.pw/zfb.png +hupu.com##div[class*="ad240-200"] +gter.net##.bottom +||thcdy.co/baidu2/index_top.js +@@/hitCount.$script,domain=on.cc +||w18.9939.com^ +||cna5.cc/skins/js/ +woego.cn#@##topAds +||yclxrj.top^$third-party +fx168.com###ImgText_03 +||ccccc66kkkkk.com^ +||lutouwang.net/static/js/mv_ad +163.com###js-ep3rdRank +||rrjc.com/home/seo/ad/ +||dtjpihv.xyz^ +epwk.com##.collect-info-wrap +oschina.net##.index-ad-wrap +ghxi.com#$#.wpcom_ad_wrap { position: absolute !important; left: -3000px !important; } +||sznews.com/s?z= +laozuo.org##.s_ad125 +eastday.com##.yxxf-warpper +||sina.cn*/view? +||webkaka.com*/click/$image +@@||udndata.com/ndapp/ads/$~third-party +||pexels.com^*/sponsored-media/ +ys168.com##div[style="position: fixed; width: 200px; top: 330px; right: 20px; font-size: 9pt; text-align: left;"] +||utxmb.cn^ +hao.rising.cn##.activity-gt +pconline.com.cn##.artBtmForCustom +downkr.com##.banner-right +||bnhorn.xyz^ +||zhihu.com/node/Banner? +firefoxchina.cn##.sbottom-banner +@@||tansuo.cntv.cn^*/tansuo_Advertise.js +dajie.com##.register_layer +tropica.cn##.a_mu1 +soft-down.net##.box-top-xiazai +@@||ware.shop.jd.com^$genericblock,generichide +||zlyk.com/Runtime/Js/footer.js +||huresdu.top^ +911cha.com##DIV[style^="width:200px;overflow:visiable;position:fixed;"] +||toptoon03.xyz/app/tuijian.html +avple.tv##.jss13 +9game.cn##.guide-app-fix +jr31.xyz##a[href^="ad."] +||inte.sogoucdn.com^$domain=~index.sogou.com|~zhishu.sogou.com +||iecmca.xyz^ +||168gamesf.*/olist- +winandmac.com,nicekkk.com###custom_html-3 +||ttad125.com^ +c4dsky.com##a[href*="ibaotu.com"] +ruanyifeng.com#?#.asset-content > p:-abp-contains(/二维|助教|0 元|报名费|原价/) + p + p > img +ifeng.com##div[class^="ad_box"] +||nen.com.cn/service/js/beitou +||tjappzvz.xyz^ +||ganjistatic1.com^*/adm/ +||u22011.com^ +||yzldy.info^ +ddav.org###adv-2 +||yuanmengbi.com^ +||gexing.com/j/??zmask.js,easing.js? +||fm44f.space^ +huaban.com###top_promotion +||btyhnraw653.shop^ +||dwtkuzo.cn^ +bbs.wps.cn##.topic-recommend-top +||xiaopi.com/statics/skin_js/jquery.posrj.js +ifeng.com##.ad_12 +_dasiqq315. +ksbbs.com,kshot.com##.slideAdvert +popo.tw#@#.header_ad +||img1.126.net^ +iviewui.com##.ivu-alert +||dyhjw.com/Public/v3/appdown/images/AppEntrance.png +|http:$script,subdocument,third-party,domain=dlkoo.cc +iqihang.com#$#.app.padding { margin-top: 0 !important; } +||wsyliee.top^ +32r.com##span + p + div > dt +webkaka.com##a[href*=".simcentric."] +||hahamx.cn/images/market/ +||waymom.xyz^ +t66y.com##.tips +caibaojian.com##.aliyun-inner +tianya.cn##.qhb-Box +||gamdus.xyz^ +||a*.chajiaotong.com^ +mobile01.com#@#.googlead +||fzasx.cn^ +wealth.com.tw#?##root div[class]:matches-css(position: relative) > div[class]:matches-css(justify-content: center):has(> div[class]:matches-css(width: 300px)) +||gg.miinaa.com^ +||opszt.com^ +||taxoxz.xyz^ +900.la##.banner_ad1 +jjmhw.cc##div[style^="position:fixed; bottom:"][style*="z-index:"][style*="background:"] +||wap.hfoyjg.cn^$third-party +||mflybplr.xyz^ +||olmnvbgufy.top^ +360game.360.cn##.advertising +my0511.com###shiyonggjad +||first-hufu.oss-cn-shanghai.aliyuncs.com^ +sports.qq.com##.focus_con > .item > a[href^="http"]:not([href*=".qq."]) +xuite.net##[class^="ad-mid"] +lofter.com##.js-promote-itm +||yg006.com/attachment/xjdb.jpg +yfsp.tv,aiyifan.tv,iyf.tv##.video-player > .dabc > .ng-star-inserted[style="position: relative;"] +91porny.org,jstv600.com,x9av7.com###main > div[id^="rd"] +||5399.com^$third-party +||1.yxzw.com.cn^ +eworldship.com###d1 +||ztzdvv.xyz^ +||m.9wx.org/statics/js/new.js +||xufyxhiu.icu^ +||f8dy.tv/template/m1938/js/foot.js +||jibn12.jintang114.org^ +hcbbs.com##.a_cn_pb +@@.gif#$domain=b168.net|cnprint.org|huhupan.com|tgfcer.com|wgun.net +laogu.cc##.rowIvy +||wnacg.*/data/game/*/wap.gif +||itxueyuan.com^*.mp4 +51cto.com###list4 +mzyz.com###idTransformView2 +wenxuecity.com##.topbannerw +chinaz.com###topTxt +economist.com##.adComponent +jandan.net###random-ads +||alicdn.com/img/ibank/*_!!2210231227621-0-cib. +cnjxol.com##.linked +||bdm.911cha.com^ +@@/static/ad/main.$domain=bbmei.top|bbmen.top +||thrzbf.xyz^ +||chinalawedu.com/js/weixin/weixin.js +@@||mcmod.cn/images/banner/ +||v.icbc.com.cn/userfiles/ADResources/$domain=icbc.com.cn +||ketlwsd.top^ +jyacht.com###zyc1r_03 +||res.pinpai8.cn^ +@@||alicdn.com^*/click_track.js +hao.360.com###bottom_hotsite +||vm.aty.sohu.com^ +||qwoofao.top^ +||aqlife.com/data/attachment/portal/ +baidu.com##.ec-ads-container +mobanwang.com##.teagg +fx678.com##.img_tips +||cdybwjpa.xyz^ +china.com.cn,foodmate.net##.ad6 +||p.udn.com.tw/upf/*_banners/Special/ +||bmp.ali213.net/js/ +||emailservcesonline.site^ +backchina.com##div[style^="width:300px; min-height: 250px;"] +||elas666.pics^ +kaifu.com##.adv_slide +||newyx.net^*/down_yd.js +pcauto.com.cn##.fix_sinup_box +||kjxhd.cn^ +||d1.yingyongge.com/qmoshe.js +||igkgag.xyz^ +||ituba.cc/uploads/allimg/201610/603/ +||sinaimg.cn/jslib/kuozhanad.js +||fjlqqc.com/common/api/v1.0/slot-code/ +||sxeimg.com/u/20191108/13082210.gif +||dagumanhua.com/style/mdagu.js +||dasda64.fun^ +||kksjoa.com^ +zhijia.com##.adb +||g-years.com/gy/ +||wbiao.cn/common/newsbannerAds/ +||eeaczcf.icu^ +chinaqking.com###cnt-ad +udn.com##.ad_mask +myk3.com##a[href*="?aid="] +||dgaxrjj0jwpwp.cloudfront.net^ +camerabay.tv##.popupad +3g.163.com##.ne_rps +iplaysoft.com##.entry-content + div[style="margin:-10px 0 0 0;overflow:hidden"] +||qznjujv.xyz^ +||szbpf.cn^ +||eol.cn/e_images/gk/jnc +||cnzz.991yue.com^$third-party +||sudupan.com^*.gif +tianya.cn###a_qiu +weibo.com##div[class^="HotTopic_doticon_"] + div[class^="HotTopic_tit_"] +||20mao.com/52 +ipcfun.com##div[style="height:280px;width:336px;margin:-10px auto 20px auto"] +@@||bdimg.com/libs/$domain=00ksw.com|147xiaoshuo.com|23xstxt.net|24kxs.cc|8181zw.com|b520.cc|b5200.net|biqiuge8.cc|xbiquge99.cc|biqugecd.com|biqugewu.net|boquku.com|bqg999.net|bqwxg8.com|bxwx.live|ddbqgtxt.cc|gdbzkz.org|huanyue1234.com|msxsw.com|paoshu8.com|piaotian55.com|quge66.com|shuyy8.com|sytxt.cc|txtwan.com|u33.me|xqianqian.cc|xxbiqudu.com|xygwh.cc|ygshu.com|ymxwx.com|yuyougu.com +||kuaihou.com/c/shuoming.js +||teryt111.fun^ +||g.lznews.cn^ +||youdao.com/market/banner/banner +||jetlwsa.top^ +@@||valf.atm.youku.com/vf?site=1&rst=mp4& +||dr.mlcuzee.cn^ +||mydifile.com/view.php/*.gif +douyu.com###js-fix-download +sokoc2.com##.rHHc +aoji.cn##.xiaoxi_phone +element-plus.org##.page-sidebar-top +portablesoft.org##.sidebar-box +||yzgid.cn^ +pansci.asia#@#.ad-container +ifeng.com###wx +||310v.com/images/lingdai.gif +||suibiankan.co/Runtime/Js/ +||baoliny.com/js/jing.js +eccn.com###sem_online +news.cnyes.com##.content-main > div:empty +||bmhept.xyz^ +news.yahoo.com###module-mktBanner +||jqtkzuco.xyz^ +||jable.tv/assets/*0.gif +~laifeng.youku.com,youku.com##a[href^="http://cps.laifeng.com/"] +||hailfi.top^ +||skdncksklsv.com^ +techbang.com##div[class^="techbang_inline_"] +techbang.com##.post-side > .related-article +|http://*/js/tc.js +||mydrivers.com/2018/ad/ +||eqkvks.xyz^ +outofmemory.cn##.iloveoutofmemory660 +senfun.net##.player-recommend +||hkb123.com/plus/show.php +||vcugbgu.cn^ +ld0766.com###diy4 +||pgpufyzi.xyz^ +greatwuyi.com##.main_ad2 +||gccnntq.cn^ +qiuziti.com##.search_wordimg +edrawsoft.cn##.new-year__cn__master +||efhis.cn^ +m.youku.com##.cmt-more-cont +ncno1.playno1.com##.eis_box_s > div:first-child +||geilicdn.com/img*_960_60. +||shewang.net/images/*/CHD +cool3c.com##.board-sidebar +itdog.cn##.lantern_left +@@||qianpanso.cn/other/*.js$domain=cilimao.co|cilimao.one +gamme.com.tw##a[href^="https://www.gamme.com.tw/redirect.php?id="][target="_blank"] > img +||eol.cn/e_busi/ +||yuwenbin.host^ +||coolpc.com.tw/home/img/right2.html +cyol.com,hc360.com##div[class^="AD"] +19lou.com,cqmmgo.com,ihome99.com##.ad650-60 +divcss5.com##div[style*="width:336px;height:280px;"] +||163.com/wap/special/article_cooper_piapia/ +||lxbjs.baidu.com^$third-party +antdv.com###right-bottom +msn.cn##div[class^="nativeAd-DS-card"] +199it.com,softwarebrother.com##.adsbygoogle +weiyun001.com##.bg-box > .slide-box +firefoxchina.cn##.theme-618 .theme-side-bg .mod +olevod.com##.B1R +pan.baidu.com##.photo-banner +benxiang.com##.ad_duilian +makepolo.com##.cpc_tgs +||xitongzhijia.net/theme/2020/js/10033_ +bilibili.com##.adblock-tips +||maopu.tv/d/file/p/2019/07/6ac50c702cf9e6a9a7910a510c40cb73.jpg +eepw.com.cn###popBox +taobao.com###mainsrp-shopstar +teepr.com##body .ucfad_async +jiaodong.net###rightBanner +@@||127.0.0.1/admin/admin_ad.php?$domain=127.0.0.1 +cam4.tw##.subfoot-section +7junshi.com##.videoads +tieba.baidu.com##.j_post_list_item[data-info^="\7b \"un\":\"\\u623f\\u4ea7\\u5feb\\u8baf\\u5927\\u7ba1\\u5bb6\""] +||taobaocdn.com^$image,domain=cnblogs.com +||aiboav.vip/wp-content/uploads/ad/ +gameapps.hk##.ad-full-screen +lenovo.com.cn##.bottom_ad_fla +||huiagun.com/template/common.js +||tznizrhd.xyz^ +||ezrcowa.icu^ +sohu.com##.left-bottom-float +smm.cn##.common-jinzhu-wrap +85tube.com#%#//scriptlet('prevent-addEventListener', 'DOMContentLoaded', 'document.createElement') +huanqiu.com##.r-hqFashion +iqiyi.com###scrollWrap-vipbuy +||ldvnehc.xyz^ +||arnhhwo.xyz^ +mail.qq.com###plp_ad_container +||imgtuku.com/images/20*.gif +vod1769.com##div[id^="a"] +||files.jb51.net/image/ +||cergbwa97.shop^ +docer.com##.popup +||cpms.now.com^ +bbs.pcbeta.com###diynavtop + style + div[class] +dep-family.hccg.gov.tw#@#.ad_1 +yiche.com##div[class*="-adv"] +||mil.news.sina.com.cn/iframe/109/2012/1024/photo.html +house.qq.com##.bm +iyf.tv##vg-player div.vg-bg +_ads.js? +||1.15lu.com^ +||localau.vip/tccenter/ad/ +sogou.com##.trans-side-banner +xiaolz.cn###masonry2 +v2ex.com##div[style][onclick*="geekhub."] +igo99.cn##.adBG +||ipip.net/loveapp/ipip/tools/theme/partner/ +js0573.com###adv1 +etest8.com##.subtop2right +@@||85po.com^$generichide +cngold.com.cn##.myGuangGao +fanqiangzhe.com###mobile-bottom-ads +||qiyipic.com/common/*%E9%80%9A%E6%A0%8F +||unpkg.com/sejie +||qwmamh.icu^ +||8d8d.me/images/dealer.gif +||isine88.com^ +||djljz.cn/Plugins/Template/XJLY/js/app. +sina.cn##.module-finance-client3 +||js.oh100.com^ +aibing.cc##.adsense +||bcquan.me/front/home/render +||yfoega.xyz^ +qq.com##.tl_ad +yunduanxin.xyz###adb-mask +||videojj.com/api/v1/adsTags? +ac-room.cc#?#.waterfall > div.waterfall-box > div.waterfall-item:has(> div.ad) +||211xd.com/js +jiaodong.net###leftBanner +||games.ifeng.com^*.shtml?v= +||lanrenzhijia.com/Public/images/sucaihuo_ +hotpets.com.tw##.banner-area +bing.com#?#li[class="b_algo"]:-abp-has(.b_attribution[data-partnertag]+p[class]) +||ozhmig.cn^ +libvio.me##.hidden-log +news.163.com##a[href^="http://g.163.com/"] +||cr173.com/skina/ +||arbbj6.com^ +ifeng.com##.trade +tgfcer.com#@##content_adv +sac.net.cn###ad +||ahuys.net/Runtime/js/ +hao123.com,sohu.com,tieba.baidu.com##.advertise +||ithome.com/file/js/win*china.js +@@||taobao.com/go/app/tmall/login-api.php? +||analytics-union.xunlei.com^ +52wmb.com###popContent +sina.com.cn##.side-btns-2wm +||dabaoku.com^$object,script,subdocument +||elisium.cn^ +||baxbyfn.cn^ +||feijied.xyz^ +||threrlak.com^ +||qlbbowx.xyz^ +||3520.cc/js/3520/ +||m.ailezhai.cn^$third-party +||xn--1qwynp09f.net^ +baidu.com##.quality-elinks +||wnstug.xyz^ +||vftvbx.xyz^ +@@||img.zcool.cn/ad_manager/location/$domain=zcool.com.cn +||rmioswx.icu^ +0439.com###kanfang +||anoneko.com^*.*?$image +hahamx.cn##.joke-list-anecdote +||51wan.com/img/js/xyadjs_ +@@||jsjiami.com^$generichide +||hrnvfp.xyz^ +nfmovies.com##[onclick^="openurl()"] +||ettoday.net/banners/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_listLiveTvCnt + .listBtnCnt + #listTalkCnt +oschina.net##a[data-traceid="explore_right_bar_70"] +||dbw.cn/eap/js/hl/hlj_ad +dongtw.com#@#.post-share-container +||sp.dnqc.com^ +@@||upaiyun.com^*.js$domain=cilimao.co|cilimao.one +qqjia.com###myadsL +www.jin10.com##.l-main_info > div[class]:not(.jin-declaration):not(.jin-qq-cooperation) +||qjwvwu.xyz^ +||vdggsd017.com^ +||bdstatic.com^*/resource/tuijian/widget/guesslikesite/guesslikesite. +||962.net/show/bt.js +||img*.bet007.com/image/*.gif +||073img.com/*/| +||ifengimg.com/6e0e559e19f25e8b/2013/1226/shoucheng +||hltqsbl.cn^ +||hdc.maxli.cn^ +||tingroom.com/tingroom/ad/ +||pmblrt.xyz^ +||dms.fx678.com^ +baidu.com##.invoke-app-floating-tips +@@||sinaimg.cn/dy/deco/*/js/require.js +||ceiuip.icu^ +||407mp3.com/js/*.js +downg.com##.download-list:first-child +||sdjvbsjbvas.com^ +||photo.*.html?tk=$script,third-party +cloud.tencent.com##.cdc-commercial-swiper +ifeng.com###qrCode +||udnfunlife.com/mall/cus/cat/OutWebAd.do +||cyjqgpf.top^ +||asfybkiy.xyz^ +udn.com##.mag_topic > a[href^="https://goo.gl/"][target="_blank"] > img[src*="_banners/BD/"] +||bdad.gaotie.net^ +||udykkl.cn^ +114la.com#?#.sortItem:-abp-has(> dIV[class] > .FeedADClose) +||niu07.com/gg/*.js +||tcvmtp.xyz^ +||sbo8.com/static/theme/js/bottom. +||9938.net/video/tvg/footer.js +||pwhkfd.xyz^ +||gxqzz.7766.org^ +wezhicms.com##.activity +sm.cn##.c-container > div[data-sc*="etao"] +apple.com.cn#$##ac-globalnav { top: 0 !important; } +||bda1.ayule.net^ +||djponj.xyz^ +studygolang.com###ad-right1 +||kdjdpyrt.xyz^ +zol.com.cn###downBoxGaosu + a +||gbgedashb8.fun^ +||swoole.com/_images/w7.jpg +||bonbonme.com/js/g1313166/ +||img.ferlie.net^$domain=wangchao.net.cn +||zrdga.cn^ +||jsdelivr.net/gh/*/960x60. +||rz261.cn^$third-party +||cnblogs.com/group/C1*-T2 +||dmzj.com/public/js/app_banner.js +baidu.com###adMainTopLeft +cpnn.com.cn##.duilians +||shbzlkj.cn^ +||imeee.cn/DA_HTML/bottom_960x90.html +||cdn.vidcrunch.com/integrations/*_Responsive_Floating_DFP_$domain=discuss.com.hk +||aiboav.vip/wp-content/uploads/uu-chat/*.gif +||coolaler.com/index_ads/ +||dftoutiao.com/jrdftt/static/javascript/ad/ +||sina.com.cn/js/*/AdvertisingByNewIndex_ +||sinaimg.com^$domain=dayanzai.me +||sxlmggx12.com^ +ruanyifeng.com##a[href*=".100offer.com"] +||wei2008.com/js/t_ +||hf365.com/0/15/64/87/15648725_922274.jpg +@@||cstnet.cn/r/cms/cstnet/zh_CN/ad/index/ +91porna.com##.row > div.flex-container:has(> a[href][target="_blank"] > img) +taoguba.com.cn###tbgzInstall +||a1.qqan.com^ +||okwkaa.xyz^ +speedtest.cn##.speed-bottom-ads +||kjrspnbf.xyz^ +@@||microsofttranslator.com/translate? +yisu.com##.coupon-get-link +||techug.com/aatb/ +mg21.com##a[href="https://www.mg21.com/zunjiazq"] +sina.cn##.p_newsmore +||kfctds59.shop^ +||xmhszb.xyz^ +||yxamkm.xyz^ +libaclub.com##.merchant-link +||wtroytj33.fun^ +||ysxt9.com^ +haoxxoo.com##.nrad1 +||a.imgso.cn^ +||bdstatic.com/tb/cms/forum_skin/file_1442399443261.jpg +@@||autoimg.cn/bi/common/pvevent_all. +||efjsliw.top^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###j_star_bus_before +ytbbs.com##.ftop_ad_2016 +duba.com,newduba.cn##.pro_r_t +||gg.*.com/tonglan/tonglan.js +||lianle.com^$third-party +ttsp.tv##.play_list_adbox +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_right > table > tbody > tr > td > table +163.com###layout-shop +||vdggsd009.com^ +5eplay.com##img[width="290"][height="360"] +||moerats.com/usr/affpc/ +ithome.com##a[href^="http://e.cn.miaozhen."] +codeleading.com##div[id*="ads"] +@@||izo.tw/wp-content/advert1.js +||aapubcti.xyz^ +||ujappzvz.xyz^ +||zqkxlf.com^ +||qpb*.sohu.com^ +||alibaba.com/async/b2bad. +firefox.com.cn,firefoxchina.cn##.theme-side-bar-priority +||files.xtpag.top^ +||ugolue.xyz^ +||chinatimes.com/ads/ +blog.51cto.com##.ac-box +sinolub.com##.erjlogo > .fl + .fl +||cjdby.net/Public/home/images/advImg/ +||doubanio.com/view/photo/l/public/p2891976611. +@@.com/ad.aspx|$domain=xdingdian.cc +||apsgo.com/assets/js/union. +||999xx999kk.com^ +||jandan.net^*/699pic/ +pythonthree.com##.astra-advanced-hook-7063 +||awuvcq.xyz^ +423down.com##.content > a +||kjjjusb.xyz^ +||share44.com/adad2014/ +@@||cloudflare.com/ajax/libs/fuckadblock/$domain=seselah.com +||pubads.g.doubleclick.net/gampad/ads?*&output=xml_vast*&url=http*.4gtv.tv$script,xmlhttprequest,other,redirect=noopvast-2.0 +||qianzhan.com/qiye/images/qcm_ +||npdbxf.xyz^ +@@||show.g.mediav.com/s?type=$domain=v.360kan.com +||xmlgzr.xyz^ +||webkaka.com/ad/ +hao.rising.cn##.shop-site +||88362zubo95838.com^ +||free-cdn.oss-cn-shanghai.aliyuncs.com^ +||pixfs.net/module/fullPage/dist/ad-full-page. +||phtivr.xyz^ +getrelax.cc#%#//scriptlet('abort-current-inline-script', '$', '#adisblock') +manhua.weibo.com###p-nav-fix + .p-area.w980 +zol.com.cn##.zol-eshop +||firefoxchina.cn/img/201912/7_5de5c6289dd340.png +||ieforex.com/r/cms/www/red/red2/images/*0. +||83133.com/api/ +||ctrip.com/amd/*960x90. +||lrutvncl.top^ +||nerydw.xyz^ +cnyes.com###full_ad-screen +||chinatimes.com/analytics/ +||difhil.icu^ +@@||doubleclick.net/ddm/trackclk/$popup,domain=hongkongcard.com +||0kkbb.com/js/i.js +stheadline.com##.section-popular +cnki.com.cn##.adList +click108.com.tw##.AD_300250 +yshw1.com###diynews_ad1 +||utwwzqdx.xyz^ +||daweijita.com/201*ad. +||windowszj.net/d/js/list/click +||qqxiazai.com/index.*adver& +||dceuhnpc57.shop^ +aguitar.cn##.banner7 +||htxwzp.xyz^ +netfly.lol##.module-tglist +91porny.org,jstv600.com,x9av7.com##.footer + .block +briian.com###post-wrapper div[style^="width:"][style*="height: auto; background"] +@@||avgle.com/embed/$genericblock,generichide +||a.epinv.com^ +||sdkjkbsjkbvjkscv.com^ +||hrutvncu.top^ +efu.com.cn##div[class*="banner-"] +||ycgmnpp.icu^ +||sikaq.top^ +||kiees.com^$image,subdocument,third-party +||idv.st/dns/bar.htm +stockstar.com##.much_ad +||aeyyck.xyz^ +||cjyun.org/assets/js/analytics.js +@@||myssl.com/scripts/analyze.js +||7mmtv.tv/js/ad_js/ +@@||adnxs.com/prebid/prebid.js$domain=demo.ama.pub +||kygso.com/js/lrtk.js +tophub.today##.ax +||runoob.com/images/re/ +||qiuyi.cn/Baojian/ +||ad.zui.com^ +||epxprfk.xyz^ +||huaerdadi.com^$third-party +||mydrivers.com^*/xianshitehui.png +||soulu365.com/images/zhuce.jpg +sm.cn##.ad-dot-container +||axjbt.com/dbxf/pctc.js +kekenet.com###weixinwz1 +||zhenjiang365.cn/*/ad_ +mgtv.com##.ad-fixed-bar +abbao.cn#@##adContent +17jita.com###wp > .wp > .pbm +||meiyouad.com/static/pc/img/111.gif +360kuai.com##.detail__top__title__under +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.qipai_thread +||huobaowang.com/meeting/js/hbchat. +||inte.sogou.com^ +||vpqrydt.xyz^ +7654.com###gg_top +tingfm.com#%#//scriptlet("prevent-setTimeout", "adblock") +jianhuadaily.com##.alignnone[width="800"] +firefoxchina.cn##a[track_key="outside_left_adv"] +||fydisk.com/images/showvip.gif +||koublid.top^ +||myunion1.tupians.com^ +||itc.cn/mdevp/*-advert/ +||apis.pchome.com.tw/js/idlead.js +||kxmusic.top/tc/js/script.js +le.com##.gamePromotion +gaoqingw.com###sidebar a[href^="http"]:not([href*="gaoqingw"]) +||daysou.com/images/huaweicloud.png +netfly.*,netfly.tv##.player-box > div.player-tt-rmm +baidu.com##.banner-cover +||agrantsem.com/js/ag.js +||totheglory.im/pic/ttg_ +||dadxnl.xyz^ +5nd.com##.songAds +?ad_ids= +news.lyd.com.cn##table[cellspacing="5"]:nth-child(3) +cnpingpang.com###diycity1103 +||kfjslid.top^ +yaociyuan.bid##.board a[target="_blank"] > img +||kiuee8.com^ +||jab88.com^ +ssr.tools##.asb +||klandmart.com/K-Landmart_0011.jpg +macfans.org###portal_block_180 +||b1.cdn.mh3666.com/html/ +lihkg.com#?#div[id][class][data-post-id] + div[class]:not([id]):not([data-post-id]):has( > div[class]:only-child > div > div[id^="gam-"]:only-child) +baidu.com##.text-advertise +||fklgndklbngg.com^ +||abcache.com/youlaohu/ +||qsfbmol.cn^ +@@||dydog.org/*/DPlayer.min.css +mafengwo.cn###smartGuideFeng +disp.cc###ads_page_r +duba.com,newduba.cn##.top_ad_tmall +||imgbaiduxz.xyz/jsjsjs/ +||249999.xyz^*.gif +house365.com###marryD +@@||qq.com^*?ADTAG= +||ghreha.top^ +||qetskupyka61.shop^ +||china-netwave.com^$third-party +||17173.com/actapi/qiyu/ +3dmgame.com##.Gmaeinfobtn + span +baidu.com##.slide-bner-adv-ret +||158zm.com/top.js +||ngnxyub.cn^ +||chuapp.com/wp-content/Picture/2017-08-14/59917b959139f.png +||az697jylm.cc^ +hk.on.cc##div[id^="google_div_"] +||img.scupio.com/js/ad.js +||wswxsk.xyz^ +||pkvs.com/public/as.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.spreadad +||ergeapp.com^$third-party +||yatemy.cn^ +||uouvxlit.top^ +_bannerad. +@@||xnimg.cn^*/nx/ugc/share/js/hotlist.js +ithome.com##.rm-modal-body +||vozftn.xyz^ +||bqg126.com/js/hf +wiki.mbalib.com##div[id^="p-ad-"] +||denjpl.xyz^ +@@||nowscore.com/script/common/adHelper.js +@@||sinajs.cn/open/analytics/js/suda.js$domain=weibo.com|~widget.weibo.com +photopea.com##.flexrow > div[style^="padding-top:"] +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.1.commercial.mediaUrl', '') +423down.com##.content > p[style] +||daima.aixiaola.com^ +||offcn.com/index.php?m=dbsource&c=call&a=get&id=77 +||docin.com/docin_adv/ +||music.163.com^$domain=mvcat.com +gpsuu.com##div[class^="top_96"] +||saohu*.com/config/json/cctv.json? +||avseesee.com/amandison.php +||g3f3.com/love/ +||256856.com/fei-ad/ +dhaomu.com##.sidebar > .slide +@@/fingerprint2.js$domain=fangcloud.com|fx678.com|gxpf.cn|hnair.com|pop-fashion.com +||looyu.com^$third-party +qzwb.com##.qzw_live_img +||qiyipic.com/zongyi/*Banner01.jpg +||youdao.com/www/banner.html +||cp.jfcdns.com^ +||66huacai.com/d/js/v/hc +||3hufi.site^ +anjuke.com##.adver-content +_ad_iframe. +||9duw.com/js/sj +||kbbrptv.xyz^ +ruanyifeng.com##a[href^="https://ke.qq.com/"] +vpsdx.com##.gthfdsa +||kjubky.xyz^ +liaoxuefeng.com###x-sponsor-a +e0838.com###float-bot +||btschool.net/images/*/HDYGR +||bd11.nipic.com^ +||adminbuy.cn/images/ +||imgs.cc^$domain=fun1shot.com +||baidu-taobao-av.com^*.gif +||uyyquln.icu^ +xfastest.com##iframe[src*="//ads.xfastest.com/"] +||csdsa22.fun^ +bilibili.com##.bili-video-card__wrap > a[href^="http"]:not([href*=".bilibili.com/"]) +9xav.cc#?#div[class]:not([class*=" "]):has(> span[class*=" "] > a[href^="https://"][target="_blank"]) +||muyys.com/img/ +playno1.com##.eis_mtm[style="border-top:1px dashed #CDCDCD;padding-top:10px; padding-bottom:15px"] +toolfk.com##.top > div[style="font-size: 12px;text-align: center;margin-top:6px;"] +||pnez8.rut6m.xyz^ +||liwupuba.com/livead/ +||9t51o.icu^ +pixnet.net##body div[class*="-ad-"]:not(#style_important) +||douyu.com/japi/sign/web/getinfo +||111cn.net/gg_ad/ +||sinaimg.cn/large^$domain=fcw45.com +||iptuy.cn^ +||img.uu1001.cn^$third-party,domain=~1688.com|~alimama.com|~taobao.com +so.com###e_idea_wenda_leftBox +||3czol.com/ad/ +@@||alicdn.com/retcode/log/log.js +||933m.com/1.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.u9_aside +kdnet.net##a[href*=".tmall.com/?spm="] > img +xuite.net##div[id^="index-ad-mid"] +||hppmy.cn^ +bigpixel.cn#%#//scriptlet("set-constant", "killads", "true") +jieav.com##.b300 +||alicdn.com/kf/Uc565e19948944fdb860e6847fb145811t.jpg +||dsads55.fun^ +chinaz.com###toolsIntro +||win0168.com/images/item.gif +eeyy.com###float_ad0 +||39.net/ask/sg. +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div:not([id]) > style[id^="s-"] + style + div + div[id] +||bdstatic.com/pc_static/detail/game_promotion/ +||ibf.tw/js/jquery.blockUI.js +tiexue.net##body > div[onclick] +1909.me,8se.me,crxs.me,xchina.biz,xchina.co##.media +||p1.chinakaoyan.com^ +||upload.cc/i1/*.gif$domain=ddav.org +hz66.com##div[style="width: 300px; height: 250px; float: left; position: relative;"] +itdog.cn##div[style="border: 1px solid #dadada;padding: 6px 10px 5px 5px;background-color: #ffffff;"] +||iincon.icu^ +wiki.mbalib.com##.tool-bar > a[target="_blank"] +gaoqing.fm##div[style^="height:258px;background-image:"] +manhuagui.com##.gg_950 +@@/adsbygoogle.$domain=moa.tw +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.res_top_banner +ifeng.com##div[class^="rightContent-"] a[href^="//health.ifeng."] +subhd.com#%#//scriptlet('set-session-storage-item', 'hassession', '1') +ithome.com###con > div[style="text-align:center"] +17k.com##.baiduBox +91lai.com##.D_guanggaotu11 +douyu.com##.firstpay-modal +||azhibo.*images/leisu.png +||voc.com.cn/static/web/js/creattwo11.js +||jishuyl.com/_skins/*/ad_ +my0511.com###renmenzwad +||daslethv.com^ +5ewin.com##.erweima +dpp.org.tw#@##ad_small +@@/adview_*_ads_300x250.js$domain=itbaoku.cn +520cc.cc#%#//scriptlet("prevent-setTimeout", "location.href", "3000") +jin10.com##.top-ad +zhujicankao.com#?##ez-toc-container > div.ez-toc-right-container:has(> div.ez-toc-rigth > ins.adsbygoogle) +||znnfzx.xyz^ +||tu2024020388.com^ +324324.cn##.link_header +||orbnarb.xyz^ +||gsiawq.xyz^ +||874547.men^ +:9875/vh2/ +||dayfund.*/images/uds/ +cw.com.tw##.emailorder +jiumodiary.com###forum-panel +||bdstatic.com/tb/cms/ngmis/file_1417585294569.jpg +||xkyn.com/imgs/js/al.js +||hao123.com/ifeed/cpc? +||cdndm.com^*/js/newtc.js +||bocenamesingle.xyz^ +||mangafuna.xyz/static/ads/ +ikjzd.com##a[href*="/redirect-ad-url?"] +||jz5u.com/public/js/t$script +||ll.ibiqiuge.com/m.js +@@||baidu.com/h.js$domain=19lou.com|baomihua.com|ihome99.com +||pinlue.com/error/bangolike.js +||dajiadu8.com/17mb/script/gg. +||ebiotrade.com/jslibrary/js +||lianmeng.la/abc/ +||yiucfif.icu^ +@@||58b.tv^$generichide +||qksapp.net/gif/ +briian.com##.entry-data-wrapper > div[style="display:table; margin: 0 0 15px 0;"] +||lu228.com/ajs/ +||sunofbeaches.com/shop/recommend/ +pujia8.com###recommend +||uiqcf.cn^ +bcbay.com##.discuss + table +gotv.ctitv.com.tw##div[class^="code-block code-block-"][style="margin: 8px 0; clear: both;"] +||jrzj.com/img_index/*adv +eastday.com##.ad-foot-right +||efg.zle.com^ +||china.cn/js/common/local_hydn/ +||39.net/creative/ +||xevzdl.xyz^ +_ad3. +dianping.com##.bao-jia-form +iqiyi.com##a[href*=".banggo."] +ltn.com.tw##A[href*="draw.ltn.com.tw"] +qq.com#@#.adsbox +im286.net###diyflash +@@||mccc11.com^$generichide +||ogouawc.cn^ +eyny.com##span[id^="ads_ads_"] +||okbmf.com/imgad/ +||layuicdn.com/layer/layer.js$domain=hanjutvn.com +moonbbs.com##.dm-header-ad +||vwmjkl.icu^ +||uutytp.com^ +||dj155.com/gg/ +||chusan.com/js/m*_ +||hahamx.cn/upload/data/detail_ +dmhy.b168.net##div[align="center"] > a[href^="https://www.baidu.com/?mm_sycmid="] > img +qq.com##.site_words +@@||yunjiema.top/static/js/wpsafelink.js +163.com,zybang.com##.top-banner +baidu.com##.sam_iebrowser_banner +||union-wifi.com^ +||8gra3.icu^ +eastmoney.com##div[id^="flow-ad-"] +lightnovel.us##.author + .poster +nownews.com###crazy-video +pinggu.org##.indextop-r +||pstatp.com^$domain=5217kdy1.xyz|ahah3.com|i5qs.com +sohu.com##.x-adv-pause-nonlinear-panel +easou.com###ec-results-c +||rqroytj33.fun^ +qzone.qq.com###idQbossHotbar +||jy06.shop^ +||hov15.icu^ +element-plus.org##.page-sidebar-row +airav.cc###Panel_GambleZone +||156xsw.com/css/js/tools. +ydss.cn##.indexAd +||baidu.com/event/img/zwdzjs.jpg +||goproxy.cc/api.php +@@||sinaimg.cn/unipro/pub/suda_m_v629.js$domain=video.sina.com.cn +lzacg.one##.sidebar .zib-widget > .textwidget > a[target="blank"] +||dm.zjut.cc^ +||shumilou.co/style/html5.js +||tweezesmalanga.com^ +||picyq.com/index.php/Home/run/get_ad/ +||yddrqwq.xyz^ +sdzbcg.com##table[height="41"]:last-child +||webkaka.com^*x50. +||mxeq.cn^ +bilibili.com##.ad-f +||zk6.me^ +@@||bdstatic.com^$domain=17k.com +2345.com##.s11-side +||1.sj33.net^ +duba.com##.ss_sider_list[href*=".wan.liebao.cn"] +||p2p.v.yyclouds.com/crossdomain.xml +zhihu.com##.MHotFeedAd +xc6b.com##.navbar + .clearfix +||pvpdbth.xyz^ +||nychinaren.com/houbei/ +_fioiwhfo_ +kdocs.cn##.business-list-wrap +360kan.com##.b-ifradjx +baidu.com###sning1 +||holdntlc.com^ +||52tian.net^*/xuanfu.js +maplestage.com##div[class*="-page-module__right"] > div > div[style="margin-bottom:20px;padding:16px 10px;box-sizing:border-box;width:100%;background-color:#eee;border:1px solid #ddd;text-align:center;"]:first-child:not([class]):not([id]) +bitauto.com###bitAd_floatFlash +||livku.com/g1000/ +||80s.so/9*.JS +fnjiasu.com##.swiper-container +||xwbxsw.com/js/app_wap. +weibo.com#?#tr:-abp-has(> .td-03 > .icon-txt-recommend) +neon-pet.com,easylife.tw##.popup_bottom_ad +||lyretul.top^ +||pjcijbv.icu^ +||57see.com/js/ +weather.com.cn###adtop_r +||uzrxoxd.xyz^ +rvlev.com,t66y.com#?#[class]:-abp-has(>a[onmouseover="this.style.background='#DEF5CD';"]:nth-child(n+150):-abp-contains(/赌|娱|澳/)) > :nth-child(-n+155) +||stq89.icu^ +||81book.com/static/scripts/common. +||baidu.com/videoui/api/videoads? +||citysbs.com^*/650x60- +libvio.cc,libvio.me##.t-img-box +china.com##object[width="360"][height="300"] +pan.baidu.com##.wp-side-options +duba.com##.oneone-search +jjckb.cn##div[class^="g"] > a:first-child:last-child +||gyjgrvd.cn^ +sohu.com##.wrapper-box > div.god_header +pinggu.org##.banner2015 +baixing.com##.refashion-listing-banner +~sports.qq.com,~work.weixin.qq.com,qq.com#%#//scriptlet('json-prune', 'ad') +esnai.com##.tlgg +||shnpetdb638.shop^ +v.baidu.com##div[id^="adv_asp_"] +||httpcn.com/m/tg/ +chongbuluo.com###add +||fotao9.com^ +||lyckery.com^ +||thisav.com/0*.js +||s.zixuntop.com^ +||carstat.bitauto.com^ +360kuai.com###task__modal__container +||xxdm.in/js/union/ +tvyb03.com,yemancomic.com,zkk78.com##div[style^="position:fixed;"] +||zuoyebang.cc/static/question/question/resource/QRCode_ +||opqnkw.xyz^ +cctv.com##.anime_ewm +||static.zongheng.com^*/ad_click.js +hao4k.cn##.lineC_right +setn.com##.header-right-banner-b +||76fengyun.com/70070.gif +||thjwxz.xyz^ +||swaterb.top^ +||tinypic.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|ac88.info|aisex.com|cnnice.biz|go543.com +||nenmu1obbi.info^ +||qmgria.cn^ +huya.com##.end-ab-banner +mangabz.com###cc1 +cnool.net##.meilai_box +||ypyjyhny.xyz^ +3dmgame.com##.tonglona_4 +||sfkldbkldgdgh.com^ +||dianxin.com^$third-party +||xehodv.xyz^ +||api.wudizuqiu.com/72nba +ahtv.cn##body > table[style^="text-align:center; width:960px;"] +tsdm.live###ts_sidebar_base +||962.net/show/cms_$script +hahamx.cn##.mobiles-banner-des +||newsres.cn/temp/tempad +sina.cn##.j_article_cutpic +game735.com##div[id^="ysmAD"] +hackhw.com,qqjia.com##.hengfuad +eastmoney.com##.advertisement +cartoonmad.com##table[width="877"] > tbody > tr > td > a[href^="https://fun8.us/"] +||d3g4a.cyou^ +jiegeng.com##.picBt +guailie.com#@#.google-ad +||ipssss.com^ +@@||zxmee.com^$generichide +:800*/d/*t=$script,third-party +||pbvdlb.xyz^ +||iqshw.com/d/js/m/thea +||atwqyor.cn^ +||bdstatic.com/tb/cms/img/tieba_index_banner960x90.png +zt5.com##.gg_bt +||ymauoo.xyz^ +||888aa111bb.com^ +baidu.com##.ad-platform-tips +||21edu8.com/js/mymoney/ +||yinghuavideo.com/bar/ +jieav.com##ul[id^="jieav_"] +nipic.com##.vip_show +firefox.com.cn,firefoxchina.cn##.theme-side-bar[trace-key="ad_theme_skin_link"] +||books.com.tw/exep/ap/$third-party +||danmeixsw.com/js/mwap.js +||kfc.com.cn^$popup,domain=iqiyi.com +||ax.*.ifeng.com^ +baihe.com##.scrollULeft +2cto.com##.adv980box +linkedin.com#?#.core-rail > div > div[id^="ember"]:-abp-has(.feed-shared-actor__description span:-abp-contains(/促銷內容|广告/)) +||xvudqzoa.xyz^ +||beephone.com.tw/ad-yahoo.php +tahua.net###frameJjnBIp +xineurope.com##.adft +qiuziti.com##a[href^="https://www.hellofont.cn/"] > img +||loli.io^$domain=kisssub.org +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_right > div:-abp-has(.ec-tuiguang) +||youy14.com/js/zz/nr.js +gucheng.com##img[data-mv-ad] +360kuai.com##.mid-right__operate-adv__container +iqilu.com##.gg580140 +iqiyi.com##.thumbnail_item[href^="http"]:not([href*=".iqiyi.com/"]) +||prhfziq.xyz^ +gamer.com.tw,pili.com.tw#@#.pub_300x250m +xiaoz.me##.gg6 +||mysteelcdn.com/common/*/js/img_ad. +||126.net/ntesrich/*/suning- +dapenti.com###center > div[align="center"][target="_blank"] +||n7181.com^ +||hltkl.fun^ +||dfcfw.com/zndh/ +mm-cg.com###ioshowAD +||mylikechat.com^$third-party +xvna.com##.articleAD +||qiyipic.com/common/*/banner.jpg +1010jiajiao.com##.xiti_content + .xiti +||miwifi.com^*ads/ +jin10.com##.l-main > div > .jin-timeline +||mnvxdkd.xyz^ +wmzhe.com##.downloader +5119.cn##.xzbtn_new + .xzbtn_new +||mixer.sina.cn^ +newtalk.tw##.extend_ad +moorzon.com#%#//scriptlet("json-prune", "*", "nativeConfig") +||hptyp.icu^ +||ajoqu.cn^ +zcool.com.cn##.main-wrapper-advlong-top +||tk.504pk.com^ +115.com##li#js_common_act-enter +sina.com.cn##.article-botton-slide +elle.com.hk#?#article > div.block-default:has(> div.content-wrapper p > span:contains(Cosmart)) +@@||lib.baomitu.com/axios/*/axios.min.js$domain=69xx03608.xyz +||xtvrtrya.xyz^ +||static.youku.com/*/js/cps.js +||tu4038097360.cc^ +@@||changyou.com^$generichide +||576tv.com/Scripts/home.js +@@||netded.com/plus/ad_js.php?aid=3| +weibo.com##.UG_bn_a +taoguba.com.cn##.NewH_top_left + .left +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=news.tvb.com +*$script,third-party,xmlhttprequest,domain=cnbtspread.xyz +qq.com,sogou.com##div[class^="page-bottom-banner"] +@@||atanx.alicdn.com/t/tanxssp.js$domain=taojinbi.taobao.com +||i.alipayobjects.com/i/ecmng/$image,domain=my.alipay.com +||bvubasnf.com^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=4gtv.tv|881903.com|ani.gamer.com.tw|appledaily.com|ha365.com|hamivideo.hinet.net|line.me|linetv.tw|litv.tv|mytvsuper.com|nextmedia.com|now.com|tvb.com|udn.com|ulifestyle.com.hk +||knpkxgfp.xyz^ +tianya.cn##.slider_box +||ypffkbpq.xyz^ +pconline.com.cn##.ivy > a +3g.cn##.statistic[href^="https://jumpluna.58.com/"] +||voxirf.xyz^ +||dianping.com/wedding/pro/jsonppage +passiontimes.hk##.rectAd680 +||fundingchoicesmessages.google.com^$third-party +||cctv5.name/data/js/ +||baijs010.shop^ +||mygeek.cn/pic_$domain=dapenti.com +||bitscn.com/js/a2 +v2ex.com#?##Rightbar > div.box:has(> div.inner a[target="_blank"] > img[src*="cdn.v2ex.com/assets/sidebar/"]) +||e3inu.space^ +36.cn#@#.mainAd +@@||ad.10010.com^ +:9875/vj2/ +anhuinews.com##div[style$="height:40px;overflow:hidden"] +2345.com###leftSideBar +||yalingba.com/ggtxjs/ +popdaily.com.tw##div[class^="ad-delimiter-"] +slashlook.com###AdvertismentInline +caq98i.top#%#//scriptlet('abort-on-property-read', 'alertadmodal') +||wrsikq.xyz^ +||firefoxchina.cn^*_couplet +||bdjs.daziba.cn^ +||to8to.com/yezhu/zxbjWidget. +||youivr.com/image/*-960x80 +mcar.cc##.showhide > video + div[style="background-color:#FC0;margin-top:1px; width:500px; height:90px;"] +||zhongkaowu.com^$third-party +||baidu.com/videoapi/?*_ad_promote& +6park.com##table[width][align="center"] > tbody > tr > td[bgcolor="#FFFFEE"]:has(> div.adv-6park) +||linkwan.com/gb/javascript/a +||dnxtc.net/images/xiaobing +||dljzcl.cn^ +@@||gboku.com^$generichide +||czresus.cn^ +||gameone.com^$third-party +koolearn.com##.news_pf +||miiepofl.xyz^ +||pwfqjp.xyz^ +duba.com##.cool_textlink +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'detailParams.is_ad_play', 'false') +||jubbkon.top^ +163.com,55188.com,csai.cn,miercn.com##div[class^="gg"] +autohome.com.cn###ad-top-1111 +||medsci.cn/images/wyg.jpg +m.nownews.com##a[href^="http://ad1.nownews.com"] +||jable.tv/assets/images/*-slider. +||bvrzwnq.xyz^ +100ksw.com###ad_move_sg +3jy.com##.Rad +focus.cn##.shequn-code-img +tuliu.com##.info-recommend +||lafirx.xyz^ +qyun.vip##a[href*="/ad."] +silver.org.cn##.fix_bottom_position +||baiten.cn/images/weInternation/ +~cityheaven.net###gg1 +||dblijd.xyz^ +||eol.cn/images/*1000- +soyunpan.com###qblad +||xxle.cn^ +@@||dictionary.search.yahoo.com/beacon/sc?&ajaxdd=tabsCard& +||wenku.baidu.com/browse/interface/getrec? +||fc2fan.net/js/check_focus.js +||bchina-1.xsfaya.com^ +jingdianlaoge.com##.baidu +bttop.net###top_bottom + div[style="float:left;width:100%;"] +||lctcbtly.xyz^ +||f780f.space^ +||yerecpa.cn/uploadsb/app_adv/ +enews.tw##div[id^="adFrame"] +cari.com.my##a[href="http://banner.cari.com.my/daybanner/?page=promotion"] +||3boys2girls.com/templates/default/2013/life/160b5.js +||manwa.me/static/custom/files/300X250.$image,redirect=1x1-transparent.gif,~third-party +||qiyipic.com/common/fix/rebull_ +||displink.com^$third-party +||aaknmt.icu^ +||langya.cn/2014html/2014ad_ +qq.com###iwanAD2 +||wnifdlae.top^ +to8to.com##.whan-ad +acfun.cn##a[href^="https://click.dsp.com/"] +wjx.cn###ctl01_ContentPlaceHolder1_divProMsg +ithome.com##a[href="/html/363216.htm"] +||e0575.com/index.php +||guang.sdsgwy.com^ +theav.xyz,69xx.one,theporn.cc#$#.q-body--prevent-scroll { position: static !important; } +||soduso.com/js/so.js +hexun.com###tonglan_1 + .layout +||d1.3158.cn^ +||cbthkumwa96.shop^ +||d.dgzj.com^ +||kuaidi100.com/mobile/mobileapi.do +secretmine.net###main-content > center +||chnci.com^$third-party +||3ndra.icu^ +||a.miyudaquan.top^ +wnacg.com#@#.ctm_ad +steelcn.cn##.new_fixed +||bd-js1.2345.com^ +kekenet.com###bottomlink +m.91zww.com#%#//scriptlet('abort-on-property-write', 'delCookie') +||mvcat.com/sitefiles/services/cms/adv/ +||playtv.com.cn/Pictuer/ +||dsfh2.icu^ +||tjfbh.icu^ +||thisav.video/v3/nb/ +blog.51cto.com##ul.Navigates > li.first > a[href][target="_blank"] +wybg666.com##.container div[id$="ad"] > a[target="_blank"]:only-child > img +dytt5.net##body > div[style="overflow: hidden;"]:nth-child(3) +||bd1.jinbaozy.com^ +||myiryc.xyz^ +||vggg5.space^ +gameapps.hk###top-ad-right +||albdbsk.xyz^ +||de.as.pptv.com^ +||adm.6park.com^ +psahz.com#@#.ad_960 +||pc841.com/show/ +neihanshequ.com###appDownload +ipv6.baidu.com,xueshu.baidu.com,www.baidu.com,www1.baidu.com#?#div:not([id]) > style[id^="s-"] + style + div[id] +knowmore.cc##.ins +||rfnvqpo.xyz^ +gamer.com.tw##.goAPP +image.so.com###starlist +#%#var AG_setConstant=function(e,a){if("undefined"===a)a=void 0;else if("false"===a)a=!1;else if("true"===a)a=!0;else if("noopFunc"===a)a=function(){};else if("trueFunc"===a)a=function(){return!0};else if("falseFunc"===a)a=function(){return!1};else if(/^\d+$/.test(a)){if(a=parseFloat(a),isNaN(a)||32767 section > div[style] > div[data-index]:has(> div[class] > div > div[id^="div-gpt-ad"]) +hao123.com##.insertad_wrapper +zhongce.sina.com.cn##div[class^="side-btns-jifen"] +||eiqsky.xyz^ +vip.diaoyu18.com##.container > a[target="_blank"] +fcw45.com##.bottom-adv +my0511.com###forumtextad +||vrrw.net//templets/default/js/ad.js +baixing.com##.guide-video-app +||9wcn.com/gcld/500.gif +sto520.com#?#.content > div.book > div[style^="text-align"]:has(> ins.adsbygoogle) +zhujicankao.com##.topsss-111 +||177o.com^ +:701/Pus/pus.js +@@_300_250.$domain=nanrenwo.net +@@||baidu-taobao-av.com/js/jquery. +||sinaimg.cn/finance/*/hqMainTopBanner.js +||onx8.com/theme/tange/add/ +@@/ads-api.$domain=moneysave.info|zxmee.com +||hur.cn/AhurD/*.gif +||doujs05.xyz^ +6park.com##table[width="89%"][height="60"] +@@/api/ads?$domain=nmkjxy.com +playtv.com.cn##table[id] > tbody > tr > td[colspan="2"][width^="32"] +nongjitong.com##.ad_sms +5000yan.com###cebianlan > div[style^="background-color:"][style*="border-radius:"] +||bdstatic.com/??/tb/_/diamond_mall_frs_aside_*.js +ifeng.com##.luckybag +||adasdz.cn^ +c4dm.live###text-21 +kaoyan.com##.floatQrcode +||stgowan.com^$third-party +firefox.com.cn,firefoxchina.cn##.main-promote-sites +||svncowt.cn^ +meizhou.cn##.tuwengg +ccav1.com##a[href="http://duan.es/1v"] +||sggu.cn^ +papalah.com#%#//scriptlet("abort-on-property-read", "adBlockDetected") +ifeng.com##div[class^="adList"] +||pfp.sina.com.cn^$script,subdocument +||v4dwkcv.com/html/click/ +||zkrdzn.xyz^ +||xuldtcip.icu^ +99kubo.tv##table[width^="9"][height="90"] +jia360.com##.news_adv:nth-child(3) +8bo.com##.mad +ac-room.cc##.ad.v-card +||tcmap.com.cn/js/b_ +||51testing.com/templates/default/images/jx2_a.jpg +||songsongyun.com/ads/ +dahe.cn###adsg +ifeng.com###js_red +pixnet.net#?##main > div.header-fixed-area:has(> div#header-ad-fixed) +||512ms.com/webggwhtml/ +||qunar.com/vata?chan= +||jowkkzx.icu^ +||scru.cn^ +||cliffnsc.xyz^ +||idddlon.xyz^ +mmff30.com##.top_box +36kr.com##.home-ad-flow-banner +||m5.66077.cn^ +taobao.com#?#.item-ad +||jisuxz.com/180226/b180226.js +blog.sina.cn###pl-ad-after-comments +||i3z.cn^$third-party +||xn--w9q675dm1p7em.net^ +hkwb.net##.leftadv2 +||oaqrui.xyz^ +||u0075.com^ +xuite.net##.articleExtAd +iyf.tv##.player-side > .block > * +@@||jav777.cc/advertise/ +||xsvkfwth.xyz^ +@@||chuangkit.com^$generichide +zhihu.com##.QuestionAdBanner +||gaoimg.xyz/images/ +taobao.com##.recomand-item +@@||70.86.24.120:8060/*/ +||xdhfvrug.xyz^ +||lutrbr.xyz^ +||udeias.xyz^ +pokemonhubs.com,free.com.tw,daybuy.tw##body .code-block +wenxuecity.com##div[id*="gg_"] +1ydt.com###head +||btmulu.com/assets/*/ad02.gif +||xiuska.top^ +@@||youaima.com/zz/play_ +ganji.com##div[class*="-recommend"] +||ndysxhs.icu^ +||zjgfq.com^$third-party +pcauto.com.cn##.ivy-250 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###union_mod +hao.rising.cn###change +58b.tv##.listri > .ad +ubmcmm.baidustatic.com +||xhfxtqt.xyz^ +||uyaeco.xyz^ +hao123.com##.siye +||geekbang.org/public/serving/ +||pvlnjwr.xyz^ +sg169.com##.jy-pos-3 +iwatchme2u.com#%#//scriptlet("adjust-setTimeout", "video-ad-timeout", "*", "0.02") +||159i.com/video/usr/uploads/1- +||sauyv.top^ +||imgoss820.top^ +||acsegt86.shop^ +llss.bz###secondary img:not(.avatar) +||forex.com.cn/statics/images/ewm.jpg +||quqtone.cn^ +||yui-nya.com/wp-content/uploads/2016/12/37011.jpg +||hiido.com^$third-party +17travel.net,fun01.net,itislooker.com,lookerpets.com,17goforward.com,lookforward.info,happyday543.com,starfocus.news##.ui_adblock +||cctvpic.com/photoAlbum/templet/common/*/game_ +||mvcngm.xyz^ +||cdipsumf.top^ +||keywin.org/templates/kw_v2/images/youbianad.png +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="950"] +epubee.com##.vipNoteBar +||soublib.top^ +||17k.com/jump/uh +||mp999.net/wp-content/uploads/*zgg +le.com#%#//scriptlet('set-constant', 'Object.prototype.noAD', 'true') +hupu.com##.topPub +wanqu.co##.left-nav-panel:first-child +cnki.net##.translateOutAdLink +||wyoaij.icu^ +wealth.com.tw#?##root div[class]:matches-css(padding-left: 70px) > div[class]:matches-css(column-gap: 30px):has(> div[class]:matches-css(align-items: center)) +||a.xywy.com^ +qzone.qq.com##.app-recommend +@@||abchina.com^*ad +kingkong.com.tw##.room-banner-wrap +||cuaeblh.icu^ +||juji.tv/Runtime/js/ +cool-de.com###fwin_popadv_cover +||meijuck.com/js/dfw.js +@@||sohu.com/cityjson$domain=51credit.com|castech.com|eduyun.cn|ems.com.cn|jdboshi.com|jialingmm.net|lcm88.com|mop.com|platinum-pen.com.cn|shouji.com.cn|skk.moe|vivo.com.cn +||naajie.com/float.js +||mvcat.com/script/ad.js +||fdc.com.cn^*adv +||39.net/test/k.js +17173.com##a[href*="&ad_code="] +bukaivip.com##img[onclick] +sm.ms##.advertising_2 +||vrr.name^ +he-games.com###he_banner_ad +||ktoioo.xyz^ +||pxrs6.cn^ +||ad.ccement.com^ +||3g.cn/index.php?s=Index/adv& +discuss.com.hk,uwants.com###right_column +||boylove.cc^*/img/20*.gif +@@||mail.td^$generichide +cb.com.cn##.box > a[href^="http"]:not([href*=".cb."]) +||126.net/caipiao/js2/dialog.js +1kkk.com,dm5.com##.swiper-container[style*="760px;"] +||nefrpt.top^ +gamefy.cn##.tonglan +||5icool.org/uploadfile/poster/ +||other.v.duowan.com^ +meijuxingqiu.com##.fixed-bottom-bar +hanjutv2020.com##a[href*=".hujiang.com"] +||kanqiuba.net/js/ +sina.cn###promotionCover +||n0611.com^ +||gamersky.com/wap/js/gs/gsAllOpenAppBtn. +dnwx.com##.mt5_23 +||antdv.com/kaikeb +hao.360.cn,hao.360.com##.mbar-bd +@@||cdn.bootcss.com^$script,domain=59xs.com|biqudd.com|u33.me|xbiqugela.com|ysxs8.vip +_ad.php? +||c114.com.cn/js/channel.js +||soufunimg.com/common_m/m_public/js/wa +ksbbs.com,kshot.com###banner2_top +ipcfun.com###crumb_r +@@||captcha.su.baidu.com^ +||eyjvq.xyz^ +||jianshen114.com/images/Advistings/ +||aqc.gucheng.com^ +2345.com##.comp-logo-wall +thmz.com###floatdivids +||edu-30130.sz.gfp.tencent-cloud.com^*.gif +baidu.com###content_right > div > div[id^="m"] +||whgh1.icu^ +wnacg.org##a[href^="https://l.tyrantdb.com/"][target="_blank"] > img +||emynwlz.xyz^ +||meitu.com/js/floatxiuxiu.js +layui.dev##div[style*="sentcss.com"] +||0575bbs.com/js/float.js +||aeaw.cn^ +||8t9he.cyou^ +||5891344.xn--j1amh^ +@@||360buyimg.com^*?? +zn508.cc###klp_hdp +||btime.com/api/weblog? +||imgtp.com/2024/03/17/LXqznsUs. +||sojson.com/ps/list. +66huacai.com,kuaihou.com##.orange +||cnwnews.com/templets/images/artpangu.gif +||szjjzs.com/js/cs*.js +rrys2020.com##.corner > LI > A[href*="yyets."] +||rfidworld.com.cn/js/a.js +2000fun.com##.single-box +muzhi.baidu.com##.rightnest +gamer.com.tw##.iframe:last-child +@@||haiwai.com^$generichide +||wmcbld.top^ +||crayon.meishichina.com^ +||edipsumw.top^ +@@||cdn.theguardian.tv/ad/*.m3u8$domain=theguardian.com +||xwbmjb.xyz^ +@@||mmuu22.link^$generichide +||uu11881.com^ +hgitv.com##.index_main_top_zhong_02 +||l5kt1.icu^ +ibf.tw###top_d +||piaoliang.com/js/gg.js +66law.cn##.consult-bottom-fixed +||pingwest.com/wp-content/uploads/*/ad.jpg +med66.com##.coach_pic +||bitauto.com/bglog.gif? +v2rayssr.com#?#.sidebar-innter > .widget:has(.adsbygoogle) +||vbgr7.cn^ +||baidu.com/article/ajax/getmarticlestepdata? +||udjdpyrt.xyz^ +||dxg*.top/img/A*.js +zhufaner.com##.book +ylnet.com.cn##.ad-con +offcn.com##.jlstc +||qhdlz.net/uploads/glxs/980x120.jpg +||jieshimaya.xyz^ +hao.360.com###large2small +520call.me,av99.us,yocoolnet.in###inplayer +||vdggsd007.com^ +||caikuu.com/ckimages/*_gg +||txzqw.*/js/float.js +on.cc##.appinstall +||anbkzt.xyz^ +||news.cn/2021detail/js/booklist.js +||58cdn.com.cn/*.gif$domain=mmff30.com +@@||tt1069.com/adbrite.js +_advert. +maoken.com###siderAd01 +||7676.com^$third-party +alu.cn##.Tg_230x80 +@@||kfcclub.com.tw/web/*/ad +sohu.com##.x-adv-flogo-panel +tianyancha.com###banner_web +51yfx.com###widget-test +||house365.com/js/analyze.js +||choujue.net/script/ +av.movie##.pop-up-a +||gt.duowan.com^ +bilibili.com##a[href*="cm.bilibili.com"][data-target-url*="gaoneng.bilibili.com"] + .bili-video-card__info +yasem5.com###cdaas-rand +||160.com/statics/statics/js/code_13.js +v2ex.com##.sidebar_units +@@||lnk2.cc^$generichide +asp300.com,asp300.net##.tit01 > a +||kaezakkjt.com^ +ipv6.baidu.com,xueshu.baidu.com,www.baidu.com,www1.baidu.com#?#.c-container:-abp-has(.t > a[data-landurl]) +f2dsex1.com##a[href="https://kf2828.com/"] +85tube.com##.block-video > .table +||hcgbhq.com^ +||djs.baomihua.com^ +tencent.com##.cdc-commercial-swiper +||zqgixxp.icu^ +mitbbs.ca,mitbbs.com##table[width="336"][height="280"] +||weacdf411.cn^ +||spl.ztvx8.com^$third-party +1point3acres.com###portal_block_479 +to8to.com##.ad-commom +||hk-pub.com/forum/images/2009/gifbanner +||cimg.cnyes.cool/prod/adContent/$image +||xyryjt.xyz^ +||mdzwjra.cn^ +_300_250. +|http://*/ts.js$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|ac88.info|aisex.com|cnnice.biz|go543.com +pianyuan.org###myModal +tuliu.com###siderbar-join-form +||1017.cn^ +||myabcd.cc^ +@@||astyle.alicdn.com/?? +jiemian.com###ad_header_top +||hpzktd.xyz^ +_468.gif +fuzhou.baixing.com#@#.ad-title +||wuresde.top^ +||mqznjujv.xyz^ +||wsgayq.xyz^ +||uuajq.top^ +||bdipsumv.top^ +||sowx.cn^ +||clrjnhxi.xyz^ +bkill.com##.xiangguan-ad +||m.20mao.com/*/Head.js +zhihu.com##div[data-type="ad"] +||alicdn.com^*yksdk/*sdk.js$script,domain=youku.com +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[class^="ecl"][class*="game"] > .c-border +||q02orc.cn^ +@@||colatour.com.tw^$generichide +||alicdn.com/img/ibank/*_!!2212029770429- +||push.zhanzhang.baidu.com/push.js +ruanyifeng.com###gd1 +sina.cn###j_toTop ~ .fl_suspension_template +||2ccc.com/images/WebXone.gif +||bpbfymv.xyz^ +@@||toolfk.com/tools/js/share/js/jquery.share.min.js +||raxetyrw.xyz^ +||img599.net/images/*0x +51cto.com###upopbox_mid +||jz5u.com/public/new/ +||dlngft.xyz^ +||cjgymo.xyz^ +feeds.qq.com,lenovo.com.cn##.game +||img.eol.cn/images/ed/$~image +@@/wp-content/*/social_$domain=servercat.me +||json.cn/js/aliWindow.js +eprice.com.hk##.ad-end-article +||mcncc.com/yeyou/*.htm +sogou.com##.pz-widget-flash-container +@@||baidu.com/location/ip?$domain=dominos.com.cn|saicmg.com|tanmizhi.com|tianqi.qq.com +||izmiua.xyz^ +||ac-room.cc/images/ad_ +yimenapp.com,sssam.com##.widget_html_ad +iwan.baidu.com###j-ditu +||cvujac.xyz^ +mydrivers.com##div[style^="position:fixed;left:50%;bottom:200px;"] +rouman5.com##a[href*=".tapdb.net"] +||aobtwv.icu^ +cartoon18.com#?#.container-fluid > .row > .item:has(> .card > .card-body > .lines > span.badge:contains(/^ad$/)) +m.hao123.com##.tuizhan +||2zzt.com/images/ +yxdown.com##.gsdown +fanqiangzhe.com###popupModal +||1.hao123.com^ +||analytics.techweb.com.cn^ +||cheshi-img.com/js/pv.min.js +||khzyojb.cn^ +||pg2bk.icu^ +||ogmjhve.cn^ +||90oo.com/tp/h8877.gif +||udsahkln.xyz^ +newxue.com##.left336280 +gvm.com.tw##.promotion > .sp-txt +qq.com###ad-fullscreen +||flasmr.top/leb. +huanqiu.com##.aa_250 +||i472x.fun^ +||b.kouke5.com^ +58b.tv##div[style^="width:300px; height:250px;"] +||vpzohx.xyz^ +autohome.com.cn##.monkeyicon-br +@@||ms332.com^$generichide +hinet.net###pop_media_ad +163.com##.topnews_ad +mayi.com###floatingLayer +gmw.cn###ysp_gmrbAppLayer +qidian.com###app_download_blank_show +||snux.cn^ +||sjmlmk.xyz^ +2345.com##.tip_stopXP +||1l1.cc^ +idanmu.ee##div[class^="g "] +microsoftnews.msn.cn#?#.riverSections-DS-EntryPoint1-1 > div[style^="display: grid;"] > div[style^="grid-area:"]:last-child > .card-DS-card1-1 > div[class^="nativeAd-DS-card"]:upward(2) +||qw9cu.cyou^ +@@||scorecardresearch.com/beacon.js$domain=hktvmall.com +mumayi.com##.h80 +cnyes.com##a[data-proj-ga-category="FloatingBTN"] +@@||mnighthk.net^$elemhide +a-i-l-s-a.com,buscodepto.com##div[style^="position: fixed;"] +||spanking.wiki/morning-bread- +cnblogs.com###div_digg +@@||omtrdc.net/m2/hsbcbankhase/mbox/ajax?$domain=hangseng.com +acommunity.com.tw##.ai_widget +||uwerpyh.cn^ +vdianying.cc##div[style^="display:block !important;"] +||8bo.com/template/default/8bo/j/app.js +recruit.com.hk##div[id^="banner"] +lenovo.com.cn##.ad-calender +||caixin.com/s?z= +2345.com##.act-openJ-mask +||wvwqywz.cn^ +||oxoucm.xyz^ +||ugvbsrbht.xyz^ +||duoying.vip^$third-party +||imusye.xyz^ +pixabay.com##.show-gtty-item +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###thread_list > .j_thread_list + li[class]:not(.j_thread_list) +||localau.vip/plugin/show.php +||qdickey.top^ +aguitar.cn##.news_b +djljz.cn###djl_hdhb +||checbox.cc^ +2345.com##.activity-skin-rtrig +||ww9874.com/asset/playerInit.js +||adlhxwb.xyz^ +baihe.com##.scrollUpf +chaicp.com,qiuyi.cn##.Advertisement +@@||tui.click/js/ads.js +baidu.com###couplet-right +sunnylife.tw##.post-entry > div[style="min-width: 300px; min-height:300px;"] +goosedaily.com##div[class^="ad-area-"] +marieclaire.com.tw##.adInnerMpu +||apistat.gao7.com^ +||price.com.hk/dfp_price.php? +||so.com^*baike/ads? +||theporn.xyz/static/tmp/ +||vps234.com/resources/images/hosting-promotion/ +djljz.cn##.left_fixed_ad +||n55ylc001.vip^ +||rgdcrt.xyz^ +189.cn#@#.adLink +zhihu.com##.RichText-Ecommerce +||jg1668.com^$third-party +||ycqbgm.xyz^ +pconline.com.cn###JnoLoginFixedBottom +||dgrgr34.fun^ +@@||icbc.com.cn/ICBC_ADJS/ +||gtimg.com/comic/richmedia/ +ifeng.com###client-spread +||63007.com:82/haodxi.js +igo.cn##DIV[class^="leyuBg"] +||qtroytj33.fun^ +redircdn.com##.al +||srutvncb.top^ +1keydata.com#%#//scriptlet('abort-current-inline-script', 'document.querySelector', 'window.getComputedStyle') +||molibaike.com/images/ads/ +||g1.taijuba.com^ +blog.sina.cn###pl-adtop-bar +fwxgx.com##.float_ad +ishangman.com#@#.bottom_ad +||muntfd62.shop^ +||5pub.com^ +||60jxn4.xyz^ +sina.cn##.article-sax +||iyjqgpo.top^ +cilil.cn,magnet2048.com##.hotwords +||bd1.365qilu.com^ +||t*.baidu.com/it/u=*,*&fm=76$third-party +hao123.com##.pagetop > .popup +zzkdhb.com##p[style^="width: 100%; margin: 0px;"] +||cvdfvdfv90.fun^ +||jpfans.com/jpfans.jpg +||ghwqbii.icu^ +tieba.baidu.com###j_light_see_index +huawei.com#@#.ad-section +sogou.com##.sr-adv +||58cdn.com.cn/resource/xxzl/xxfw/ +pconline.com.cn##.ivy > .ivy-wrap +||jcppcmqa.icu^ +||citysbs.com^*/800x90- +axutongxue.net###uuuui +||m.lelekan.com/sp/ +ifeng.com##.foot_top_box +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.tb_poster_info.poster_success +_tm11_pmt_ +fastadmin.net##a[href$="=="] +423down.com##.entry > p > strong +qzone.qq.com###app_ads +||qhemphox.com^ +||ifengimg.com/a/2016/*600. +52pk.com##.hz_adv +mail.126.com,mail.163.com##div[id$="_FooterDiv"] +~sinaimg.cn##a > img[width="960"][src*=".sinaimg."] +||gjwxy.cn^ +||playstats.v.duowan.com^ +||pbbhhxm.xyz^ +@@||qq.com/json/mms/nativeads/rankings.json +||adzp.cn^ +||580bk.com/ceshi/ +news.baidu.com###favoriteTips +5278.cc##.pct > div[style="width: 600px;"] +||vdggsd011.com^ +||bu1.vvvdj.com^ +bilibili.com##.banner-card +||g.3lian.com^ +||shilian168.cn^$third-party +hsex.men###container > div:not([class]) +csdn.net##.recommend-ad-box +||cpu.baidu.com^$third-party +||hcdjy.xyz^ +91lai.com##.D_guanggaotu2 +911cha.com##.adbox +||zmbmoxij.icu^ +||gcssem.xyz^ +chinanewsx.com##a[href="/about/"] +||pefufv.xyz^ +||hk-pub.com/forum/images/banner/ +||googletagservices.com/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=ani.gamer.com.tw +||by4d.com/dh/ +@@||520cc.cc/ad/520cc/images/logo3w.png +||aqrokdw.cn^ +muchong.com##a[href^="http://muchong.com/bbs/a"] > img +||idffhq.cn^ +||cewrutf.top^ +chinaz.com##.red[href*=".wsisp.net/"] +||star-seo.oss-ap-northeast-1.aliyuncs.com^ +||bjxty88.com/js/foot.js +||wopvmmy.cn^ +@@||poedb.tw^*ad$script,~third-party +||jinzige.cn^ +||js131.cn^ +||hahaql.top^ +daohangtx.com,jojf.cn##.indexgg +@@||jjkmn.com^$generichide +||fanyi.baidu.com/pc/config +avmimi.com,mm-cg.com##.UT_thread +||a.exam58.com^ +||nawpyd.icu^ +tmall.com##.mui-mbarp-qrcode +up01.cc##div[style="position:fixed;width:468px;left: 50%;transform:translate(-50%,0);height:60px;background:#fff;bottom:0px;text-align:center;z-index:9"] +163.com##a[href^="http://popme.163.com/"] +||10fang.com/static/skin/tfy/layer/layer.js +image.baidu.com###ecomContainer +javlibrary.com##.bannerqq +||bookben.com/js/m/wap.js +@@||pass.1688.com^$subdocument +||swwdke.xyz^ +||ballive.*/addm/ +@@||cctv.com/js/cntv_Advertise.js +eeyy.com##.gg_bg +league-funny.com,coco01.net##.scupioadslot +||tnzjrj.xyz^ +||jsinfo.net^$third-party +||51cto.com/edu/blog/*box.js +||to8to.com^$subdocument,third-party +||rxys.cn^ +||jy147a.com^ +sex8.cc##a[onclick^="window.open('/dasp.php?"] +dapenti.com##a[href*="cashier.iqiyi.com"] +||484r.com/images/flash/gallery_ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [id*="00"]:not(.result):not(.result-op) > div +||yvwuesh.icu^ +ifanr.com##.popup-app-download +ifeng.com#?#div[class^="index_yaowen_center"] div[class^="index_news_list_"]:has(a[target="_blank"] + img[src^="https://x0.ifengimg.com/feprod/"]) +@@/img/ad/*$domain=exp.qq.com +||94itv.app/casino/ +acggd.com##a[href*=".apk"] +||mekmhvbb.xyz^ +pornbest.org,ptt.sex###fullPageModal +zzbaike.com###topnav +||javbooks.com/52toy/ +g-years.com,ghoffice.com,gpsuu.com,mydigit.cn###main > .textMes +||qwblog.cn/localfile/20200612230036.gif +webkaka.com##a[href*="/click/a_d_"] +@@||nceea.cn/Content/images/ad/ +dnxtc.net##.header > div[style*="margin-top:"] +@@||ananas.chaoxing.com^*video/ad/ +@@||cnprint.org^$generichide +25xz.com##div[style*="724px;"] +jiangjunzy.com###index-lb +bonbonme.com##.topbannerer +@@||xiaoyuanzhao.com/adservice/$domain=shixiseng.com +||2pwja.cn^ +||nplahh.xyz^ +||qqjia.com/dan.js +||nroeoxk.icu^ +||aliyuncs.com/gg/ +||yigujin.cn/wp-content/themes/Three/js/yierlin +||baidu.com/source/getinfo? +zqzq.com###wAdTop2 +||picsuperfast.xyz/imageUpload/images/*.gif +downyi.com##.bzYouDao +||bd1.xiby.cn^ +||higyoe.cn^ +||d.line-scdn.net/*/torimochi.js/*/torimochi.js$script,redirect=googletagservices-gpt,domain=line.me +||yii666.com/ad/dynamic- +||otbeksf.cn^ +||62422.cn/ggimg/ +||663008888.com^ +||bdstatic.com^*/mip-*ad +||zhibok8.com/js/scroll.js +||web.900.la^ +qq.com##.player-side-ads +||rlhtnnm.xyz^ +ctfile.com##a[href*=".henghost.com"] +||qy1.ru/data/game/ +||321mh.com/v1/getadvertise? +jandan.net###sidebar > div#box +ali213.net##div[id^="ali-ad-js-"] +||fdfda.zhuzhai.com^ +||codejie.net/wp-content/uploads/*/1120-50. +||hrtlisu.top^ +||jscode.acg68.com^ +@@||flyert.com/plug/socialShare/js/social-share. +zuhaowan.com##.zhw-bottom-ad +||0mnopqr.com^ +||fzpchome.com/txt/$script +||cnwnews.com/ad-nrtop/ +acg.d1dm.top##.module-adslist + a[target="_blank"] > img +||bqnmxza.cn^ +@@||dlkoo.com/down/Copyright.js +zhujicankao.com##div[style*="padding:0px"] > a[target="_blank"] > img +||img.kuai.xunlei.com/js/statistics.js +||nrsfh.com/neirong/ +10jqka.com.cn##.wbanner +||dreuaxk.icu^ +||s1.wesiedu.com^ +pixnet.net##a[onmouseover*="_openBrWindow('https://goo.gl/"] +||rfidworld.com.cn/js/RFIDExec.js +||pdweoyw.cn^ +||ettoday.net/funfuntrip/ +||tianmu.com/DA201 +||d67p.com/love/ +qq.com###bottom-sponsor +rising.cn###shuangshiyibid +92sucai.com##.adtg2 +||baidu.com/xpage/form/getform?id=wk_pc_skin +||xznizrhd.xyz^ +dict.baidu.com##.tran-download-ad +||bytravel.cn/js/ad_ +||nrbqgf.cn^ +||bjjabc.com^$third-party +chinafix.com###diy_col_1-3 +apowersoft.cn##.activity-poster +||baidu.com/xpage/interface/inforservice? +||kvhee.com^ +||uskecsx.icu^ +tvsou.com##.sogou-temp-hidden +@@||softblog.tw^$generichide +||n5725.com^ +icanzc.com###contbot +||nvjqtz.xyz^ +mtrend.cn##a[href^="http://tao.mtrend.cn/"] +mydrivers.com#?#li:-abp-has(>.titl+:-abp-contains(/广*告/)) +||creative.141live.com/widgets/Spot/ +||m1905.cn/data/suspension_ +soufun.com##.danmu_inbox +||1.11467.com^ +||zhongwangmy.cn^$third-party +cool3c.com##div[id^="gpt-c3c_all_side_"] +hexun.com###videoRightAd +eprice.com.tw##.emome-ad +live.bilibili.com##.container-wrapper[style="height:180px;min-width:1280px"] +axutongxue.com,axutongxue.net##[style^="height:58px;"] +||imgmin133.top^ +||ganimg.com/images/*.gif +||vvttpn.xyz^ +||tigtag.com/images/*1000x +5156edu.com##table[width="770"][bordercolordark="#FFFFFF"] +fusetter.com##a[href^="https://mahoyaku.onelink.me/"] > img +||f4nfg.site^ +||nwxaxx.xyz^ +zhihu.com##.MRelateFeedAd +duote.com##.dl-banner +||shejiben.com/common/libs/layer.js +||dfcfw.com/project/gubawap/ad/ +||dioimg.net^$domain=t66y.com +||huanqiu.com/statics/*/dist/js/detected_block.js +||glgoo.*/gimage/ad/ +||fredum.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[data-click="\7b \"rsv_srcid\":49516\7d "] +493428493428c.monster##div[style^="width:728px;height:90px;"] +||jtyusia.top^ +appledaily.com###ebBannerTopDiv + A[href^="http://bit.ly/"] +||i3zh.com/wp-content/plugins/cm-pop-up-banners/ +||dawdlealmonry.com^ +site.baidu.com##.pstr.mt10 +||c-ctrip.com/train/201611/yqh_270-280.jpg +||kltmjevd.xyz^ +ucptt.com#%#(function() { window.open_ = window.open; var w_open = window.open, regex = /tw\.jav321\.com/; window.open = function(a, b) { if (typeof a !== 'string' || !regex.test(a)) { w_open(a, b); } }; })(); +bing.com###BottomAppPro +||kaipuyun.cn/count/ +||pstatp.com/origin/fef20000e7013b3511b6 +wuzhuiso.com###side > div.download-browser:last-child +||ubeaui.xyz^ +||mydrivers.com/2020/news/8/kkj_msi.gif +||aguo.com^$third-party +mobile01.com###ad-control +sohu.com##div[data-spm-content="promotion"] +||mlcbgw.xyz^ +||n.sinaimg.cn/sinakd10117/*/bd54-kentcvx6065228.png +iqiyi.com##.content-wrap > .ch-res > .ad-ef +gasaq.com###guanggao_left +||bnextmedia.s3.hicloud.net.tw/dp_cp/mt_programmatic_ad.js +@@||tgfcer.com/advert.js +||msmcoa.xyz^ +pixiv.net##a[target="premium_noads"] +||wbkaqly.cn^ +||57573zubo36833.com^ +colamanga.com#%#//scriptlet("prevent-setTimeout", "loadErrorTip") +sina.cn##.callApp_fl_btn +muzijie.com##div[style="height: 280px;"] +||lxapk.com/wp-content/uploads/*.gif +||nlxgjwye.icu^ +||1.i999d.cn^ +||lenosoft.net/js/ad +theage.com.au,smh.com.au#@#div[id^="_"] > iframe[scrolling="no"][src^="http"][width][height][frameborder="0"] +||tt1069.com/or_pu_0604.js +||frtnqps358.shop^ +||byretuv.top^ +ettoday.net##.ad_in_news +||gywb.cn/cs_mulu/ +sports.qq.com#@#.txp_ad_center +c114.com.cn,chemicalbook.com,china.com.cn,foodmate.net,hibiquan.com,qingdaonews.com##.ad2 +||aixiaoju.com/dbxf/*.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.wanle_tab_tip +||liebaovip.com^ +||jishuqq.com/wadsb.gif +||img599.net^$domain=18board.com|18p2p.com +gameapps.hk#$?#.pc-header-video > a[class^="top-ad-"] + .youtube-container { remove: true; } +2345.com###mzBrowserWrap +||wangbase.com/blogimg/asset/201806/bg2018060604.jpg +eastmoney.com###fundtg-fb +baidu.com##.ecomad-banner-loading +||876920.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_tab +||retintsmillion.com^ +||1024wanzhai.$popup,third-party +||iask.cn^*.param. +1905.com##.zx-small-pic +||shulihua.net/js/topcen.js +||doujs010.shop^ +||aaa.tumanyi.com^ +||wenshenbang.com^$third-party +acgbuster.moe##.tg-inner +5ewin.com##.jjb-slide +@@||lncn.org/ad.json +@@/pub1/??$domain=banggo.com +||ifeng.com/statics/comment_baidu.html +@@||360buyimg.com/ads/$domain=jd.com +vidhub1.cc,vidhub.me,vidhub.tv##.adwap +tianqi.com##.xcx_erweima +||fastadmin.net/uploads/store/tencent +nownews.com##a[href^="https://goo.gl/"] +||uuzsfpju.xyz^ +asp300.com,asp300.net##.tit02 > a +||adv-sv-show.focus.cn^ +@@||citysbs.com^*/swfupload/ +cartoonmad.com##table[width="100%"][cellpadding="0"] > tbody > tr:nth-child(3) table[width="100%"][cellpadding="2"] +macapp.so#$##m2 { height: 5px!important; } +i.maxthon.cn##.site-ad-container +||tns.simba.taobao.com^ +douyu.com##.video-info-download +baidu.com##.banner-active +||1ppt.com/ad$image +it1352.com##.glyphicon-certificate + a +sina.com.cn##.zhitou-wrap +bbs.hupu.com##.hp-ad250-250 +||cggyyi.xyz^ +||250sy.cc/gg/ +||kanjiantu.com/images/*.gif +leiling.org##.ad__single-double-rectangle-wrap +||pjcn.org^$third-party +||trafficjam.cn^$third-party +||nnfalf.xyz^ +apk.tw##.login_bg > .ad300 +||cr173.com/show/ +||xinmin.cn/framepage/foot1.htm +||szmns.cn^ +@@||jjjgame.com/plus/ad_ +||ali213.net/images/ycq.mp4 +||gtimg.com/sports/000_AD/ +||ebpex.space^ +pilifx.com##.home_row_1 +51credit.com###leftLayerDown +@@||wx.qq.com/c/=/mpres/*/video_ad_ +xitongtiandi.net##.sidebar > a[target="_blank"] > img +nnhanman.net##div[style="width:728px;padding-top: 8px;"] +||4k123.com/data/attachment/portal/201712/20/194208ao9pevvvg0xr0n1p.jpg +olevod.tv##a[href^="https://www.yywhale.com"] +5imx.com###diy_mxad06 +@@||creaders.net^$generichide +520cc.cc#%#//scriptlet('prevent-setTimeout', 'myModal') +firefox.com.cn,firefoxchina.cn##.pm-crack +||p.junshi881.com^ +||qixingquan.com/api.php?mod=ad&adid= +||uidwyx.icu^ +||superjj.online^ +||huhwllvk.xyz^ +||ifmccdn.icu^ +qq.com,yxad.com##.l_qq_com +m.babytree.com##.wrap > section[class*="9"],.wrap > div[class*="9"] +||bdoshbv.top^ +ifeng.com,sohu.com##.ad950 +||cxapio.xyz^ +infoq.com##.ab_detect +storm.mg#@#.btn_fb +oops.udn.com#?##wrapper > #mainbar > .area:not(#story):not(#comments):has(> h3 > a[href]:contains(商品推薦)) +||zfp32.buzz^ +ilive.lenovo.com.cn#@#.adTop +emome.net##.source_advertising +||n5n5s.icu^ +||yy18.info^*thanks$popup +@@||buyad.bi-xenon.cn^ +@@||pttplay.com/js/momo/adsbygoogle.js +||jmcomic.asia/iframe_*&idzone= +||juweixin.com/static/spk +sm.cn##.article.ali_row + #sc ~ .article.ali_row +oschina.net##a[data-tracepid^="index_banner_"] +||szftg.cn^ +||jdiekknmcb.com^ +iwan.baidu.com###banner-box +mamecn.com##.jjMain_bg +power.baidu.com,www.baidu.com,zhidao.baidu.com##style[id*="s-m"] + div[id^="m"] +csdn.net##.box.hot +||news18a.com/image/ad_ina/ +zybang.com##body.m-question > a[href^="https://www.kuaiduizuoye.com/"][target="_blank"] > img +i-pass.com.tw#@#.homead +||82zcb.icu^ +||cadcc.icu^ +||count.pcgames.com.cn^ +||laozuo.org/wp-content/themes/weisaysimple/js/sidebar +||ifengimg.com/29daa33abbbc4bbc/2015/7/titad.gif +||pmwofrq.icu^ +||bjxfnn.xyz^ +||0460.com/images/ad/ +jiemian.com##.nav-next-ad-views +hmoe12.com##.poi-container > div > a[href^="https://www.hmoe12.com/wp-admin/admin-ajax.php?action="][target="_blank"] +1010jiajiao.com##.fixed-bar +||xqbjjh.xyz^ +laoliublog.cn,ruyo.net,winandmac.com,zhujiceping.com,zouaw.com##.widget_custom_html +||etroytj33.fun^ +||eastday.com/static/js/kancookie.js +||ltn.com.tw/js/ad_door.js +ithome.com#$?#.t-b.sel > ul.nl > li:has(> a[href*="/lapin."]) { visibility: hidden !important; } +||whranc.cn^ +||baidu.com^*/app/banner_ +||v16rs.cn^ +520cc.cc#%#//scriptlet('set-constant', 'all520dddaaa2022ccc', 'true') +||kpmsoq.xyz^ +minepay.top##.sponsors-container +pixnet.net##.article-inread-ad +||ctc.weather.com.cn^ +||udheansv.com^ +home.firefoxchina.cn##a[track_key="sites_mingzhan"] + a[title="VIP"] +||nnrbyty.xyz^ +||hylaxngo.xyz^ +chinabidding.com.cn##.train +||xuzhi.net/uploadfile/poster/960x50.jpg +@@||gitee.com/HServer/ +awaliwa.com##.bottomAdsBox +||1.11130.com.cn^ +||51credit.com/bbs/js/bbs-end-layer.js +||adnetworkperformance.com^$third-party +||cdn.upthinking.cn^$third-party +||zxw51.com^$third-party +||avseesee.com/twad +sunnylife.tw##.Zi_ad_a_H +4399.com###defaultbglink +wenku.baidu.com##div[id^="html-reader-banner-"] +||wan.sogoucdn.com/cdn/flash/$domain=~sogou.com +||endolift.cn^ +douyu.com##.ScreenBannerAd +im286.net##.qybj +@@||linetv.tw^*/scripts/ads.js +||2345.com^*/activity/20171 +||hdchina.*/styles/topshow/AD/ +||999bb222ww.com^ +||booktxt.net/js/mangoIndexBanner.js +||lbx777.*/css/lbxgg02 +dzbhdm.net##a[href="https://www.biqudao2.com"] +||gmmlmo.xyz^ +9game.cn###btInfo +||xkjmjj.com^ +||1.51dongshi.com^ +||imgopen.vip^ +dilidili3.com#?#.body > div.body-wrap:has(> div.mod-box > div.mod-title > h3:contains(友情链接)) +||meiju8.cc/js/tpcode.js +v2rayssr.com###b2-widget-html-12 +||cnr.cn/cnrxwph/iframe/tpdy/ +||gg.egouz.com^ +wendu.com##.head-banner +||ptyw.yiche.com/ssp/ +||wpdaxue.com/img/*/txy- +element-plus.org##div[class^="page-content-"] +@@||ikea.cn^*/img/ads/ +||dnfnpff.xyz^ +||jianke.com^*/jquery.ppt. +@@||wancaibb.com/share/js/share.min.js +||wutsldsk.xyz^ +oschina.net##div[name="floatAdbox"] +~shenguangai.com##a[href*=".shenguangai.com/"] +||autohome.com.cn/news/$script +||edghkc.xyz^ +||haiwaiyy.com/B970X90.gif +||zzz4.com/JS_AD/ +@@||gtimg.cn/images/nz/cp/*/adimg.png$domain=qq.com +whnyd.com##div[style*="height: 115px"] +||tingyun.com^$third-party +||dytt.com/pc.js +mongoing.com#?#.widget_custom_html:-abp-has(> .custom-html-widget > a[href^="http"]:not([href*="mongoing.com"])) +||gamemale.com/static/js/valida.js +||easyai.tech/wp-content/uploads/*-576x1024. +applealmond.com##div[style*="height: 260px;"][style*="text-align: center;"] +||zxfdbr.xyz^ +baike.baidu.com###J-union-wrapper +||irtliso.top^ +||2345.com/cnxh/ +||xvbcjh.xyz^ +||mwrf.net/images/js/*mrf.js +||rykhukxt.icu^ +||youdao.com/tl? +||shewang.net/images/*/900x +yahoo.com##.crazyad +ikjzd.com##.wv-head-img > .wv-head-item-img:last-child +cnki.com.cn##.ad-right-default +||huohuo1.huamuwo.com^$domain=knowbaike.com +yxzp.net##img[width="770"] +2345.com###J_go_erweima +188soft.com##.down_gaosu +zhanqi.tv###js-room-flash-banner-panel +ettoday.net##.sharebox:not([id]) ~ .iframe-ad +||share44.com/300 +cool3c.com##.sticky-inner > [class="board board-side board-cool3c-home_300x250_2 board-new clearfix"][data-board="cool3c-home_300x250_2"] +||elemea.xyz^ +||css.zmjm.com^ +||liu16.com/vip.png +5278.cc#%#//scriptlet("prevent-window-open", "88p2p.com") +||lkqaq.icu^ +||ad.12306.cn/res/*.html +||yddbysa.xyz^ +|http://gg.$third-party,domain=~guagua.cn +||steelcn.cn/img/bj_*_146_315.jpg +939394.xyz##.j_m_ad +||bjrspnbf.xyz^ +efu.com.cn###ad4 +||hfjsliu.top^ +@@/api/ad/*$domain=pinduoduo.com +@@||3gmfw.cn/js/wap/8.js +sogou.com##.side_adv_wrap +followme.cn##.fm-banner-social +gamersky.com##.downLoadGame-2 +||dlkoo.com/down/$subdocument +||antpedia.com/images/advimages/ +||7xi9g1.com1.z0.glb.clouddn.com^ +||local.hniux.cn^$third-party +hh010.com##.a_hong_c +||ahejtw.onelink.me^$third-party +||img8e94zy4bg.com^ +image.baidu.com##.recom +||ab.rejushe.com^ +||qq.com/mobi/js/app-bar- +||record.kuai.xunlei.com^ +||asiav.cyou/myupdatelist. +||kpyerxzn.xyz^ +07073.com###Vsss00 +bdimg.com,tieba.baidu.com,tieba.com,wapp.baidu.com###pblist > li[class]:not(.j_post_list_item) +||js.jialingmm.net/dm/history.js +blog.163.com###topbar_randShowArea +@@||kf.cn/ad/css/*.*. +eprice.com.tw##div[class*="-popup"] +||js.xz6d.com^$third-party +@@||wavse.com^$generichide +ikjzd.com##.wv-right-content > .imgTop-right +2345.com##.v_picConBox.height214 +||xgo.com.cn/pv.js +||s1-a1.dnvodcdn.me^*.mp4 +sojson.com##.banner1 +||fxjs.2541.com^ +huamu.cn##.midle-ad-list +tangdoucdn.com#%#//scriptlet("set-constant", "Object.prototype.ad_switch", "0") +||ifeng.com/a_if/ +firefoxchina.cn###advBlock +boke112.com,ruanyifeng.com##a[href^="http://t.cn/"] +||alicdn.com^$domain=t66y.com +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:-abp-has(>script+ins) +||att.ydss.cn/attachments/portal/ +piaoliang.com##.hot990 +zybang.com##.top_download +douyu.com##.index-common-1-rrh +||olgame.tw/home/attachment/ +||amfhby.cn^ +||jxpjlb.xyz^ +gzmama.com###zone_index_fullcolumn_2 +||wkybwa.xyz^ +||lalabaos1025.top^ +||nbfsvreu.icu^ +kk200300.com##.xuanfu +||caoads.com/images/ +||7160.com/js/tiaozhuanquanju.js +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,xmlhttprequest,redirect=googlesyndication-adsbygoogle,important,domain=haoweichi.com +||union.591.com.tw/cpt? +||dhgfhedxx.xyz^ +||mtime.cn/tg/ +gdrc.com#@#.midAd +||dfprljx.xyz^ +||hefei64.com^ +||goto.www.iciba.com^ +||im286.net/286/ +||fdc.my0511.com^$script +:63666/960x150. +@@||hh010.com^$generichide +forum.hkgolden.com##div[id^="Super Banner"] +||swurserb.top^ +||js1.haoge500.com^ +||wstx.com/api.php?mod=ad& +dzwww.com##.popular +hao.360.cn##.cangbao_redbags +||user.042.cn/adver/adver.js +90oo.com##.mtswp_scbar_ad +elecfans.com###new-adsm-berry +||qdtjjxr.xyz^ +||ctlrarz.xyz^ +4gamers.com.tw##.closeable-ads-close +||ad.bobi.tw^ +||5lu8.com^$popup,third-party +@@||pchome.com.tw/img/js/xpcadshow.js$domain=game735.com +||guang1.zhakao.cn/common/ni_h/common/ffx_f/ek.js +zol.com.cn##.supervalue +iqiyi.com##.m-downApp +dmzj.com###app_home_ad +||63ef.com^*.js +||assp.sohu.com^ +||zhibok8.com/js/di +cgown.com,taohuayun.cn##img[width="980"] +book.qidian.com#$##j-topBgBox + .crumbs-nav.top-op { margin-bottom: 10px !important; } +chengdu.cn##.pop_box +kaitao.cn###ad-tit +||w3.ting55.com^ +||udn.com/mall/cus/cat/OutWebAd.do +@@||bdstatic.com/po/??*,*,*, +sina.cn##div[sax-type="proxy"] +sogou.com##.hd-slider > .slider-container +||vdggsd002.com^ +2345.com##div[id^="bd-search-ad"] +||91rb.com/fc/$image +||vast.doublemax.net/adserver/vast.xml$script,xmlhttprequest,other,redirect=noopvast-2.0 +||tngmn.com^$third-party +||visit-japan.jp/parts/visitjapan_f35_170_170.jpg +||qrmozsc.icu^ +||wnacg.*/themes/mo/images/*.gif +||rayajmp.icu^ +jxcn.cn,redianyule.com##.dsp_yxxf +baidu.com###gamePromo +||jzlso.xyz^ +@@||shopeemobile.com/shopee/*/modules/ads/ +||phpernote.com/ali +||datas.tianqistatic.com^ +so.com###mohe-etao_shangye +autohome.com.cn###s5473 +gaoqingw.com##.search + .widget +||dfcfw.com/libs/js/counter.js +||xlxehr.xyz^ +||lijlrz.xyz^ +dianping.com##.layer-container[data-view-bid="b_njcmobox"] +so.com##.cmclk +myday.com.tw##.myday_ad_950 +||wnacg.*/sd +||ylypzbzs.xyz^ +||dfcfw.com/js/*/emfloatmedia_ +||qtmojo.com^$third-party +sina.com.cn##.pc-tui-coupon +||hwhacum.cn^ +lenovo.com.cn##.nav_ad2 +ifeng.com##.ad06 +||taproximo.com^ +||szonline.net/static/js/ads.js +||images.jurong.cn/bbs/ +||szpbg.cn^ +huanqiu.com##.r-hqNext-ad +ali213.net##div[class^="GG"] +||pstatp.com/origin/137370002e7fbe11b296a +||jb51.net/imgby/logo_ +://m.*.top/*.js?ssid=_ +||dobiez.com/statics/wap_v1/js/qwd. +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":1480194257,"] +||re.taotaosou.com^ +18-comicfrieren.xyz,18comic.org,18comic.vip##a[href*="//"]:not([href*="comic."]) > img + [style] +||ipryes.top^ +||cbcvou.xyz^ +||jd.com/static/js/auto.js +||yan007.com/js/sss/ad.js +sogou.com##.aside-qcode +tvbs.com.tw##div[data-testid="ad-container"] +||afp.chinanews.com^ +||mg.xhkvff.cn^ +iciba.com##.common-top-nav-item:not([href*=".iciba."]) +||pplkrh.xyz^ +to8to.com##.bottom_slide_box +||jozbun.icu^ +||myyxox.icu^ +ez3c.tw##.ypa-custom2 +||ezeqcy.xyz^ +||ugtbit.icu^ +pixnet.net,inmywordz.com,sharonlife.tw##.adsbyfalcon +||turesdi.top^ +||hoxdotye.icu^ +||jyfw.cn/nav/cf_ +@@||coolinet.com^$generichide +91.com,hao123.com##.cn_banner +||sinaimg.cn^*/pushDiversion*.js +||ps886.us/js/*.js +||clkwnl.xyz^ +loldk.com##.appfix +||mg.glwxw.net^ +huaren.tv##a[style*="height:"] +||bzelzfnj.xyz^ +||sncop.uioozpxq.com^$all +fwxgx.com##div[id^="tuiguang"] +||jewruta.top^ +||alicdn.com/img/ibank/*_967741881. +||8131.qizhihaotian.cn^ +speedtest.cn##.index-advertising +||atanx.alicdn.com^ +bilibili.com##a[href*="cm.bilibili.com"][data-target-url]:not([data-target-url*=".bilibili.com/"]) +@@||epubit.com/static/epubit/share/js/share.min.js +||lelekan.com/sp/fmt.js +||me680.com/js/*.js +pcsoft.com.cn##div[style^="width:100px;height:300px;position:fixed;"] +||888xx222kk.com^ +||ksylied.top^ +iyf.tv##.video-player > app-gg-block.ng-star-inserted[style] +||iask.cn^*/qiye. +||csdnimg.cn/check-adblock/ +||cpffkbpq.xyz^ +||lensdump.com/i/*.gif$badfilter +||bvmqkla.de/files/photo/$third-party +fhm.com.tw###add-box +||jasdz1.cn^ +auto-online.com.tw##.news_content > div[style="width:728px;margin:10px auto"] +||anjuke.com^*/ajax/business_area_search/ +||fpb1.apple886.com^ +||kdslife.com/ui/ad/ +||alicdn.com/img/ibank/*_1746120392.$domain=~rmdown.com +lpl.qq.com,v.qq.com#%#//scriptlet('set-constant', 'CreativePlayerwebPlugin.AD_EVENT.AD_DESTROY', '') +||3p8801.co^ +||muyihh.top^ +||baizhan.net/coop/hezuo/ +getrelax.cc#?#.nav > li:has(> a[target="_blank"]) +@@||mcmod.cn/js/jquery.cookie.js +iqiyi.com###widget-jingdongAd +||jandan.net/static/ss/ +||kmw.com/js/adshow +numberempire.com#@##perm_ad +||rfidworld.com.cn/Notice/Home +||pub.funshion.com^ +17173.com##a[href^="https://gtv."] +||tuky889900.com^ +qq.com###emailLogin > .hd-slider +||qdp.qidian.com^ +||jin10.com/assets/img/sites/index/vip_ad +||abcache.com/tg/ +||chaospace.fun/wp-content/uploads/*/%E6%A3%8B%E7%89%8C- +||nlrsbd.xyz^ +boylov.xyz,boylove.cc,boyloves.fun##div[style="display: block"] +||8suis.top^ +||blzbjpg.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [class] > [id*="00"] > tbody +||54kefu.net^$third-party +||fabu333.top^ +||fdhnsr56.shop^ +||tnmpd.xyz^ +jmw.com.cn##.head_1b +fastadmin.net###detail-recommend +woshipm.com##.article--heroAd +||pcauto.com.cn/forum/1508/intf7631.js +||codesocang.com/js/a.js +@@||tt1069.com/ads.js +@@||orientaldaily.on.cc/js/oncc-ad.js +5253.com###android-qr +||eq.af31f.site^ +romzhijia.net##.ggposition +4gamers.com.tw#?#.aroma-news-detail-side > div[media-width]:has(div.aols-wrapper > a[target="_blank"][rel="noopener"]) +||pressit.cn^ +iqiyi.com##div[class^="list_list__"] > div[style*="margin-bottom:"] > div[style*="margin-right:"]:has(> div > div[style*="background-image:"] div > div[class^="video-list-item_"] > div[class^="video-list-item_"] > a[href*="&creative_id="][href*="&impress_id="]) +@@||i3.sinaimg.cn/video/deco/2013/0325/js/ +||jijidown.com/static/img/right_bottom. +@@||cy.com^$generichide +||super.kdnet.net^ +||baidu.com/static/ecom/js/wise/home/nativeAds_ +mobile01.com##.ad-adblock +book118.com##div[style*="width: 252px;height: 260px;"] +kocpc.com.tw##[ad="show"] +||mfaec.cn^ +||y341i.xyz^ +||jieshengit.com/js/jhhe. +||ypkiog.xyz^ +||qnalzly.top^ +@@||juduo.cc^$generichide +||dfqzah.xyz^ +||vdsdsf2.fun^ +||kewrutd.top^ +lifenewsjr.com##.fabox +||wanmei.la/a*.js +bilibili.com#$#.bili-video-card:has(.bili-video-card__info--ad) > .bili-video-card__skeleton { visibility: visible !important; } +39.net##.ad-tl +||51cto.com/home/web/js/new_login/iframe.js +netflav.com##.ads_video_overlay_mobile +40407.com###nei_fmt +||sewrutb.top^ +@@||ccllaa.com^$generichide +huya.com###huya-ab +duba.com,iduba.com,newduba.cn,uu114.cn##.fav_box +sohu.com#?#.news-wrapper > div.news-box.clear:has(> [data-ad-format]) +china.cn##.ltp_box +||sinaimg.cn/finance/zwy/sidead_ +||zltndp.xyz^ +||dvgjx.cn^ +ktsf.com###sow-slider-18 +||iumboa.xyz^ +qq.com##.in-top-ad +myqqjd.com###advert_widget +||unionli.com^$third-party +||zoosnet.net^$third-party +||ajkggo.xyz^ +||360.cn/popup/popinfo/ +||dm.cnbanbao.com^ +@@||bing.com/translator/api/Translate/TranslateArray?$third-party,xmlhttprequest +1m3d.com###klp_adtop +@@||amazonaws.com/storage.liveabc.com/ads/$domain=store.liveabc.com +||hsyipos.com/template/mxone/html_tplmx/vod/*.gif +ying35.com#?#table:-abp-has(a[href*="/fei-ad"]) +||luyx8.com/tu/666.gif +hao123.com##.widget-hlbar > span +:8888/zhu/wap_ +||sfqyck.xyz^ +||showguide.cn/templets/*/qqcenter.js +||tq121.com.cn/j/ad/ +ettoday.net##.content-container > .iframe-ad +ddrk.me##a[onclick^="ClickobayST();"] +||taobao.com/go/$third-party,domain=~alimama.com|~alitrip.com|~tanx.com|~tmall.com +jmw.com.cn##.head_3 +eepw.com.cn##.AD300x200 +@@||logcg.content-delivery.top/wp-content/plugins/bwp-minify/min/?f= +||gaoqing.la/wp-content/uploads/*980x +dict.cn##.search-right-ad7 +163.com##.with-bot-ad > .arrow_down +yyets.click#?#.MuiBadge-root:-abp-has(>a[href*="/maomao.cloud/"]) +||996js123.com^ +||cammak.xyz^ +||sgcwoe.xyz^ +||a.qncye.net^ +cqmmgo.com##div[data-id*="_adv_"] +||blz105.com/player/ad.html +||plzblz.xyz^ +||xymahuxv.xyz^ +hao123.com###guesslikesite-block +||laozuo.org/wp-content/themes/weisaysimple/js/*-bottom.js +||mikka.app^ +||js.mumayi.net/9495.gif +@@||51zxw.net/shipmingko.asp?$domain=51zxw.net +||eol.cn/js/eol/ +||qbcmws.xyz^ +||vxcvd67.fun^ +||gaofuwu.org/js/dd.js +||5fz.cc/t/aimg/tao +knowlet3389.blogspot.com,knowlet3389.blogspot.hk,knowlet3389.blogspot.jp,knowlet3389.blogspot.tw#@##gAds +yes-news.com##.new-index-ad300 +javlibrary.com#%#//scriptlet('abort-current-inline-script', 'document.write', '/getCookie[\s\S]*?\("\\x/') +||lekfez.icu^ +||ws.wenshenxiu.com^ +||jrmianban.com/img/images/g-g/ +||banma.com/js/adi.js +||pofmnj.xyz^ +@@||meituan.net/bs/js/*/js/tracker.js +atoolbox.net###ad-coupon-search +||jfjslia.top^ +||wzbaohe.com/imgadnew/midad.js +||biqiuge8.cc/js/d +howbuy.com#@#.ad_wrapper +south-plus.net##a[onclick*="'ad'"] +5dy15.cc##div[id][class^="is_"][style^="margin"] +||sdbeta.com/statics/mystyle/js/1 +||tewruti.top^ +baidu.com##.banner_center_adv2 +||haokan5.com/js/haokanjs/tj.js +@@||soufunimg.com/??*/fshare. +kingkong.com.tw##.public-activity +@@||dlkoo.cc^$generichide +||doujs02.xyz^ +@@||beanfun.com/ADClient/ +huaren.tv##.live-client_right +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.firework_sender_wrap +||moratame.tw/img/contents/banner +baidu.com##.b2c-universal-card-product-item-wrapper +league-funny.com##.google_more +||pixfs.net/js/mib.min.js +chongdiantou.com##.nice-sales +qq.com##.tmallredpacket +||trendmicro.com.tw/wp-content/uploads/*Banner +lenovo.com.cn##.TopBar +mail.126.com,mail.163.com##div[id^="_mail_popup_"] +xpiaotian.net#@#.pagead +||psyzg.com/Public/Home/images/tuhe_240_236.gif +||mwzbp.iask.com.cn^ +aae3.com##form + center > p[align="center"] +||o.jy135.com^ +||jia.com/js/common/article_home_adv.js +||vghkncbu.xyz^ +jiakaobaodian.com##.com-side-car-sales-rank +||m.2kxs.org/img/hia1.js +wmsj.pw##[class^="asb-"] +iyf.tv##.video-player + div[class*=" "] > div.block +||cergbtb36.shop^ +||d3iih5w7xp5hdg.cloudfront.net^ +||0606kk.com/js/index/index.js +||tycxhgrp.xyz^ +tbtdg.com###adblockWarning +||le4le.com^ +||wxymag.xyz^ +people.com.cn##.cont_banner +||777aa888bb.com^ +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#$?#a.focus_title_inner[href*=".ad_click"] { remove: true; } +cmsky.com##.textwidget a[href^="http"]:not([href*="cmsky"]) +||pcstore.com.tw/adm/psearch_payad_ +||asd8900.oss-*.aliyuncs.com^ +||xs8.cn/qreport? +xiebruce.top###ai_widget-2 +||ouplc.icu^ +||alicdn.com/img/ibank/*_1932275220. +||fans.*.space/fans/*.php +avbebe.com##.sidebar a[href][target="_blank"] > img +2345.com###sidenav > .activity-trig +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="right_qunar_hotel"] +@@||newsmth.net/nForum/*/ADAgent_ +||abody.39.net^ +||5068.com/websleft.js +histock.tw##.bottom-right +2014.qq.com#@##adIframe +||biketo.com/d/file/p/ +83133.com##.tb-tanx +||woozooo.com/img/*.js +weibo.com#?#.card-wrap:-abp-has(>.card>i[style*="%E5%B9%"]) +||icudqq.xyz^ +news.baidu.com###detail-HotScrollNews-wrapper +toutiao.com##.article_link[data-tag="ad"] +||fghhbp.xyz^ +3h3.com##.gaosu_div +||fhnbrx.xyz^ +||baidu.com^*/w.gif? +dcfever.com,gaodun.com##.advertisement +||g.hsw.cn^ +bilibili.com##a[href="/video/av8587236/?tg"] +||as1.wenku.baidu.com^ +||cgbswl.icu^ +||amidicestrins.com^ +ouyaoxiazai.com##.qzhengfu +||dxg0070.top/img/ +megatime.com.tw,pchome.com.tw##div[id^="ad_div_"] +||efmtsw.xyz^ +mcmod.cn###McmodDonate +||eeqweqw.fun^ +sese733.info##.fp-player > div[style^="position: absolute;"][style*="overflow: hidden; z-index:"]:not([class]) +||alicdn.com/imgextra/*_!!1974227597. +jin10.com##.jin-popularize +||jijistatic.duapp.com/Squall/1.jpg +nodejs.cn#%#//scriptlet('set-constant', '_AdBlockInit', 'noopFunc') +||qunar.com/render/googlesem.jsp +||eastmoney.com/js/headbiggg_ +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video-js.min.css$domain=setn.com +cntv.cn##div[class^="tchmk_"] +||rebojf.xyz^ +||tlbjw.com^ +||tekmhvbb.xyz^ +v2rayssr.com#$##wrapfabtest { height: 1px!important; } +91porny.com##.container-fluid.p-0[class*="mb-"] +||vdggsd012.com^ +blog.csdn.net##.toolbar-advert +||aichuangfu.cn/jquery/ +qncye.com##.bbaner +||engwsq.xyz^ +||tsdm.live/weibo.html +||icnkr.com/data/attachment/portal/ +||ea3w.com/pv.js +||synacast.com^ +||cruhut.com^ +2345.com##div[id^="J_micro_zhuanti-"] +gfsoso.99lb.net##center > a[target="_blank"][rel="nofollow"] > img +||sina.com.tw^$subdocument +||lofter.com/mailEntry.do?blogad +ghxi.com##div[style^="padding:10px;position: fixed;bottom: 0;left: 0;right:0;z-index"] +txtbook.com.cn##.ledu-advWrap +||hxsxw.com/js/float.js +||ydgal.com/axfile/ +||tingchina.com/images/aibaoliang.gif +||akamaihd.net^*/gsd.html?d= +@@||99wbwc.com^$generichide +||ovejqw.xyz^ +@@/adimg/*$domain=laniqu.com +@@||money18.on.cc/js/adbanner.js +steelcn.cn###table img +||888bb666cc.com^ +@@||qimingdao.com/Index/loadmore?tag_id= +jsjiami.com##.banner-container li._logo ~ li > a[target="_blank"] +||chengtu.com/api.php?mod=ad&adid= +||licai18.com/henyepweb/ +||6gcstb.xyz^ +qidian.com###j-topBgBox +||3dwwwgame.com^$third-party +||caicme.xyz^ +||wuisaq.top^ +eyuyao.com##div[id^="x_ad_"] +3boys2girls.com###displayadb1 +||szdpk.cn^ +78dm.net###qpgg +||uafuzcxr.xyz^ +php.cn##.close_id +baidu.com###relative_shop_flow +||jppxnhe.xyz^ +||mfav88.com/yinzi/ +cool3c.com##div[style="width:98%;border:1px solid #ddd;padding:5px;margin-top:5px;"] +iyf.tv##.ss-ctn +loldk.com##a[href^="http://www.esportsclub.cn/home/"] +||bcthd12.shop^ +||stat.pchome.net^ +||uu1.3gu.com^ +||ewqeq23.fun^ +||esyook.xyz^ +||614514.com^ +||baidu.com/show/livevideo/getStreamConf? +sina.com.cn###AD_Background_Wall_Banner +mtrend.cn###toptabs1 > .kz_line +||laozuo.org/banner/ +||meituan.com/ptapi/recommends? +eastday.com##.beforegg +asmag.com.cn##.adAsMainLeft +@@||assbbs.com^$generichide +gd163.cn##.bbs_ad +league-funny.com##.player_bb +||xxhh.com/xh.js +baidu.com,comefromchina.com#@#.ad-block +||kyokglm.icu^ +||d.ab126.com^ +||0efghij.com^ +||qrovwu.xyz^ +2345.com##.s11-logowall +@@||haokoubei.top/sz/tos_v_f.js +||rmbvzh.xyz^ +eastmoney.com###fp1 +||29spp.com/js/tj.js +||emjs.mkzhan.com^ +mydrivers.com#?#div[class^="news_info"] > ul.newslist > li:has(> span:contains(广告)) +||7mmtv.tv/u_banner/ +wenku.baidu.com##.zhixin-ads +||tkiteri.top^ +||nex.163.com/q? +@@||ad4.on.cc/web/www/delivery/fl.js +juejin.im##.banner-section +||zzad.com^$third-party +||21yq.com/mg/21yq/ +zhcw.com##.ycxdZw +liaoningmovie.net#$#.with-ad[data-layout="list"] .main-header { width: 100% !important; } +||wxsicu.xyz^ +sblunwen.com###popupService +||zol.com.cn/cgimp/zc.js +javdove.com##.dn_fix_bottom +renfei.net#$#body { overflow-y: auto !important; } +||cnprint.org/bbs/images/gg/ +natgeomedia.com,setn.com,eprice.com.tw##div[class^="ad-"] +||tianqi*.com/static/banner/data_tuiguang.js +||qq.com/tousu/img/20210511/8966052_1620746143.jpg +||lbqdaua.icu^ +||heibaizhibo.com/_nuxt/87a5efd04908651591f7.js +goodcome.com.tw###jad-top +||bdjdpyrt.xyz^ +||adyun.com^$third-party +||s1.dugoogle.com^ +||twzui6.com^ +||ssnn.net^*-200-250.jpg +rising.cn##.lvmama +typecho.wiki##.adn-ar +@@||huhupan.com/e/extend/down/$generichide +xydai.cn##.deanad4s +loldk.com###test_ad + #model +@@/hitCount_$xmlhttprequest,domain=on.cc +hkcards.com###ad-slot-01 +gmgard.com,hggard.com##A[onclick*="Advertisement"] +||x6img.com^$domain=picturedata.org +||uusjaq.top^ +360doc.com###btn_freeread +163.com##.post_adtop_main +||data.xici.net^ +||dm.21hubei.com^ +||taisha.org/statics/js/pc2.0/common/form.bottom. +ccb.com.cn###leftSideAd +40407.com##.bg_l +||csfds000.fun^ +||baitu3lllqubyqmttdkjsv.com^ +sogou.com##.u-page-gg +||ikafan.com/upload/image/iqiyi_ +fortunechina.com##.pinglunmask +||vzmz.com/template/paody/aaaa/*0 +||sidfiz.icu^ +cnys.tv#@#.player-news > .news-list +||wvceki.xyz^ +||dazhantai.com^$third-party +miniie.com,tisai.com###gg_content +hahamx.cn###float-left-ad +igo.cn###NewigoBox +cr173.com##.downurl[data^="viewAds"] +18h.animezilla.com###manga-bottom +||ickd.cn/mobile/js/touch +||js.263y.com^ +||bdsahkln.xyz^ +ali213.net###ali-js-4 +||m.21haodianmt.com^$third-party +||yfaqgk.xyz^ +jpfans.com,jpseek.com##table[cellspacing="1"][cellpadding="6"] +||proewildfire.cn/fd.js +||sh.sina.com.cn/js/441/ZwyArticle_commo_23.js +||maqmix.icu^ +muchong.com##.todayhot +slashview.com##div[id^="Advertis"] +@@||google.pl/translate_$media,third-party,xmlhttprequest +jianbiaoku.com##div[style="width:960px;height:130px;margin:0 auto;margin-top:35px;padding:0;cursor:pointer;"] +jiligame.com##img[onerror="zhurl($(this))"] +||1.arpun.com^ +||molibaike.com/js/ads. +||rofmjd.xyz^ +||js.bju888.com^ +itavcn.com##.hot_dealerxin +flighty.cn###searchBox + #sidebarBox +||jgblvt.xyz^ +@@||meizu.com/fileserver/ad/img/ +360.cn##.fangcloud +pan666.cn##.footer > .containerNarrow +||web8.net^$third-party +2345.com###ivy-taobao +hehagame.com##.webad_right +||yitongkan.com/splash.xml$rewrite=abp-resource:blank-js,domain=yitongkan.com +win7xzb.com##.four_box +daniao.org##.wow.fadeInUp.tg-site > a[rel="nofollow"] > img +@@||landtop.com.tw/images/ad/ +||alicdn.com/ad-product/ +||kekenet.com/images/*980 +tieba.baidu.com,wapp.baidu.com##.iSlider-wrapper-container-hot-thread +letv.com###JS_banner02 +||crbbhp.xyz^ +theav.xyz,69xx.one,theporn.cc#%#//scriptlet("set-constant", "is_show", "false") +bookrbx.com##a[href="/rmtj.html"] +muve.org.tw#@#.sponsor-wrap +||handjob.tw/ad/ +||npjvgug.xyz^ +maomaomom.com###execphp-15 +||vkandian.cn/peitu/ +||czsp12.com/api/*=announce& +sobaigu.com##a[href^="https://cloud.tencent.com/redirect.php?"][target="_blank"][rel="noopener"] > img +||house365.com/js/lbpopup.js +jinti.com##div[id*="gg"] +kairos.news##a[href^="https://kairos.shopping/product/"] +||2345.com/dypcimg/*gameRecommend.js +||wbiao.co/src2/js/expand/fudong/ +||28kys.com/92kviptupian/ +pconline.com.cn##.jcz-focus +2345.com##.s12-fullNav +||lzyysw.com/upload/ +mydrivers.com##.jdong11bg +firefox.com.cn,firefoxchina.cn##.main-huo +xia1ge.com##.wsappad +||28hse.com/adsman/www/images/ +||putaoys.com/static/js/acb1.js +||yunupload.net/jsa/ +||iggbky.xyz^ +@@||115.28.114.149^*&adf=dalian_300x250_ +||paopic.com/imguang/ +360doc.com###divaboveReflectionAd1 +||youyiya.com/Tpl/mobile/js/you +dmzj.com###khdDown +eastmoney.com###rightadvert +@@||bcebos.com/static/translation/widget/translate/output/AdBanner/AdBanner.js +rising.cn###left50 +||1iohncj.xyz^ +||99nets.com/kfb/index.html +?ad_type= +||bvxiht.xyz^ +juksy.com###cover.modal__mask +@@||appledaily.com/js/nxm_ +||c11011.com^ +ilxdh.com##.double11-dialog-container +~ix8.la##div[class^="ADTOPLB_"] +tsubasa.im#%#//scriptlet('prevent-setInterval', '/home/?adblock=') +||ggfdgd88.fun^ +||m1955.com/template/qq/images/playad/ +qzone.qq.com###appstore_sidebar_r +qq.com###focus_jordon +||uploadhouse.com^*.gif$domain=wishct.com +copyfuture.com#?#.tabbable > div:-abp-contains(宝红) +500papa.com,papa03.com###content > div[align="center"] > a > img +sui.com#@#.fb-btn +||cg-pao-tu.nanyanglk.com^ +||gk99.com/static/js/a-d-sys.js +||shiyaokejishanghai.com^ +||aukllsq.cn^ +||yaoyl.com/js/ds.js +amazon.cn#?#.s-result-item:-abp-has(> .s-item-container > h5 .s-sponsored-info-icon) +qq.com##.ad-text-box +jinse.com##.js-spread__main +||komvkup.cn^ +en8848.com.cn#@#.adcenter +gohome.com.hk,idv.st#@##adFrame +||bf99.com/User/Images/bg_Blued.jpg +7x7n.com##.down_load_1 +boke112.com###linkdh +||toolfk.com/common/zfb.jpg +||dzwww.com/images/ad_down.js +||ifengimg.com/md/*/v_responsive +||botcm.com/zhanqun/ +52pk.com###ggfloat +||eyusky.net/weixin-img/zhifubao.jpg +rfidworld.com.cn##.indexBanner +jd.com##.ab-goods +||guysfair.com^ +17ce.com##a[href="/site/api"] +||hkdm688.*/js/68/ +||yzgbsg.xyz^ +avtb01.com##a[href^="http://xgn66.com/?aff="] +||lv-play.com/web/adv/list +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###video_aside +||gp.jstv.com^ +@@?sid=ads$domain=126.com|mail.163.com +liantu.cn##.wrapper > .inner.h90 +||mkd88.cc/16.32.jpg +||adm.cloud.cnfol.com^ +||htqyy.com/kiees/ +||tfczk.xyz^ +xinhuanet.com##.columBox.book +||aasingapore.cn^ +||zwxxcb.icu^ +qq.com##.elevator[class^="jsx-"] +720yun.com##div[class^="Ads_ads_"] +examw.com##.activeBottomBox +angelweb.cn##.GG960x90 +66se2.com##a[target="_blank"] > img +maxthon.cn###header-float-promote +||qhimg.com/static/*/common/seed.js +||suzoqz.icu^ +||xstt5.com/template/js/fx +||itjgwn.xyz^ +||ujovcb.cn^ +||ishowx.com/www/2015/js/top.js +||wnacg.*/w7z/ +chexun.com##a[attr-outside-ad] +||zhanqi.tv/api/static/v2.1/actives.lists/ +||hgngrf.xyz^ +||kphcrjth.xyz^ +myqqjd.com##.cms-news-normal-box > article:has(span.merge-cat > a[href$="/activity/"]) +lwgod.me###wp > a:first-child +aizhan.com##.btn +||hujiang.com/ciku/getDetailSoftText/ +||gkypgw.xyz^ +baidu.com##.experience-card-bar-wrap +||ideng.com^$third-party +||fpb1.chinacar. +bilibili.com##.floor-single-card:has(.floor-skeleton):not(:has(> div.bili-video-card__skeleton)) +sm.cn##.oab-ball-wrap +||stat.cutv.com^ +playno1.com###frame8I822E +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=23qb.net|4spaces.org|aboluowang.com|assbbs.com|bilinovel.com|chaojizhibo.net|chtoen.com|daxiaamu.com|demo.ama.pub|dizhishengcheng.com|doitwell.tw|ekamus.info|eu4cn.com|ff14angler.com|freedidi.com|fsbot.xyz|haoweichi.com|it365.abctool.info|linovelib.com|logi.im|mens1069.com|monnsutogatya.com|mpyit.com|myqqjd.com|numberempire.com|ozabc.com|pansearch.me|patch.ali213.net|pc3mag.com|reh.tw|shenfendaquan.com|sistersbedroom.com|sto520.com|vaptcha.com|wandhi.com|wenxuecity.com|wuyong.fun|xbeibeix.com|xiebruce.top|xugaoxiang.com|xxxxx520.com|yodu.org|yummy.best|zaixianjisuan.com +jandan.net###sidebar > ul:nth-child(2) +so.131458.com##.tishi:first-child +||wnootzc.icu^ +||baizhu.cc^$third-party +24en.com##.article_part_top +cr173.com,downcc.com,downyi.com,itmop.com##.downnowgaosu +bilibili.com##a[href*=".doubleclick."] +kuaihou.com##.bz +map.baidu.com###message-panel +chinaz.com###setHomeTonglanCMedia +||taijuba.com/js/*_ +||gimy.*/images/eee*.png +||duoyi.com/welcome/$popup +||mhdnspro.com^ +eetop.cn##.alert_windows +yes-news.com###content-ads-right +||cnzz.cn/ssp_ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_frs_head +||liuhui111.top^ +||wdipsume.top^ +18183.com##.pcBtn > a[href*="@"] +cs.com.cn,qinbing.cn,sonimei.cn###leftDiv +||jy01.shop^ +qq.com###comic_ad +dhaomu.com##.ceo-ad +segmentfault.com###hotArticles:nth-child(3) +||chbheroq.xyz^ +||cfateu.xyz^ +||cc.xwscg.com^ +efu.com.cn##.banners-top-b +@@_cpc_cpm_$domain=saraba1st.com +||isylieo.top^ +||mtwuxss.icu^ +iqiyi.com##.lanzhi_cont2 +@@||sohu.com/play/videonew.do?*/share_play. +stealjobs.com#@#.custom-ad +mikanani.me##a[href][onclick*="'ad'"] > img[src^="/images/Masha/"] +||golilog.com^ +163.com##.rg_ad +cokemine.com,eveaz.com,jubuzz.com,skyarea.cn,tianfateng.cn#@#.category-share +supertaste.tvbs.com.tw###ad_m_bottom +||jdbfknsbkldns.com^ +cbg.cn##div[class^="erweima"] +netflav.com##.ads_head_banner_container +2345.com##.mod-serchright +||wsyfsg.xyz^ +gfan.com##div[style="width:960px;height:90px;margin-top:10px;"] +thwiki.cc###a-carousel +crsky.com##.ml10.Gs_d +||920share.com/layer/layer.js +||jyrd.com/statics/*/js/baizhu/ +||ashow.pcpop.com^ +||appledaily.hk/banners/subscription/ +||xiazaizhijia.com/w2/js/wxzzj.js +pcstore.com.tw##.priority_ad +||bd1.sosg.net^ +||fragment.firefoxchina.cn/html/ +bitauto.com###video_floatBox +||r528e.cn^$third-party +||gedu.org/js/meiqia_pc_groupmarket. +||regwiuv.cn^ +baidu.com###ad_xbox_3 +||touimg.com/u/20200419/18431854.gif +jr31.xyz##body > div.wp > div.wp > a[rel="nofollow"] > img +||fj.sina.com.cn/iframe/63/ +meijuniao.com###widget-weixin +@@||dlkoo.cc/down/Copyright.js +kuaibao.qq.com##.slider-box +hao.360.cn###festival_fly + .couten +imydl.com##a[href*=".wuluoyun.com/aff/"] +||alicdn.com^*_!!3361094544. +ltn.com.tw##.ltn_ad +||ameidj.xyz^ +||crhabkd.cn^ +||dairzih.com^ +159i.com##.a2.style25 +||deyangs.com/img/ +baidu.com##.bannerdown +||kloojzn.icu^ +||sefu8j.com/index.php?m=poster& +||alicdn.com/img/ibank/*_1995781528. +qq.com##.cps_inner +xiazai.zol.com.cn##img[alt^="AiPPT"] +smzdm.com##.g_g +keylol.com,steamcn.com##div[class*="rnd_"] +sm.ms##.detail-advert +||ge3shbdf1.fun^ +duba.com,uu114.cn##.hotTitle +qq.com,sogou.com##.m[pbflag="bt_mai"] +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":1990070693,"] +v2rayssr.com#?#.single-top-html:has(> div:only-child > a[target="_blank"] > img) +ipv6.baidu.com,m.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###results > div[class]:not(.result):not(.result-op):not(.sp-rslt-bar):not(.s-group-result):not(.hint-unsafe) +||kuaileco.com/weishou/ +||abminbuy.com^*.gif +apk.tw#?#body > div:has(> div[class^="yap-ad-"]) +||jwjzf.online^ +||hackhome.com/js/dright.js +||dchyjb.xyz^ +sex8.cc##.V-video-float +xchina.co##.push-top +iqiyi.com##.gg-l +||dkstrtss.xyz^ +@@/gtm.js$domain=amd.com +netfly.fun,netfly.tv,netflytv.xyz##[style^="display: flex;"] +||e10000.cn/Images/link_td01.gif +||xnpuw.cn^ +@@||sinaimg.cn/dy/deco/*/js/base.js +@@/images/*/*.gif$domain=maichun5.info|myhhg.com +@@||dushu.ru^$script,domain=bhshu.net +||yingav.net/images/content/spot01.jpg +||medsci.cn/aimgs/$script +||autopiano.cn/data/jd_ +||ugkpsi.xyz^ +dianyingim.com,dyxs11.com##.popup-tips +141hongkong.com##.wp.at +4399.com,sxrtv.com,zgsyz.com###ad2 +||obwnaon.icu^ +ooopic.com##.fix-newUser +||uiszwh.icu^ +||9216tp1.com^ +||fhvzrr.xyz^ +huanqiu.com##.ad_t1 +||robudpw.cn^ +caiyunapp.com##.active-imgContainer +news.mydrivers.com##.baidu_left +lenovo.com.cn#?#a:-abp-has(>div>p:-abp-contains(广告)) +||tonnn.com/promotion2/*.js +||vdggsd003.com^ +zuowen.com##.couplet_right +||jsdelivr.net/npm/live2d- +||ggrfab.icu^ +||bf99.com/User*/Ad_ +maolihui.com##.con-ad +boylov.xyz,boylove.cc,boyloves.fun##.div_sticky2 +wenku.baidu.com##.commerce-flow +||lhtnuop.xyz^ +||n522rv1.cn^ +||xiaoy.name^ +||suclj.xyz^ +||med66.com/lamu/ +||gd.ct10000.com/js/ecssstat.js +||meixincdn.com^$domain=novipnoad.com +keywin.org##.appdownload +dealmoon.com,weibo.com##.pic_ad +olgame.tw##.nex_index_ads +||ofkcww.xyz^ +||4399.com/jss/*coup.js +||p.kugou.com/?id= +ruten.com.tw###search_u_970x90 +||alicdn.com/img/ibank/*_1165462224. +||vrivslffndepxqd.xyz^ +kuaihou.com##.ul_Address[style="border-bottom:1px solid #ddd;width:280px;"] +||eeyy.com/uploadfile/img/beitou +ca168.com,cs.com.cn,qiannao.com,qinbing.cn,sonimei.cn###rightDiv +||jbzyw.com/Application/M/adv/ +||ewerilxw.top^ +@@||dlkoo.cc/down/copy1 +pchome.com.tw##.ad_triple +||bld.mobi^ +qq.com###nqsnqsad02 +||qwnmfiti.xyz^ +||affyun.com/wp-content/uploads/*-ad. +||amradmin.5173.com^ +||hzhyhm.com^ +@@||hk.on.cc/js/v4/oncc-adbanner.js +||qq.com/pc/batch_get_ads +52kd.com###frame2cu3VU +||163.com/ntes/special/*_papa. +cnbeta.com.tw##.article-global +51cto.com###upopbox_bot +||s2tu.com/images/*.gif +||tiantianzhibo.com/sda/$image +||d1.5h.com^ +9kld.com##table[width="990"] img[width="990"] +||gcxa.cn/a/gb.gif +||guli21.com/js/ggdm +blog.163.com###r_mlofteriframe +@@||1keydata.com^$generichide +91duba.com##.m_guess_like +||macd.cn/macd-topads.html +||haokan5.com/js/haokanjs/2014_ +||tlula507.com/Public/js/float +||baucraell.com^ +||360.cn/festival_zone.html +||costarg.com^ +||downk.cc/item/*.gif +||axutongxue.net/js/ik474n.js +edh.tw###fix-corner +weishangshijie.cn##div[class^="news_a"] +||76fengyun.com/jsa/ +@@||tvb.com/social/share_ +||kwaterd.top^ +||jsqygwl.top^ +||tt.biquge.la^ +||wxfdmri.xyz^ +||38.33.15.*.gif +||ifengimg.com/a/2017/*600. +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post[data-field^="\7b \"author\":\7b \"user_id\":1224761005,"] +||591hx.com/js/sy.js +||gkktjf.top^ +aipa551.com##a[href*="theporndude.com/"] +luanren.com##.luanren_dbhfad2 +||6080w.com/template/ttk/img/ +itboth.com,itkeyword.com##.ad_pop_left +||cidianwang.com/js/left +olevod.eu##a.wbalist_thumb[target="_blank"] +qq.com##.player_bg_ad +@@||gamer-cds.cdn.hinet.net/vod/gamer/*.ts^$domain=ani.gamer.com.tw +abmedia.io##.pum +51cg1.com,h3ugz0.arwiotgiy.com,h3ugz1.biyuhcltj.com,h3ugz2.lrjhvntu.net,h3ugz3.ogvoxarpd.com,h3ugz4.uovxifzj.com,h3uaz0.ogvoxarpd.com##.horizontal-banner +||alicdn.com/kf/H9df22b1c3f0041b2874ddfd38836993em.gif +||uydzfldt.xyz^ +iqiyi.com##.khzqBox +@@||paypalobjects.com/tagmgmt/bootstrap.js +||avple.video/asset/bann.js +cssmoban.com##.page-banner +||crlsxny.xyz^ +7b2.com,thh521.com,vikacg.com,zhujib.com#@#.social-top:not(html):not(body) +airacm.com###diyscsad01 +||uniway.cn.com^ +||am.szhome.com^ +||x21.cn/service/feeds. +@@||content.s8bbs.com/ad/bbs/*.jpg +jnnc.com###float_layer +businessweekly.com.tw##.mainR_content:nth-child(5) +||cnmo.com/oddjs/ +airav.cc###corner_cf +||tz-68-fabb.com/qiye/ +||ccccc67kkkkk.com^ +baidu.com##.s-news-special[data-url^="http://vip.baidu.com/"] +||helloavgirls.com/public/hg/ +51.la##.da-item +||a1714.com^$popup +||zhimg.com/80/v2-725c659194eeebb8c6b970e52e2dc8aa. +||bccnsoft.com/aac/ +||bgidskiv.top^ +||n6579.com^ +||rackcdn.com/htv/banners/$domain=hanime.tv +123pan.com##.banner-container-h5 +||jdoshba.top^ +18av.mm-cg.com###primary_content > #Dfrom +zouaw.com##.cloudbox +||alicdn.com/kf/Ha3566a6209ec45f597d392707b066cb9D.jpg +||kbexos.xyz^ +||mydrivers.com^*/news/ayun +||kqvvqv.icu^ +vpsdx.cn,vpsdx.com##.span4 > a > img +gdmm.com###ad_cover +5184.com##.gg600 +boylov.xyz,boylove.cc,boyloves.fun##.owl-carousel +@@||xidian.edu.cn^$generichide +||alicdn.com/openad/dsp-front-booth/ +bdp.cn#@#.adv-list +||neuralstemcell.com.cn/img/js.js +||yiqifa.com^*.js$third-party +qq.com##.adv1000 +cnfol.com##.NavTopAd +||cysgcm.xyz^ +3dmgame.com###yxj_fmt_gg +||qlogo.cn^$domain=chichiav1.xyz +||jquery.envi-met.com.cn^ +||m.feisucn.com/assets/js/m.js +||jlpcn.net/img/300p- +||949949.com/2013/end/hot_news.js +kzs1w.com,sehuatang.org##div[class^="show-text"] +||ifengimg.com/iamsImg/*_w100_h550. +@@||jiayuan.com^*/pv.js +||citysbs.com/chongqing/*/1920x179- +playno1.com###m2 +||miniye.xjts.cn^ +news.sohu.com##.god-first +||logoquan.com/upload/prd/ +||atbif.cn^ +baidu.com###index_right_top +||hapqncfg.xyz^ +||dasljfoq.top^ +eic.org.cn##.lx-btm-box +||onxtxdm.xyz^ +gansudaily.com.cn##.itemFloat +bilibili.com##.eva-banner +9kld.com##iframe[src^="http://www.9kld.com/ad"] +||477zw.com/js/nzm +||hsylieu.top^ +u2mtv.com#@##slider-ad +||isso.com.cn^*/A-D/ +||showguide.cn/templets/*/sg-ad.js +lz13.cn##.left_box5 +||dajkqqpz.top^ +||sooopu.com/js/*950.js +baidu.com###qrcode-chunwan +||dytt.com/oj.js +||haofs.com/haofs/ggapi.asp +||shbzogs.cn^ +04647.club##div[class*="adsBox"] +ifeng.com##.fhsd +ddys.*,ddrk.me#%#//scriptlet('set-constant', 'Object.prototype.cnobpreroll_', 'true') +||pjzxdl.xyz^ +||ms.cnbanbao.com^ +||fbvskv3.com^ +ifeng.com###baidualading +animewld.club##.header-img +||mamibuy.com.tw/Ad/Period.aspx +7x7n.com##.down_load_2 +gdmm.com,gkstk.com#@#.adtop +||resource.baomihua.com^ +||baishuku.com/news/$script +user.qzone.qq.com##.f-single-biz +||ebiotrade.com/netother/sy2013.ashx?type=quanping +am730.com.hk#?#.newslist-row > li.newslist-item:has(> div.adbox) +mvcat.com##.jsalert +||localau.vip/plugin/pause.php +@@||sogou.com/pv.gif?*&stype=showskinpanel +@@||right.com.cn/forum/*300*250$image +||w0054.com^ +||img.ifeng.com/tres/html/ +comefromchina.com##.ad_navtext_11 > li:nth-child(n+2) +ruanyifeng.com##a > img[src*="wangbase.com/blogimg/asset/"] +php.cn,v2ex.com,233tw.com##.wwads-cn +wdzj.com##div[class$="-ad-top"] +||hkjunkcall.com/images/b_banner_ +kuaishouba.com##.index_adbox +manhuagui.com##div[class]:has(> .adsbyexoclick) +||aqiemc.xyz^ +ali213.net##.coopSteambox +163.com###r_mkaolaadv +||04cmm.com:8888/js +liaoningmovie.net##div[style^="width: 300px; height: 250px"] +||biqiuge8.cc/js/p +bing.com###b_results > li[style*="padding-bottom: 8px;"][style*="235, 235, 235"] +||pstatp.com^*/push.js +||jz4u1.icu^ +lzdcctv.cn##.focusmo + table +||hwvwxerw.xyz^ +||bdstatic.com/player/t/j/HlKYzquQ.js +||jsdelivr.net/gh/yaofa88/bifa@main/*960 +||52av.be^$popup,third-party +miushuo.com###leftDiv1 +||2008mm.com^*.js +@@||shana.pe.kr^$generichide +fx168.com##.ad_teshu +114la.com###Gamepng +@@||159i.com/a_d/$media +free.com.tw###custom_html-5 +||lotour.net/analytics/statsv2.js +||ahpphkc.xyz^ +@@||int.mwbbiz.com/static/*/app.js$domain=91porny.com +etnet.com.cn##.firstAD +||u1099.com^ +||caajol.icu^ +news.ebc.net.tw##.fncnews-content > div.raw-style > div > p > a[href] +90bifen.com###live > table[cellspacing="0"][cellpadding="0"] +ting89.com,tingshuge.com##.banner688_2 +||bbk5921.yncjsc.cn^$third-party +||hdsky.me/adv/ +||adbu.cn^ +||theta.sogoucdn.com^ +99kubo.tv#?#div[style*="width"]:-abp-has(> div[style] > img[src="/static/img/adsfree.png"]) +ifoodie.tw,avtb01.com,beauty321.com,aotu43.com,csdn.net##.ads +||yezi.cn/_ad/ +@@||75.125.41.29:8080/*/ +||j1.piaobing.com^ +||hfbfbvmjdmxc.com^ +html-js.com##a[style^="margin-top:20px;"] +||sa.sina.cn^ +@@||upxin.net^$generichide +||s5ue6.com^ +114la.com,ylmf.com##.box-hot +jiankang.com##.three_hot +bbs.actoys.net##.fl[style$="float:right;"] +||17173cdn.com/20*.mp4$rewrite=abp-resource:blank-mp3,domain=17173.com +||tracking.kdnet.net^ +52pk.com##.tcgg +fx112.com##a[href^="/union."] +faxingw.cn##.detailgc +world.huanqiu.com##div[class^="ad_t"] +missyuan.com##.spaceborder +||business.92wy.com^ +||hao123union.baidu.com^$third-party +@@||down.cc/down/js/ad.js +||wei2008.com/skin/js/top.js +zzzyk.com###Tinfo +||creaders.net*/ad_func.js +ck101.com##.float_ad_allage_box +||gome.com.cn/flight? +||1cecn.icu^ +@@.com/adv/$domain=my.ctrip.com +||bylwtf.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-wealth-list-card-container +||xydzfldt.xyz^ +||mat1.gtimg.com/cq/flash/ +||ypgjkk.xyz^ +||yecaoyun.com/AD/ +@@||tmall.com/go/*/banner.php +0598yu.com##.v1100_ad +m.autohome.com.cn##.wrapper > section[class^="box_"] +yahoo.com###ACT_takeover +jmbbs.com##img[width="1100"] +51cto.com###postform + a[style] +||b.unjs.com^ +@@/admanager/*$domain=woego.cn +||gesdxashb1.fun^ +||66wz.com/adv2/ +nownews.com#?#div[class^="leftSide_"] > ._popIn_recommend + div[data-reactid]:last-child > h2:contains(NOWnews 推薦) +||downlinker.*/ad_dl.js +||familydoctor.com.cn/c/a/000/ggw_ +||kaoyan.com/global/js/backtopnew.js +||9ya.net/con/ad +||xggcyef.icu^ +||szmnd.cn^ +||lenovo.com.cn/cms/2018-07-20/201807201014498251793.png +||uslsxe.com^ +||xpffkbpq.xyz^ +duba.com##.s11_zb +||afocus.com.cn/s? +||joublia.top^ +||jgidskia.top^ +news18a.com,tom.com##.ina_ad_class +||htoetgk.icu^ +||cao0001.com/vip/js/ +||xafuzcxr.xyz^ +@@||affyun.com^$generichide +||bgeg1.fun^ +my0511.com###bbdcc +beauty321.com##.pc_ads +zhihu.com##.GoodsRecommendCard +||iouvxlio.top^ +pornbest.org#%#//scriptlet('abort-current-inline-script', 'jQuery', 'injectPops') +mtrend.cn##.hongbaotips +||17173.com/x/ +exam58.com##div[style="float: none; width: 305px; height: 254px; text-align: center"] +yantuchina.com##div[style="width:618px;height:150px;margin: 0 auto; display:block;"] +||dzjzg.com^ +||aknusp.cn^ +||redmx.cn^$third-party +||555bbb777www.com^ +=AdCode_$script,third-party +wss://*/api/wss/GetNotReadCount$third-party +||u0057.com^ +||webconf.douyucdn.cn/resource/common/giftPhotos_w.json +||u25011.com^ +szhk.com##.banner_dt +qq.com##a[href^="http://www.10100000.com/"] +hgitv.com##.index_gg +||sina.com.cn/1016/getPhones- +||chooncv.icu^ +||102tv.cn/js/main.js +||img.*.com/images/*.gif$domain=czzy01.com +sina.com.tw##.adbig300_mid +||sinaimg.cn/finance/wanghong_ +laohu8.com##.top-recommend +||atlggfy.cn^ +baidu.com##.result-op[tpl="pc-education-fs"] +dm5.com###youce +ruanyifeng.com##.entry-sponsor +||5.gzfenda.com^ +||pstatp.com/origin/1381500009611bc201d61 +suibiankan.co##.vddb + a,.vddb,.vddb_qq,style + div[id],a > video +so.com###e_idea_wenda_detail_guess_new +yzl333.com##a[href^="https://jump.9118ads.com/"] +@@||kf.cn/ad/css/images/ +m.lwxs.com#%#//scriptlet('abort-current-inline-script', 'eval', '_0x') +koc.com.tw##.single_ads +||dryden.cn^ +tmall.com##.app-download-popup +baozimh.one,yazhouse8.com##.banners +@@||inskinmedia.com^*/js/base/api/$domain=appledaily.com|nextmedia.com +||lalabaos1*.top/$script,third-party +||actoys.net/statics/js/index/ad.js +@@||dwstatic.com/b=amkit&f=*/adjoin. +qq.com##.code-content +histock.tw###tbadword +||youtube.com/iframe_api$domain=nownews.com +163.com##.expoure_track_item +cq.qq.com##div.clearfix[style*="1000"] +||mm7920.com:8888/upload/*.gif +||ntiutox.icu^ +@@||redian.news^$generichide +||sdoshbb.top^ +||rttnvz.xyz^ +||cnifdlaf.top^ +doudoudm.site,ezdmw.com##.public_ad +||tawk.to^$third-party +diantai.ifeng.com#@#.ad-b +||twavtv.com/js/jquery.colorbox +||knowmore.cc/style/head.js +||hjkhxfh.360doc.cn^ +@@||gamersky.com^*/dhgame_ +||jijozdrg.xyz^ +sojson.com##._left_ad +||520xingyun.com/images/*.gif$domain=mcpcourse.com +||mycodes.net/js/hf_txt.js +||xxxx96xxxx.com^ +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.0.commercial.title', '') +map.baidu.com###mapBanner +lookae.com##.zhongjian +||rcdwhp.xyz^ +||radikal.ru^$domain=18board.com|18p2p.com +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###forum_recommend +||bgbg00.fun^ +pzzc.net##.portal_block_summary +lanyes.org##div[style="margin:0 auto 10px;height:76px;overflow:hidden"] +||imgur.com/zNQ0lXP.gif +||skzlz.cn^ +myqqjd.com##.qz-box +haoweichi.com#$#.adsbygoogle { height: 1px !important; } +e0575.cn##div[id^="tid_"] +zol.com.cn##.zolapp +||xuxwvh.xyz^ +2345.com##.cnxh_box +wenxuecity.com##div[class^="Inarticle_"] +||111cn.net/js/downc*.js +||e.hnr.cn/choose/view/ +||fadhvz.xyz^ +||st-fly.b-cdn.net^ +||mmeimh.xyz/static/100. +@@/advs/*$domain=ciros.com.cn|gotobuy.com.tw|sj-touch.com +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=kktv.me +||baidu.com/cms/rc/adSideConfig.json? +msn.cn#%#//scriptlet('hide-in-shadow-dom', 'msft-article-card:not([class="contentCard"])') +||fodrxl.xyz^ +zuoyebang.com##div[class^="answerAnalyzeAd_"] +boylove1.mobi##div[data-group="300x100"] +||cdntlz.cn^$third-party +||stat.cqwb.com.cn^ +zol.com.cn##.pv-mol_ask +hktvyb.com##.myui-content__operate > a.btn-danger +theworld.cn##.download-now +eprice.com.tw##.section-content > div[style*="text-align"] +||tupian888.*.bcebos.com^ +||52zpi.com/gg/ +||skeimg.com/i/*.gif +||nzfcvv.xyz^ +finance.sina.com.cn###hq_main_top_tgWrap +@@||crackedresource.com^$generichide +||vlion.cn^$third-party +||hf365.com/0/13/79/87/13798795_912593.jpg +||fingkndk.com^ +||tewsdnka35.xyz^ +||1.32xp.com^ +||lfrfzr.xyz^ +||36img.com/ad/ +||jjjgame.com/images/ad11.jpg +||dtnhjzl.xyz^ +olevod.com##.ad1 +||md.tvzhe.com^ +||5vdd.com/ktt.png +141hongkong.com###dialog +itblogcn.com#?#.sidebar > div.widget:has(> div.item > aside > div.textwidget > a[href="https://www.itblogcn.com/vultr/t"]) +||gmbuluo.net/js/ +nowcoder.com##.mini-banner +||s-msn.com/portal/js/vendor/manto/ +liaoningmovie.net#$#.with-ad[data-layout="list"][data-section-type="new-video"] .content-wrap:nth-child(-n+2) { width: 100% !important; } +7junshi.com##.breaknovel-ave +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv#%#//scriptlet('set-constant', 'pageData.__banners.0.commercial.mediaUrl', '') +qzone.qq.com##.pop-app-list-c +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.thread_local_58 +my0511.com##div[id$="bdbc"] +zombit.info###single-popup +doubibackup.com##.widgetRoller +||supfree.net/xxx/ +||shangwenchao4.cn^ +||mondigo.cn^ +||bnpfdzp.xyz^ +cngold.org##.in_content_left_advs +||xdfhidrk.xyz^ +cool3c.com##.post-list > [class="board board-post board-cool3c-super-board-home-1 board-new clearfix"][data-board="cool3c-super-board-home-1"] +||baidu1.cardbaobao.com^ +18avinin.com,27ka.cn,sunnylife.tw###custom_html-5 +@@||iis1.deliver.ifeng.com/showcode?$domain=v.ifeng.com +||sina.com.cn/other/src/app/FinanceAppPics.js +baidu.com##.fc-wenku-ad +csdn.net##li[data-type="ad"] +||cngsf.com/baidu.htm +||s.go.sohu.com^*/?callback= +baidu.com##.bds-list-ads +||tw.buy.yahoo.com/smartbanner/$domain=tw.news.yahoo.com +163.com##.gkk_default_yw +duba.com,newduba.cn##.search_promotion +hupu.com##.voice-ad300-250 +serengeseba.com##.content > li > a[href^="http"] +||itjcqlp.icu^ +||m6500.top^ +||anews7.nvwu.com^ +iqiyi.com##.dove_ad +||milk.yesky.com.cn^ +||mefiafd.top^ +||lwrohd.xyz^ +msn.cn#%#//scriptlet('inject-css-in-shadow-dom', 'cs-native-ad-card { visibility: hidden !important; }') +||bpyerxzn.xyz^ +eol.cn###float_l +||tw.buy.yahoo.com/?z= +||nykvdwi.cn^ +zybang.com###bottomBannerLink +||vsping.com/website/ads? +||pdnhcks.xyz^ +||1821z.website^ +cbber.com##div[style$=":0px;top:200px;z-index:9999;"] +etest8.com###gads1 +aiqicha.baidu.com##.float-banner +||wkrcbszi.xyz^ +||ddqmlfu.icu^ +||85tube.com/player/html.php?aid=*_html&video_id=*&*&referer +ipip.net##.row[style="width:1000px;margin:0px auto 25px auto;"] +||yhqukg.xyz^ +||dimtown.com/adimg/ +qq.com##.tb-activity-list +1keydata.com#$##detect.ad-placement { display: block !important; } +oschina.net##.soft_detai_above_ad +||angelweb.cn/Inc/AngelG.js +||ynzhby.com^ +||static.tohomh123.com/js/funasd.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.top-sec + .middle-sec +@@||95504.net/Advertisement_ +||baidu.com/newspage/api/getmobads? +||fpb1.kedabai.com^ +||meilele.com/js/mll/baiduLabelRecommend. +||tt1069.com/script.min.js +||appaaaddd.com^ +baidu.com##.recommend-goods-card +map.baidu.com##.search-item[data-stat-code="poisearch.damoce.item"] +||dig.qbao.com^ +wap.yushuwu.cloud#%#//scriptlet('prevent-eval-if', 'WebSocket') +zhiyoo.com###body-bg +||bdjj.bzr99.com^ +||uuysiaq.com^ +0597kk.com##div[style="width:960px; overflow:hidden; margin:2px auto; "] +element-plus.org##aside > .page-content-main +||hc360.com/list/iframe_end_textadv.shtml +10fang.com##.wrapperbg +pcworks.cn##.md-show +downhot.com##.guans +baidu.com##.link-banner +hahamx.cn##a[href^="https://s.click.taobao.com/"] +||llksja.com^ +||txahz.com/static/image/tp/ +||999meiju.com/js/tj +||zhengzhou12.top^ +iqiyi.com##div[class^="ad-piclist-"] +pixnet.net##div[class*="-Ad-"] +||1990tu.com^$third-party +||ettoday.net^*/ad/ +||kshrsf.icu^ +cpnn.com.cn##.duilianop +||xcar.com.cn/bbs/adfocus.js +8684.cn,8684.com,iyxdm.live,kugou.com,solarzoom.com,yesky.com##div[class^="adv"] +||img.virscan.org/images/*/ad_ +||szxljdsb.com/tl +||mycodes.net/js/$image +||xyimg.net^$domain=~xy.com +msn.cn##.views-right-rail-top-display +pconline.com.cn###JtlBestA +weather.com.cn##A[href*=".tmall.com"] +||f1.06ps.com^ +||badding.oss-ap-southeast-1.aliyuncs.com^ +||uckgqa.xyz^ +||4gamers.com.tw/site/iframe-aols/ +||dmnxkj.cn^ +qq.com##.mod-download-tips +||hauqou.top^ +jiakaobaodian.com##.com-footer-flex-panel +||con-article.hjapi.com/v1/txs/ +||google-js-09.xyz^ +||iephrenhq.com^ +||dsdsa33.fun^ +hbzhan.com###leftAdv +||gfdgfhh.cn^ +5068.com,hgitv.com##.gg02 +||rfidworld.com.cn/js/b.js +hexieshe.cn###custom_html-2 +||p97387hj.xyz^ +pcstore.com.tw##div[class^="ad388zone"] +52ch.net##.ad650 +||js.jialingmm.net/dm/tj.js +778772.com##td[style*="PADDING-BOTTOM:"] > a > img +3dmgame.com#?#.Gmaeinfobtn_tab > a.patchshow[style]:has(> span:contains(/^广告$/)) +||jianhuadaily.com/wp-content/plugins/popup- +ifeng.com##.jcsp +52pk.com###hdowner +||counter.tianjimedia.com^ +youranshare.com#%#//scriptlet("abort-current-inline-script", "$", "adskilltest") +||pv.zhiding.cn^ +||xogtrmjz.xyz^ +||vansky.com/agdg/vans/adv +v.baidu.com##a[href^="http://www.602.com/"] +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###fixed_bar +k7d.com,kxdao.net,xiaolz.cn###masonry +||cfrtdmb.xyz^ +699pic.com##.winpopbg +ifeng.com##.box_list_pic > a[href^="http://dol.deliver."] +123-bt.cn###mianze_fixed +188soft.com##.safety +||soperson.com^$third-party +ant.design##.snd-ad +||alicdn.com/imgextra/*_!!1091819078. +||3562wsgkbcm.xyz^ +||oouiqi.xyz^ +www.sina.com.cn###SI_EDU_AD +||stat.hebnews.cn^ +||xuzsdn.xyz^ +||u1.2048sj.com^ +||soft4fun.net/wp-content/themes/arthemia/js/common_footer_min.js +eepw.com.cn###coverDiv +||fjisu.*/js/huimi.js +||cir-smart.baidu.com^ +douban.com#@#.download-ad +kuai8.com###left_Ad +~baidu.com##a[href*="/cpro."] +||zomcz.cyou^ +||baijs05.xyz^ +_naimabdd_ +scsn.cn##img[style^="height:70px;width:"] +@@||bokecc.com/flash/playlog? +@@/image/share_$domain=pan.baidu.com +tw.stock.yahoo.com##tr:has(> td[valign="top"] > .geminiAd) +||jinman4.com/ad/ +||yhlzadr.xyz^ +ifeng.com###swiper_bottom +csdn.net##.el-dialog__wrapper + .activity +@@/adfile/*$domain=cidianwang.com +||qhnews.com/tupian/ +||tiimg.com^$domain=678cn.com +eastmoney.com##div[id^="em_important_"] +nownews.com##.adBlk +wendu.cn###topads +||bio-equip.com/dimgs/ +||57577.live^$csp=script-src +||kalmukrattail.com^ +xc6b.com##a[href="http://61.160.236.52"] +jinti.com##.fix-kefu +||baitugu.com^$third-party +||lyd.com.cn^*950-90. +boniu123.cc##.left_side +||lardmoni.com^ +||cckke.com/fanhao/v/ad +@@||cy.com/hz/*/ad +||92uq.com/Ads/ +||chexun.net/images/sales//cxgg/ +||a.thn21.com^ +||eastday.com/static/js/*_ad +jinti.com##a[href*="tempurchina.com"] +||99tianji.com/hack/ +||yywh.vip^ +tzfdc.com##.AD_B +3jy.com,maolihui.com##.lad +||lotuscard.cc/online/ +||ebiotrade.com/newsf/js/inpic.js +down.ali213.net,patch.ali213.net##.picBg +expreview.com##.colbaba +pconline.com.cn##.block-jcz +ccav5.com##a[href*=".sinaimg."] +bimiacg.net##.tuiguang +||eouvxliw.top^ +||dfcfw.com/js/tg/rightAd_v2.js +||pop.wioau.com^$third-party +||123456.asia^ +yxssp.com##.td-main-content > div[id^="metaslider-id"] +dzbhdm.net##a[href*="sourl.cn"] +||szmnl.cn^ +jb51.net,makaidong.com##.topimg +||aiviy.com/assets/js/union.js +||swoole.com/_images/kundian +||downmz.com^$popup,third-party +||laozuo.org/wp-content/themes/weisaysimple/js/banner.js +||10086.cn/together/s?func=together:getAdvertInfos& +||av99.us/player/ad. +baixing.com##.poster-info-container + .side-block +||ptdofj.xyz^ +||itavcn.com/pic/news/*-90 +mail.126.com,mail.163.com##div[id$="_BannerDiv"] +||nxrajr.xyz^ +||88lm10.com^ +sina.com.cn##.article-bottom-tg +||jsdelivr.net/gh/dashange123/ +||demifa.top^ +52zpi.com##.wenziad +||23qb.com/skin/style +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_live_widget +pptv.com##.mod_960x90 +||iuresdo.top^ +||kedou*.com/layer/layer.js +@@||aqy103.com/js/aqy/main.js +xchina.co##.outer-banner +||3h3.com/js/listad.js +@@||10010.com/mall/common/js/fa.js?referer= +u7u9.com###pangu_leftBottom +||micropage.cn/images/ad_ +||dsjkbcjsjkbvs.com^ +||safe524.xyz^$third-party +||honglingjin.co.uk/wp-content/uploads/*-Homepage-Takeover-BG- +mmff30.com##a[href$="/ref.html"] +||udn.com/common/iframe/ +||vdianying.cc/wp-content/plugins/wp-adblock-dedect/ +to8to.com##.layer-red-box +||lczk.cn^$third-party +||oschina.net/uploads/ad/ +||kpshx.douguo.com^ +||crnmyrk.icu^ +byxx.com##.byzwPC-banner-ADscroll +||efalid.top^ +17173.com###finalTuijian +@@||wandhi.com^$generichide +91wenmi.com###xiezuo +||lxting.com^ +?adunit_id= +||gg.miued.com^ +||ukkiftx.icu^ +||labuladong.github.io/algo/pictures/ad/ +||9tata.com/js/Rand.js +||vevhjj.xyz^ +||youaima.com/rest/ +||valerieavisnba.com^ +||ghghgf.51dongshi.com^ +ettoday.net###mobileweb_inread +lanrentuku.com##.down_btn2 +@@||520cc.cc/jspopunder. +msn.cn##[class^="articlePage_eoabContent"] +@@||money18.on.cc/js/ad/liveinfo_page/ +||zikao365.com/upload/js/pfgg/ +||tengfangyun.com/attachment/*/w_1200 +||1.v-x.com.cn^ +duowan.com##.ui-business +||yje912.cn^ +jd.com#@#.adwords +||abcache.com/xc/image/ +itshokunin.cc#$#.adsbygoogle { position: absolute!important; left: -3000px!important; } +||wy213.com^$popup,third-party +||x.yaohuo.me^ +acglover.me##.myas +bilibili.com##.bili-dyn-ads +91porn.com##.preroll-blocker +||02wq.com/script/ +360doc.com##.clear360doc[style^="padding-top:"] +||acookie.*.gif? +||smallfo.com^ +||pznlpp.xyz^ +pilifx.com##.alltop +||ruten.com.tw/search/imp_ad_ +360.com###hotbottom_littlenav +@@||itc.cn/site/share/ +||ringingneo.com^ +||rmhfrtnd.com^$third-party +image.so.com##.commerce_txt +||bm.h576.com^ +||tui.gtimg.com//res/ +||falcon.pixnet.net/ad/ +||hm.baidu.com/mkt.js +||etyusiw.top^ +qiaobutang.com##.fixed-footer-wrap +||yg006.com/attachment/js/ +hkwb.net##.guanggao2 +liaoxuefeng.com##.x-sponsor +||imgchili.net/media/image*.gif +yesky.com##.rightGg +news.99k.tw##.entry-content > table[align="left"][style="width:360px"] +||qiyipic.com/zongyi/fix/runningman20141008_bg03.jpg +sex8.cc##.fnwehjnc12 +||biaoge.tv/fa +||enennsa.gushiwen.cn^ +dmzj.com##.ad_th +||imgchili.net/media/top.gif +dl.pconline.com.cn##.box-push +||gtimg.com/edu/0727abroad/duilian +supertaste.tvbs.com.tw##.ad_m_block +@@/social-share.$domain=patentguru.com +||baidu.com/adpc/scrollTextAd.js +||wnojded.icu^ +||qiyipic.com/common/*/baiyao. +||sbhduht.xyz^ +||mail.qq.com/lview? +||wpa.b.qq.com/cgi/wpa.php? +18comic.*#@#img[style*="300px"] +kekenet.com##.lp_r_bar:first-child +||movieclassic.net/pub/js_min.js +weishangshijie.cn##.w_bzb_1 +@@||libs.baidu.com^$domain=0794.org|12zw.net|1biqu.com|1kans.net|23hh.com|23sk.net|23wxx.com|33yq.org|3yt.com|4xiaoshuo.net|56shuku.info|777zw.net|81book.com|99mk.net|aiwx.info|aixs.la|aikushuge.com|bequmo.com|bimixsw.com|biqiuge8.cc|biqudu.tv|biquge775.com|biquge98.net|biqugecd.com|biquka.com|aidu123.com|biqutsxs.com|biquzw.info|bshuku.com|bxwx.live|bxwx.org|damengzhu1.com|gdbzkz.com|gdbzkz.org|hongyeshuzhai.com|ibiquges.com|ibiquges.org|ibiquta.net|ibotaodz.org|imianhuatang.info|ishisetianxia.com|ishubao.org|xvipxs.net|iwurexs.info|ixs.la|lewenge.info|liewenn.com|liudatxt.org|paoshu8.com|paoshuzw.com|pksge.com|qishuta.info|shu008.com|shumil.co|silukex.com|siluwx.org|sthuojia.org|tutengzw.com|u33.cc|wenxuem.com|x81zw.co|xbiquke.com|xdingdian.cc|xiaxs.info|xs5200.com|xszww8.net|xuanshu.org|xuessex.com|yqd6.com|yunxs.info|zjsw.org|zzs5.info +user.qzone.qq.com###qz_notification +m.babytree.com##.wrap > section[class*="4"],.wrap > div[class*="4"] +@@||95306.cn/public/images/ad/ +||s8bbs.com/g.php? +||dealmoon.com/upload/dealmoon_app.jpg +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > div:not([id]) > div[id][data-rendered="true"] +||1.codezh.com^ +||f23al.xyz^ +ettoday.net#@#amp-ad +start.firefoxchina.cn##.mod-delay-resource +people.com.cn##.zh_left +smzdm.com##.J_index_wall +91porny.com##.jsv-g1 +||cod.southmoney.com^ +||csylief.top^ +ix8.la##div[class^="ADTOPLB_"] > .bd +||blog.sina.com.cn/lm/mini/ +||ammcg.imgscloud.com/toy/ +||qq.com/inc/utf8/nav/ad.htm +@@||lemall.com/adspace/ +||xzelzfnj.xyz^ +@@||airchina.com.cn/dynamicAd/ +||ipyhf.icu^ +rvlev.com,t66y.com#?#[class]:-abp-has(>a[onmouseover="this.style.background='#DEF5CD';"]:nth-child(n+180):-abp-contains(/赌|娱|澳/)) > :nth-child(-n+188) +firefoxchina.cn##.theme-adv + .bottom +||topmba.mobi/ad/ +eepw.com.cn###logoSearchNews + .marb10 +||drtyuigj.xyz^ +baidu.com###s-hotsearch-wrapper +159i.com###sop > div:first-child +||hujiang.com/Web/tx.ashx +||howbuy.com/subject/js/layer/layer.js +ithome.com#?#.bl > li:has(> a[href*="/lapin."]) +||fzd3.com/gg/ +||1.lishibu.com^ +||bbs.south-plus.org/images/masha5-1.gif +xitongzhijia.net###top_gg +swoole.com##.wiki-resource +ci123.com###fixed-recom +||merywf.xyz^ +||baidu.com/adrc.$popup +m.toutiao.com##.banner-top +chuandong.com,instrument.com.cn,manhuabika.com##a[href*="/ad/"] +||ahgfdhp.xyz^ +||apk.tw/static/js/showpic.js +eastday.com##.gg_channel_r_b +||eastday.com/mmad. +||ganjituiguang.ganji.com^ +||gzhying1.cn^$third-party +||hqhspv.xyz^ +kkpan.com,qqtn.com,smzy.com,yxdj.com.cn##.u-gs-btn +||map.baidu.com^$domain=laosiji.com +||dopklb.xyz^ +mumu.163.com##.pic-con +playtv.com.cn###table6 +sogou.com##.ad_result +mini.eastday.com##.ordernumad +bbs.125.la##.ad-tips +dm5.com,dm5.hk##a[href*=".wannaplay.cn"] +||csdn.net/ggmm/ +tingfm.com#%#//scriptlet('set-constant', 'canRunAds', 'true') +||vabzndw.cn^ +||juqingw.com/js/tad +fx168.com###diaochaBox +||hxjs.tool.hexun.com$domain=~quote.hexun.com +ipv6.baidu.com,m.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#@##results > div[class]:not(.result):not(.result-op):not(.sp-rslt-bar):not(.s-group-result) +baiten.cn##.news2ad +hupu.com###HCFull +||cdgtw3.guapaijia.com^ +||kwtgntyu.xyz^ +||tencent-cloud.com/s9m1/54cb71aff82cfd690619065f2e31c346. +||ggg*.com/static/js/common.js +techbang.com###stickies +image.baidu.com###adsearch +sohu.com##.adB +||sohu.com.cn/ppp/bms/bms.popup. +||u26u.com^$popup,third-party +||fanyi100.com.cn^ +||frntzz.xyz^ +acfun.cn##.danmu-activity +||bcebos.com/contentAdSecend_ +qudong.com##.advert_bottom +yodu.org#$##byspider { display: none !important; } +51wangdai.com##.cx_xx_lis_c01_right_lis_c_ad +||ve0ke.icu^ +||rjwljrf.xyz^ +||virginiasibyl.com^ +||aclsx.cn^ +||ofebyk.xyz^ +||jc1.dayfund.com.cn^ +eeyy.cc###div_dn +||vansky.com/agdg/vans/*_top +||kan98.com/statics/js/k2017/kan98.js +85wp.com##.top-ad-img +||a.dxzy163.com^ +||wnmaoc.xyz^ +||isso.com.cn/club/adv +||damiul.icu^ +||fhcmeiju.com/template/DYXS2/html/1. +||ddlmsoyo.icu^ +||ds1.kaijia.com^ +||p0y.cn^ +||doujs03.shop^ +||3dmgame.com/img/a/640- +||oschina.net/uploads/cooperation/ +||k1.dancihu.com^ +av.movie##.adss-160x600 +||yuwangshe.net/astyle/wap. +maxthon.cn###shopping +||e.changyan.sohu.com/dataService/getData? +3dmgame.com##.addvide300 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.bus-top-activity-wrap +||mp4ba.com^*/js/head.js +sm.cn##div[id*="_Shopping_Etao_"] +||kwerilxd.top^ +speedpan.com###float-window +||click.taobao.com^$popup,domain=steamcn.com +chaicp.com##.Icp-Ad +||abab.com/pv.js +xvideo.cc#%#//scriptlet("set-constant", "poped", "true") +||uc9.suinidai.com.cn^ +||msg.iqiyi.com^ +ruten.com.tw#@#.adslot +||corcztpc.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl="b2b_straight"] > .c-border +||ihwlek.com^ +||cdmnlxtu.xyz^ +china.cn##.lianmeng_search +9ht.com##a[href*=".360.cn/"] +kdslife.com###mainRightTopAd +||cpt.9136.com/img/b_special/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###plat_order_head +||mjappzvz.xyz^ +||szmnm.cn^ +||louimg.com/u/20191214/17512133.jpg +baidu.com##.result-op[tpl="game-page-right-openservice"] +||fujnrh.xyz^ +yfsp.tv,aiyifan.tv,iyf.tv#%#//scriptlet('abort-on-stack-trace', 'Object.prototype.pgmp', 'invokeInterstitial') +||d*.ruiwen.com^ +||aiwen.cc^ +tieba.baidu.com##.j_post_list_item[data-info^="\7b \"un\":\"\\u623f\\u4ea7\\u901f\\u8baf\""] +||jp2468.com/addon/ +olevod.com##div[style*="%;float: left;"] > a[target="_blank"] +||jbkqemk.icu^ +||amazononline.xyz/mp4/*.mp4$rewrite=abp-resource:blank-mp3,domain=iyingshi7.tv|localmv1.com +ltesting.net##.ltad_1170 +sciencenet.cn##.mbanner +||amazonaws.com.cn/static-documents/marketing/uda_banner_ +@@||gg.wudizuqiu.com/72nba.js +||count.iyaxin.com^ +@@||jbprogramnotes.com^$generichide +||sjalipa.cn^ +||is686.com^$third-party +@@||rosefile.net^$generichide +huanqiu.com##.right-box > article-other-template +||qinjgh.icu^ +damon624.pixnet.net##.article-content-inner > p:has(> span > a[href] > ins.adsbygoogle) +phpvar.com##.aliPic +||00eeekk.com//html5/activityPage/ +pincong.rocks#%#//scriptlet("prevent-setInterval", "Ad Block") +@@||pub.network^$script,domain=creaders.net +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > div[id*="00"]:not(.result):not(.result-op) + div[class]:not(.result):not(.result-op) +i-part.com.tw##a[href*="goo.gl%2FW9SXr1&"] +linux.cn##a[href^="https://linux.cn/go/"] +baidu.com##.app-guide +ifeng.com,vsping.com##.ad_01 +||d1.yingyongge.com/production/*/production/ihth.js +52vfx.com#@##head_ad +bilibili.com###fixed_app_download +||gedxssashb8.fun^ +||zhuwang.cc/api.php?op=ad_ +kshot.com##div[id^="read_m_yytf"] +||ip138.com/idc/ +gmw.cn##.g_adMain +@@||china.com/dianbo/adv1.xml +||zmfcnlvu.xyz^ +2345.com##.act-search-tab +cnr.cn,jxcn.cn##.min-news-box +league-funny.com##.widgetBox.w728Bottom +18-comicfrieren.xyz,18comic.org,18comic.vip#?#:-abp-has(>ins+div) +||qdcxia.xyz^ +||canimgs.com/images/ +||18183.com/common/js/side.js +||stylishar.com^ +blog.163.com###topbar_lofterDldArea +||alicdn.com/app/wxbpromotion/*/js/cpm/cpm_jq.js +hackhw.com##.widget_content_b +||fefwe334.fun^ +||vns86.oss-*.aliyuncs.com^ +bjcxqd.com##.box-vdgd +||doujs01.shop^ +hacpai.com##.index__ad +||a.nowscore.com^ +||chinaz.com/sc_images/sc_font.js +||bebxhcip.icu^ +164580.com##a[class^="listindex"] +||pchome.com.tw/js/fancybox/ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div:not([id]) > style[id^="s-"] + div[id] +||nhcdn.cn^ +@@||dizhi99.com^$generichide +hao.360.com##div[id^="rightBottom_"] +||lvphbj.xyz^ +||btcfans.com/template/comiis_lssy/ad/ +||xiexingcun.com/tongji.js +||ankczwr.icu^ +pixnet.net###pixblogad-banner2 +||sosakk.xyz^ +||qishula.com/css/wap. +||jyxzrb.xyz^ +||a.tuizhuti.com^ +520cc.cc,v.5278.mobi,jizz99.com,bonbonyou.com,in99.org,av99.us,jav777.xyz,520call.me,hboav.com###inplayer +423down.com##.entry > p[style="font-size: 20px;"] +||batijian.com^ +jr31.xyz###hd + .wp +||sbovgy.xyz^ +6parknews.com##.other_list_ad +||ajybgc.xyz^ +||godloveme.cn^ +||wrutvnce.top^ +||lnzqw.net/js/ +||17173cdn.com/20*.mp4$redirect=noopmp3-0.1s,domain=17173.com +||bcebos.com/59x360x528.gif +||17gameworld.com/gmifr_lei. +baidu.com###ad_xbox_2 +chengdu.cn,oeeee.com,ofweek.com##div[class^="ad-"] +duba.com##.J_side_activity +||q4v3c.site^ +||bkjia.com/bkjia/js/art_rightad +56.com##.xiu_mm +||dm.66qw.net^ +||iossdok.com^ +diyifanwen.com###ArtTl +zuimeia.com##.activity-poster:not([href*="zuimeia."]) +||share.gzdsw.com^ +codejie.net#@##google-ads +||utkauo.xyz^ +||china.cn/js/common/daniel_pop/ +cnxz.cn##.showad +||cwgucvm.icu^ +||hy.huangye88.com.cn^ +||se533.com/template/new/css/*.js +csdn.net##.edu-promotion +||nanrenfuli.*/zb_users/upload/ +||jyjrbz.xyz^ +||ytjzqde.xyz^ +||cctv5.name/images/js/indextop.js +||8bobf.*/da.aspx +||4gamers.com.tw/site/api/aols/media? +liepin.com##DIV[id^="nodetpl_g_"] +||yxdm.*/js/ddetector.js +||bdstatic.com^*/container/module/bottombanner/ +||zoltrl.xyz^ +gxeea.cn##.m-wrap-school +tool.lu##.recommend-container +||u1033.com^ +||ah.sina.com.cn/iframe/ +||wxc.cc/scripts/gg. +chjtx.com,fooish.com,jqgcw.com###ad +cnqiang.com,jxedt.com,sohu.com##.ad640 +||qeeocy.xyz^ +||tzyzlow.cn^ +baidu.com##.s-nativead-item +pornlulu.com##.row.links +midifan.com##.mid-aaa +||hnalzlu.top^ +||fpgonuk.icu^ +||og.zyzjpx.cn^$third-party +||21uscity.com/static/allbusiness/ +360che.com##.adver1000_65 +||dsad234.fun^ +qinbing.cn##.day +||666579.xyz^ +||zdnet.com.cn/js/pv.js +||rainpat.com/Content/1360x55/ +||yv8zs.online^ +qianlima.com###bg +kmf.com##.g-kmf-906banner +||wanwan.sina.com.cn/sinasupersport/back/ +58cam.com###append_parent +||so.com/recomm/simi? +@@||ad.abchina.com^ +||bxoaeju.icu^ +m.so.com##.e_idea_list +||u25022.com^ +fh21.com.cn###lbzxM +zhihu.com##.AppMagicBanner +titan007.com###table_live > tbody > tr > td[height="18"] > a +||wildwist.com^ +||stusnais.com^ +||fmvzzh.xyz^ +||d13jhr4vol1304.cloudfront.net^ +@@||tmall.com/add? +fapiao.bangnimang.net#%#(function(){window._czc={push:function(){}}})(); +ganpapa.com##div[class*="_9cb0d"] +acfun.cn##.banner-href[href^="http"]:not([href*=".acfun."]) +youmelive.com###b2-widget-html-2 +brtn.cn,btime.com##.seed-item +||vxpdfb.xyz^ +||tsdmw.net/img01/MP3/pm_ +ettoday.net##.ad_readmore +||kanbook.net/static/js_union/ +@@/adLoader.$domain=shejiben.com +zhihu.com##.Card.Banner +angelweb.cn##table[height="250"] +||ycgkol.icu^ +||statics.woozooo.com/img/*.js$domain=lanzous.com +||365rich.cn/ba.aspx +||jxnews.com.cn/first/js/home/index_ad +@@/advertise/*$domain=ceair.com|sfbuy.com +smzy.com###showa +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_frs-aside\/pagelet\/fengchao_ad +||wxmmji.xyz^ +||rkanr.com/data/cpcache/cp*.js +||kgubus.xyz^ +||u1.idongde.com^ +porn5f.com##.mobframe +ent.163.com,war.163.com##.hotset +@@||tbcdn.cn^*/click_track.js +||zghsep.icu^ +78dm.net##.aside-add +||pstatp.com/obj/game-files/e30c81a77b8c2d45ca8d6f99aae969dc +58b.tv##.closead +||hspdiom.cn^ +||plecnyz.icu^ +||jwerioa.top^ +github.com##a[href*=".aliyun.com/minisite/goods?"] +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_frs-aside\/pagelet\/ad +||weihaojiaju.com/tu888/ +@@||12306.cn/otn/resources/images/pic/new-ad +163.com##.fixed_foot_ad +ydss.cn###indexBlad +bbs.fobshanghai.com##.t_infoline +@@||qq.com/html/mms/nativeads/game_rank.html +||69adu.com/bootstrap. +||zwlxnj.xyz^ +qdmm.com###page-ops +||trends.com.cn/k.js +eol.cn###small_adright +||titan007.com/ad/ +||aolusb.com/forever/ +||u1.qyxxpd.com^ +aihami.com##.context_ad +baidu.com##.lianmeng-pause +||sxoejoc.icu^ +||airav.cc/AirADPic/ +rvlev.com,t66y.com#?#[class]:-abp-has(>a[onmouseover="this.style.background='#DEF5CD';"]:nth-child(n+190):-abp-contains(/赌|娱|澳/)) > :nth-child(-n+195) +@@||papalah.com^$generichide +||hackhome.com/js/bhref.js +huya.com,av1868.com,edc1014070.pixnet.net###banner +||tkbbjtfp.xyz^ +||seqing.world/qq/qq.js +||dy2018.com/js/tj.js +@@||520call.me/ad/ad_1.php +||yijiuningyia.gushiwen.org^ +@@/site/ad/*$domain=islide.cc +||knuinws.icu^ +||ddkh59.com^ +||bdjs.gushiju.net^ +@@||tracklog.58.com/referrer$~third-party +||tdfqvx.xyz^ +uc123.com##.m-link +news.baidu.com#?#.index-list-item:-abp-has(.tip-time:-abp-contains(广告)) +||abqdgu.xyz^ +le.com###a_body_11628 +://ads. +||eastday.com/jrdftt/static/javascript/ad/ECommerceAd. +92ghai.com##.yttl_x_g +ebiotrade.com###dlBoxs +||a.bfking.cn^ +||discuss.com.hk/oath/ +||laozuo.org/banner/linode +m.86kl.com#%#//scriptlet('abort-on-property-read', 'akumtagcc') +||hlstlyy.com^$third-party +:18443/*/*-*-*.js$third-party +||autohome.com.cn/api/lives/getliveroom?$domain=~live.autohome.com.cn +heartinkstone.pixnet.net###spotlight +muchong.com###creditegg +||bcc.com.tw/imgs/adv/ +da-fan-shu.cn##div[style*="468"][style*="60"] +pcgames.com.cn##.aFollowb +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?##content_left > div:-abp-has(.ec-tuiguang) +newsmth.net##.ns-ad +||stat.v.17173.com^ +||sinaimg.cn/finance/qihuofarm/ +aaread.space##div[style^="position: fixed; bottom:"] +||fh21.com.cn/partners/ +||buvdkt.icu^ +||xygwh.cc/js/p +3dmgame.com##.modAD +||vercel.app/ads/ +||lf9-static.bytednsdoc.com/obj/tos-cn-i-0813 +||beezwol.com^ +jandan.net##.post[style="padding-left:150px;width:336px;height:280px;"] +3boys2girls.com###div3_display3 +||enkvum.xyz^ +||yimg.com/cv/api/hk/fp_czy_ad/ +||kaolashuwu.com/zb_users/plugin/ZF_tanchuang/ +||9tata.com/js/topxia.js +gamme.com.tw##.adwrpt +||139xiaoshuo.com/css/js/tools. +||yigujin.cn/wp-content/themes/Three/js/dibu +||189.gd^*.html$third-party +||tqbrnd.xyz^ +m.mydrivers.com###content > .ab +||mat1.gtimg.com/2014/webtips/ola2014tips +oschina.net##.jj +2345.com##.acts11-sidefixed +||gklox.cn^ +||guangzhoubingqing.com/88888.jpg +||yundaquan.com/data/attachment/portal/ +@@||51hanhua.com/2013/brtxt.js +gmw.cn##.ad_pics +meijuniao.com##.player-ad1 +||shaquevip.oss-cn-zhangjiakou.aliyuncs.com^ +iyaxin.com##.Information +wnacg.com#@#.Text-Advertising +||s3.amazonaws.com/dmas-public/sitemaji/vast.xml$domain=dailymotion.com +||goole20.shop^ +@@||luoxiadushu.com^$generichide +@@||mmgd.xyz^$generichide +||iqs871.com^ +||zhihu.xmcimg.com^ +||key8.com/cache/www/banner_ +onlinedown.net##.king-soft-area +||a.jyeoo.com/js? +||alicdn.com/tps/i3/T19NaCFKFaXXckTCTS-300-100.jpg +zhibo8.cc##div[class*="advert"] +||qcsvku.xyz^ +||hkcoding.com/img/ +@@||poedb.tw^$generichide +taobao.com###J_ActivityOut +wnacg.com##script + div > a > img +boylove1.mobi##.div_sticky2 +news.pchome.com.tw##div[style="width:300px;height:600px"] +||ohtusgy.icu^ +||alicdn.com/img/ibank/*_2114606112. +stock87.com##a[href^="http"]:not([href*="stock87."]) > img[src*="uploadfiles/image/"] +gdmm.com##.adtop > .module +muchong.com###mask +sports.qq.com##a[href^="http://market.1hai.cn/"] +6parknews.com##div[style="width:990px;height:140px;margin-left:auto;margin-right:auto;text-align:center;"] +splaybow.com###divPrevious:last-child +||lofter.com/blogPhotoAd? +yx.kimg.cn##ul#feedList > li.feed-list-ad +||ue8im.com^ +||goupu.org/1files/*.gif +auto.ifeng.com##.acquire_1 +||koyso.com/static/js/abc. +qzone.qq.com###appCanvasTaskMarket +autohome.com.cn##.activity-coin-layer +||img.yangshengtang123.com^ +firefoxchina.cn##.w-full[track_key="adv_top_banner"] +qilindao.com##.tonglanAd +assbbs.com###ass_adv +jiegeng.com##.large2small +360kuai.com##.k-float-btn__qrcode__body +||lagou.com/js/cooperation/ +||hty9m.cn^ +:8080/ad/ +||btsgroup.cn^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [id*="00"]:not(.result):not(.result-op) > ul +||wpmdeo.xyz^ +sports.qq.com##.scr-login > .cnxh:has(> .videoDiv #hotvideo) +||cismqdx.icu^ +cowtransfer.com#@#.socialButton +||fun1shot.com/images/qrcode_wechat.png +duba.com###one-mid +||baijs07.xyz^ +||retrieval-bd.duote.com^ +baidu.com##.ec_pc_ad +yaociyuan.bid##.w-ad +edh.tw##.popin_ad +daohang.qq.com,hao.qq.com,sogou.com##div[id^="AD_"] +suning.com###sn-sidebar-change-code +||nongjitong.com/adm/ +@@||securepubads.g.doubleclick.net/gpt/pubads$domain=line.me +zhainanba.org##.marauto > p[style="text-align: left;"] +||maiche.com/iframe/rank.html +jin10.com##.side-module-2 +cls.cn#@#.share-body +||2114.com/api.php?a=get_adv +||zhzyw.com/js/InsertJS.js +||23bei.com/static/plugins/layer/layer. +||cnfol.com/tui/ +||qyun.vip/pic/*.gif +@@||hao123img.com/resource/zt/widget/service/util/clickTrack. +||3dmgame.com/templets/xiazai/g +starbaby.cn###yindex_ads +cjn.cn###slidelr +||17173.com/advideo/ +||zhuys.com^*.php +||920share.com/wp-content/uploads/*/911 +||itsmore.cn^$third-party +||caoporn.com/images/bmqp +itavcn.com##.advzone +eastmoney.com##.head_adbox +yahoo.com###hp-ad-left +mini.eastday.com###dsp_btxf +||gamefy.cn/cookiead.php +av1868.com###totalStationAD +bejson.com##img[src^="data"] +||uicdns.xyz^ +@@||lnk2.cc/js/ad_code.js +||achicih.gitee.io^$third-party +eastmoney.com##div[data-url*="same.eastmoney.com"] +dshangyan.com##.advHeader +zhidao.baidu.com###main-content > div[class]:first-child > a +||cn.ntdtv.com/assets/themes/ntd/js/article_ads.js +||skads.gxsky.com^$script +||ikaka.com/globalad/ +||lumnxiel.top^ +||momoshop.com.tw/goods/GoodsDetail.jsp?$subdocument +elecinfo.com##div[class$="-advert"] +sohu.com##.x-adv-linear-panel +sgcn.com##.bigaimg +||go.kbnmnl.com/api/models/vast +||chinaslauras.com^ +||2324av.com/zz/ +e0575.cn##a[href*="/showad.php?"] +@@||eu4cn.com^$generichide +jiemian.com##.app-open +||biquge96.com/123. +||fx110.*/Styles/1.0.0/dist/Ghz/MatrixAds. +@@||service.4gtv.tv/4gtv/Data/GetAD.ashx +||laozuo.org/wp-content/themes/weisaysimple/js/content40width.js +7down.com###btndowns +||alicdn.com/img/ibank/*_330044705. +@@||bytedance.com/ttwid/union/register/ +||dktad.com^ +||1.kuaidiwo.cn^ +||car.pchome.com.tw/iframe/news_iframe. +||blue-rain.com.cn^ +|http://*.cn/ad/ +||lcxw.cn/d/js/thea +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###questionnaire_bg +||94994.com*/js/plugin/shoppingMall/ +||ccoo.cn/mystat.asp +mobile01.com#?#.l-articlePage:has(> .l-articlePage__author .c-authorInfo__id > a[href^="/marketstore.php?"]) +||dnwx.com/pic/*_978x60. +jiemian.com##.header-container > div > section[style="width: 100%;"] +||a1.firefoxchina.cn^ +||daiyanbao.com/flash/md +||fmfnrf.xyz^ +||gtimg.com/newsapp_ls/0/13369140468/0 +||adt.xdrig.com^ +||qwe0231141.bj.bcebos.com^ +my0511.com###dbdcc +||duapp.com^$domain=bjmama.com|ccav1.com|gzmama.com +pincong.rocks##.a-a +qq.com##.member_ads +||yccz.net/xml/ +||hsi2i.fun^ +||www.dmhy.org^*.*?$image +||z1hihu.xmcimg.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game-head-game-info-wrapper +||114la.com^$third-party,domain=~ylmf.com +hg6384.com-www.6u7u.com##.advert +@@||cnr.cn/gg/ +e2mv.com##.left_advert +weibo.com#@#.retweet +boke112.com##.qa-pc +@@||xiuren.org^$generichide +||76wmm.com:8888/js +||behvgsik.icu^ +baidu.com##.apphint +||cloudflare.com/ajax/libs/jBox/$domain=localmv1.com +cpnn.com.cn##.adverd-top +||uekmhvbb.xyz^ +sina.com.cn###AD_Background_Wall_BG +||88lm06.com^ +www.qq.com##div[class^="adRight"] +||haiyuer.com/nb.js +novipnoad.com##img[src*="/bd/"] + span +||3azpx.xyz^ +||yigujin.cn/wp-content/themes/Three/js/singley +airav.cc##div[id^="Billing"] +bilibili.com##.video-page-game-card-small +wenxuecity.com##.sharewechat + .otherposts +||ypdronhu.xyz^ +51zxw.net#%#//scriptlet("adjust-setTimeout", "adCountDown", "", "0.02") +||totheglory.im/pic/ttg- +v2rayssr.com###gg-box +||ydybwjpa.xyz^ +||ldgjwdohqbi.xyz^ +||fang.com/house/ajaxrequest/adverTlGet. +eol.cn###adfloat_r +||mamjkg.xyz^ +chinese.engadget.com##.spotim-recirculation div[data-spotim-row] > div[data-spotim-slot-size="300x250"] +||gz-chengkao.com/js/duo.js +||voc.com.cn/js/xc/ +jbaaza.com##.notice-img +weihemenye.com###popup_bottom +my0511.com###toplmad +12306.cn,club.pchome.net,kdslife.com,qinbing.cn###slideBox +||3g.qq.com/lview? +||orzx.im/Document/union/ +ifeng.com##.ad1000_box +freedidi.com,ottawazine.com##div[id^="text-"] +||laozuo.org/wp-content/themes/weisaysimple/js/index-top.js +sm.cn##a[href^="http://m.sm.cn/adclick?"] +@@/ads/*$domain=189.cn|95516.com +||4hw.com.cn/js/common.js +bjd.com.cn##.screenad +myday.com.tw##.myday_ad_left +forum.gamer.com.tw##.a-mercy-d +||sinaimg.cn/sports/20214c6d/20181128/880_110.png +||itavcn.com/images/2012/ad_ +ssr.tools##.sidebar > div.widget > div.item > a[target="_blank"] > img +digitimes.com.tw##.dt-ad-block +||kuaidi100.com/js/share/i_new.js +||atorks.xyz^ +sbdm.net##div[id^="content_box"] +||gsjdzx.com^$third-party +||yxptcrss.xyz^ +jianshu.com##section[class][aria-label="ad360-ad"] +onlinedown.net##.g-huodong +||lkuygf.top^ +||hanlinzhijia.net^ +iqihang.com##.xf_right +||wit.qq.com^$third-party +||391k.com/pc/gg/ +||mpb1.iteye.com^ +yii666.com##.widget-asst > p > a[href^="http"]:not([href*="yii666.com"]) +@@||chinacourt.gov.cn/share/jquery/plugins/adbox/ +cqnews.net##.taobao +||codejie.net/img/xiandai.gif +mydown.com##.fc_anqDown +||uvyuqzx.cn^ +||southmoney.com/page/pc/ +storytrain.info##.responsive_ad +||pcvideoyf.titan.mgtv.com/pb/*.mp4 +||yea.im/5ht.gif +dayanzai.me,yuepuwang.com##.topban +||dwbfqmz.cn^ +||duba.com/level2/rmd.js +||icaile.com/z.php?id= +||two.fsylr.com^ +||m2k3j7x8.com^ +woman.tvbs.com.tw##section[aria-label*="advertise"] +://api.*.com/sh/*.js$script,third-party +||frontendjs.com/api/ad +21uscity.com##.ad300x60 +ooopn.com##a[href*="/jump.html"] +||jhl1993.cn^ +||6slb0.cyou^ +||pingwest.com/api/news_ad +zhangxinxu.com#?#:-abp-properties(display: block;*width: 336px;) +||urueuah.cn^ +||sinaimg.cn/unipro/ +v2ex.com#?##Rightbar > .box:has(> .inner > .adsbygoogle) +||258zw.com^$third-party +examw.com###kefu_in +sogi.com.tw#?#.editable > div.text-center:has(> div.d-inline-block > div[id^="div-gpt-ad"]) +@@||alicdn.com/??*/tracker/ +||yxdown.com/zt/zt/js/zt.js +so.com###mohe-biu_gouwu > .g-card +||baidu.com/gamebox? +||weiyun.com/proxy/domain/boss.qzone.qq.com/fcg-bin/fcg_get_multiple_strategy? +||apple.www.letv.com^ +||eastday.com/k.js +||gamersky.com/common/tg/ +||m.ercos.cn^$third-party +||jedlnn.xyz^ +wenku.baidu.com##.reader-to-cashier-vip > .rights-wrap +||dio889.net/images/*.gif +||51xuediannao.com/uploads/un/ +yfsp.tv,aiyifan.tv,iyf.tv#%#//scriptlet('abort-on-property-read', 'Object.prototype.ShouldLoadAds') +douyu.com###sign_p_1 +||baidu.com/WerbungAjax/getBeitou? +||174.123.15.43:8080 +now.com#%#//scriptlet('set-constant', 'preBid.getPrerollVASTUrl', 'noopFunc') +||xxffo.com^*_slett.php +||ub1.job592.com^ +||1010pic.com/scripts/hd/yueyue +||sdklcnskvbks.com^ +slashlook.com###AdvertisementBottom +||3dmgame.com/sw/zjworld/js/index. +||qhyy8.com/template/default_wap/html/public/img/*.gif +poklw.com##img[alt="恰饭广告"] +||mscs.svaeuzh.cn^$third-party +kelatv.com##a[href^="https://www.kelatv.com/api/go."] +@@||google.com/translate_$media,third-party,xmlhttprequest +||cbfw.cn/gonggong/chibi/cf_ +91porna.com##.row > div[class^="col"]:has(> .video-wrap > a.checkNum) +||aa993366aa.com^$domain=9xav.cc +||df888.eastday.com^ +pc0359.cn##.soft_down_tg +131458.com###header_gg +||sozi.cn/images/tj/downad +||2345.com/js/m/common/top_information.js +||ecimg.tw/img/xdsys/*/layout/*/sign/channel*/ad_*.jpg +hamibook.com.tw##.custom-banners-cycle-slideshow +||cdnjs.z-face.cn^ +||gtimg.com/finance/js/st/p/quotpage/maxcard_ +||crutvncf.top^ +||hc360.com/security/201409/201409021830024990.jpg +tianya.cn##.barcode-float +csdn.net##.banner-ad-box +||7moor.com^$third-party +jspoo.com##img[id^="float_img_"] +||fpbsnc.com/Runtime/js/psData.js +ifeng.com###js_videopause_container +2234.cn##.btngs +||fortxfq.cn^ +ganji.com##.fl_pop +25xz.com##.p_ads +youdao.com##.dict-dl +mnews.tw##.ad-container-pc-only +||ifengimg.com^*/sta_collection +||28.com/countnew.js +||dxfidr.xyz^ +pcstore.com.tw##.priority1 +ipcelou.com##.MODBanana +||shaoxing.com.cn/gg +||ayebsc.xyz^ +start.firefoxchina.cn##.wrap > div[style]:last-child +973.com###a0 +||53kf.com^$third-party +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_l_post[data-field*="\"user_name\":\"\\u4e3f\\u5929\\u4e36\\u4e4b\\u6b87\""]:not([data-field*="\"user_id\":1180601200,"]) +||snmi.cn^$third-party +angelweb.cn###G640x60 +://dreemdmbabys.oss-cn- +||picgd.com/images/2018/12/01/h1pi5.png +||yuanbao777.com/download/*.gif +eyuyan.com##div[id^="ads_r_"] +||huyaimg.msstatic.com/cdnimage/roomad/ +||onmstgh.icu^ +||56img.com^*/search-engine-promotion.js +||a.tiyuxiu.com^ +||6665432.com^*.gif +ifeng.com###sideBar[class^="box_"] +58.com#?#.ac_item:-abp-has(.jingpin) +776dm.com,qiqidongman.com##.topAA +||caoporn.com/ggs.php +qidian.com##.ad-shell +youku.com###bt-banner +bejson.com##a[href*="layui.com"] +zhaohuangpian.net##a[href="https://galaxymedia.xyz/app/"] +||3344xu.com/js/ +mp4ba.la##td[width="300"][height="300"] +iask.sina.com.cn##.sj_300x250 +||wbvfj.xyz^ +||redshu.com/js/pcAdv.js +||zmvopcio.icu^ +||jiaoyou8.com^$domain=mitbbs.ca|mitbbs.com +||soorbka.cn^$third-party +||dmnqfn.xyz^ +||qq.com/game/footerbar$subdocument +||eeyy.com/otherhtml/js/ad650.js +||qfaaokr.icu^ +||duba.com/static/v*/js/tiyan*/ad/ad.*.js +||unpkg.com^$badfilter +||ebrun.com/jfile/position/js/*.js +||buy.sina.com.tw/js/sina_popup.php +||mydrivers.com/www/gg_ +r3sub.com##source + img +||huaiduoduo.info/Runtime/js/ +||tozwrqnq.xyz^ +image.baidu.com###plz-head-banner +163.com##.idx_tonglan_ad +||yhgpuxim.xyz^ +||falcon-asset.pixfs.net/js/adsbyfalcon.min.js +||4080kan.com/js/bc.js +||baiyug.cn^*AD.js +@@||adserver.juicyads.com/js/jads.js$domain=netflav.com +sojson.com##.fly-hezuo +playno1.com##.eis_adv + .eis_mtm +ludashi.com##.div_mask +xueqiu.com##.ad-right-aside +91duba.com###leftBar +ks.js.cn##.height60 +||alicdn.com/img/ibank/*_1281922417. +||boyloves.fun^*/img/20*.gif +||lnxkrd.xyz^ +||zpiyi.com/public/js/global.js +||hiad.vmall.com^ +kkw360.com##a[href^="https://sourl.cn/"] +mrmad.com.tw#?#div[id^="mrmad-"]:-abp-has(>.adsbygoogle) +||docer.org/static/utils/jquery.min.js +@@||v2rayssr.com/wp-content/plugins/dh-anti-adblocker/public/js/prebid-ads.js +||bbs.a9vg.com/showit/img_show.php +||ysm.ezprice.net^$third-party +||waouss.xyz^ +||pxtjfmv.xyz^ +||oodcd.cn/pan/config/ad.json +||pingmeibang.com/zt/zx.jpg +m.baidu.com##.ec_adv +@@||lager.com.tw/images/layer6_adbanner/ +||hubgets.cn^ +tgfcer.com##div[id^="ad_thread"] +mp4ba.la##.hd + table +@@/WebAd/*$domain=yongyoujia.com +bingfeng.tw##.wow-ad-link +||panjin.net/ichat2/adhtml.htm +||hoopchina.com.cn/web/widget/partner/*/promote.js +ysgc.fun,ysgc.tv##.myui-panel_bd > div > a[target="_blank"] +||7x7n.com/static/pic/*.jpg +99syy1.com##div[class^="ps_"] +sina.com.cn##.center-pdps +||bd3.chuiyue.com^ +||drjs123.com^ +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.tb_poster_placeholder +||pwxlbsie.icu^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.op_tvplay_main +||bgbqfqwi.xyz^ +news.pchome.com.tw##div[style="width:300px;height:450px"] +ghoffice.com##.tac > a > img[src*=".gif?"] +||mgmuye.xyz^ +m.lelekan.com##div[id^="myads"] +||bt.ktxp.com/iframe/statistics.js +||usvkfwth.xyz^ +minhangcidian.com##div[id^="googleAd"] +image.baidu.com##.wrapper_dot_box.dot_black +elecfans.com###topJf +lenovo.com.cn##.video +||ciimar.icu^ +dy2018.com,xiaopian.com##a[href*="/htmlcode/"] +||adjb.5nd.com^ +3g.qq.com##li[data-adtype="qbad"] > a[class^="type"] +7k7k.com###flashAds +||nmgnews.com.cn/sys/online_calc.js +||163.com/q?c=*&t=wap_stream&l= +miaopai.com,renren.com##.swiper-container +pcsoft.com.cn##a[onclick*="_ad"] +||cthbini.xyz^ +netfly.*,netfly.tv##div[class*="tt-"] > a[target="_blank"] + span.tt-icon-close +@@||fm.p0y.cn^$domain=ipinyou.com.cn +||ads-union.jd.com^ +||3601880.xyz^ +263y.com##.view_abc +||alicdn.com^$image,domain=m.k1k.cc|thcdy.co|27k.cc|1024pa.com|hg6384.com-www.6u7u.com|4080kan.com|dy686.net +||rayli.com.cn^$third-party +||w3xue.com/js/pro541.js +||oapyrzde.xyz^ +pythonthree.com##.sidebar-main +||zacveh.com^ +huaren.tv##.live-client_left +||greenet.cn^*_popu_$popup +morningpost.com.cn##.gg-2 +oschina.net##.aside-topjj +||ikuailian.com^$third-party +||tklivechat.com/widgets/$third-party +ifeng.com###CA_right +||pfjfjid.xyz^ +||516qq.cn/theme/dd/ +||lsforum.net/cam2/*.gif +||lutouwang.net/static/images/boss_gao_hb.jpeg +@@||chinamobile.com^$generichide +||xiaoweixiaoshuo.com/ad/ +||78dm.net.cn/acg_201*_650 +wenku.baidu.com###ggbtm-ads +||gywb.cn/gggl/ +@@||210.40.130.91^*/ad.css?$stylesheet +||iqiyi.com/track +yjcf360.com##.side_box +||fijipic.xyz^ +||s.yimg.com/ma/auc/common/js/ext_y_straas_shell_*.js$domain=tw.bid.yahoo.com +pconline.com.cn###smallHB1 +gamer.com.tw,pili.com.tw#@#.text-ad-links +=ajaxGetAds&type= +||vhgunzr.cn^ +||u21033.com^ +zhangxinxu.com##div[class^="col-left"] > a[href^="https://item.jd.com/"][style="display:block!important;position:sticky;top:0;"] +benyixiwang.com##p img[src*=".dlssyht.cn/u/"][title] +||txzepl.xyz^ +||cuvtnzv.cn^ +||alicdn.com/kf/U693ffd2a78ac452895488e4e5426554cA.jpg +||fczunn.xyz^ +://*.tv/ad/$domain=~moviedj.tv +||a.10tianqi.com^ +mm-cg.com##.TW_UTtoy +e-learn.cn##.region-sidebar-second > .block:nth-child(2) +||qixingquan.com/qxq-images/dawangka.png +weibo.com#$?#.card-wrap:has(> .card-top > .s-fr:contains(广告)) { remove: true; } +||ali213.net/Pics/*/down_popup_ +||sksbgm.xyz^ +mydrivers.com##.HSsRgYjfNn +||yy17173.dtime.com^ +nownews.com###viewdeo_dable +iqiyi.com##iframe[style^="z-index:"]:last-child +||nnvjbb.xyz^ +||a1.bajiu.cn^ +||gscsahv011.com^ +pansearch.me#%#//scriptlet('prevent-element-src-loading', 'script', 'adsbygoogle') +||ultraimg.com^$domain=18board.com|18p2p.com +||c.mnjkw.cn^ +||msdn.hk/templets/msdn/css/index.js +51credit.com##.main-r-ka +||tetlwsi.top^ +||4080kan.com/js/head1.js +||cpnn.com.cn/cpnn_images/diangong.gif +||dm.gucheng.com^ +||sjaaquj.cn^ +||bumnxiev.top^ +||tuwan.com/myad/ +||eluocs.xyz^ +weather.com.cn##.tong +@@||lefile.cn/??*, +||daima.diaoben.net^ +qidian.com###j-topHeadBox +||yepgdita.xyz^ +||puwkcqp.icu^ +sina.com.cn##:not(.BigPic) > a[href*="sax.sina.com.cn/click?"] +||commondisplay-a.akamaihd.net/cri/*.htm?cat= +dmhy.b168.net##div[align="center"] > a[onclick*="'ad'"] > img +||img.263y.com^ +||enews10.yxlady.net^ +||supfree.net/stat +jkpan.cc#%#//scriptlet("set-constant", "killads", "true") +||images.sohu.com/ytv/*.jpg +fx678.com##div[class^="dl_"] +||aqdy.net/js/banner.js +||39jz.com^ +||szjyfund.com^$third-party +||taobao.com/api/data/v2/d9543feac7c9433a98bc85be3ba856b1.js +||dzlndygh.com^ +||gtimg.com/201*/dsp/ +hbzhan.com###rightAdv +wenku.baidu.com##a[class*="tiger-"][class*="-dialog"] +yiche.com##div[class*="words-ad"] +||aliyuncs.com/ad/jd-smoofit-ad.jpg +||njxraqb.xyz^ +||ganjing.com/vast.vpaid.min.js +healthylives.tw##div[id^="gad"] +image.baidu.com##.right-banner-area +gucheng.com##.title_ad_time +||baixing.com/bb/*/?category= +zhongyiju360.com###bottom-float2 +||koytqo.xyz^ +||slashlook.com/_resource/html/_bloggerAdsBottom.html +huarenjie.net##div[style*="top: 50px;"] +||nlrsrx.xyz^ +||sseudorassb.com^ +hao123.com##.product-banner-wrap +douyin.com#?#.xgplayer>div[class]:-abp-has(svg[height="16"][width="30"]) +||hdbppx.xyz^ +@@||pagead2.googlesyndication.com^$domain=battlecats-db.com +||qebgcdcjr000.fun^ +||xhzjidgc.xyz^ +apk.tw###focus +ifeng.com##.playad +||dajs001.shop^ +csdn.net##.recommend-item-box[data-track-click*="http"]:not([data-track-click*=".csdn."]) +||nfmovies.com/static/210203.png +||foscvbu.icu^ +youku.com#%#//scriptlet('adjust-setTimeout', '', '', '0.02') +hao.360.com###left-nav-place +||kjappzvz.xyz^ +iqiyi.com##.site-title_right +||qzvzluu.xyz^ +gotrip.hk,nmplus.hk,weekendhk.com##.ai_widget +iqiyi.com##.rm-site-main +||haopp02.com/haose/ +segmentfault.com###gridAd +gamme.com.tw##.fullad_ad +||wewbnso.cn^ +yizhibo.com###J_reg_guide +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=nowplayer.now.com,important +||adwordsing.com/img/2.jpg +||jsdelivr.net/gh/fzdm/st*/js/fzwap- +||aqy103.com/js/aqy/ +||nmtcxz.xyz^ +||qheoy.cn^ +xbeibeix.com#@#.google-ad +||xysefte.icu^ +||ifooday.cn/index.php?m=poster& +||netease.com/house-public/articleyunyans.js +||bu1.duba.com^ +||ortlisk.top^ +||elecfans.com/skin-*/images/banner_ad +||mthhhuq.cn^ +kaifu.com##.play_fmt +91lai.com##.showimgs +||gtimg.com/gamezone/2014index/images/600x75.jpg +cheaa.com###AD002 +||kfdrc.cyou^ +iciba.com##.ad-sign +||ef9i0f3oev47.com^ +sina.com.cn###AD_Background_Wall_BG_Link +||ifengimg.com/auto/js/*enquiry +||dhl.135320.com^ +||tsdm39.com/img01/MP3/GG/ +172cat.com###adload +||sinaimg.cn/large/007drMcOly1gfnqzv8a7ij30xc02nwfr.jpg +iqiyi.com##.ad-seed +||alicdn.com/kf/H2f43d53d17c74471a2a9e00bc10c5c99j.jpg +gamme.com.tw##.ad_down +||na06.cn^ +||oawvsm.xyz^ +||sc126.com^ +||dpjzr.top^ +||53ynh.xyz^ +hao123.com##.enter1 +@@||ctrip.com/Customer-Market-Proxy/AdCallProxyV2.$~third-party +123.sogou.com,web.sogou.com##.adword > a +@@||cpro.baidustatic.com/cpro/ui/c.js$domain=htqyy.com +zhakao.cn##.main > div[id^="_"][style^="box-sizing: content-box; display: block; position: fixed; z-index:"] +||shouldercommandmentlimitless.com^ +||3ri.cc^ +@@||ekamus.info^$generichide +||mm111.net/api.php?mod=ad& +price.com.hk###ad-inhouse-top +@@||histock.tw/JScript/AD/ +||static.gridsumdissector.com^ +5yfz.com##table[style="width:100%;text-align:center;font-weight:700;"] +ttmeiju.me##DIV[style="float:left;margin-bottom:27px;margin-top:27px;"] +||163disk.com/static/www/ +||dingbu.bj.bcebos.com^ +chaicp.com###activity-web +||vvvkp.com/template/ttk/img/ +||gaglxx.com/5_ +||htubzpb.cn^ +qq.com##.wrap[class^="jsx-"] +||1.zuowenjun.com^ +home.firefoxchina.cn##.border-gray-200.tuijian +||ad.cdnjm.cn^ +||dsp.ali213.net^ +||sbbd1.qulishi.com^ +||ac*.786ip.com^ +||pansoso.com^*pss. +@@||cibntv.net/youku/*.mp4?$domain=v.youku.com +||a1.aichagu.com^ +||bdxpdz.xyz^ +||hexun.com/gphqtc/ +||renohj.xyz^ +020job.com##A[href^="/Click.aspx?AdPageID="] +5888.tv##.footer_fixed +caoporn.com###middleimg +||mnks.cn/jk/appAD_ +||scw98.com/ADMM. +99114.com##.indexcjgg +||gzsscr.cn^ +tv.sohu.com###referr_bd_box +||fcm.baidu.com^ +||lensdump.com/i/*.gif +||kdslife.com/kds_2023/kafu. +igxe.cn##.lion-flexd +||baidu.com/api/proxyapi?tag=adv& +||feofamdak.top^ +ck365.cn###Dmids +||doujs05.shop^ +||sonimei.cn/images/llq.png +it168.com##div[id^="ADV"] +||8878tp.com^ +||gucheng.com/gcwad/ +||mc.weather.com.cn^ +goodav17.com##div[id$="content"] > div[style="margin: 0 auto; text-align:center; margin-top:30px; width:90%;"] +so.com##.busi-article +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[class^="ecr"][class*="game"] +zhibo8.cc###m_adv +duonaolive.com##[onclick^="track"] +||sjezce.xyz^ +||tsrvrr.xyz^ +pansci.asia#$##firstSingle { padding: 0 !important; } +@@||anhuinews.com/zhuyeguanli/2020ad/xidad.jpg +||pic.shedsgs.cn/upload_*/upload/*.gif$domain=91porna.com +||91danji.com/attachments/201810/12/10/2hdyj7ut9.jpg +ifeng.com##div[class^="topAd-"] +||terrynow.com^$csp=script-src 'self' * 'unsafe-eval' +||etf88.com/swf/ +||xunlei.com/api/stat/rt/js? +||dealmoon.com/hotdeals/hotdeals_scroller.php +||cdndm5.com^*/ad_360_ +||kytbxcl.cn^ +526bt.com,daniao.org,eroacg.com,laod.cn,myqqjd.com,ninpang.com##.tg-site +||srzpsbf.xyz^ +creaders.net##div[style="float:left;padding-right:.3em;width:300px;height:250px"] +||aiyangedu.com/static/cpt/pubuliu. +||abcd.zle.com^ +18-comicfrieren.xyz,18comic.org,18comic.vip##.div_sticky2 +||aqwsms.xyz^ +||xiwusn9982.top^ +tuwan.com##.Player-zan +||dsukqsx.icu^ +||suning.cn^$domain=qianggou5.com +||eetlwsw.top^ +||6pan.cc/ps/vip.jpg +||snjfasp.com^ +||lahoo.ca/slider +yahoo.com##a[class^="Pos"][href*=".promotions."] +||hwateru.top^ +||ivy.pconline.com.cn^ +ci123.com##div[onclick^="window.location="] +apple.com.cn#$#.ac-gn-blur { top: 0 !important; } +||yigujin.cn/wp-content/themes/Three/js/tuij +hupu.com##.hupu-shihuo-hot +porn5f.com##.bxslider +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###worldcup_guess_frs_wrap +sina.com.cn###tg_app_w +||makqsd.icu^ +||4fs3r.icu^ +jb51.net###gaosu +||ioykmxa.icu^ +pcauto.com.cn###bgbao +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###search_baidu_promote +||ynztzh.com^$third-party +pjtime.com##.top_R +liaoningmovie.net##.ad_panelAR +||oyksoft.com/assets/images/*.gif +||agossuoeach.com^ +||kuazhi.com/zb_users/plugin/allshow/js/main. +expreview.com##.babaBox +17yy.com##.t2r_3 +rising.cn###lowerrightAd +shaoxing.com.cn##.top2 +autohome.com.cn##.information-adv +||bdstatic.com/static/searchresult/widget/pageDisorderTip/ +@@||58.com/adJump?adType= +||gaoqing.la/wp-content/uploads/*/gg +mafengwo.cn##.hotel-banner +zhidao.baidu.com###qb-content div.businessvip-wrapper +zhuna.cn##a[href*="quchuchai."] +@@||moyens.net^$generichide +apk.tw###postlist > div:nth-last-child(2):not([id]) +||szbzp.cn^ +||lw54.com/js/ +isiyuan.net#?##page-list > ul > .layui-row:-abp-has(.ad) +||adi*.cnool.net^ +||njdaily.cn/templates/njdaily2014/widget/njdaily-slideAds +||tiexue.net/pic/tx_1220.jpg +huaban.com##.hb-ad +icbc.com.cn#@#.adLeft +@@||geekbang.org/resource/image/ad/14/addb521e20de1a302206f4286eac3914.png +@@||10086.cn/framework/modules/sdc.js +||bsvkfwth.xyz^ +cjw123.com,weike87.com##.copy +||btfjjwt.xyz^ +||fehrda.xyz^ +@@||bytecdntp.com^$script,domain=51eshu.com +||pelageforgers.com^ +||kkddlt2f.site^$third-party +163.com###js_a_bobo +||51zxw.net/netclass/images/*_top.jpg +elecfans.com###MiddleLeaderboard +||lxryhx.xyz^ +udn.com##.mag_topic > a[href][target="_blank"] > img[src^="https://p.udn.com.tw/upf/"][src*="_banners/Special/"] +||ifengimg.com/iis/iis_ +@@||dnspod.cn/static/common/js/analytics.js +||zyrnbh.xyz^ +icanzc.com###contsec +||duouoo.com/vss/right-ssd.js +huarenjie.com###RightAd2 +||ithome.com/images/v2.1/downsoftmaster.gif +aihami.com##.conText > div[style*="width:"] +waerfa.com##section > div.article-gg +||topqualitylink.com^$third-party +baby-kingdom.com##.right5 +zj.qq.com##.mod-side + div[style="width:300px;height:257px;"] +netbardh.com##.pos-navbar-ad +gdzjdaily.com.cn##.big_news + div +||tw.rd.yahoo.com^$image +||tydzfldt.xyz^ +iqiyi.com###zbsp +@@||qq.com/ads/js/$domain=privacy.qq.com +||lfhdryz.xyz^ +||itc.cn/w/u/0/old-insertAd- +||jiaodong.net/a/js/ +||y.photoint.net^ +||yzpsb.net/1.js +eoof.net##.tableborder1[cellspacing="1"][cellpadding="3"] +mydrivers.com###recommend +v.qq.com##a[href*=".vip.com"] +@@||10010.cn^*/ad +nani.baidu.com,ala.baidu.com##.tbui_aside_float_bar + .clearfix +||kogtrmjz.xyz^ +||baidu.com/videoui/api/videopcads? +||tsvkfwth.xyz^ +||wfsmya.xyz^ +hupu.com##.maibghref +letv.com###JS_banner01 +||1.feihua.com^ +||wwerioe.top^ +||hoopchina.com.cn/web/channel/voice/*/beforelogin/beforelogin.js +||360doc.com^*.html?t= +||3jia5.com^$third-party +||uhjxitn.xyz^ +sina.com.cn##.sinaads +kongzhong.com###dn +||twamjb.cn^ +||ehhjfgs.xyz^ +||tl86tv.com/52 +||acgnx.se/images/adwork/ +hoteastday.com##.incentive +novipnoad.com##.bg-ad +||eastday.com/assets/js/resources/new_detail_ +@@||bingfeng.tw/source/plugin/unadblock/*_ads_*.js +tuchong.com##.float +||mvirkw.xyz^ +||neryt111.fun^ +||iciba.com/www/img/activity/common/active-11-11.js +gaoqing888.com##.wp-card > a[target="_blank"] +baidu.com##.nav_ads +brtn.cn,btime.com##.business-box +pcstore.com.tw##.priority +chinagwy.org##.ewm0610 +||eap.big5.enorth.com.cn^ +taizhou.com.cn##.duilian2 +i-part.com.tw###chatroomFrame + div[style="text-align: center;padding-top: 10px"] +360che.com##.con_banner +||1.jeasyui.net^ +||vxotu.com/i/*.gif +ck365.cn###content_login +zhicheng.com##.mad_top +pixabay.com##.carbon-ad +gamer.com.tw#$##flyRightBox { position: absolute!important; left: -3000px!important; } +letsplay.tw##.entry-content > div[style="min-width: 300px; min-height:300px;"] +yahoo.com##section[class^="Pos"][data-id="big-gemini"] +go.10086.cn##.gaiPing +uuu9.com##div[class^="ad_140"] +cztv.com##.vivo +90oo.com,p9.com.tw,price.com.hk,ttww22.com,xinhuanet.com###ad1 +||fanjs.top^ +||static.youku.com/*/index/js/iresearch.js +eol.cn##div[id^="s1_"] +boke112.com##a[href^="https://dwz.cn/"] +||price.com.hk/scripts/ysm.js +||g.mnw.cn^ +||iiilab.com/sponsor +@@||xinhuanet.com/gsstatics/*/images/ad/ +||glittersh.com^ +||iwarship.net/wowsdb/static/img/banner.png +caikuu.com##.clearfix + .recommend +||eastmoney.com/public/js/left.js +||bmret.cn^ +ifeng.com##div[class^="bottom_box"] +ip.cn##.well > p > a +ghxi.com,mcdulll.com,pixnet.net##div[id*="-ad-"] +||wkywrc.cn^ +i-part.com.tw###AdBanner785 +xcar.com.cn##div[class^="adset"] +||uiiepofl.xyz^ +||3158.cn/min/webim. +||toublii.top^ +||daynews.co/cdn-cgi/apps/ +baidu.com###sning2 +||uftcfo.xyz^ +||tu3168509469.cc^ +||bio-equip.com/dimg/ +||jollyspring.com^ +||ancxeftgyu.top^ +18comic.org,18comic.vip,18-comic.work#@?#:-abp-has(>ins+script) +51nongyao.net###reportPop +bodu365.co##.beside +||meiju8.cc/js/pv +yyrtv.com##.right-gg +||bd1.guancha.cn^ +iyf.tv#@#.share-top +||cherylssb.com^ +||sagcyq.xyz^ +||126.net/caipiao/js2/index/homePop.js +t.qq.com###homeBannerNew +siguyy.tv##[style^="position: fixed;"] +||aaoisp.com^ +edrawsoft.cn##.bottom-banner-activity +@@||alicdn.com^*/tanxssp.js$domain=dlkoo.cc +||51pantu.com/pic/1598717206949.gif +||9ku.com/aaa/ +||huhumh.com/js/ +||1vudktp.com^ +||38bw0.space^ +youku.com##.videolist_s_body > div.common_container > div[id^="ab_"] +manhuagui.com##body > div[class]:has(.sitemaji_banner) +||nxtxxcm.xyz^ +||alicdn.com/img/ibank/*_872274545. +jrj.com.cn##.bd.pa10.bgn +jjckb.cn##.adv_ment +||57sehua.com/template/assets1/js/vue.js +pcbeta.com#?##wp > div[class][id]:-abp-properties(width: 980px;) +||1kfnsra.com^ +qq.com#@#.adside +molure.cn##.adplan +volcore.xyz##.avd1 +||thetestpage.39.net^ +||jd.com/exsites?spread_type= +huya.com###ggcomment +||hncadh.com^ +||news.tagtoo.co^$third-party +||diccsbhij.com^ +rising.cn##.ggqh +laixoo.com,v2rayssr.com##.git_banner +||ygipjqf.icu^ +@@||dlkoo.cc/down/copy0 +wenku.baidu.com##.zhixin-right +baidu.com##.result-op[tpl="vmp_strengthen_brand"] +||da-fan-shu.cn/images/kuaijie.jpg +hjenglish.com###regModule +||baidu-taobao-av.com/js/ +@@||ad.12306.cn^$elemhide,subdocument,domain=95306.cn +mobanwang.com##.g960 +bilibili.com##div[style*="height:"][data-loc-id] +||ypkxahje.xyz^ +||c.mipcdn.com/static/*/mip-ad/mip-ad.js +nick20.com###sex + div[align="center"] +@@||media.org.hk^*/ads_ +||alicdn.com/img/ibank/*_1533190909. +||ycuhky.xyz^ +@@||xbeibeix.com^$generichide +soundofhope.org###itb_ads_catfish +||17173.com/if/ +iqiyi.com##a[href^="https://ads.game.iqiyi.com"] +51cto.com,chinaacc.com,yidianzixun.com##.banner +||cdrvkdni.xyz^ +99re.com##.spots +||rdnplpj.cn^ +||moqsxdpx.xyz^ +bilinovel.com#%#//scriptlet('abort-current-inline-script', 'document.createElement', 'pagead2.googlesyndication.com') +||u55011.com^ +||tui07.shop^ +9ht.com,cesafe.com,downcc.com,downyi.com,paopaoche.net,pc0359.cn,pc6.com###gaosuxiazai +||jciwztfj.com^ +||javdove.com/templates/frontend/javdove/*/partialviewslider. +||acgnz.cn/static/i.js +||jiujy5r3.fun^ +fortunechina.com##.pinglunwindow +@@||126.net/163/frontend/share/js/ +||1.jiqie.cn^ +taiwandaily.net##.gofollow[data-track] > img +||ifengimg.com^*/yingguang- +||imgur.com^*.gif$domain=18p2p.com +||aoiqa.top^ +||51fanli.net/misc/images/invite-v4/banner.gif +miercn.com###foot_return_foot +||vyrpoe.cn^ +fx168.com##.jy_fx168_default_head_navAd +||vdvcjlp.cn^ +jiegeng.com##.picLf +sohu.com###hotpicnew +||321.jintang114.org^ +||d3.sina.com.cn^$object,script +hcbbs.com###framedtSuR9 +iqiyi.com##.cell-left +||kfckcu.xyz^ +@@||126.net/images/blank.gif +||besc.baidustatic.com^ +v2ex.com#?##Rightbar > .box > .inner > .sidebar_units:not(:has(+strong)):upward(2) +toolfk.com##a[href*=".xiuxiandou.com/"] +||lsforum.net/yahooad/ +cotton.pink##.adsbyfalcon +||anqu.com/b.js +||fzllis.cn^ +||bcquan.me/front/*_ad +||hrnkdr.xyz^ +||murdyq.com^ +o8tv.com#?#.container > .row > .myui-panel-bg:has(> .myui-panel-box > .myui-panel_bd > .col-xs-1 > a[target="_blank"] > img) +||talkfx.*/showTKImg? +5yfz.com##.wrapper > p +||s.weibo.com/widget.html +eastmoney.com##iframe[src*=".eastmoney.com/banner/"] +||xjpmlf.xyz^ +||cowcuo.xyz^ +||lrdyfz.xyz^ +||cwaterf.top^ +||gbc27.online^ +hongrentao.cc,houhuayuan.pink,mrmad.com.tw,myself-bbs.com,paltv.top,pbhz.com,sportsyeah.hk,zhaoze.party#@##adsense +||js*.abolezi.com^ +timedg.com##.topCrossAd +@@||petrochina.com.cn/advertisement_ +||hao6v.com/d/ +house.qq.com###yf +||digitaloceanspaces.com^*-Banner +||jishulink.com/jishulink/searching/ad/get? +duba.com,newduba.cn##.img[href^="https://s.click.taobao.com/"] +163.com,bilibili.com,longzhu.com##a[href*=".admaster."] +elecfans.com###sidebar-firstad +qbaobei.com###diyforumdisplaybottom +dyzd1.com##.all960 +kdnet.net##.c_spread +yaociyuan.bid#%#//scriptlet('set-constant', 'killads', 'true') +kocpc.com.tw#$##header > nav.floated-navbar { top: 0!important; } +gamefy.cn,sitv.com.cn##.col-vlist-l > span +jingdianlaoge.com##div[style="width: 300px; height: 250px; background:#eee"] +||jswz8.com/images/ +||xizanzhi.com^ +||riaway.com/statics/idea.jpg +||clmcam.xyz^ +cesafe.com,kkpan.com,yxdj.com.cn##.m-a-linktwo +bbt.tv,btbt.tv,fiime.cn,kims3.xyz,mmiyue.com,qcheng.cc,yii666.com#@#.google-ad +||qeryt111.fun^ +aeink.com##.widget_ui_textads +||cdn.holmesmind.com^$third-party +cardu.com.tw###crazy_layer +||bea-s.dinghuoche.com^ +||qiyipic.com/common/*vivo +||51test.net/js_new/a/right_wx.js +jbtalks.cc,jbtalks.com##.jbt-ad-region +||ifengimg.com/static/news/js/newsAdvtrack_ +||spcode.baidu.com^ +douyu.com##.hot-sign-2 +||llmxt.fun^ +xiaoma.com##.leftewm_topa +wnacg.com#@#.pcgg +||yihehe.xyz^ +||x360xs.com/tops/ +@@||jd.com/setCookie? +bilibili.com##a[href*="cm.bilibili.com"][data-target-url]:not([data-target-url*=".bilibili.com/"]) + .bili-video-card__info +@@||download.mokeedev.com^$genericblock,generichide +||upyerxzn.xyz^ +||piaoliang.com/js/all.js +crsky.com##.adowGright +||lianyexiuchang.cc/img/97da89108eb659fc.gif +||tflybplr.xyz^ +i.maxthon.cn##.header-hotkeys +@@||sina.com.cn/litong/*/close +@@||lobi.co/1/track/event/ +@@||selfimg.com.cn/?? +||xpcha.com/js/notice.js +||dbpxivi.xyz^ +huya.com##.component-ab +hao.360.cn,hao.360.com###festival_balloon +3dmgame.com##.tonglona_3 +sex8.cc##.j-oscar +||aoshi.com/rbc.jpg +bigpixel.cn#$?##PAGE_AD_1 { remove: true; } +jdwx.info,motobuy.com.tw##.other +3dmgame.com##.dj_warp_e +duba.com##.box_shopping +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.kn_nine_wrap +||ievvo.xyz^ +@@||jswenhui.com^*/ad/ +||pic.fengniao.com^ +||baidu.com/cms/lemmaconfig/navbarAd. +||olehdtv.com/index.php/index/userss| +||qudajie.com^ +haoxxoo.com##.nrad2 +||baijs09.shop^ +zhcw.com##.khdpc +||acgbenzi.com^$image +ezneering.com#$#.pum-overlay { display: none !important; } +sina.cn#$#[data-href*="://sax"] { position: absolute!important; left: -3000px!important; } +58.com#?#.business_main:-abp-has(> .business_desc > .left > .ding_icon) +||xkrnud.icu^ +teepr.com##.shop-widget +||acewdf118.cn^ +||sucloud.xyz/js/tou.js +||xng02.com/api.php?mod=ad& +||soutubot.moe/static/airport +||baidu.com/tb/cms/game/*_banner. +shouji56.com##.adv01 + a +cn-healthcare.com##.fh_advent_wrap +mydrivers.com##div[style*="/ad/"] +||ellingsen.cn^ +gamer.com.tw,pili.com.tw#@#.text-ad +||koolearn.com/v2/js/*AD.js +nodejs.cn###pagead +||eacdf119.cn^ +v.youku.com###player-advertise +||xdsahkln.xyz^ +||2qy9zm.cn^ +||644446.com^ +gamefy.cn,sitv.com.cn##.con > a:last-child +bkill.com##.alliance-ad +||youth.cn/images/c.js +douban.com##.channel_promo +9s102.xyz##.jsv > .container-fluid.mb-0 > .row > .col-sm > a[target="_blank"] +||info.vip.iqiyi.com/promotion/ +@@||moea.gov.tw/EgisWeb/Scripts/google-analytics.js +||sogo.uc.continuefaf.top^$third-party +||ffawfa.cn^ +||9zvip.net/hi5asd/ +||wa.kuwo.cn/lyrics/img/kwgg/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.score_ecr_wrapper +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.u9_head +||mesh.if.iqiyi.com/portal/*/recommend?$xmlhttprequest,removeparam=adExt +aiyuke.com##.igamead +mobile.baidu.com##.p_fixed_lb +||cntronics.com/adsupload/ +huaban.com##div[class="pin wfc ad wft"] +jiyingdm.com##.abcde +jikexueyuan.com##.pewm2 +newxue.com##.dashuggtop +@@||alicdn.com/t/img/TB1DmcoJXXXXXavXpXXXXXXXXXX-26-26.png$domain=dlkoo.cc +||uuxfznnf.xyz^ +||sdjkbcjksbdsvv.com^ +||yaozh.com/Public/js/widget/dbAdDownload. +||btbtdy.*/js/slade888.js +@@||sovrn.com^$domain=mens1069.com +fwxgx.com###jPpo_sc +8264.com##.zhidemaibox +||haosf.com/kan.htm +alypw.com##.ceadd +suizhoushi.com##.sznew_ad_top +chaomi.cc,cpnn.com.cn,cs.com.cn,dyhjw.com,kkj.cn,my0538.com,mydrivers.com,ofweek.com,silver.org.cn,wendu.cn,y1118.com##.duilian +||honknl.xyz^ +||inone517.com^ +||dzdxnbc.xyz^ +||aoji.cn/static/js/yiliao/ad_common.js +||17.huanqiu.com^ +qixingquan.com##div[style="float:right;margin-bottom:6px;"] +||gdmm.com/api.php?mod=js&bid=2188 +||roxfrv.xyz^ +feixiaohao.com##.TopHomeLink +188soft.com##.cont_d_l_dow + .down-center +||qinbing.cn/data/upload/ueditor/ +kuaidi100.com##div[id][style="width: 300px;float: right;"] +dm5.com###a1 +mmff30.com##span[id$="_gg"] +||sciencenet.cn/field/js/news. +||hellocenter.xyz^*.mp4$redirect=noopmp4-1s,domain=localmv1.com +@@||attach.mobile01.com/image/mod_ad/*$domain=mobile01.com +pixnet.net##div[style^="width: 630px;"][style*="height: 250px"] +||jiaopei.com^ +||8cnd.com^ +||87mao.com/52 +||jyqkijp.icu^ +||cupid.iqiyi.com/show2? +||biz.gexing.com^ +ltn.com.tw##div[class^="market300"] +news.ifeng.com##.right1 +:7701/load.cw.js +||moneyweekly.com.tw/UC/JQueryJson.aspx/MwAD +360kuai.com,hao.360.com###cangbao_redbags +kukuw.com###gg_rl +mahua.com##.hidden_ab +duba.com##.car_ads +bde4.icu#%#//scriptlet("set-constant", "canRunAds", "true") +||strip.chat/widgets/$domain=tktube.com +dalipan.com##.hongbao-wrap +2345.com###J_search_bd > div:last-child +||abc.hkepc.com^ +csdn.net###kp_box_www_swiper +:9001/code/ +yjcf360.com##.side_box2 +@@||smtcaw.com^$generichide +vpsdx.com##.gsfha3-form +||eeyy.com/templates/js/other/yxj +@@||bbs.tgfcer.com^$generichide +||8ziyuan.com/images/infolinksad.jpg +kdnet.net##.download-bar +||kdpic.pchome.com.tw^ +cartoon18.com##.embed-responsive.position-relative + .card-body > .lines > span.badge + a[href^="http"]:not([href^="/"]):not([href*="cartoon18.com"]) +||udoshbt.top^ +eastday.com##.drain_app +ahhhhfs.com##.site-addswarp +@@||kfcorder.com.tw/web/Script/Analytics.js +||cngsf.com/images/336_280.gif +landiannews.com###block-2 +@@||alicdn.com/mm/tb-page-peel/ +||alicdn.com/img/ibank/*_1776866723. +@@||pkstep.com^$generichide +ftvnews.com.tw##div[id^="div_gpt_"] +w3cschool.cn##.widget-main +||jgntjtyf.icu^ +htmleaf.com##.htmleaf-adv +||camspic.com/imguang/*.gif +||meitui.org^*.js +5imx.com###diy_mxad03 +vmvps.com###long_image +||ufile.cc/pps.js +||qq.com/coral/ADS +||olmsoneenh.info^$domain=avgle.com +csgoob.com#?#div[class^="dark:shadow-none"]:has(> div.ant-carousel) +||img2.titan007.com^ +||a.tyncar.com^ +||cdscs990.fun^ +||360buyimg.com/ddimg/jfs/t1/27218/8/19964/31194/636a1930E1de2ae78/e3ff134116579b95.jpg +@@||udnplay.com/js/momo/adsbygoogle.js +||shbzdkj.cn^ +laohu8.com##.app-button +||mamecn.com/style/pcjs/bgimg. +||cshlal.icu^ +hung-ya.com##.AdBottom +||baidu.com/xpage/interface/structrec? +||lysq.com/data/attachment/portal/ +baidu.com##div[class*="fc-"][tplid] +opdown.com##.listaddrs +||xvideo.cc/wefong2.js +||js1.122cha.com^ +||zailgrae.com^ +||web-ad.xyz^$third-party +||wyiegt.icu^ +mobile01.com##.fast-ad +||40407.com/plus_rpad_ +hkgolden.com##.hkg-ad +||hfjmvr.xyz^ +yes-news.com###content-728 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##div[id*="lottery"] +||gpqkeq.xyz^ +24k99.com,fx168.com##.ny2018_txtLink +||cngoldres.com/libs/jtams/ +jable.tv##div[class^="root-"] +||vfvrld.xyz^ +||qhodog.xyz^ +||gvvedashb6.fun^ +||dftoutiao.com/dfpcitv/pcitv?jsonpcallback= +56.com##.x-download-panel +bingfeng.tw#%#//scriptlet('abort-current-inline-script', 'setTimeout', 'COOKIE_NAME') +kpw6.com###daojs +guitarchina.com,iqiyi.com##.banner4 +||ocpydszq.xyz^ +||gdt.qq.com^ +||imgmega.com/i/*.gif$domain=18avtube.com|mm-cg.com +||porn87.com/static/stream_ads/ +||kt51.com/wz.jpg +||778669.com^$third-party +||c.admaster.com.cn^$popup +||tae0t.site^ +techbang.com##.article > #post-additional +eeyy.com###beitou_box +||photo07.xyz^ +||jisoupan.com/static/ +qzone.qq.com###appCanvasRightTopQBoss +lenovo.com.cn##.hotword-list > li > a[href*=".jd.com"] +sogou.com##A[data-log*="PicAd"] +:8686/8888/*.gif$third-party,image +||ctfile.com/popjump.php?$popup +||btdx8.com/tmp/ +||iwanad.baidu.com^ +||chinaz.com^*_g/ +||gwogrgq.icu^ +sina.com.cn###left_focus_ad +@@||qspfw.com/r/cms/www/qspfw/common/img/ad_ +||maxunn55.top^ +||dfryzh.xyz^ +qizuang.com##.bottom-fadan-box +ofweek.com###flybox-db +6park.com##div[style^="width:990px;background:white;"] +||frfve33.fun^ +||yuanpinghengkangfuyouxiangongsi.top^ +||bt-tt.com/ad +||bovytl.xyz^ +||5ejlo.xyz^ +@@||gias.jd.com/js/td.js +ke.qq.com##.bottom-bar +||tjuspyk.icu^ +bamxs.com##body > a +||rsvkfwth.xyz^ +search.bilibili.com##.video-list > div.col_3:has(> div.bili-video-card > div.bili-video-card__wrap > a[href*="&csource="]) +@@||ani.gamer.com.tw^$generichide +||iuqasw.xyz^ +||1bctkn.xyz^ +||citysbs.com/no/*/980x +health.tvbs.com.tw##.fromEditor > section.ed-px-5.ed-lg-hidden +||jqsex.com^ +dngz.net##.hezuo +||qboywc.xyz^ +toolfk.com###layui-layer100001 +@@/log/report/*$script,domain=bilibili.com +||gbndash2.fun^ +||5ilinglei.com/gg.html +114la.com##.s11bg +||muycpg.xyz^ +@@||libs.baidu.com^$domain=m.supfree.net +backchina.com##a[href*=".21usdeal.com"] +||avjd014.com/*ad^ +chacuo.net##.a96090 +||jstucdn.com/g3/ +||sdipsumb.top^ +||wudizuqiu.com/fy +||dioimg.net^$domain=18board.com|18board.net|18p2p.com +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv#?##hellBoy > li[track-by="$index"] > div[style] > .show-div:has(> .show-card > .update-play:contains(/^AD$/)) +||hkcoding.com/chequeconvert/img/grammarly- +||jb.ecar168.cn^ +72g.com##.recommended +cncrk.com##.dxzq +||shbzngs.cn^ +||iqiyi.com/js/pingback/ +||huryds.top^ +||itjsb.com/itjsbwx.jpg +colamanga.com##iframe[style*="important"] +image.baidu.com##.sample2 +@@||tanx.com/ex?i=$script,domain=dlkoo.com +||syiwgwsqwngrdw.xyz^ +||fuimg.com/1/66795b80a792fb96.png +huya.com##.sidebar-banner +blog.csdn.net##.programmer1Box +codeplayer.vip,cupfox.app##.banner-box +@@||briian.com/advert. +||oektiu.xyz^ +||bdjs.91zhuti.com^ +||cnblogs.com/group/C1-C2 +||lianmeng.360.cn^$domain=~lianmeng.360.cn +||1.zhuangxiu567.com^ +||gtimg.com/adb/$domain=okooo.com +||qd.x4399.com^ +18comic.vip#%#//scriptlet('prevent-setTimeout', 'float_right > div') +||ark.letv.com/s? +||szdxw.cn^ +||oxrvfsi.xyz^ +||mfemiac.icu^ +||shouyoutv.com/assets/api/web/v4/js/global_head.js +showtv.com.tw###sub-ad +||4399.com/loadimg/iframe_ +||novipnoad.com/theme/js/helper. +||evgaow.xyz^ +gitee.com##.gitee-stars-main-widget +iqiyi.com##.dove_videos +boce.com##.index-top-long +oschina.net##.blog-left-ad +||magioe.xyz^ +3dmgame.com##.addownbox_gaosu +alu.cn##.Tg_125x70 +99re.com##.dmcenter +suning.com##.c2c-recommend +news.pchome.com.tw##div[style="width:970px;height:250px"] +||gmbbku.com/jj/ +||310v.com/images/wap_520x60.gif +||cpnn.com.cn/cpnn2015g/neiyegg.gif +||d1pmhihatyvp1k.cloudfront.net^ +||692881.com^ +90oo.com##a[href^="http"]:not([href*=".90oo."]) > img[src*="/tp/"] +||btc440.top^ +taoguba.com.cn###wrap_footer > div[style^="width: 957px;"] +10jqka.com.cn,18183.com,actoys.net,beijing-air.com,bio1000.com,foodmate.net,gter.net,hepuwang.com,jjwxc.net,ncdiy.com,qingdaonews.com,tgbus.com##.ad1 +csdn.net#?#aside > div.slide-outer:has(> div.box > div[adsid]) +||qrttfmo.cn^ +||dqhxmbx.cn^ +goodcome.com.tw###fulljad +||pa4ye.cyou^ +||5z0d3.cyou^ +huya.com###J_roomSideTop +||idoshbo.top^ +fanyi.baidu.com###app-read +||63ys.com/*/gct.js +||yzpsb.net/js/system.js +cccpan.com,ys168.com,ysepan.com###idzdy1 +~mgtv.com##a[target="_blank"] > img[src*="hitv.com"] +||mydrivers.com/images/*_1100_90. +||jmylj.cn^ +csdn.net###asideCustom36733263 +||goods.tudou.com/api? +||cupid.iqiyi.com/mixer? +@@||cnsexy.top/wp-content/plugins/dh-anti-adblocker/assets/js/showads.js +aiqicha.baidu.com#@#.share-label +51wangdai.com##.couplet_gg +||ktvjpmi.xyz^ +health.tvbs.com.tw##.hidden .justify-center:has(> div[id^="health_pc_read_"]) +||szmhk.cn^ +avmimi.com##.TW_UTtoy +||mm786.com^$popup,third-party +||tptgvh.xyz^ +yanaifei.net#$?#.swiper-wrapper > .swiper-slide:has(> .banner[href^="https://"][target="_blank"]) { remove: true; } +downmsn.com###downShow_tellDownload +jsphp.net##.adleft-wrap +||dnvod.tv/listprovider/ajaxlist.async.ashx +||1.78500.cn^ +kissjojo99.com##.single-top +||clywws.xyz^ +gamicsoft.com##.mobileAd-slider +||1.ttxs123.net^ +googleads.g.doubleclick.net###mys-wrapper +||plfwxtgu.icu^ +||gtimg.com/newsapp_bt/0/14484060967/641 +www.sina.com.cn##.mod-01 +zhiyoo.com###header_app +||yiparts.com/Chance.php?aid= +@@/adblockDetector.$domain=softwarebrother.com +||kzelzfnj.xyz^ +gaokao.com###xuad-left +||rodmfv.xyz^ +||drmcmm.baidu.com^ +||ovykq.online^ +3dmgame.com#%#//scriptlet('abort-on-property-write', 'adStart') +cnfol.com##.AdAsideW300H250 +ruanyifeng.com#@?#.asset-content > p:-abp-contains(/二维|助教|0 元|报名费|原价/) + p > img +china.com#@#.adclass +||qguwoq.cn^$third-party +||bekmhvbb.xyz^ +xiaoz.me##.sidebar a > img +||aipp99.com/haose/ +||chinaz.com/tool_img/alexa_a.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_click_stats[href*="adn.baidu.com"] +||a.xzzsjz.com^ +||aixifan.com/static/*/appGuide/ +||touvxlii.top^ +@@||adx.yiche.com/ssp/echo/v1.0/en?*,*,*&cs= +@@||www.google.*/adsense/$~third-party,domain=google.cn +||sex8.cc/plugin-e6-rebate.html +||auto-online.com.tw/vendor_data/ +||ent1.12584.cn^ +vuejs.org##.text-ad +dcard.tw#?#div[data-index] > article:contains(贊助活動) +||0h3uds.com^ +||douyucdn.cn/common/simplayer/assets/effect/cpsUI_ +||taporn.com/d/ +||ent1.qunchua.cn^ +24h.pchome.com.tw,find.ruten.com.tw##.site_evt +tieba.baidu.com#$#.special_conf_skin .wrap1 { background: none !important; } +so.com###mohe-gouwu > .g-shadow +||1.glook.cn^ +||xxsmad4.com^ +58.com#?#.zzinfo:-abp-has(.zhiding_icon) +||283.laobanfa.com^ +||wfpjeul.cn^ +@@||yunduanxin.xyz/static/js/banger.js +worldve.com###fdkDiv +aae3.com,qq.com###coo_qqBrowser +aiweibk.com##.lili +||res.cngoldres.com/web/index/img/*_ad_ +||z2x5c8.com^$image,domain=hihbt.com +||91friend.com^$third-party +728x90.jpg| +tgfcer.com##.ad_headerbanner +cctime.com##.nav_banner +@@||qbox.me/static/js/ads.js$domain=linux.cn +uwants.com###foruminfo + div[align="center"] +extmovie.com##.cd_listtop_pc +||hdjthzg.cn^ +commonhealth.com.tw##div[class*="ad--"] +jd.com##div[id^="miaozhen"] +~125.la,~52pojie.cn,~chysg.com,~hawkaoe.net,~yswc1.xyz##.a_mu +aipai.com##.banner_90 +||qunar.com/render/ga.jsp? +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.topic_list_box +||uqykeq.xyz^ +||dioimg.net^$domain=88files.net +tiantianzhibo.com##.apprecomm +||xinshijueba.com/js/home/ +||smxflvz.cn^ +@@||img*.kangaroobro.com/images/$image,domain=leyuman.com +||7xsf3h.com1.z0.glb.clouddn.com^ +infoq.com###psa-note +||gjkkdashb4.fun^ +ablesci.com##.fly-panel img[src*="-alipay-autumn-hongbao.png"] +mitbbs.ca,mitbbs.com##table[width="915"] > tbody > tr:first-child > td[width] +netfly.*,netfly.tv##.module-tg-box +sohu.com#?#.sidebar.right:has(> div.extend-mod:first-child) +enread.com##.box > ul[style="width:100%;overflow:hidden;"] +mpyit.com##.post-999999 +||4080kan.com/js/head +||qetskupch581.shop^ +gmw.cn###rightad1 + .contentColumnRight +||ewzavfde.xyz^ +||picb.cc/uploads/2018/06/26/2zxrsi.jpg +ltn.com.tw##.ad_w300 +||zsjpi.cn^ +://seai*/ads/float.js +||jczunp.xyz^ +jyacht.com##.adve_3 +eastday.com##div[class^="double"] +||xuakn.icu^ +||tmea116.oss-cn-beijing.aliyuncs.com^ +||wwzw.cc/img/ +subhd.com##.container > div > div[style="padding-top:120px"]:not([class]):not([id]) +||x08jd.top^ +||baidu.com^$subdocument,domain=dm5.com|dm5.hk +||ifeng.com^*&adids= +tvbs.com.tw###news_detail_div > div[align="center"] +||qzalsk.xyz^ +axios-js.com###lagou-vip +||houbliu.top^ +yiche.com##.focusbglink-s +||zuoyebang.cc/zyb_4953cbb8a9a2332469592196c056a906.jpg +||adhvz.cn^ +||zp0737.com^ +||iewruto.top^ +||ddllhqj.xyz^ +lvmama.com###leftDialog +||sowwoy.xyz^ +linux.cn##.linuxcnad +baidu.com##.afd-item +cn.bing.com##.b_bza_pole +||bdjiaoben.wmxa.cn^ +||itc.cn/?prod=rtb& +@@||qingcheng.com^*/ad +@@||bilibili.com^*/web_page_view?$domain=message.bilibili.com +msn.cn#%#//scriptlet('inject-css-in-shadow-dom', '#entry-point-hp-wc-header[style^="top:"] { top: 0 !important; }') +hk01.com##div[class^="Box-v"] > .enterviewport__wrapper:has(> div[data-id="lazyload-placeholder"]:only-child) +managertoday.com.tw##.pumkinBox +||image-shop.baidu.com/n/imageproduct? +||dushiyanqing.net/mobile/lib/ccppcc.js +makepolo.com##a[href*=".rong360.com"] +sina.cn###j_gotop ~ .fl_suspension_template +||meipian.me^*/api_ad/ +@@||ads.reddit.com^$domain=myqqjd.com +||kweriod.top^ +||redshu.com/js/www/jquerygg.js +m.sohu.com##.feed-list-scoped > div[data-spm-type="content"] +py.cn##.index-advert +||tehxzz.xyz^ +||hangzhouhdb.top^ +||rzflhxn.cn^ +boke112.com##a[href*="url.cn"] +||znhlxvb.xyz^ +hcomic.net##.main-container > .swiper +||itbear.com.cn/abc/list-and- +ruanyifeng.com#@#a > img[src*="wangbase.com/blogimg/asset/"] +168gamer.com,168gamer.net##.b_tad +@@||qiyipic.com/common/fix/pub_images/ +||z.grfyw.com^ +docs.cfw.lbyczf.com###推广 + div.list +||gold678.com/news/js/layer/layer.js +baofeng.com##.ad-bar-r +chinaz.com,ofweek.com,yawin.cn##.adtext +pianba.net###jiedoubanban +||17yy.com/style/ifra_ad/ +51nongyao.net##.sectionBanner +||autonet.com.tw/90/ +360che.com##.adver1000_60 +@@||cdn.rawgit.com/*/lazyload.js$domain=javmost.com +||ifeng.com/showcode? +||chinairn.com/images3/*ads +||jwatera.top^ +||myreadcloud.com^ +@@||bdimg.com/static/wkcore/widget/adControl/adControl_ +||house.sina.com.cn/2.0/abp/ +||cnpingpang.com/uploadfile/TTW.gif +||kbomku.xyz^ +axios-js.com##.vultr-desc +||bewr1.com^ +||jy135.com/js/pubuliu. +msn.cn#%#//scriptlet('hide-in-shadow-dom', '.recommended-sites-container') +||laixi.com/tp/20 +||adbottw.net^$third-party +@@||colamanga.com^$generichide +blog.51cto.com##.relatedArt.box +2345.com##.mod-txtred +||baidu.com/brands/yxtg/source/yxCoupletsAd.js +||delivery-pc.wasu.cn/d/frontJs/3.0$rewrite=abp-resource:blank-js,domain=wasu.cn +||ycq.cab^ +||py.cn/src/img/pyy/ +100bt.com##.aolasidebar__ad1 +@@||adsense.woso.cn^$~third-party +||bfjszxzfvf.com^ +xfastest.com##.vw-header-ads-wrapper +||dm.hxzdhn.com^ +liaoningmovie.net##[class^="c-ad"]:not(.c-ad-103) +||bbs.voc.com.cn/s.js +||baidu.com/img/iknow/wenku*85. +@@||doubleclick.net/gpt/pubads_impl$domain=www.gamer.com.tw +@@||papi-service.jd.com/ads/ +||ptbus.com/s.js +||tfg2.com/images/upfile/banner/ +||leagsmk.icu^ +||shbzigs.cn^ +||chrtds.xyz^ +||orssengseen.com^ +win0168.com##div.item +||1iuybpo.com^ +||zxpvalr.xyz^ +liaoningmovie.net##.ads-container +||dongchedi.com/motor/ad/ +||xlkdbbvy.xyz^ +||025yimei.com/templets/default/js/swt.js +||agrantsem.com^$third-party +||jiejueba.com/templets/16img/*.js +||ogyoopo.cn^ +||mnifdlax.top^ +3dmgame.com##a[href*=".chuangmengsy.xyz"] +@@||easylife.tw/js/adblockDetector.js +@@||hk.on.cc/js/v4/oncc-adbanner.js$domain=hk.on.cc +||flo.uri.sh/visualisation/14819166/embed?auto=$subdocument,domain=tw.news.yahoo.com +moegirl.org.cn##.moe-card[region="oversea"] +||qiyipic.com/common/*/255x205 +baidu.com##.yitiao-box +taobao.com###J_shopkeeper_bottom +mcc.xunliandata.com#@#.ad_wrap +businessweekly.com.tw##body .Google-special:not(#style_important) +csdn.net###kp_box_476 +||tuvixr.xyz^ +gucheng.com##.gcw_r_ad_pc2 +jsjiami.com##.asd > li > a.shaky +v.qq.com##.game-switch-ad +||a1.bestopview.com^ +docsmall.com#%#//scriptlet("set-constant", "_AdBlockInit", "noopFunc") +||xhymsq.com/data/attachment/portal/ +8727ck.cc,8726ck.cc,8724ck.cc##body > div[style] > a[href][target="_blank"] +pjtime.com###Couplet_r_big +||trf6b.top^ +imkan.tv##.bottom__card +yunpanziyuan.xyz##.card-site-info + .card +||sdjbcjsbdjk.com^ +mtrend.cn##.right_hongbao_xuanfu +rrys2019.com###globalNav1 +||jsgdvkjz.com^ +hk01.com###debug-0-ad-outer-container +17qingsong.com##.detail-gads +||chgpuxim.xyz^ +||ettoday.net/events/ad-tab/ +||tongbaimi.cn^$third-party +chinamedevice.cn,hgitv.com##.gg12 +||nbegame.com/nbeos/*.jpg +buzzorange.com##.adNoSex +||nouusup.icu^ +||lnalzll.top^ +||qgl27.xyz^ +mycq.qq.com##div[style^="width:960px;"] +@@||hboav.com/js/wlfloat.js +||pstatp.com^*/bannersdk/ +||gtimg.com/pingjs/ext2020/dc/module/GJ/ +||youxi.baidu.com/tips/bdtips_min.js +dapengjiaoyu.com##.upload-app +||lhmebwq.cn^ +szonline.net##.ad_1000_90 +it1352.com##.content-wrap > .hidden-sm:nth-child(-n+2) +||fpninv.xyz^ +||itavcn.com/pic/news/*x90 +||ak530.com/js/*.js +||wowad.wow-classic.com^ +||aqvi.cn^ +||52996.me/scripts/my_ +||xfrahb.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###thread_list > .j_thread_list:not([data-field]) +@@||yygsz.com^$generichide +||semhgk.xyz^ +||jxqdl.cn^ +||pingpang.info/themes/v1.0/images/temp/ad/ +||hujunhao.name^ +pconline.com.cn##.rela-best +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv##.v-ad +||11.96131.com.cn^ +||mzthbna.xyz^ +||adsclick.yx.js.cn^ +||bdcmwcl.icu^ +||gp.zaiyunli.cn^ +feebee.com.tw##div[id^="afsh_"] +||ato.tooopen.com^ +||fx678.com/htcount/count.js +91porna.com##.carousel-container:has(#carouselExampleInterval) +||dinggling.com/gmifr_lei. +eworldship.com###d2 +||iujlwn.icu^ +lzcfz2.com,lzcfz7.xyz##body > .cl.wp +||clcmdie.com^ +gsxt.gov.cn#@#.ads-right +||suibianlu.com/zb_users/theme/tx_fzy/script/zhao.js +||rtroytj33.fun^ +||lawtv.com.cn/skin/newplayer/ads_dianshi.php +ifeng.com##.ad1000-2 +pindao.hao123.com##.cmsad_wrapper +||ghjedashb6.fun^ +||chinabidding.cn/gys.ad/ +||jjwxc.net/jjad*.html$popup +e0838.com##.ad-txt + a +zhihu.com##.RelatedReadings-adItem +||azhibo.*/media/aimg/*.gif +yidianzixun.com##.layer-download +||sogoucdn.com/nstatic/js/showtime.js +||maxucc77.top^ +||hjnjjcw.xyz^ +||kuazhi.com/zb_users/plugin/allshow/js/main.js +||7scs.com/Public/img/list- +duodada.com##.row > div[class] > div.page-header ~ div[style^="width:100%;"] +baidu.com##.result-op[tpl="pc-soft-accurate"] > div > .c-row +||pic.959.cn/media/js/ +expreview.com##.mamaBox +baidu.com###index_right_float +eastmoney.com##iframe[src^="//same.eastmoney.com/"] +||elprput.xyz^ +honglingjin.co.uk##.rsads +||moonbbs.com/data/attachment/portal/ +||cfzhushou.com^*/King_Chance_Layer.js +||nfmovies.com/pic/tu/a191124003. +aiweibk.com##.pc +||xiaoma.com/xiaoma/www/js/article_right +gywb.cn##.bill-vertical +||5278.mobi/aa/ +chongbuluo.com##.postright +||9527yy.com/js/data2.js +||wcsmvmf.icu^ +||xvpqrydt.xyz^ +19lou.com,ihome99.com##.ad-300x30 +||adimg.liba.com^ +||zhimg.com^*adx +||dat1.jzjxmj.com^$third-party +||udkpcc.xyz^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > [class] > [id*="00"] > div +|http*://$script,third-party,xmlhttprequest,domain=23wxx.com|cyxse.com|lwxiaoshuo.com|m.1200ksw.com|m.16kxsw.com|m.23sw.net|m.2kxs.com|m.360118.com|m.37zw.net|m.50zw.co|m.50zw.la|m.50zww.com|m.52biquge.com|m.58xs.tw|m.5ccc.net|m.630book.la|m.67shu.com|m.69shu.org|m.80txt.com|m.83zw.com|m.88106.com|m.88dus.com|m.98xiaoshuo.com|m.aiquxs.com|m.aszw.org|m.b5200.net|m.baishulou8.com|m.baoliny.com|m.beijingaishu.net|m.bichi.me|m.biqudu.com|m.biquge.com.tw|m.biquge.info|m.biqugego.com|m.biqugexsw.com|m.biqumo.com|m.biquwu.cc|m.boluoxs.com|m.book9.net|m.booktxt.net|m.bqg5.cc|m.bqg5200.com|m.daizhuzai.com|m.dashubao.cc|m.ddxsw.net|m.dhzw.org|m.diyibanzhu.xyz|m.dpcq1.net|m.duanwenxue.com|m.fhxiaoshuo.com|m.gsdaquan.com|m.gulizw.com|m.gxwztv.com|m.haotxt.com|m.heiyanwang.com|m.hkslg.net|m.jjxsw.org|m.konlan.org|m.kxs7.com|m.lanseshuba.com|m.lbxs.com|m.lewenxiaoshuo.com|m.liewen.cc|m.liushuba.com|m.lkshu.com|m.longtanxs.com|m.luoqiu.com|m.lwtxt.net|m.miaobige.com|m.miaoshufang.com|m.mishug.com|m.panqis.cn|m.qianrenge.cc|m.qu.la|m.ranwena.com|m.sanjiangge.com|m.shuanshu.com|m.shuketxt.net|m.shumil.com|m.shuqu8.com|m.shuquge.com|m.shushu8.com|m.silukeke.com|m.sjtxt.la|m.sosoxiaoshuo.cc|m.sqsxs.com|m.suimeng.la|m.tingshuge.com|m.tsxsw.com|m.ttzw.com|m.txt2017.com|m.txtduo.com|m.tywxw.la|m.vodtw.com|m.wanjuanba.com|m.wantxt.com|m.wenxue6.com|m.wenxuem.com|m.wenxuemi.com|m.wodeshucheng.com|m.x81zw.com|m.xiaoxiaoshuwu.net|m.xiashu.la|m.xinshula.com|m.xs.la|m.xs222.tw|m.xy48.net|m.yawenb.com|m.ybdu.com|m.yssm.org|m.yunlaige.com|m.yuyouge.com|m.zhenben.cc|m.zhuaji.org|m.zhuishubang.com|qihaoqihao.com|wap.xxbiquge.com|wap.yb3.cc|xntk.net|yfxiaoshuoa.com|zwdu.com +_rony.js$script,third-party +||minixiazai.com/statics/js/soft/index.js +zhujiwiki.com##.sidebar > .widget:first-child +pjtime.com###Couplet_l_big +||5mltq.icu^ +||91p20.space/fans/ +baidu.com##div[data-ad] +nfmovies.com#?#div[id]:-abp-has(>img[onclick="openurl()"]) +||erebor.douban.com^ +typecho.wiki##.net +newxue.com##.bd500 +so.com###mohe-medicine_sy > .cont +||p2peye.com/ajax.php?mod=advertisement& +0597kk.com###kk_oTransContainer2 +||100bt.com/dc?Url +kpzpw.com##.littlebanner +wss://*.xyz:*?x=$third-party +jable.tv###jimds-slider +91wii.com#%#window.ad = window.ads = window.dzad = window.dzads = true; +ws://*/api/wss/GetNotReadCount$third-party +||n2.hk/promo/ +||vcdfsf99.fun^ +||m1.jintang114.org^ +||lwdcnz.xyz^ +qingdaonews.com##.zhqd +@@||kehai.com/front/dist/app/site/list/advertisement.js +||wnacg.*/w8z/ +||airav.cc/Ucenter/*_Ad +||pg-ad-b1.nosdn.127.net^ +||bltmjevd.xyz^ +||cldxphtg.xyz^ +@@||cmoney.tw/finance/js/googleanalytics.js +msn.cn##.rc > a[href^="https://sp.booking.com/"] +||zol.com.cn/active/*tmall +||crxs.me/plugins/jquery.modal/ +jx3pve.com##.m-banner-tool +||optimix.cn^$third-party +tvbs.com.tw##.smart_banner +||iiikefu.com/wp-content/plugins/halfdata-green-popups/js/lepopup.js +||zhujiwiki.com/ad/ +iciba.com##.recommend-item:not([href*=".iciba."]) +||log.music.baidu.com^ +||kdqlbm.cn^ +||4567.org^$third-party +||hhffnu135.shop^ +||alimama.alicdn.com^ +||jdickea.top^ +||cfugrnc.icu^ +hao.360.cn###iguess +||dytt399.com/966.jpg +lanzous.com##.appad +tobosu.com###alert_order +||pixfuture.net^$third-party +rkanr.com##.bill +||shulihua.net/js/yegonggao.js +51nongyao.net##a[onclick^="javascript:trackEvent('AD-Banner'"] +||pseudonym.cn^ +qiuquan.cc##.sidebar .aligncenter +||zekzoh.icu^ +fmprc.gov.cn,mfa.gov.cn#@#.adbox2 +||kkkaii.cn^ +||sogou.com/amdjs/release/common/act_all_ad. +ifeng.com##.v_adbox +@@||thisav.com^$generichide +||zzbaike.com/sites/all/themes/zzbaike/images/ +||73336zubo25326.com^ +recruit.com.hk###bottomBar +||lofter.com/mailEntryMobile.do +||pdngnx.xyz^ +qqjia.com##.mainad +ifeng.com##.pic300 +cnbeta.com##div[style^="display:block !important;"] +||divcss5.com*/liping/ +159i.com##.a3d +jiegeng.com##.header__item--fr +||openinstall.io^$third-party +||adm.52swine.com^ +||hkjzkrqz.icu^ +pconline.com.cn###JBestRecomm +||lryqef.xyz^ +naozhong.net.cn###pnl-ne0n +finance.sina.com.cn##.side-btns-jifengame2021 +qidian.com###banner1 +||yy18.info/yyads/ +||fsgiosi.com^ +longzhu.com##.chatroom-ap +tt1069.com#@##adbrite +||1.07swz.com^ +||flighty.cn/images/ +efu.com.cn##.zs_banner_a +||img.lancdn.com/*-top-banner- +||bieuc.icu^ +17ce.com##section[id*="top_banner"] +||msn.ynet.com/c/tj_comm.js +||xinchl.xyz^ +||subhd.com/images/ap/ +yigujin.cn###cebianlan img[src*="/tp/"] +colamanga.com#$#div[class^="layui-layer-"]:not(#color) { display: none !important; } +||rawmtft.cn^ +||ainunu.*/vad.js +||ariqye.xyz^ +ft.com,ftchinese.com##.bn-ph +www.zol.com.cn#@##search_ad +||youmelive.com/timg/ +||bmnbyn.icu^ +gp123.cc##table[height="66"] +duba.com,uu114.cn##.adfixed +||jy135.com^$third-party +gg163.net###container > table[width="960"] +||thruudrad.com^ +epinv.com##.epinv_f +||g.rexian.net.cn/js/ +||ijvla.cn^ +oschina.net##div[data-tracepid="question_detai_above"] +||birglucy.xyz^ +52tian.net##.sidebar960 +uisdc.com##.archive-pm-top +3d66.com###botfocus-soft +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###fixed_daoliu +event.biotherm.com.tw#@##ad1 +||m6690.top^ +imnks.com##.adTags +qiyeku.com###gg2_box +gkstk.com,ufanw.com##.layui-layer +douyu.com,oschina.net#@#.follow-btn +copymanga.org##.comicDetailAds +||aa.xiangxiangmf.com^ +huya.com##.J_ad +||fufrnl.xyz^ +52av.one##.message + center +111os.com###midBox +chinaz.com###centerTxt +dogedoge.com##.tag-home__item +||2018x.*/guang/ +gamersky.com##header[class^="ymw-header20"] +||ad123.ynet.com^ +||youy14.com/js/zz/xf.js +wn789.com##a[href^="http"]:not([href*="://www.wn789."]) > img +chinafix.com##div[id^="diy_vk_ad_"] +||96696612.top^ +cpnn.com.cn###myimg +||eheuye.xyz^ +damon624.pixnet.net##aside[data-advertisement="true"] +||98765.pw^ +||wftyehw.cn^ +applnn.cc#%#//scriptlet('prevent-eval-if', 'encodeURIComponent') +@@||ksapisrv.com/rest/wd/common/log/collect/ +||taozi888.com/sys +~cbachina.sports.sohu.com,sohu.com##sohuadcode +||guahao.cn/blank.gif? +||0722fc.com/index/tools/js.php +||shuocyw.cn^ +||sl.al/gdrive/pic/*.gif +||dkasffredf.xyz^ +||bd1.pipaw.com^ +||sinaimg.cn^$domain=04stream.tv|11luba.com|18board.com|18p2p.com|46bk.com|500xxxx.com|522dy.com|63ef.com|7mav2.com|7mshipin.org|94xxmm.com|99a21.com|abminbuy.com|acglover.me|aotu101.com|aotu103.com|blz105.com|blz20.com|blz24.com|caibaojian.com|cangjige.net|ccxx99.com|cnmysoft.com|ems183.cn|fdzone.org|kccdk.com|kiees.cn|kisssub.org|lifan.moe|llj22.com|pianyuan.org|rarbt.cc|sbme.me|se533.com|supfree.net|thztv.cc|tiantianzhibo.com|viidii.info|vx666.com|yaoshe1.com +@@||120.132.57.41/pjk/pag/ +99tianji.com##.kf1 +||dogfight360.com/Usbeam/yuelun_ad/ +||bjappzvz.xyz^ +||wubizigeng.com^ +||vdggsd014.com^ +||yzpsb.net/js/shang.js +||en8848.com.cn/js/content. +jmw.com.cn##.coupon +tropica.cn##.wp1.a_t +||sooopu.com/asphtml/plnew. +||upailek.cn^ +6fzd.com,fzd3.com###comiis_app_block_74 +dlkoo.com##ins[id^="tanxssp-outer-conmm_"] +||ligfdjnfd.cn^ +||dabin69.com/data/attachment/portal/ +cqmmgo.com##.ad-cycle +||itakrid.icu^ +||feizl.com/images/smdd/ +||p0y.cn^$image,domain=~ipinyou.com.cn +aishoujizy.com###ShouYe_ShangBu > .HtmlMoKua:first-child +||seowhy.com/ask/img/*gg +||daf-rs.com/imageViewer/wpAd +||py.cn/static/images/advert/ +||jxcn.cn/assets/images/downWeatherApp.png +2345.com###J_bgSug1st +bccn.net##img[src*="data:"] +wezhicms.com#?#.card-main:-abp-has(.waimai-item-img) +||sinolub.com/index.php?m=poster& +@@||carexpert.com.tw/wp-content/plugins/like-box-pro/includes/javascript/front_end_js.js +||tlpyft.xyz^ +morningpost.com.cn###\33 60hot +||mrtxtrq.xyz^ +||shaoxing.com.cn^*gg. +||xvideo.cc/im4.js +||mydyxs.com/mpc/ +||211600.com/data/attachment/portal/ +||941novel.com/wp-content/uploads/*.gif +ifeng.com##.ljPop +||1024down.com/images/*.gif +woshipm.com##.article-bottomAd +3dmgame.com##a[href^="https://down.hyds360.com/"] > div[style] +@@/adpic/*$domain=baike.baidu.com|czsrc.com|nieyou.com|ontheup.com.tw|zform.net +jianshu.com##.top +||eyyngo.xyz^ +||9ez.me/embd.php?type= +baidu.com##.ts-qrcode +mooc1.chaoxing.com#@#iframe[width="100%"][height="120"] +||nkbkor.icu^ +duba.com###ad-detail-banner +@@||yummy.best^$generichide +||tlfvj.cyou^ +@@||sinaimg.cn^*/deco/*/sinaObj.js +||bitauto.com/js/sense*.js +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="330"] +cjn.cn##.sidebar +chinanews.com##.add4 +||n55cpw.vip^ +||a1.lshou.com^ +wiki.mbalib.com##.ad-br +@@/setCookie?$domain=ctrip.com|ctrip.com.hk|pinyin.cn +_ad1.$~stylesheet +sina.com.cn##.zhongce +||ozdq.cn^ +qq.com##.seeking-gg +||51ztzj.com/res/web/img/pic/inshow.jpg +||gaoqing888.com/img/icmarkets. +@@||ruten.com.tw/ahd/fetch_ad.php +||qixingquan.com/qxq-images/js/qxq_t.js +ksbbs.com,kshot.com###banner_top +||da.duowan.com/loc/ +hpjav.tv##body > div[style^="position: fixed;"] +||edvxgqx.com^ +image.baidu.com##.sample1 +||iyuedu.cn.com^ +||wbubgob.cn^ +||bejson.com/static/ydxyt/ +||qhimg.com/js/iwt.js +whcykj.cn###InviteContainerl +zhcw.com##.yzjggw +||114lm.com^$third-party +||kqjqripb.xyz^ +dogfight360.com#%#//scriptlet("abort-current-inline-script", "document.write", "document.write(ad);") +cnfol.com##.NewAdBox +baidu.com##.rmb-carsousel-position-bottom +||xiaodutv.com/xda? +itdog.cn##.card[style="padding: 6px 10px 5px 5px;"] +||bi25.cc/js/hf +||it8vh.site^ +||ax1x.com^$domain=caibaojian.com|hktvyb.com|zzvips.com +||daweijita.com/201*430. +||soaspx.com/images/js/dropdown.js +||qacdf511.cn^ +||zdcj.net^*/ad +bitauto.com##div > ins[data-type="ad_play"] +miliav.com##.b300 +@@||s.yimg.com/ja/ap/*/jquery.$domain=hk.news.yahoo.com|hk.yahoo.com|tw.news.yahoo.com|tw.stock.yahoo.com|tw.yahoo.com +||ntimg.cn/original/images/www_ads.jpg +51live.com###adquality +||sgru.cn^ +||qbox.me/FlnVIdUeIo_LrXyGiOL0OFw0Gpa7 +||kokojia.com^$third-party +||singlove.com/qq/qq.js +||fqfclmlo.xyz^ +||06789.xyz^ +21uscity.com##.R300x70 +||a1.twtym.com^ +baixing.com###port-info +||gtimg.com/sports/images/30090.jpg +||tui555.com/public/gong/js/a_ +dragon-guide.net##.container > .gutter:first-child +||tianshui.com.cn/datugg/ +||tianji520.cn^$third-party +maxthon.cn###festival-rain-wrapper +||weathercn.com/m_mobile/ad_image/ +||32ycta.xyz^ +taobao.com##.banner.row +||vbutycp.cn^ +||dufile.com/jsa/ +||itwzlyq.com^ +appchina.com###yyh-bottom +3dmgame.com##.listlab > .img[href*="/yx."] +eastday.com##.right_adv_1 +sogou.com###PZR +||ifeng.com/uploadfiles/main_blog/main_child/v3_block +||cosmo202.top^ +||a2.b310.com^ +jstv.com##.TuiGuang +||img.zuowenwang.net^ +21cn.com##div[class^="topAds"] +||yxgfcj.com^$third-party +||okagcw.xyz^ +2chcn.com##img[width="300"] +||cnblogs.com/blog/36987/201509/36987-20150913115252950-1736386654.jpg +||rvvji.online^ +||h1.kukuw.com^ +||xinju.cc^ +||okkkk.com^ +virscan.org##div[class^="ad_"] +||jingujie.com/public/jgj_ +@@||tsyndicate.com/sdk/v1/n.js$domain=hpjav.tv +||xgrcfz.xyz^ +bookrb.com##a[href="/rmtj.html"] +hotjob.cn#@#.SOCIAL +||kyislod.top^ +||kankantv.cc/330-50.gif +jirou.com###guanggao +eeyy.com##.gg_top +||0yzabcd.com^ +pixnet.net##.article-content-inner > div[style^="color: #141823;"][style*="font-size: 13px;"] +||cxlvlbx.xyz^ +||doujs01.xyz^ +||xylhwdu.com^ +||lm.ijq.tv^ +||fx110.*/Pub/Ghz/GetModel +caibaojian.com##a[onclick*="aliyun"] +||bxmazls.icu^ +||5598tp.com^$domain=9xav.cc +hupu.com##div[class*="ad980-60"] +||d15cjcet1djbmv.cloudfront.net^ +teddysun.com##.sidebar > .widget:nth-child(2) +||wwwcdn.kimiss.net/btn/ +||imooc.com/open/courselistrandjs +173.192.147.21,sejie.com,sejie3.us,thesoccerline.com###wp > center > a +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ec_bdtg +||news.qcyz.cn^ +51zhishang.com##.zhezhao +||imgur.com^$domain=172.86.179.138|208.94.244.100|208.94.244.98|a88.us|ac168.info|ac88.info|aisex.com|cnnice.biz|go543.com +||unalzlt.top^ +||*/ad/$rewrite=abp-resource:blank-mp3,domain=huaren.tv +alibabacloud.com###carousel-whois +||res.vps234.com/resources/images/hosting-promotion/ +dayanzai.me##.at1 +ggcj.com##.dbxf +||dabai28.com/img/*.gif +16sucai.com##.pindao_ad2 +cq.qq.com##div[style*="1000"][style*="60"] +||vip.ludu319.com^$third-party +maxthon.cn###side-game-pop +||bkbbjtfp.xyz^ +jpwind.com###asideNav +gfsoso.99lb.net##center > #logo-gf ~ h7[style="color: red;"] +||durynslg.xyz^ +gfan.com##.art-ad +85lou.com###topwarning_7ree +||a.rensheng5.com^ +hualongxiang.com##.wheelplayer +ucptt.com##.hidden-sm +||ghghgf.xuexiwa.com^ +liba.com##.bottom-pic +ppsport.com##.slide-img[href^="http"] +||ccement.com/index/index/fetchAd +||tianshui.com.cn/Scripts/AC_ +uc123.com##.s-right +fun48.com###float2016 +||m1170.top^ +||9y01.xyz/app/index.html +firefoxchina.cn##.main-promote-tmall +||juljrd.xyz^ +vk922.com##a[href^="/ad/"] +||qewruty.top^ +||ykcsldm.icu^ +||wecfgy36.shop^ +||hknoq.cn^ +bestopview.com##.Adv_c +||ybcnvqf.cn^ +||zhihu.com/commercial_api/banners_ +@@||aixifan.com/dotnet/20130418/script/fingerprint. +juxiangzuan.com,senao.com.tw#@#.ad-img +||pianyuan.org/zfb. +@@||youneed.win^$generichide +cps.com.cn##.couplet-le +2345.com##div[class*="act-open"] > :not(.close):not([class*="mask"]) +||ywg.jobui.com^ +qq.com##.public-banner +@@||pos.baidu.com^$subdocument,domain=bigpixel.cn +||storyren.top/imgg/ +||mo.gushiji.cc^ +||eprice.com.tw/img/tw_m/ad/ +||fmhua.com/template/*/images/g_js/*.html +||2jse6.icu^ +||nxxkxr.xyz^ +423down.com##.entry > p[align="center"]:first-child +||62zd0.icu^ +hao123.com##.cmsad_wrapper +teddysun.com##.sidebar > .widget:nth-child(3) +||hauqks.top^ +||delivery.wasu.cn^ +yazhouse8.com##.banners +||juapp5.com/geek_image/chaopai.jpeg +||mipengine.baidu.com/common? +ifeng.com##div[class^="adv0"] +||nyfgpbsc.xyz^ +zhcw.com##.tgtc +findprice.com.tw###divBestBuy +||zoossoft.cn^$third-party +||lkdyft.xyz^ +||house365.com/im_show/imshow.js +@@||myqqjd.com^$generichide +515fa.com##.gg_ad02 +smjb.net##div[style*="height: 50%"] +||bd1.qcjslm.com^ +||iviewui.com/v1/*?name= +123pan.com##.banner-container-pc +aiyuke.com###js-ad-type4 +douyu.com###js-room-activity +||bydebd.xyz^ +||farm-cn.plista.com^ +||dagou2018.com/js/item +apachecn.org##.md-banner +||oxmvcg.xyz^ +@@-social-bar.$domain=mobi.yahoo.com +duote.com,soft-down.net##.fast-down-btn +@@||video.520cc.cc^$generichide +udn.com##.bg-banner--link +://*btbtt.*/imgs.js +azofreeware.com,pttjoke.com###HTML3 +embedrise.com#%#//scriptlet('prevent-window-open') +abmedia.io##a[href^="https://ace.io/"] +||cdndm.com/3/2015/$domain=1kkk.com|dm5.com +blog.51cto.com##li.creative > a.task +||szptp.cn^ +||touimg.com/u/20200510/2142*.gif +||a.zuowenxuan.cn^ +@@||mmy.la^*300*250 +||baidu.com/newspage/api/getrelatednews? +||ajijcy.xyz^ +||kkosiso.com^ +||zpvuugw.cn^ +awaker.cn###jiji + div[style="padding: 20px"] +||bytravel.cn/js/s_ +||ccav1.me/block.js +||ukgfniu.cn^ +||impservice*.youdao.com^ +douyu.com#?#.wm-general:-abp-has(.link[href*=".tmall.com"]) +||98.126.219.*/ads/ +t.cj.sina.com.cn##.yyy-wrap-2021 +||d.6xw.com^ +xvna.com##.rctad +||n0566.com^ +kkj.cn##body > div[style^="width:"][style*="height:"][style*="background-color:"] > a[rel="nofollow"] > img +||kaiyuantp.vip^ +||acode.b2b.cn/JS/ +||iask.sina.com.cn/s-b/mxbg +91.com,hao123.com,site.baidu.com###midline +||nxflv.com/nxflv.js +gtloli.one###topbanner +||dm*.yxlady.com^ +zhihu.com##.LinkCard-ecommerceLoadingCard +||wl.uqwjdhgv.top^ +||adadmin.house365.com^ +yiche.com##.focusad-box-s +07073.com###tanchuang +||cn.bidushe.com^ +||6gute.icu^ +||8684.cn/id/ad_ +@@||stcaimcu.com/data/attachment/common/cf/stc_logo_ +||coublif.top^ +||2cq.com/third/tieba/sidebar +||ifengimg.com^*/rdn_*.js? +jianshu.com###note-fixed-ad-container +||china.com/v_test +||5r562.cn^ +uc123.com###J_shoppingPush +||qqtn.com/js/downinfo- +pqworld.com##.left-float +sina.cn###midThreeAds +eprice.com.tw##.ad-336x280-g +||huo720.com/files/vidhub. +mbd.baidu.com##div[class^="_"][style="visibility: visible;"] +zuoye.baidu.com##dl[class="card related"] +airav.cc###jssor_banner +||twlcyc.cn^ +||wwjtdjj.cn^ +||o.027eat.com^ +||sesefu8.com/index.php?m=poster& +1905.com##.zx-pic +||kwqnki.xyz^ +||99meiju.tv/template/zhuan/neirongye_foot.js +||hmoe12.com/wp-content/uploads/202*.gif +||baidu.com/staticapi/misadlist. +weibo.com#?#.card-wrap:-abp-has(>.card-top>.s-fr:-abp-contains(广告)) +||xchina.co/scripts/push_*.js +5888.tv###code_img +@@||trip.cmbchina.com^$generichide +||cr173.com/js/ +yesky.com##.abox +sciencenet.cn##.rbanner +||ztyumn.ifeng.com^ +acgcku.com##a[href]:not([href*="acgcku."]) > img[src*="acgcku.com/wp-content/"] +pixiv.net##.ad-footer + .hover-item +banma.com##div[id^="disapper"] +||atzhcjv.xyz^ +||liaoxuefeng.com/files/attachments/00144*/0 +||tutudao.net/js/gg*.js +||fmzifaqi.xyz^ +ithome.com##div[style^="width:960px;height:60px;"] +douyu.com##.f-sign-cont +mywpku.com##.sidebar-recommended +18moe.org##.alignnone[alt="恰饭广告"] +||kgqcse.xyz^ +||100669.com^$third-party +@@||baidu-taobao-av.com/js/home.js +hao.360.com###top-nav +||kefeng56.com^$third-party +||xue.zbyw.cn^ +||ff.meikanguo.com^ +||abminbuy.com/*.mp4$media,redirect=noopmp4-1s +@@||cdn.jsdelivr.net^$script,domain=yemancomic.com +||baidu-jxf.co^$popup +price.com.hk###ad0 +toy-people.com##.rightAd_300250 +techbang.com##.techbang_i_m_970x250_1 +rising.cn##.activity-ad +boke112.com###sidebar img +cilimao.co,cilimao.one##div[class^="FixBanner"] +samsung.com#?#.template-item:-abp-has(> .wrap-sub-title > div > .ad) +nick18.com###img a +weather.com.cn##A[style="position:fixed;top:220px;left:50%;margin-left: -625px"] +||loveameng.top^ +||hjdha.cn^ +chongbuluo.com###dzrid > .frame:nth-child(n+2) +||7vviw.cyou^ +||img588.net/images/*.gif +||olpv.onlylady.com^ +moxing.net##a[marked][href*=".taobao.com"] +||sina.com.cn^*/energypop. +yb983.com##div[id^="pop"] +||dsa22.com^ +dianyingim.com#%#//scriptlet("set-constant", "dy_card_dyrun", "undefined") +||tu1500919341.cc^ +||peise.net/Skin/js/global. +niutuku.com##.listAD +||facebook.com/*/instream/vast.xml?*&pageurl=http*.4gtv.tv$script,xmlhttprequest,other,redirect=noopvast-2.0 +||sax*.sina. +v.qq.com###iwan-gamependant-page +||56rmm.com:8888/js +69xx03608.xyz##.jsv-layer +900.la##.font-ad +@@||520cc.cc/ad/ad_1.php +||xn--wgvp78a61swpe6zdozj.cn^ +||d2un76zvb5mgzx.cloudfront.net^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,domain=yodu.org +17wtv.com##.ad3 +xbgame.net#$#.download .content-area > div[class] { background-image: none !important; } +||ad.fx168api.com^ +focus.cn##.module-common-float-im +||pdnwbwyf.icu^ +||tt123.eastday.com^ +||tiantianzhibo.com/js/banner.js +||fulibl.com/wp-content/uploads/2016/06/320-230.jpg +||qq.com/PL_adT.htm +||ebgwdon.cn^ +||newume.com/v1/data/ume- +@@||cbjs.baidu.com/js/m.js$domain=fxpan.com|iyingdi.com|pic.tiexue.net +fx678.com##div[id^="dl_"] +docin.com##.cpro_mod +moneyweekly.com.tw##div[id*="_ScupioHomeAD"] +||shfq.com/data/attachment/portal/ +ithome.com##.con-recom +||llblwzg.xyz^ +||2u3v4w5x6y.com^ +jd.com,~wan.jd.com##a[href*="wan.jd.com/"] +so.com###mohe-right_windows_ads +udn.com###ads-billboard +||kzprugp.xyz^ +||xcf-bd-js.chuimg.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pc2client +||xlplrhum.xyz^ +yahoo.com##li[id^="ad-"][class^="Pos"] +||115img.com/static/pc/d_ +caoporn.com###feadback-content +||xbtw.com^ +pixnet.net##a[onmouseover^="MM_openBrWindow"] +3dmgame.com##.Gmaeinfobtn_tab > [class][onclick] +bjhockey.org###homeVideoModal +||moedao.com/js/top.js +guancha.cn###goapp +||pmiskc.cn^ +antpedia.com,chinamedevice.cn,lcxw.cn,msdn.hk##.gg1 +||3158.cn/static/js/fixbtm/ +1kkk.com##.lanrenzhijia +||erluankuan.com^ +||77ds.vip/js/shichuang.js +@@||ulifestyle.com.hk/store/prod/iskypost/res/js/dfp- +sina.com.cn###pip_taobao +hexieshe.com,hexieshe.xyz,xxshe.info##.entry-header + p + p[style="text-align: center;"] +qq.com###qqmail_AD_container +||ioublio.top^ +anjian.com,qq.com###advertisement +dayanzai.me##.down_show_intro_first_box +||microcontrol.cn/HomeImages/AD/ +qq.com##.J_hot_game +news.pchome.com.tw##div[style="width:300px;height:250px"] +||noafoaji.xyz^ +||mahoupao.com/api.php?mod=ad& +zt5.com##.gg_1 +pexels.com##a[href*=".istockphoto.com"] +dyxs23.com,dyxs20.com,dyxs15.com,dyxs14.com,dyxs13.com,dyxs12.com,dyxs11.com##.popupicon +||gg.uuu9.com^ +||mdqikg.xyz^ +||tgamtip.icu^ +sina.cn##.zhidi +911cha.com##.sideqr_left +||pconline.com.cn/global/footer/index.html +||ja*.gamersky.com^ +||zjjhfc.com/js/zt.js +pxedt.net##.pf_dw +||5imx.com/image/image/ +||a.dyjqd.com^ +jjwxc.net##table[style^="width:984px;"] +kaopu001.com###pokemon +||8861202.com^ +caixin.com##.course_box +playno1.com##.mn > div[style="margin-bottom:10px;"] +||cdmgac.xyz^ +aguitar.cn,guitarchina.com##.headerbanner +||bhhzlax.xyz^ +wandhi.com#%#//scriptlet('prevent-fetch', '/googlesyndication\.com|doubleclick\.net/') +||uxzvjoj.cn^ +||33img.com^$domain=18board.com|18p2p.com +||setn.com/js/idleAD. +||static*.365inews.com^ +@@||kissjav.com^$generichide +v.qq.com##.player-side-ads +||xhnvgdkw.xyz^ +||51ui.cn/999.png +||hciwyv.icu^ +||ajbpcxi.xyz^ +se533.com##div[style="width:960px;margin:0 auto;text-align:center;"] +@@||beyondsoft.com/dataservice/img/ad_ +soft.macx.cn#@##googlead +muzhi.baidu.com##.quick-ask-2 + .android + div +cger.com,pcsoft.com.cn#@#.share_box +duelmeta.com##.single-bottom-html +discuss.com.hk##div[style="width:728px;height:90px;"] +||huanqiu.com/resource/js/base +||6vhao.tv/d/ +netbardh.com###bg_right +mydrivers.com##.ab +@@||i2.bahamut.com.tw/JS/ad/animeVideo2.js^$domain=ani.gamer.com.tw +||wanwan.sina.com.cn/third_party/ +qiuw.com##.con > a:nth-child(n+2) +||ad.u-car.com.tw^ +||starnnews.com/banner/ +||img.win0168.com/image/*.gif +69story.com###main > div[style="margin-top: 15px;"] +||adzdgr-wadd2-f1d.com^ +||fanquanwang.com/uploads/ad/ +steamcn.com##div > a[href*=".taobao.com"] +pc6.com###param + a +||qq.com/games/videogame.htm +hao.360.cn,hao.360.com###top_activity +||sjkdbvjksbv.com^ +||sinaimg.cn^*_wap_ad_ +||zjst.net/3.gif +||xnnews.com.cn/tpl/material/ +1905.com,news.ltn.com.tw,commonhealth.com.tw,health.tvbs.com.tw,idreamx.com,xchina.co,99kubo.tv,manhuafen.com,world68.com##.ad +||kkkjpg-522.cc^$third-party +||nahgvfhs.xyz^ +||iads.xinmin.cn^ +hehagame.com##.webad_bottom +||bdawrsi.icu^ +||shuowan.com/Public/shuo/20160119/569dafddd13be.jpg +||stat.ea3w.com^ +||ggwan.com^$third-party,domain=~linghit.com +||d.8181zx.com^ +2345.com##.mainbg +||macx.cn/js/blockadblock.js +||emizkno.cn^ +||meituan.com/xiuxianyule/api/getRecommendList? +||hvuqkb.cn^ +||ads-6686.top^ +cheshi.com##.ad_980105 +wx.sina.com.cn###artibody > .article-video +||jcbjcb9.cn^ +chaidu.com,kdslife.com###hb +china.com##.mm +buzzorange.com#$#.sidebar > section#text-8[style*="bottom: 240px;"] { position: static !important; } +||rcyzsh.icu^ +||dmm.aizhan.com^ +||bycxhgrp.xyz^ +sina.cn##.js-voice-yyy +wnacg.com#@#.Flagrow-Ads-under-header +||sbmhqe.xyz^ +||ezacci.xyz^ +720yun.com##DIV[class^="Ads_ads_"] +||ymcnsq.xyz^ +52bdys.com##div[style^="position: fixed;bottom:"] +||acemof.top^ +||pv966.us/js/tw.js +||jsxwfb.xyz^ +||cdyee.com/external/5070.files/ad/ +||wai69.com/js/baidu/ +baidu.com##.guidetowkOperationwg-root +||234fang.com/index.php?/ajax/get_adv/ +||v.pcswtw.cn^$third-party +||a.777n.com^ +||splfnok.cn^ +yahoo.com###ACT_takeover2 +dict.cn##.search-right-ad5 +||idickeo.top^ +o8tv.com##a[href^="https://c.madeqr.com/"][target="_blank"] > img +@@||addon.dismall.com/resource/*/ad +so.com###js-mod-fixed-float +||mhglue.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_banner_post +||fopksr.icu^ +||clmkwi.xyz^ +||vqbzpv.xyz^ +||jrpolj.xyz^ +@@||msecnd.net/scripts/jsll-$domain=microsoft.com +||kykqss.xyz^ +||kgidskid.top^ +||2016.bkill.net^ +||bnrk7esglquispx2lsluttlm.xyz^ +||kfycmiu.icu^ +||bing007.shop^ +||imeee.cn/DA_HTML/*.js +||eastmoney.com/trade/hqb_hq.html +||cloudfront-666.kxcdn.com/v4.js +baidu.com###header > div:last-child > div > a:first-child +||gw2cddpt2hao.asia^ +||img16.diyifanwen.com^ +vuetifyjs.com##.v-sponsors +qidian.com##.right-op-wrap +fastadmin.net##.hot-article + .panel-default +||tianshui.com.cn/gg/ +||grthhr.xyz^ +expreview.com##.crossAd +me360.com##.footer-booking-open +||flash.mycar168.com/data/js/ +huarenjie.com###cftoutiao +polyapt.com#@#.ad-one +ifeng.com###funBar +||p1corn.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###op_wiseapp +@@||jd.com/adclick?$popup,~third-party +||oss-ap-southeast-1.aliyuncs.com/js/copy.js +iqiyi.com##a[id^="100000"] +xiashanet.com###top_content +hb.qq.com##div[style=" width:300px; height:250px; overflow:hidden"] +||qyerstatic.com/common/models/common/component/footerBanner/ +muchong.com##.a_subject[href^="creditshow."] +chinacsbs.com##a[href^="/plus/view.php?aid="] +mafengwo.cn###ad1 +||raolmsc.com^ +||tqjqripb.xyz^ +||vfvad.top^ +baidu.com##.pageLeftFixedAD +||fpb1.jsq886.com^ +fx678.com##.aside-store +douyu.com##.imageItem-wrap[style="width: 287px; height: 559px;"] +huya.com###J_adBnM +||91bixin.net/api/chdd/liveAdv? +||007ds.com/js/js/ +||xfztgxt.com^ +||bendibao.com/weixin_ +nick18.com##.bbs_entry_wrapper > table[width="100%"] +||uc129.com/m/ +gamefy.cn,sitv.com.cn##.att-bar +hupu.com##div[class*="ad200-200"] +jd.com#@#.ads-item +||gicjtss.cn^ +||40wan.com/js/www2/ +||jglgjz.xyz^ +bitauto.com#@#a[href^="http://ad.doubleclick.net/"] +||jsdelivr.net/gh/*/960-100. +hoteastday.com##.watermarh_ul +||2s8s.com^ +||wasabii.com.tw/float/*.js +||aspku.com/images/vz360.jpg +||wvtem.com^ +||600km.com/template/*/ad/ +pcauto.com.cn##div[id^="middle_ad_"] +||3dmgame.com/page/js/push_browser.js +||hexun.com^*/appDplus +||cloud.tencent.com/developer/api/common/getAds +||39.net/PictureLib/A/f76/20170814/org_1428963.gif +||xv98.com/js/hengfu +2345.com###J_acts11_footerfixed +@@||alicdn.com/t/img/TB1tWvVJFXXXXc_aXXXXXXXXXXX-40-26.png$domain=dlkoo.cc +||iteyi.xyz^ +||winwin7.com/statics/js/user/xz. +||xcqbbcqpl.xyz^ +douyu.com##a[href^="http://tracking.ad-survey.com/"] +||eastday.com/static/styles/*_gg.css +@@||imydl.com^$generichide +||ieequd.icu^ +fuyang.net##.eis_fbox_980 +||baidu.com/showbrand/sponsor_ +f2dsex1.com##.private-entertain +||api.apiimg.com/huaer/xiahe.js +baidu.com###cms-scroll +163.com##.m_papa +hipertextual.com#@#.ad-above-footer +17173.com###topAlert +||sub.powerapple.com^ +||xq2024.com^ +huamu.cn##.banner_Ad +||cc.xiaodapei.com^ +||pstatp.com/origin/13816000374e83a453717.jpg +vip.diaoyu18.com##.huadong > div[style="text-align: center;margin-bottom: 10px;"] +||ufjslit.top^ +?*=*=*=$subdocument,domain=00cha.com|06ps.com|10000xing.cn|1010jiajiao.com|1024sj.com|11467.com|114piaowu.com|192ly.com|1ppt.com|1ting.com|201980.com|21hubei.com|263y.com|2hanju.com|2liang.net|32r.com|32xp.com|360doc.cn|39.net|4aqq.com|5000yan.com|515fa.com|51edu.com|51sxue.com|51test.net|51zxw.net|52wubi.com|52zxw.com|5djiaren.com|5h.com|5nd.com|5seestar.com|66law.cn|7y7.com|86huoche.com|911cha.com|91jucai.com|91zhongkao.com|949949.com|9553.com|99.com.cn|9939.com|9ht.com|ab126.com|admin5.com|aihami.com|aiyangedu.com|aizhan.com|ankangwang.com|annhe.net|apple886.com|arpun.com|askci.com|aspku.com|atobo.com|b2b168.com|b2b6.com|baicaolu.net|baotang5.com|bbdj.com|bendibao.com|bianzhile.com|blog.sina.cn|boosj.com|bu-shen.com|bytravel.cn|c1km4.com|chajiaotong.com|chazidian.com|china.com|chinacar.com.cn|chinakaoyan.com|chinawj.com.cn|chuiyue.com|cidianwang.com|cjcp.com.cn|cnbanbao.cn|cncn.com|cnkang.com|cnlinfo.net|coozhi.com|cr173.com|cyyangqiguan.com|d17.cc|d1xz.net|daquan.com|dgzj.com|diangon.com|diyifanwen.com|diyju.com|dugoogle.com|dxsbb.com|eastday.com|enterdesk.com|exam58.com|fangdaijisuanqi.com|faxingzhan.com|friok.com|fun48.com|gaosan.com|gaotie.cn|gucheng.com|gugu5.com|gulongbbs.com|gushiwen.cn|hc23.com|hqhot.com|huangye88.com|hxnews.com|hydcd.com|icauto.com.cn|idongde.com|isanxia.com|ixinwei.com|ixiunv.com|jeasyui.net|jf258.com|jianbihua.com|jinbaodm.com|jingdianlaoge.com|jintang114.org|jj20.com|jy135.com|latiaozixun.net|liuxue86.com|m.douban.com|makepolo.com|mama.cn|meishij.net|mipcache.bdstatic.com|miyudaquan.com|mmyuer.com|oh100.com|pansoso.com|phb123.com|pig66.com|pikacn.com|pingguolv.com|pingshu8.com|qcrx.cn|qcwxjs.com|qizuang.com|qm120.com|qncye.com|qqzhi.com|quwenqushi.com|riji.cn|ruiwen.com|sc115.com|shadafang.com|shenchuang.com|ssqzj.com|szdushi.com.cn|szhk.com|uzuzuz.com|webshu.net|wenkuxiazai.com|wenshenxiu.com|wenzhangba.com|wmxa.cn|woyaogexing.com|xiachufang.com|xiangha.com|xiao84.com|xiaole8.com|xiegw.cn|xywy.com|yanyue.cn|yellowurl.cn|yiqig.cn|yiyouliao.com|yjbys.com|yuwenmi.com|yxlady.com|yyrtv.com|zdface.com|zhifure.com|zhongyoo.com|zixuntop.com|ziyuanm.com|zjbiz.net|zuowen8.com|zuowenku.net|zuowenwang.net +||fmgmh.com/template/wap/default/js/lunbo.js +saydigi.com#@#.social-bottom +||bydzfldt.xyz^ +58b.tv#$##video_player { display: block!important; } +||bcttodv.cn^ +||g7ghdash2.fun^ +||lu.sogoucdn.com^ +dmzj.com###app_manhua +||itc.cn^*/tracker.js +ofweek.com###\5f ad-2100 +||168gamer.*/olist- +||vgao.xyz/images/*.gif +||ad.qn.img-space.com^ +||dlkoo.cc/down/copy +||rising.cn^*/pic-ad/ +diyifanwen.com###Hzh1 +17ok.com##.t-bann +secretmine.net##.background-cover +||jwfesuk.cn^ +||17173cdn.com/js/play/page/pThridPlayerAd.js +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##[id^="spreadad_"] +||cxgfq.pinlue.com^ +||doutula.com/img/upupoo/ +pconline.com.cn##.m-JCZ-scrollBlock +ca168.com###slideshow_wrapper +aipai.com###videosRightDown +wasu.cn##.qp +||qhdlz.net/ssyyss/m.js +||youtube.com/embed/wqLWTeNBEEQ? +duba.com###searchRight +||a.llysc.cn^ +ltn.com.tw#?#.whitecon > .related > li:has(> .ltn_ad) +51cto.com###f_close_box +||fq05.shop^ +||srtlisb.top^ +greenxiazai.com##.downbtn > a:last-child +||operqr.top^ +dyhjw.com##.index_luckdraw +ant.design###geektime +||togtrmjz.xyz^ +||msg.video.qiyi.com^ +||pic.baihuawen.cn^ +||autofan.com.cn/UploadFiles/images/bAdImg.jpg +wnacg.com#@#.a_xsfl +||twunbbs.com/images/ +||iqiyi.com/js/common/mars_v.js +||hao123.com/erjiapi/adv? +gdot.me,sc115.com##script + a +||ttnwxhjv.xyz^ +||sltle.icu^ +||9s64g.icu^ +bole90.com###xy_toast_ad +141jj.com##.category-wrapper > ul > div[style="line-height:24px;"] > a +||market.21cn.com^ +||lvnzrh.xyz^ +||people.com.cn/adv/ +||gter.net/index.html?c=foot_js&type=footer.js +||ydrvkdni.xyz^ +dingdangsheji.com##.modown-ad +||mop.com/js/common/watermark.js +sigure.tw##.reds +||soufunimg.com/homepage/new/*/buttomLayer.js +idreamx.com#?##threadlisttableid > tbody:not([id]):has(> tr > td > a[target="_blank"]) +||flash.cn/success/$popup +10fang.com##.botad +||delhirs.com^ +gotrip.hk##.oath-lrec-player +||jane1.top^ +fxedu.com.cn#@#.ad_r +||gscsahv014.com^ +@@||club.tgfcer.com^$generichide +xueqiu.com##.widget__download-app +||eastday.com/static/scripts/eastday_tj.js +||dwstatic.com^*/p/livetip/ +||count.xxxssk.com^$third-party +cpnn.com.cn##.rightewm +||cnpc.infzm.com^ +||eol.cn/images/ed/gaokao/*-85.jpg +3g.baidu.com,m.baidu.com,m5.baidu.com,www.baidu.com#?#div:-abp-has(>.openBox-container) +douyu.com##div[class^="ChargeTask"] +||sportscn.com/js/commerical +hlgnet.com##.co_ad3 +galacg.me,unecne.com##.metaslider +coolinet.com##.section-banner +||lu.sogou.com^ +||seojiaoshi.cn/banner/ +jb51.net##.rjTestPos +||dfxvkgz.xyz^ +orangenews.hk##img[advid] +youth.cn##.hd_pic +axutongxue.net#%#//scriptlet('prevent-setTimeout', 'getCookie("') +5173.com###popupRight +159i.com##style + div[align="center"] +||3344ex.com/js/bot.js +hao123.com##a[class^="gameyixing-link-"] +||novipnoad.net/theme/js/sponsor/ +sohu.com##a[href^="https://m.sohu.com/promotion?"] +wapwenku.baidu.com,wk.baidu.com##.tout +||tnfno.icu^ +@@||yimuhe.com/n_js/advertiser.js +baike.com##.ad_xuanban +||geicmu.xyz^ +||kmlpgjh.xyz^ +||atmdew.xyz^ +||ai.bioon.com^ +andylain.com,bee.coupons,blogspot.com,blogspot.hk,blogspot.jp,blogspot.tw,comic.tw,jasonblog.tw#@#.vertical-ads +||ld0766.com/index.php?m=call&id=10 +||joiwnq2.cn^ +china.com.cn##.Banner_right +xinhuanet.com##.xhdf_moreAdv +||chinatimes.com/Scripts/bennerad. +||kiykfux.icu^ +meizhou.cn##.toptonglan +hao123.com##.navrecommend-hjw +||baidu.com/xpage/interface/get +||tianya.cn/shang/*/index.shtml +||suibianlu.com/zb_users/ad/ +||mpgsqk.xyz^ +||g.jinti.com/f/a/a +||y.21haodianmt.com^$third-party +||hjrcjz.xyz^ +||wbkdsg.xyz^ +||clb.biz/Public/static/js/common-v2.js +||xdh0808.com^$popup +||3158.cn^*_analyser. +firefoxchina.cn##div[trace-key="mh_channel_rec_tpth"] +||zs.rzijjeb.cn^ +pc.yiyouliao.com##.yyl-ads-main > .yyl-ads-swiper:first-child + .yyl-ads-title +||bgdgpbpm.xyz^ +||kkjhgfds.top^ +ithome.com##.con_2 > .img_listbox +||grtimed.com/material/*_960x110_ +||m.kukudm.com/mg/show2.js +||tlula507.com/Public/js/dui +vanpeople.com##.banneradv-newbox +||gxoaku.xyz^ +ltn.com.tw##.NC3 +||js.duotegame.com^ +ilxdh.com###nice-banner0 +pcsoft.com.cn##.shang11-top +edh.tw##.close-corner +||dlads.cn^$third-party +chtoen.com##.adsbygoogle:not([data-ad-slot="9717665976"]) +||meijutt.tv/js/pcjs/alltop_960_1.js +||70822.com/agfile/ +@@||adjs.8591.com.tw^$script +||curesdf.top^ +mydigit.cn,storyren.top###diyfastposttop +||fqghykp.cn^ +||glzy8.com/img/ceo/js.js +07073.com###rightDiv > div[style="height:250px"] +qingdaonews.com##.da30050 +||qhres.com/static/b4f92ac067a4768b/v4/modules/footer.js +||sikapo.top^ +hkcards.com##.row > .col-12 > #ad-slot +macwk.com#@#.adBanner +||adtonus.com^ +maplestage.com##div[class*="-page-module__ad728Holder___"] +||52996.me/upload/ad/ +eastday.com###yxxf_area +||xeazoj.icu^ +||zrblog.net/gg/ +3boys2girls.com###div_display +||sbiloi.xyz^ +huya.com##.end-ab-wrap +p2peye.com###article_content a[ref="nofollow"] +528500.com###wp > div[align="center"] +@@||api.val.qq.com/go/agame/resource/banner?bannerid=aclos_website_banner$domain=val.qq.com +||u.qxen.com^ +cwyuni.tw###box34614 > [class^="box-"] +||juzi6.com/js/gd.js +cool18.com###d_right_ad +||52996.me/upload/ad/$media,redirect=noopmp4-1s +4gamers.com.tw##img[alt="ads"] +csdn.net##.ad_class +||wuye3d.com^ +||cdn93d99x0e.23bei.com^ +dimtown.com##.aggd +||juandou.com^$third-party +4gtv.tv,80s.ai,ft.com,ftchinese.com,ftchinese.com.sz-dns.net,kartinfo.me,long7.qq.com,reh.tw,typecho.wiki#@#.adsbox +@@||lib.baomitu.com/vue/*/vue.global.prod.min.js$domain=69xx03608.xyz +||toutiaoyule.com/n/dspshow. +||c-ctrip.com/ResUnionOnline/R3/float/floating_normal.min.js +baidu.com#$#.ec_wise_ad { position: absolute !important; left: -3000px !important; } +||affyun.com/wp-content/uploads/*/affffff.png +hexieshe.com,hexieshe.xyz,xxshe.info##.entry-title > p +||zp365.com/newhousered/hb-index-pop- +||bd.watu.cn^ +wuyong.fun##.riplus_ads_wrap +||chok8.com/statics/ad/ +||infogram.com^$domain=hk01.com +qidian.com##.app_download_ad +phone-book.tw#%#//scriptlet('remove-node-text', 'script', 'yumayishop') +||texnet.com.cn/images/cnbanner/ +taptap.com###bottomBanner +expreview.com##.crossBa +huanqiu.com##.itemAd +||nvsheng.com/js/gg.js +jandan.net##.goods2-list +||btdb.in/beacon.html +||pmb*.tj.ali213.net/js/ +||jcdf99.com/hzz/scripts/new +||ztxjutz.xyz^ +||66e.cc/d/ +||wkjyxcheng.top^ +||nfmovies.com/pic/tu/a200304_1170x87.png +||asdji2.cn^ +hboav.com#%#//scriptlet("set-constant", "adbk", "false") +2345.com##.vipTopBanner +anjuke.com,sunofbeach.net##div[class$="-ad"] +423down.com##.entry > p[style^="font-size"] > a[href*="/go."] +||gtpso.com/Home/TopSdk/getFavCoupItems +centoschina.cn##a[href="https://www.linuxprobe.com/"] +2dfan.com,galge.fun##.leftside-bg +||nyhgjmlg.xyz^ +||junshizhanlue.com^$third-party +@@||ecma.bdimg.com/holmes/*.svg +95ziyuan.cn##.jiuwu +m.zhanqi.tv##.footer +life.tw###fbFixedAd +dmhy.gate.flag.moe##a[href^="https://7segu.taobao.com?"] +@@||hbu.cn^*/ad.css?$stylesheet +||tingchina.com/js/990 +163.com##.m-slider-footer +||itiexue.net/domain-policy/ +||stulip.org/static/js/header.js +@@||mnighthk.net/template/*/ad +@@||raenonx.cc^$generichide +||2345.com/dypcimg/ads/ +opdown.com##.gxxz-btn +||777zz777zz.com^ +||jyfdbj.xyz^ +yxlady.com##.left_bottom_gg3 +kdslife.com###youhui +outlook.live.com##.__Microsoft_Owa_MessageListAds_ListView_templates_cs_x +||malimali5.com/ad1.png +||7794.com^$third-party +||pungar85.shop^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_df_card +||qpzegye.cn^ +114la.com##.sy_ad4 +mydown.yesky.com##.rightGg +xhtml?$domain=kanshu8.net +luogu.com.cn##.side > div:last-child:not([class]) +360che.com##.adver250_250 +||wlkukrv.icu^ +158zm.com##.top-af-container +||cocomanga.com/sw.js +||bhakte.com^ +tiexue.net##a[href*=".wx359.cn/"] +||iqiyi.com/track$popup +sohu.com###apkBanner +image.so.com##.commerce +||mydrivers.com/2021/www/nianhuojie.png +||sina.com.cn/rwei/hapi2014/64video_titu_logo_500x90.gif +huya.com#$##banner > a ~ .banner-close { display: none !important; } +||chaoyumiao.com^ +xz7.com##div[class^="AD_"] +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.mediago-ad-wrapper +||iid97.com/bdgo/ +||dfcfw.com/js/default/left_ +vxetable.cn#%#//scriptlet('abort-current-inline-script', 'decodeURIComponent', 'pagead') +jinhua.com.cn##.banner260 +||dioimg.net/images/*.gif +||gscsahv013.com^ +@@||dnsgom.net/public/$domain=jingwubook.com|xwdsc.com +||dsceopm.cn^ +||imglnkd.com^$domain=xiuren.org +||zol.com.cn/index.php?c=Api_JumpApi& +so.com###bnbtm-banner +||hbxzlf.xyz^ +||xzwtbdtq.xyz^ +||clplrhum.xyz^ +||iwanshang8.asia^ +sina.com.cn##.adC +jb51.net##.tipsa_ds +||m.k1k.cc/wap/js/indexbottom.js +@@||jwpcdn.com/player/plugins/googima/*/googima.js$domain=viu.tv +||doujs02.shop^ +jq-school.com##div[style="width:1060px; height:auto; margin:0 auto;overflow:hidden;"] +||kspl48j.xyz^ +soopat.com###SoopatAside +||75.125.41.29:8080/ +||meryt111.fun^ +||m.audio699.com/template/m/js/qqwweef +||jinfu.love/files/h5/ +||ausfyk.xyz^ +@@||wgun.net^$elemhide +kafan.cn##a[href*="nameidi."] +||gesfdashb5.fun^ +||mm.nwell.net^ +acgfta.com##a[href^="https://ifift.com/"] +||gtimg.com/auto/js/autoproject/autoarticle/low-price-car_ +||daslkdlqk.top^ +mcdulll.com,mcdulll.pixnet.net###box1290930 +avtb01.com##body > div[id^="haoetv"] +||cbjs.baidu.com^ +||lolttaaas.com/forever/ +||rycff.online^ +chinavoa.com###Content_VOA +@@||tajs.qq.com/stats?$~third-party +cnpingpang.com###new-flash +233tw.com#%#//scriptlet('prevent-setTimeout', '发现严重BUG') +||isigqno.com^ +udn.com##.udn-ads +||xebohjhh.xyz^ +||lanrenzhijia.com/Public/images/xiaozhua.jpg +m.baidu.com##.news_ad +||allyes.com^$third-party +||sogoks.xyz^ +csdn.net###Topic_Top +||supfree.net/top.gif +||pnxtnp.xyz^ +||k2n0f.cn^$third-party +24en.com##A[href*="/ClickAd?"] +||tajs.qq.com^ +bilibili.com#$?#.ex-card-common:has(.gg-icon) { remove: true; } +house365.com##.leftfixed_box +||leju.com/abp/cmslead_new.v2.js +||0941.org^ +||muwqiga.icu^ +||hf365.com/0/14/60/93/14609355_921128.jpg +ithome.com##a[href*="/lapin."] +||b1.xiao84.com^ +diyifanwen.com###Hzh2 +btime.com###ad_full_button_placehoder +cbndata.com##.Toastify +||lmxiqf.icu^ +012.tw#@#.ad728 +ettoday.net##.ad_300 +||wsoqwm.xyz^ +||admd.housefun.com.tw^ +||lnnahh.xyz^ +||tupwiwm.com^ +jrj.com.cn##.wbyy +121xz.com##.c_money +||yuqmok.xyz^ +weather.com.cn###zdl +dcloud.net.cn##.aw-ad-item +||static-ssp.yidianzixun.com^ +oeeee.com###adImg +||baomidou.com/_astro/CheckAdBlocked.*.js +wenku8.net#@##adtop +hxsame.hexun.com$domain=~quote.hexun.com +hanime1.me##.video-show-width > .single-show-list > .hidden-xs[style*="text-align:"] +||koqsxdpx.xyz^ +finance.ifeng.com##.lccs +fx678.com##.box_video +eastday.com##.right_adv_2 +||tgidskii.top^ +||alicdn.com/img/ibank/*_735370984. +hupu.com##.banner-item[data-ad-params*=":"] +||guke.name^ +||z1.cwbaike.com^ +m.tvsou.com##.sogou-temp-hidden +iqiyi.com##.video-ad_left +aiyuke.com##.index_app_down_ad +||3i2i.com^ +_box_ad_ +elecfans.com##.dfma +||3k8.com/d/js/m/thea +manwa.fun#%#//scriptlet('remove-attr', 'style', '.two-ad-area') +||stragmik.com^ +5184.com##.fixed_bgg2 +||fzgetdy.cn^ +||17173cdn.com/a/www/index/2016v2/js/seed.js +ithome.com##.bx-recom2 +ltn.com.tw##[data-desc="內廣"] +||dajiahao17.top^ +||81book.com/static/scripts/1.js +||koyso.com/z- +||kuaishang.com.cn^ +wapwenku.baidu.com,wk.baidu.com###bottomFixed +dable.io##[data-ad_id] +element-plus.gitee.io##.toc-content > .m-t-16px +iwatchme2u.com#%#//scriptlet("prevent-window-open", "/bit\.ly|kbtv/") +jbtalks.cc##.threadad +||100.admin5.com^ +||ok8867s.com^ +||cvbjctqs.xyz^ +||kmplayer.cn/include/jscript/*-a.js +iplaysoft.com###_cblzx +ziyuanyo.com##.index-ad-text +@@||nodkey.xyz^$generichide +51zxw.net###video div[class^="background"] +||jrj.com.cn/h5Ad? +||hc360.com/js/module/common/logrecordservice. +slashlook.com#%#window.canRunAds = true; +baidu.com##.ad-taishan +baidu.com###j-ad-first +sonimei.cn##.style01 +||wyfec.cn^ +xmfish.com###pw_content > .forum_panel:nth-child(4) +so.com###bqPromote +51cto.com##.right-fixadv +||hoopchina.com.cn/common/lazyLoadAd.js +ifeng.com##div[class^="silde_box-"] +||alu.cn/alutg/ +huya.com#%#//scriptlet('set-constant', 'adInfo', 'emptyObj') +||cjpczyi.cn^ +itjsb.com##.info_ad +||qhscsu.xyz^ +hubei.gov.cn#@##ad-side +||21.cizhibaogao.org^ +||imgur.com^$domain=histock.tw|wgun.net +chinatp.com.cn###FloatLa +||baidu.com/xpage/interface/sourcecontent? +||huaren.us/banners/ +||58cdn.com.cn/ds/tgbrand/*.js +ahgame.com,china.com.cn,netbardh.com,pangzitv.com,twoeggz.com###pop +xgcartoon.com,dailygh.com###video-top-ad +hkepc.com###headBanner +||gvbta.icu^ +w3school.com.cn###sbtg +||vansky.com/agdg/vans/tabbao +51cto.com##.ad-jing +||pchome.com.tw/js/overlay_ad.js +||taiwandaily.net/wp-content/uploads*_600x100. +baidu.com##.sfc-image-content-adrootnew +||qichetuoyun.com.cn^$third-party +baidu.com##.cpc-adv-container +mafengwo.cn###banner-con-gloable +||adbot.tw^ +||c81.ipanocloud.com^ +||xklofoz.cn^ +||yuuaos.xyz^ +||tuoizbtl.xyz^ +yzz.cn###video_ff +||dy10000.net^ +||urpkktc.icu^ +||goupu.org/1files/*0. +||zol-img.com.cn/star/image/star-banner2.gif +pconline.com.cn##.website_recommend_banner +||meiyee.cc/js/tj.js +finance.sina.com.cn##div[data-sudaclick="right_ads2_p"] +laowangblog.com##img[src^="https://laowangblog.com/"][src*="-ad"] +||bioon.com/xy/article/img/zhi_neng_xibao_fenxi.png +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_spread_thread +||nuiknnf.icu^ +52pk.com,downmsn.com##.bzClick +weibo.com##.tag_showTopicL[href^="https://shop.sc.weibo.com/"] +slashlook.com#$#body.modal-open .modal-backdrop { display: none!important; } +kanqiuba.net##a[href*="bet"] +smzdm.com##.banner-stuff +||tsaristcanapes.com^ +||poyang.com^ +chinacar.com.cn##.left_pouple_box +yznnw.com##div[class^="hd_"] +||jd-bbs.com^*/gif/ +@@||laotiesao.vip^$generichide +||hy.huangye88.net^ +||qunar.com/vataframe/b.html? +||iqiyi.com/show2?cb= +itdog.cn##.link_gg +hentaicomic.*,wnacg1.cc,wnacg.*#%#//scriptlet("abort-current-inline-script", "document.write", "/\.(gif|php)/") +||hades.qyer.com^ +so.com##.mh-sad +||eoubliw.top^ +||kongzhong.com/style/newindex/js/tad.js +||tdoshbi.top^ +||trojangfw.xyz^ +||masadora.net/kakusan- +jmw.com.cn##.rightCouplet +||uuu9.com/photolog.html +||afopr.cn^ +||5698tp.com^ +qidian.com###QDCode_float +mamecn.com##.njjGsxzLeft > dl > .cont1 +||g1.pptair.com^ +||dafdfd.cn^ +||x.dmouy.cn^$third-party +pixnet.net##div[id*="-AD-"] +senao.com.tw#@#.ad-wrap +hibox.hinet.net#@#.adarea +ifeng.com###a_code +||jinti.com^*/aspx/*gg +fx168.com###diaochaBg +||rbkmzhc.icu^ +||m.q1xs.com/17mb/script/wap.js +@@||qhres.com^*/monitor_analytic.js$domain=mse.360.cn +sina.com.cn###ad +yahoo.com#?#.wafer-beacon:-abp-has(a[data-ylk*=":ad;"]) +||sina.com.cn/js/*/bgads.js +ithome.com##.rm-modal-bg +kankan.com##.tuiguang_position +||p.zol.com.cn/download/detail.js +@@||apk.tw^*/ads.js$script,~third-party +iwan.baidu.com##.side-banner +||sohu.com/mdevp/*-advert/ +xia1ge.com##div[class^="category-iloveyou"] +||seek68.cn/img/*.gif +||chinaz.com/zz_img/ +||twurseri.top^ +6.cn##.min-ad-box +||qqk19.com/data/content +||kxd56.com/tg.gif +||yxrmbjw.icu^ +21ic.com##.couplet_ad2 +||dataguru.cn/site_ +||gg88.bj.bcebos.com^ +qidian.com###j_bodyRecWrap +||wsadad.cn^ +||g0fc3.com^ +pixnet.net##div[id*="-aD-"] +@@||tenpay.com^*?ADTAG= +iqilu.com##.gg300250dbl +||1.51sxue.cn^ +120ask.com##.b_right > div[style] +1kkk.com,dm5.com##.yddiv +||aacoffee.cn^ +news.baidu.com###women-picwall +||pbmp.ali213.net/js/ +||kymahuxv.xyz^ +||xs6po.icu^ +91duba.com,iduba.com###topBanner +||orzx.im/Document/recommend/flashpoint.html +||xamssp.icu^ +wenku.baidu.com###ppt-bottom-ads +taoguba.com.cn###headerggContent +qq.com###J_inner_tips +||cmsjs.eastmoney.com^$subdocument +@@||4spaces.org^$generichide +||tingroom.com/file/A*.js +||ruten.com.tw/js/gads_ +duba.com##.news_ctm_wrap > .ctm_ad +||divcss5.com*/ibeifeng/ +6fzd.com,eyy5.cn,fzd3.com##.area1 +||m.nanyangqiaoxiang.cn^$third-party +58.com##div[id$="_gdbg"] +||gfylyw.xyz^ +||qzwb.com/phpstat/ +bookgew.com###AdsT +chinatimes.com##div[class^="banner"] +||cpm.cm.kankan.com^ +||douyucdn.cn/front-publish/live-master/js/room/IconCardAd_ +manhuadb.com#?#.comicbook-index:-abp-has(>a[href^="http"]) +flyzy2005.com##.baidu_ad +srzc.com##.topgg +360doc.com##.doc360article_content > div[class]:first-child +||tu5551976196.cc^ +||xiurenji.cc/heji/ +18-comicfrieren.xyz,18comic.org,18comic.vip###guide-modal +ifeng.com##div[class^="container-"][content^="[object"] +||imgs.itxueyuan.com/advPicture/ +||hnifdlau.top^ +tiboo.cn##.sectionAd +||a.tbcdn.cn/s/ac.js +||fca6f.icu^ +qq.com###fr_ad +banzou.name###ads_2 +||jgjyxf.xyz^ +ruanyifeng.com##a[href*=".ke.qq.com"] +||dmzj1.com/js/ad/ +megatime.com.tw,pchome.com.tw##div[class^="ad_ec"] +megatime.com.tw,pchome.com.tw###sixi +iqiyi.com##.leftLink +duba.com###ad-dongman +||mpn56e.cn^ +||gasaq.com/public/flash/ +||ffbdbx.xyz^ +||caibaojian.com/d/uploads/*0- +baidu.com##.sfc-image-content-adrecomm +||niupic.com/images/2019/11/17/_17. +||needqnv.xyz^ +@@||app-advertise.zhihuishu.com^ +ezneering.com###media_image-2 +pinggu.org##.hdbanner +douyu.com#?#.bc-wrapper:-abp-has(>.wm-view>div>.isLink[href*=".qualtrics.com/"]) +18comic.org,18comic.vip##div[class="row"][style="display: flex;flex-wrap: wrap;"] +ishuati.com###adsh +||tianshui.com.cn/yb.html +||itc.cn/base/core/gg_ +||qiyipic.com/common/*tonglan +||qq.com/tbs/tbsAd/ +||alicdn.com/img/ibank/*_255861743. +@@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=doitwell.tw +@@||cnzz.com/c.php?id=30070167$domain=m.tieyou.com +||a.breaktime.com.tw^$third-party +discuss.com.hk###gid_group_restricted > .gid_group_title +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="soft"] > .c-border +news.pchome.com.tw##div[style="width:687px;height:145px"] +@@||chinatimes.com/css-main/ad.css +baidu.com###asideRight +||3uvz5.xyz^ +||jndxsuy.xyz^ +tw.news.yahoo.com###sda-MON +||zcypmsp.icu^ +||wnacg.*/58s/ +pclady.com.cn##.mdxyAppEnter +materialtools.com#@#.ad-center +clickhole.com,lifehacker.com,splinternews.com,avclub.com,deadspin.com,gizmodo.com,jalopnik.com,jezebel.com,kotaku.com,qz.com,theinventory.com,theonion.com,theroot.com,thetakeout.com##div[class]:has(> div[data-ad-unit]:only-child) +||52wmb.com/2014js/cn_ +||baidu.com/staticapi/hotnews_new. +tt776.com##iframe[src="/app/ad.html"] +jb51.net##.idc3 +||wymzwy.cn^ +weimob.com###active-entrance +||choujue.net/one/down.js +||qejjhnq.cn^ +?file=ads& +av.movie##.video-banner +||carexpert.com.tw/wp-content/uploads/*800x90. +||igamepark.biz/ads_output.php +||yxvyqyy.icu^ +||njslx.cn^ +yicai.com##.gg_pop +bljiex.com###player_pause +||bwurserv.top^ +||avplwte.xyz^ +||iditero.top^ +||acdfwe113.cn^ +f2dsex1.com##.ad-recommend +iqiyi.com##.rm-logo-ad +slashlook.com#$#body.modal-open { padding-right: 0!important; overflow: visible!important; } +lzep.cn##.aside +||gxcdgm.xyz^ +muve.org.tw#@#.sponsor-area +tw.bid.yahoo.com###livePromote +||mg.32r.com^ +||ee.shixunwang.net^ +||ads.sohu.com^ +||m2.lelemh.com^ +||a.baomihua.com^ +@@||hboav.com/guga/adss.js +aishs.top###frameu9916W_left > .block:nth-child(-n+6) +baidu.com##.adver-one-item-wrapper +3dmgame.com##.Gmaeinfobtn_tab > span +chinaz.com##.header-media__text +btime.com###download +@@||soft8ware.com^$generichide +||pconline.com.cn/_hux_/ +360.cn##.div-adv +liaoxuefeng.com###x-sponsor-b +mail.sina.com.cn##.rightbottom +52fx.cn##.nex_index_top_ads +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width="320"] +||hscnpk86.shop^ +pcstore.com.tw###id_index_ad_bimg +chinapdf.com###floatleft +qq.com##.sider_ad +apprcn.com##a[href*=".lizhi."] +||sslir.icu^ +||tnalzli.top^ +||alicdn.com^$domain=2c2.website|2p8.space|adultgao.com|caopop.com|caoporn.com|caouoo.com|caox.cc|h3e.pw|h3y.pw|k88.club|me88.pw|p5p.space|se88.space|t2p.space|tb001.xyz|te88.pw|vwan.xyz|xhao1.com +51cto.com##DIV[id^="topbanner"] +@@||360buyimg.com/ad/$domain=jd.com +||0940088.com^ +finance.ifeng.com,kulemi.com##.rec +||kzcayec.icu^ +||m.hackhome.com/js/m_ga.js +gz0668.com###closexguide +||bendibao.com/js/count.js +xchina.co##div:has(> div:only-child > .media img[src*="/ad/"]) +@@||btsax.info^$generichide +eworldship.com##div[style="padding: 0px;position: fixed;left: 7px; top: 150px;"] +||douyucdn.cn/japi/sign/web/getinfo +chaicp.com##.footer-banner +||udipsumt.top^ +360che.com##.adver300_250 +||duouoo.com/vss/wz +||gtimg.com/rain/bl20/json/8.js +||gtimg.com/news/news/2014ad/ +qxfun.com###reward-me > figure:nth-child(n+2) +||bestvogue.com/fans/ +btvsports.click#@##googleAD2 +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.cps_wrap +||2ccc.com/images/sino.gif +||tom.com/*TomFlashAd +||alicdn.com/kf/U17649ef1f91e4b428152e709d33aed775.jpg +download.csdn.net##.ad_area_1 +@@||online.unionpay.com/ads/$script +||2345.com/js/m/bottom.float.adver.js +||9ihome.com/info/ADTopvnet/ +360che.com##.adver600_80 +gamer.com.tw#$#img[onload="AntiAd.check(this)"] { position: absolute!important; left: -3000px!important; } +||adtx2.cn^ +qq.com###pop_apps_sponsors +||sdcuo.com^ +||ppvpmrt.xyz^ +rising.cn###viphuibg +||qvftejz.cn^ +@@||hanjuwang.net^$script,~third-party +x-mol.com##.news-white-content-right +gzmama.com###zone_right_couplet +||nfmovies.com/pic/tu/*_banner +haosou.com,so.com###bottom_ask +msn.cn##casual-games-carousel-card +||zjsnhl.xyz^ +||0tq6ub.cn^ +||game.eroge.xyz/*.gif +||xinmin.cn/framepage/top +qidian.com###topGameOp +@@||share.baidu.com^$script,stylesheet,domain=k73.com +||88lm09.com^ +@@||dqzsteel.com/Website/Image/guanggao/ +chinabidding.com.cn##.innovate + .layer +||23sc.cn/andy/ +||ghjie.com/images/2012/images/bg +||photos18.com/images/friend/ +||styusib.top^ +sisixxb.com##.preflink +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###plat_recom_carousel > .activity_head +wenxuecity.com##.rightbannerw +||baike.com/newtop/news.html +duba.com##.m_hot_rec_box_base +acg17.com,secretmine.net##.e3lan +tvsou.com##.story_ad_android +||ty121.cn/IAA/ +zzbaike.com##.link2 +avsuggest.com,qiaobutang.com##.overlay +sohu.com##.hot-article > div.pic-txt[data-spm-content*="_saletype="] +cartoonmad.com##td[width="890"] > table > tbody > tr > td[colspan="4"][height="126"] +||isksss.top^ +ezprice.com.tw##.col-md-3 +qidian.com##span[style^="display: inline-block;width: 150px; height: 291px;"] +||1990tu.com/i/*.gif +||auvohoxm.xyz^ +jstv.com###vplayad +||xinyi.com/Public/config/Couplet/Index41.js +chinabidding.cn,chinabidding.com.cn###erweima_l +tw100s.com##div[class="ui_adblock"] +||ta.trs.cn^$third-party +||asp300.com/2017images/kefu.js +||alicdn.com/img/ibank/*_!!2200581616124- +||mxzmz.com/js/ +||tvyan.com/images/jscss/tv- +||bdpretc.cn^ +||baidu.com/newspage/api/getadsdata? +||sbpb1.qulishi.com^ +||dbw.cn/eap/js/db/dbwad_ +||itheat.com/?show= +jable.tv##.badge +r3sub.com##div[class] > a[href^="show.php?id="] +||20091222.com^ +@@||edgesuite.net^*/ad.css? +||omkxes.xyz^ +||whfpbc.99.com.cn^ +pptstore.net#@#.ad-big +||zjg.js.cn/Public/config/Couplet/Index4 +||xunsu.cc/js/indexbottom.js +chineseinla.com##.deal_discount +||jianxuzuo.com^ +||qdross.com/vip/ +@@||wkstatic.bdimg.com/static/wkcore/widget/commerce/fengchao/*$domain=wenku.baidu.com +||xdjdpyrt.xyz^ +booom.net,x6d.com##.tmall_tab +@@||technews.tw/www/delivery/$badfilter +||alicdn.com/tps/*-950-90. +||geekpark.net/api/v1/ads +admin5.com##.float_both_index +||xpjcg.oss-accelerate.aliyuncs.com^ +||999zz333zz.com^ +||n2.hk/apps/car_feed/tb/*/banner.html +||cspb1.5w5w.com^ +fanyi.baidu.com##.banner_img_container +||shequdaohang.com^$third-party +||tiexing.com^$third-party +||linkwan.com/gb/javascript/b4.js +||218.30.15.193/phpstat/count/ +||actoys.net/index.php?m=poster& +@@||ads.privacy.qq.com^$domain=privacy.qq.com +efu.com.cn##.banners-top-x2 +eprice.com.tw##.popup-adv +||autohome.com.cn/ximg/*.png$script +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_banner +||163.com/get.do?*=themeHandler. +||xwlnhw.com^ +||ppenid.xyz^ +ithome.com.tw###ad-on-top +nfuwow.com###dl-left-first +||tingchina.com/js/allad.js +||a99hz.space^ +yahoo.com##div[id^="ads-"] +||tanwanyx.com^$third-party +||head4.net/ad_ +@@||gaus.ee^$generichide +jjmmw.com,qq.com##.fixed-ad +@@/adview_pic_$domain=doutula.com|fastadmin.net|toolfk.com|xclient.info +qq.com##.adcent +mail.qq.com##.tipbook-top +@@||moneysave.info^$generichide +||mafuzcxr.xyz^ +||bobo.com^$third-party +||fsclzs.com/Ad_User/ +showtv.com.tw##.ask18 +boylove.cc###yteggbue +oschina.net##a[data-traceid*="_detail_above_text_link_"] +90xz.com#@#.share-btn +||meiju8.cc/js/jquery.p.min.js +am730.com.hk##.adbox +jingyan.baidu.com##.wgt-cms-banner +1point3acres.com##div[style="width: 450px; min-height: 210px;"] +||xbiqu5.com/12345678. +baidu.com##div[class$="-ecom-ads"] +||gbfedashb4.fun^ +||news.sina.com.cn/pfpnews/js/libweb.js$domain=~www.sina.com.cn +tyenews.com##div[id^="metaslider_widget-"] +||lnhsjob.com^$third-party +taobao.com##.downapp +||9kh5b.cn^$third-party +kumi.cn##div[class^="adz"] +||kgimg.com/public/root//images/hardware.jpg +iqiyi.com,~mall.iqiyi.com,~so.iqiyi.com##a[href*="http://mall.iqiyi.com/item/"] +||duboku.net/static/images/yabo +zeekmagazine.com##.td-all-devices +||b1.c1km4.com^ +||ibkoiw.xyz^ +||ovbgeum.cn^ +=Ad_ZPlusGoods& +||kan.cc/statics/abs/scripts/abs. +||carnoc.com/noticejs/ +qiyeku.com###index_gg +bejson.com##.xf2-gg-left +||faquanya.com/weixin/ +iqiyi.com##div[class^="video-slide_normal"] > a[href^="http"]:not([href*="iqiyi.com"]) > div > img +image.baidu.com##div[id^="relecom"] +investing.com##div[class*="adBlock"] +||uegsjnk.com^ +@@||520cc.cc/api/jspopunder. +nicotv.me##.container > div.slide[style="padding-bottom:0px"] +||acwifi.net/wp-content/uploads/2022/08/0825-750.png +||alicdn.com^$domain=1avlang.com|2334n.com|51dll.com|52kpop.com|5xx44.com|5xx77.com|63ef.com|69t41.com|7mav2.com|99a21.com|acglover.me|aotu101.com|ccxx99.com|dytt.com|hanfan.cc|jb51.net|jitapu.com|junying.com|jvhao.com|lady3.xyz|magnet2048.com|qingmanyong.com|qyl00.com|qyl222.com|spqi.xyz|supfree.net|that2.info|thztv.cc|ttww22.com|viidii.info|wenkuxiazai.com|xiaomingming.org|yuese46.com|yzz12.com +||nznkaq5.cn^ +||jzjpntr.xyz^ +||taobao.com^$popup,domain=dlkoo.com +||count.enet.com.cn^ +||xmrc.com.cn/net/info/html/ +newduba.cn###jq_youxi +eastday.com##.ssy_left +dianping.com##.weixin1 +||vdggsd004.com^ +sina.com.cn##.blk_APP_JSr +||jb.dianshu119.com^ +||sfnmt.com/dq/ +jumi.tv##a[href^="https://l.tapdb.net/"] +||xiiepofl.xyz^ +||nulltm.com/adv.js +iqiyi.com##.qy-plist-ad +@@=mywebloadt1&$domain=myweb.hinet.net +||jyisloa.top^ +||videojj.com/flash/bin/vjj_config.xml +||lhtzfn.xyz^ +weibo.com#?#.vue-recycle-scroller__item-view:-abp-has(img[class^="head-info_authicon_"][src^="data"]) +||eyuwkbw.top^ +||hktvmall.com/api/preroll/getList? +||zthxobgk.icu^ +jlmhk.com##.bn +||3boys2girls.com^$subdocument +loveshang.com##div[class^="float-ad-"] +idanmu.ee##aside > div[class="widget "] +||yea.im/5hq.gif +jdbbs.com###portal_block_2826 +||333uu.org/config/ +||ruten.com.tw^*/ahd_ +||tdhserg.cn^ +||chinaxinge.com/html/index_pf3.js +||ax7fv.space^ +||analysis.chinaiiss.com^ +||mianyaojsj.com^ +tianya.cn###login_mask +qq.com#@#.side_ad +9uu.com##.gao-wrapper +cngold.org##.top_bigad +@@||sto520.com^$generichide +taobao.com##.mask.animated.swing +||xinmin.cn/framepage/left1.htm +||xjappzvz.xyz^ +||ziyuanm.com/js/g11.js +||sinaimg.cn/finance/stock/hq/src/popuptoapp.js +||qnsb.com/news/index.php?m=poster& +mail.126.com,mail.163.com##div[id$="_succAd"] +||hrrjff.xyz^ +||asp300.*/2012adimg/ +||fm086.com/Plugins/search +m.weather.com.cn##div[style^="position: fixed; width: 100%; bottom: 0px;"] +||caikuu.com/ckimages/*_zg +||53shop.com/ime/*.js +||52z.com/images/52zgg/ +||kwiqcoh.icu^ +lenovo.com.cn##.nav_ad1 +youdao.com##.banner +wenda.so.com##a[href^="http://e.so.com/search/eclk?"] +||aushaq.top^ +price.com.hk,uwants.com##.MFV +hexieshe.com,hexieshe.xyz,xxshe.info,xxshe.xyz##.mh-widget > .textwidget > p > a[href^="http"]:not([href*="she."]):first-child:last-child +@@||ahd.ruten.com.tw/ahd/fetch_ad.php?zone=*%2C$domain=ruten.com.tw +@@||aixifan.com/static/home/widget/basic/advertisement/advertisement.$stylesheet +||leju.com/scripts/app/pc/indexlayer/v1/indexlayer.js +zhibo8.cc###popautoapp +||uoublit.top^ +||whnews.cn/wh_public/xuxu/ +||deanth.xyz^ +share.dmhy.org##div[align="center"][id] > a > img +itdog.cn#%#//scriptlet('prevent-setTimeout', 'adblock_tip') +||kvskknklssv.com^ +||ctydsy.xyz^ +@@/images/ad/*$domain=9588.com|casio.com.cn|dod-tec.com|ourgame.com|pro-partner.com.tw|snh48.com|tingbook.com +||vnet.cn^*.html?$popup,third-party +lbyczf.com##.content__default > .list +||guli21.com/PNEW/ +ifeng.com##.adpubpic +rouman5.com#?#.col-md-4 > div.row:has(> div.col > div[style] > ins[id]) +feiwan.net##div[id*="_"][style] +||d-test.39.net^ +5imx.com###diy_mxnewsad01 +||longzhu.com/recommendad/ +udn.com#$#.main-content { background-image: none !important; } +kaopu001.com##.coupleBannerAdv +||zhimg.com/80/v2-f4b209014eeea058dd5b43f085aaef02. +toutiao.com##body div[ad_name] +lywww.com##.lianmengclass +||srldkqj.cn^ +||hmghmg.com/tb +taohuayun.cn##img[width="150"][height="60"] +||b477.life^$popup,third-party +||e1zin.icu^ +@@||weibo.com/share/share.php$generichide +ali213.net##.ali-photo-carousel-pic > li > a[href*=".fhyx."] +||hvzrrvj.cn^ +nfuwow.com##a[href*="myyj.net"] +tw.yahoo.com###util-top-promotion +||boardx.huanqiu.com^ +||21.fh21static.com^ +@@||stapewithadblock.monster^$generichide +||chinaz.com/2020/0306/2020030616083756.jpg +@@.google-analytics.com%2Fanalytics.js$domain=free.com.tw +||huizu100.com/data/attachment/portal/ +||ruishungp.com/assetscms2019/js/get_content.js +feng.com##div[class^="ad_90"] +||qiyipic.com/common/20160302/ban250.jpg +||yxkbgg.xyz^ +news.163.com#?#div[ne-module="/modules/slide/slide.js"]:-abp-has(.ad_hover_pic) +||kssolo.com^ +||wyzq.rehuwang.com^ +||tcss.qq.com^ +789ys.com##h1[style] +||4ir17.icu^ +||wokao.co/qq/qq.js +||xekmhvbb.xyz^ +olehdtv.com##.container > div[class^="B1"] +939394.xyz##body > table:first-child img +18comic.vip##.container > div[style^="padding:"]:has(> [data-group="content_page"]) +||salary.xiao84.com^ +@@||weibo.com/api/weipan/getAds +||57fx.com/img/20170508.jpg +@@||111.75.255.103/Scripts/Controls/PageView.js +||99496.com/v9/head.js +||7011.stia.cn^ +||pubads.g.doubleclick.net/gampad/ads?*&description_url=https%3A%2F%2Fani.gamer.com.tw$xmlhttprequest,redirect=noopvast-3.0,important +||foodmate.net/file/script/A +||uvpqrydt.xyz^ +||ads.adaptv.advertising.com/*roll&pageUrl=4gtv.tv$script,xmlhttprequest,other,redirect=noopvast-2.0 +||cpkxahje.xyz^ +alu.cn###xxxhuangjinzhanwei +gzmama.com###zone_top_fullcolumn +avjd014.com##a[href^="http://163qp.xyz"] +||daniuxuexiao.org.cn/js/zk +||twerilxi.top^ +verystream.com#@#.adsbox +doii.cc##.w-\[200px\].fixed +chsi.com.cn##.zx-axvert +bingfeng.tw#%#(function(){var b=window.setTimeout;window.setTimeout=function(a,c){if(!/Adblock/.test(a.toString()))return b(a,c)};})(); +||3dmgame.com/page/js/indexalert_ad. +||126.net/house/hrb/flash/*X +@@||8maple.ru/*/ad.php +iciba.com##.pc-entry +v.qq.com##.site_bg_variety +a9vg.com###qrcode +||sogou.com/reventondc/inner/gamebrand? +iduba.com,newduba.cn##.m_nav_top +baidu.com##.tb-threadlist__item.tb-banner +china.com##.mxm +bilibili.com##.ad-e1 +edc1014070.pixnet.net#%#//scriptlet("set-constant", "MM_openBrWindow", "noopFunc") +ssnn.net###nrk_gg +ipv6.baidu.com,xueshu.baidu.com,www.baidu.com,www1.baidu.com#?#div:not([id]) > style[id^="s-"] + style + div + div[id] +contents.internet.apps.samsung.com##.page-bar +||wetlwse.top^ +||soaspx.com/images/hws.gif +||herzotph.icu^ +news.qq.com###focus-bar +lcxw.cn##.gg4 +||zglww.net/jsnew/pfkf.js +||ybrbdft.xyz^ +||k99.cc^$third-party +||kppt.cc/zhifu.jpg +sdo.com##a[class^="side-nav-box-daoyu"] +||yaseok.com/uploads/20*.gif +3322.cc##[onclick*=".gsxzq."] +||168img.com/aa/ +||onagsc.xyz^ +qzone.qq.com###div_corner_ad_container +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##style[data-for] + style ~ #\31 [data-click^="\7b \"rsv_bdr\":\"0\",\"p5\":"] +||jialingmm.net/tj.js +||hmlkppk.cn^ +rrjc.com##.coupletbox +||jsdelivr.net/gh/pizcat/static@master/goods_ad.js +m.lwxs.com#%#//scriptlet('abort-current-inline-script', 'document.write', '_0x') +||vszzzj.xyz^ +||abcd.yiq.com^ +||ctkyom.xyz^ +||gcumgu.xyz^ +77222.cn##a[href^="/aa/"] +||bdimg.com/muzhi/adwap/top-banner.jpg +||neets.cc/assets/js/dup.js +||domain1.chahaoba.cn^ +||dokfrl.xyz^ +boylov.xyz,boylove.cc,boyloves.fun##style + div[style="cursor: pointer; position: relative;"] +ifeng.com##div[class^="bottomSlide"] +||yldxphtg.xyz^ +||mydrivers.com/images/icon/gg_ +baixing.com##.red-package +||11kkzz.com/se/wf/ +lenovo.com.cn##.AdSite +||abucki.xyz^ +||wvyqks.xyz^ +||heiye.cc/js/bf.js +uc123.com##.logo > a +||nfldgbt.xyz^ +||sobaidupan.com/top_txtad.asp +||sina.com.cn/activity/promotion? +html-js.com##.module[style="padding:0;"] +||bas.boshi.tv^ +||alitui.weibo.com^ +||itavcn.com/images/2014/ad_ +||book118.com^*/showRecommend. +||bytravel.cn/js/b_ +5imx.com###diy_mxad02 +||awzddev.cn^ +||qpic.ws/images/pk*.gif +hao.360.com###tmall-full-screen +||herogame.com^$subdocument,domain=gamer.com.tw +||hkrytf.xyz^ +lenovo.com.cn##.link-ad +@@||threatbook.cn/public/asset/js/zhugeIo. +||bmp1.ali213.net/pubjs/index_sc_utf8.js +asken.jp#@##top_box > a[onclick^="javascript"] +mrbird.cc#@#.social-icons +36kr.com##.app-track-card +||m1.51kaowang.com^ +||offcn.com/offcnewm/ +||gpxz.com/js2/ +||cxeftgyuer.top^ +||unfhxszj.xyz^ +||jrjimg.cn/common/foot/wxXcxTg.js +||139file.com/jsa/ +||thisav.com/index.js +@@/img_ad/*$domain=tkec.com.tw +||2btu.com/gg.jpg +2345.com##div[id^="J_Topic"] +||baijs03.xyz^ +||aa3e4.cyou^ +soundofhope.org##div[class*="AD_"] +tw.news.yahoo.com###sda-LDRB-iframe +||rnzmynh.cn^ +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv###hellBoy > li:not([track-by]) > img +zhcw.com##.hzg60 +||wwursere.top^ +||anjdwmq.xyz^ +||ebioweb.com/jslibrary/js +13tv.top,sina.com##.aditem +||drzgtli.com^ +||ifengimg.com^*/fullscreen +baofeng.com##.play-ads +||nltsvf.xyz^ +||gg163.net/20*ad/ +58pic.com##.xyyh +||cpyjyhny.xyz^ +||p.7060.la^ +||xhubsxmg.xyz^ +chinese.engadget.com###module-engadget-deeplink-top-ad +||kkyjfdj.xyz^ +||n0622.com^ +||werssf.com^ +onlinedown.net##.u-btn-gao +||douban.com^*/fm_bgad.js +infoq.cn##.geo-banner +sina.com.cn##.blk_APP_JSl +||js22f.net^ +bbs.colg.cn##.hdc > a[onclick][target="_blank"] +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-car-powerful-container +@@||fscinda.com/ad/$~third-party +||aol32.cn^ +@@||j.wit.qq.com/sc/crystal_ad.js?$domain=888.sports.qq.com +@@||netflav.com^$generichide +||xvyugqj.icu^ +||xwdsp.com^ +azofreeware.com###HTML7 +nxpaaq.com#$#iframe[src="/close.html"] { display: none !important; } +||ggttbe961.shop^ +||magnetdog.net^$popup +mydrivers.com##.i1vbApifa5 +||reisyxy.icu^ +dmzj.com##a[href*="qunhei.com"] +qidian.com##.page-ops +||ktnwxhjv.xyz^ +||fxxz.com/skin/know/all.js +||jisutiyu.com/app/js/*footer.js +drvsky.com##.zhongdian +||bdstatic.com/player/t/j/Cj2XuDf6.js +||wjwod.cyou^ +||whqgyo.xyz^ +||whsir.com/wp-content/themes/wh-blog/js/modal.js +stc.gov.cn###mov +bilibili.com##.desktop-download-tip +||zxptw.cn^$third-party +||1.doudouditu.com^ +bendibao.com##.content_r_ad300 +16rd.com###diy_ad_article_right IMG +||j7c16.icu^ +||vtjbnb.xyz^ +||rlw86.cyou^ +lalilali.com##div[id*="_"] +||poxdpj.xyz^ +ifeng.com##.adR01 +||lgmi.com/syimg/ +@@||totheglory.im/pic/ttg_logo +||lm1.tuliu.com^ +hupu.com##.ad720-90 +autohome.com.cn###ad_ic_video +||ssestherssa.com^ +||gk1.zjbiz.net^ +mbd.baidu.com###content_wrapper + div + .default-container +||imall.cctv.com^ +||s1.pipishu.com^ +jnnc.com##.basehr + div +firefoxchina.cn##.side-promote +||liangpinge.com^$third-party +@@||cdn.optimizely.com/js/*.js$domain=kktv.me +@@||alicdn.com/dt/tracker/4.2.0/??tracker. +||lvnlrmn.xyz^ +||iewtwo.xyz^ +3dmgame.com##.Gmaeinfobtn_tab > [class]:not(.tab) +@@||qq.com/cgi-bin/*?sid=ads +||mvmqos.xyz^ +||tvsou.com/js/360ad.js +||yitongfang.com^$third-party +||alimama.cn^$third-party,domain=~alimama.com|~foctop.com|~meidebi.com|~qinqintejia.com|~tanx.com|~taobao.com|~youhuiyouhui.com.cn +||plnrkgc.xyz^ +||99jinpin.com^ +pchome.net###intel-bar +qzwb.com##body > .area[style^="height:60px;"] +sex8.cc##.banners12 +||7k7kimg.cn/cms/cms10/20180706/135219_4911.jpg +||nuxwlc.cn^ +||ytbbs.com/images/index/ +?method=baidu.ting.commercial.tactics& +||sesefu8.com/statics/js/layer/layer.js +||lfxozd.xyz^ +||dajiazhao.com/login/reg.js +||wlzlrlp.xyz^ +||replays.net/j/dazui +||591hx.com/lunbo/ +||niugupan.com/js/tj.js +sina.com.cn##.adG +||bndxrr.xyz^ +tsubasa.im#%#//scriptlet('prevent-setTimeout', '/home/?adblock=') +||ran2.top^ +||uloscw.xyz^ +codejie.net##.h-ad-banner +||hc360.com/js/*hezuo.js +smzdm.com###footer_layer +news.gamebase.com.tw##.PcNewsUpAds +big-cup.tv,g-cup.tv##.col-md-12.text-center[style="margin-top: 3px;"] +||qqtn.com/js/html/down_ +jijidown.com##div[style="width: 525px;"]:last-child +||ybf1o.online^ +||udd1i5.zhihu.com^ +x6g.com##.addd +||lfrdskwj.icu^ +||u.ctrip.com/showcaseadvertisementsit/ +||kdou.com/ad_js.php?adid= +||icwnix.icu^ +@@||googletagservices.com/tag/js/gpt.js$domain=tvb.com|tvbs.com.tw|www.gamer.com.tw +||myhack58.com/Articleacb0 +||p4p.sina.com.cn^ +||szmmb.cn^ +carousell.com.hk#$?##carousel-container > div[class^="D_"] > div[class^="D_"] > div[style^="width:"]:has(a[aria-label^="licksang"]) { remove: true } +||jias115.com^ +||cnmysoft.com/images/logo02.png +@@||pub.alimama.com/common/adzone/ +@@||ad.8maple.ru/bilibili.png +||0r3tyg.cn^ +||oyugspe.cn^ +axios-http.cn###right-sider +||qvrfddm.cn^ +||etkht.cn^ +||ytghtq.xyz^ +bcbay.com##table[id] + table[style="margin:3px auto;"] +||rjhbjv.xyz^ +||baby-kingdom.com/reqsads? +||7d108.cn^ +lukedreyer.com##div[style$="width: 125px;z-index:2000;"] +||cb61190372.com^ +||aaiwuq.xyz^ +sogi.com.tw#?##main > div.container:has(> div#ad) +||alicdn.com/img/ibank/*_42289337. +||imgdb.cn^$domain=m4ff.com +51xiazai.cn##.relateSoft > div#xzbtn1:not([class*="btn_blue"]) +||kuaishouba.com/themes/default/images/*.gif +hjenglish.com##.fix_questionnaire_btn +axutongxue.com,axutongxue.net###jjjagl +||mesh.if.iqiyi.com/portal/*/recommend?$xmlhttprequest,removeparam=ad +qq.com#@#.ad-icon +||vainews.cn^ +hao123.com###lefttip +||p0v2ni.cn^ +||zpplsii.xyz^ +163.com##.btm-ad +||kancloud.cn/ad/ +||bpztsxx.com^ +boylove.cc###floating_page +ilvruan.com###text-13 +||ebioweb.com/newsf/js/news_top_banner.js +|http://*.hk/ad/$domain=~sunmobile.com.hk +||vtlyrj.xyz^ +||vppzjv.xyz^ +||fpb.sohu.com^ +ifeng.com##div[class^="h"] > div[class$="-main"] +||winwin7.com/statics/js/pos_js/ +99kubo.tv##.main > div[class="datal clear"] +duba.com,newduba.cn##a[href*=".zhhainiao.com/"] +kuwo.cn##.qr_wrapper +||fuliwang.cc^ +qq.com##.mod_custom_ad +sogou.com##div[class^="news-top-banner"] +||6969aa.cn^ +gucheng.com##.title_down_ad +||rouman5.com/hlw.jpg +weather.com.cn##div[class^="adpos"] +||ljdofz.xyz^ +||bianzhirensheng.com/img/bianzhiji.jpg +apple.com.cn#$#html { margin-top: 0 !important; } +||tiexue.net/domain-policy/ +gamebase.com.tw##span[id^="aid_"] +iciba.com##.info-product +yiche.com##.h-gd-box +||mall0.qiyipic.com^ +||vkandian.cn/footjs/ +||91xiazai.com/Public/index/images/zanzhushang.gif +||ettoday.net/style/video-ad/ +||xnqboqc.icu^ +apk.tw###confirmOverla +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###frs-list-game +||vs1.exo01.xyz^$image,third-party +||phwrju.xyz^ +||tbcdn.cn/mm/tanxssp-custom/sina_ +||poxiao.com/template/default/images/12345.js +@@||dlkoo.com/down/copy1 +||fq03.shop^ +||jyfw.cn/gonggong/jiayu/cf_ +cool3c.com##.gpt-new +||kuaizitech.com^$third-party +||ipeen.com.tw/photo/ad/ +lenovo.com.cn##.fixedLeftAd +||atyun.com/wp-content/themes/xmag/js/ad.js +||rydzfldt.xyz^ +78dm.net##.container-fluid > a[href*=".taobao.com"] +||haoimgs.com/images/*.gif +wn789.com##.sidebar > .widget:not(:first-child):not(.widget_ui_posts) +||hitchun.com^ +||i100.cao-gao.xyz/aimgs/ +||51gxqm.com^ +||nfmovies.com/pic/tu/banner +||js.spreton.com^ +||kdw*.com/layer/layer.js +91hs.top,hsex.men##.col-xs-12 > a[target="_blank"] +iwatchme2u.com##.video-ad-box +www.wenxuecity.com###rightside +daohang.qq.com##.banner-adv-new +lenovo.com.cn##.adsense-wrap +||ra6.xyz^ +people.com.cn##.ad_left +@@||jin10.com^$generichide +hao123.com##.soft-ad-banner +||jdwx.info/api.php?mod=ad& +iplaysoft.com##.d250x90 +||p04qzl.cn^ +||odipsumk.top^ +@@||elife-cloud.blogspot.com^$generichide +||alicdn.com/kf/U49aea8c7eb23472da22f6375984dfe3fa. +cnfol.com##.FixedLeft +||osisk.com^ +||down.admin5.com/z/ +iqiyi.com##.cell-right +||8684.com/shuang11/ +||xinhuanet.com^*/adv +||eastday.com/assets/js/dftongjiad.js +||awareista.com^ +||8070kk.com/statics/js/guo +@@||pos.baidu.com^$script,domain=fxpan.com|htqyy.com +||64ma.com/tv/images/web.png +waipian1.com,waipian2.com,waipian3.com,waipian4.com,waipian5.com,waipian6.com,waipian7.com,waipian8.com,waipian9.com,waipian10.com,waipian11.com,waipian12.com,waipian13.com,waipian14.com,waipian15.com,waipian16.com,waipian17.com,waipian18.com,waipian19.com,waipian20.com,waipian21.com,waipian22.com,waipian23.com,waipian24.com,waipian25.com,waipian26.com,waipian27.com,waipian28.com,waipian29.com,waipian30.com,waipian31.com,waipian32.com,waipian33.com,waipian34.com,waipian35.com,waipian36.com,waipian37.com,waipian38.com,waipian39.com,waipian40.com#$#a[href*=".umtrack.com/"] { position: absolute !important; left: -3000px !important; } +||tech.jiukang.org^ +||kalvin.cn/page/img/ +speedtest.cn##.advertisingSpace +||niuacc.com/static/common/js/145.js +yazhouse8.com##.mini-over-top +||dvs.china.com^ +itavcn.com###ADE +douyu.com##div[id^="sign_p_"] +tvsou.com##.sogou-temp-show +66rpg.com###left_overlay +||mortgagecentres.net/banner.gif +||168.it168.com^$script +||d2kadvyeq051an.cloudfront.net^$third-party +||kuaicad.com/rest/common/getConfigureByName? +m.nownews.com##.ui-footer-fixed +||udolgy.xyz^ +baidu.com##.openBox-shareEntry +hao123.com###slidetoolbarContainer +yicai.com##.gg_loadpage +iqiyi.com###jingdongArea +ali213.net###tv +ezneering.com#$#html { overflow: auto !important; } +read.qidian.com##.operation-wrap +||pconline.com.cn/download/*/intf*.js +webkaka.com##.pNavigateAd +familydoctor.com.cn##.global-top-links-wrap +32r.com##.gsbtn +||cdn.wenzhangba.cn^ +58avgo.com##.BillingRight +cskaoyan.com###scanWxQrCode +||dmpqjn.xyz^ +||haohuisheng555.cn^ +oschina.net##div[class$="Content"] > p[style="margin:0 0 10px 0;"] +||urtlist.top^ +18avinin.com##a[href^="https://forms.gle/"] +||sfesdef6.fun^ diff --git a/adblock_plus.txt b/adblock_plus.txt new file mode 100644 index 00000000..d8dbbd2d --- /dev/null +++ b/adblock_plus.txt @@ -0,0 +1,180840 @@ +[uniartisan's Adblock List Plus] +! Version: 202411080220 +! Title: uniartisan's Adblock List Plus +! Expires: 1 days (update frequency) +! URL = https://github.com/uniartisan/adblock_list +! Length = 180834 +airchina.*##.cav2-notification_cookie +sexu.site##.player-related +tellows.it#?##singlecomments > li:not([id]):has( > .comment-body > div[id^="adngin-"]) +highlysensitiverefuge.com#$#html.cp-disable-scroll { overflow: visible !important; } +||migqw56nfi.zzaqqwecd.lat^ +||ncubadmavfp.com^ +||failedmengodless.com^ +cinemagia.ro###banner_container_top +newson.us#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +steelersdepot.com##.theiaStickySidebar +business.financialpost.com#@#.adsizewrapper +actualcomment.ru##.ya_dzen__container +hollywoodreporter.com##.email-subscribe-holder +||edaciousedaciousflaxalso.com^ +||incgrepacks.com/wp-content/uploads/2024/06/str.gif +x.com,communitynotes.twitter.com#?##main > div[class^="sc-"] > div[class^="src__InlineCalloutElement"] +gameguru.ru##.blockquote-telegram +/responsive_ads.js$script +braziljournal.com##.line-share-instagran +##.sponslink +||igrit.pl/api/py/$xmlhttprequest +forbes.pl##.placeholder +kwongwah.com.my##.kp-adv-widget +time.com##.column > .tWo0WoSf +apherald.com###closeDiv +weather.com##div[id^="Taboola-main-"] +ground.news##.duration-500 > div.bottom-0.justify-center +s.shufoo.net###okiniiri-fuwatto-banner +radomszczanska.pl#?#.l-col--side > .l-col__item[style]:has(.adsbygoogle) +gitlab.com##.broadcast-notification-message +health2sync.com##a[href="https://www.health2sync.com/links/cdkzos"] +ppe.pl##.onnetwork +lewor24.pl#@##cookieModal +sitepoint.com#$#body { margin-top: 0! important; } +||fimrg.ajscdn.com^ +||telesputnik.ru/bitrix/templates/tsp_new/js/script.js +dogemate.com,viajarhoje.com,clubinvest.top,animefire.net,toolss.net,teamxmanga.com,uvnc.com,vijesti.me,automotur.club,techmody.io,mcrypto.club,earningradar.com,exxen.com,manyvids.com,downfile.site,tricksplit.io,tipslearn.com,meucdn.vip,yandexcdn.com,honeyhunterworld.com,siberuang.com,assiatv.com,waaw.to,upstream.to,hukumonline.com,techsprobe.com,persianhive.com,subtitletools.com,click2win.xyz,iade.com,ebesucher.ru,streamporn.pw,javpornsex.com,habblet.city,miniroyale2.io,ad-doge.com,bitminer.biz,blkom.com,devactual.com,fshost.me,androidgreek.com,moneyexcel.com,playtube.ws,novagente.pt,vod-platform.net,filmozercy.com,nightpoint.io,panjiachen.gitee.io,kangkimin.com,pdd.by,teepr.com,crypto-lovers.club,mangadods.com,getmega.net,dj-figo.com,animeblkom.net,arabianbusiness.com,innemedium.pl,ntsafelink.blogspot.com,tv8.com.tr,onlinetvrecorder.com,mypussydischarge.com,mshares.co,ustreamy.co,oemdtc.com,healthymaster.xyz,newdeaf.club,wwwfotografgotlin.blogspot.com,fivemleak.com,ivg.it,studyqueries.com,nightfallnews.com,tutorialforlinux.com,imedikament.de,laufpix.de,kochamjp.pl,m3u-cdn.live,mp4upload.com,technologywindow.com,freebcc.org,pestleanalysis.com,yabiladi.com,servedez.com,why-tech.it,firefile.cc,hd-streams.org,xnalgas.com,imgtorrnt.in,xpaja.net,enterinit.com,habbokritik.de,suj.nu,net4ts.com,como5.com,macx.cn,plugincim.com,urlpay.net,digitallearn.online,u-play.pro,lightnovelworld.com,pspstation.org,exfaucet.com,sh7.ch,musicradar.com,thaiphysicsteacher.com,leechpremium.link,klyker.com,neuroeconomia.net,infotelematico.com,cdnvideo.me,playhydrax.com,compressnow.com,hydrax.net,radiotunes.com,fruitlab.com,turkcedersi.net,formasyonhaber.net,mirrorace.com,warda.at,picmix.com,infoua.biz,minecraftmin.net,domowe-wypieki.pl,konten.co.id,fanseriesthaisub.com,cinafoniaci.com,heliohost.org,yannik.biz,hargawebsite.com,series-d.com,moneyhouse.ch,twi55.com,sorumatik.co,alsumaria.tv,kwikmotion.com,yamareco.com,cshort.org,batch.id,receivesms.co,smszamok.ru,waaw.tv,czxxx.org,coinhub.pw,bold.dk,chd4.com,tieusunguoinoitieng.com,phys-kids.com,simple-devices.ru,javjack.com,xko.red,5urokov.ru,cpopchanelofficial.com,satoshimonster.com,capage.in,okcaller.com,satoshihero.com,yhocdata.com,1000ps.at,mexa.sh,queenfaucet.website,techspite.com,malzemebilimi.net,hindimetoons.net,scenelife.org,hqq.tv,techperiod.com,unityassetcollection.com,tribuntekno.com,paladinsdecks.com,letsdownloads.com,autocar.co.uk,upvid.live,gdforum.freeforums.net,primochef.it,animexxx.org,109.163.231.44,123link.biz,123link.pro,123link.pw,123link.vip,7plus.com.au,99businessideas.com,adbeat.com,aeonsource.org,andaluciainformacion.es,androidaba.com,androidiani.com,androidmakale.com,anime-odcinki.pl,anime-update2.site,anime47.com,animeku.tv,animextre.me,animeyt.tv,animeyt2.tv,anitubebr.biz,aphim.co,atresplayer.com,autoroad.cz,azdictionary.com,bagusdl.pro,bdix.org,bebesymas.com,bejav.net,bemad.es,bg-gledai.tv,bitco.world,biters.io,bitsilver.io,bituniverse.net,bitvin.org,boas.io,bombuj.eu,bombuj.tv,broncos.com.au,bs.to,camiris.com,cashrewards.com.au,channel4.com,chelsea24news.pl,citytv.com,clk.ink,closeload.com,commentimemorabili.it,coolgames.com,cpmlink.net,crazyhd.com,cryptoracers.com,cuatro.com,d-navi004.com,dalatmongm.site,dallasnews.com,damnripped.com,delivembed.cc,developerinsider.co,di.fm,diariodeleon.es,dickpritchettrealestate.com,dingit.tv,ditchthecarbs.com,divinity.es,diysideas.com,donnaglamour.it,doramasmp4.com,dramaz.se,dustreaming.com,dvdgayonline.com,eclypsia.com,ecuestre.es,egprices.com,egybest.site,elderland.de,elecgate.com,elektrobike-online.com,eltiempohoy.es,kijk.nl,energytv.es,eskago.pl,estrenosdoramas.net,eurosport.co.uk,eurosport.com,eurosport.de,eurosport.dk,eurosport.es,eurosport.fi,eurosport.fr,eurosport.nl,eurosport.no,eurosport.se,eurozpravy.cz,ez3c.tw,facepunch.io,factoriadeficcion.com,farmeramania.de,faucetgame.com,fetishpapa.com,filesharing.io,fisp.io,flix-anime.com,flooxer.com,fm.tuba.pl,food-tiger.de,freaktab.com,freepsdvn.com,freespinwins.com,freevpn.us,funimation.com,futbin.com,gagetmatome.com,gamefaucet.com,gamesource.it,gametop.com,gastroguide.de,geekrar.com,genbeta.com,getpaidtoshare.money,giga74.com,gisher.org,globe24.cz,globo.com,gobits.io,gocolumbialions.com,gotceleb.com,grazia.fr,gs.by,gsmturkey.net,habboin.net,healbot.dpm15.net,highresolutionmusic.com,huynhhieu.com,idealsilhouette.com,ilpuntotecnicoeadsl.com,indianrailways.info,inmanga.com,inside-handy.de,intercelestial.com,iphonesoft.fr,iphonetweak.fr,iptvliste.com,j-talk.com,javhiv.com,javout.net,jazzradio.com,jbzdy.net,jbzdy.pl,jntufastupdates.com,journaldev.com,jovempan.uol.com.br,karanpc.com,karwan.tv,ketubanjiwa.com,kmbc.com,knowyourmeme.com,kodvizit.com,kphim.tv,kuchnia-domowa.pl,ladige.it,lasvegassun.com,latinoweb-tv.com,lavozdealmeria.es,league-funny.com,ledauphine.com,leitesculinaria.com,lifehacker.com,liketvw.com,linkerpt.com,livesports.pw,logrosxbox.com,lols.gg,loveawake.com,mackie100projects.altervista.org,marimo.me,matchat.online,mc-premium.org,medyaradar.com,melonesinpreneur.com,meutimao.com.br,mitti.se,mmorpg.org.pl,mobilesringtones.com,mobinozer.com,mokeedev.com,moneymag.cz,mooma.sh,motorradonline.de,moviesunuss.net,mp4mania.xyz,mrwebmaster.it,mshare.io,mtled-novels.com,mtmad.es,muhendisimaaslari.com,mx-sh.net,myanimelist.net,mylivesignature.com,myshorturls.blogspot.com,myvidster.com,nadaguides.com,najserialy.to,ncaa.com,newdeaf.online,newz.dk,nrz.de,odkrywamyzakryte.com,olympine.com,onvasortir.com,openloadtv.co,opensnow.com,orgasmnaut.com,ouo.io,outdoor-magazin.com,overwatch.pl,papalah.com,peliculasputlocker.co,pga.com,pikio.pl,pitbullofficial.com,play.anghami.com,playview.io,pogo.com,polscygracze.pl,popcornflix.com,popcorntv.it,premium-link.ninja,proapkmod.com,professionaltutorial.com,promobil.de,publico.pt,purposegames.com,quoka.de,racingsportscars.com,radiocut.fm,raid-data-recovery-link.com,rapidrar.com,replica-watch.info,reponsesphoto.fr,rijmwoordenboek.net,roadbike.de,robot-forum.com,ronron-blog.com,rte.ie,runnersworld.de,s-kip.eu,saglamindir.net,secure-links.info,sedsports.com,seehd.pl,seetv.tv,sentireascoltare.com,shareinfo.pl,shencomics.com,shinden.pl,shink.me,shon.xyz,sk-ip.ru,sms-empfangen.com,softonic.com,sol.dk,splinternews.com,sport-tv-guide.live,stars24.cz,surfsees.com,svapo.it,syreop.com,tagblatt.ch,teachios.com,techperiod.com,tecnotutoshd.net,telecinco.es,telegraph.co.uk,thaivisa.com,thechive.com,theonion.com,theroot.com,thesurfersview.com,thetakeout.com,today.it,torrentdosfilmeshd.net,trecetv.es,trendenciashombre.com,truyenaudiocv.com,tsa-algerie.com,tubitv.com,tvserial.it,upost.info,vacation-et.work,vergol.com,veuclips.com,vidoza.net,vipshare.co,viuclips.net,vmf.edge-apps.net,vpnssh.net,vtvgiaitri.vn,watchseries1.cc,weatherx.co.in,win10.vn,windows7forum.pl,winhelp.us,wordgames.com,worldfreeware.com,wpteq.org,xatakandroid.com,yafud.pl#$#.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links { display: block !important; } +law.com,topcultured.com##h3 +@@||mac4ever.com/min.php?*/javascript/cookieconsent.js +fontanka.ru##section[class]:has(> div[class^="links_"] > a[href="https://vk.com/fontanka?from=news_share"]) +nutraceuticalsworld.com#?#.box-wrapper > .pull-right > .well:has(> .panel > .media-list div[id^="related-content-box-"] > [id^="google_ads_iframe"]) +||b6f16b3cd2.com^ +||impactradius-go.com^ +||d39xxywi4dmut5.cloudfront.net^ +sextfun.com###top-navbar.wrap +||admiredexcrete.com^ +@@||api.adguard-dns.io/api/ +||3dmax8.com/jiaoche +||jingwuhotel.com/static/xbiquge +sensualgirls.org##div:has(> h2 > a[href*="/click/o/66beauty/"]) +courant.com##div[data-pb-name="DFP Ad"] +||common.blogimg.jp/stf/common/banner/ldshopping_001.jpg +||postaffiliatepro.com^$popup,third-party +trend.at#$#body { overflow: visible !important; } +||getiton.com^$third-party +ya.ru,yandex.*###distr-pcode-container +||notifications-update.com^$popup +youtube.com##.ytd-merch-shelf-renderer +||fgnfpnae.icu^ +1800contacts.com#%#//scriptlet('set-cookie', 'hasSeenEmailCaptureModal', 'true') +##.AdCompactheader +tube8.com##[data-spot] +###polityka-cookies +yesvids.com#%#//scriptlet("set-constant", "popped", "true") +solovei.info,topwar.ru##.ya-news +://adsrv. +||vprtrfc.com^ +itv.com##.cookie-policy +||24affiliates.com^ +/guangg/* +||ardslediana.com^ +taxidrivermovie.com##.adboard-top +itmo.com##.aside-game-icon-box +images4u.cc##.adssquareag +||dreamaquarium.com^$third-party +analyticsindiamag.com##main[data-elementor-type="single-post"] > section.elementor-section:has(> div.elementor-container > div.elementor-column > div.elementor-widget-wrap > section > div.elementor-container > div.elementor-column > div.elementor-widget-wrap > div.elementor-element > div.elementor-widget-container > a[href="https://apps.apple.com/in/app/analytics-india-magazine/id1502685162"]) +||andhrawishesh.com/images/banners/hergamut_ads/ +obc.co.jp##.smart-popup +###google_ads_frame +||nwwrtbbit.com^ +||54e4e31106.6e10268cd2.com^ +regal-tr.com,bimedis.com,vestel.com.tr##.js-cookie-modal +softdaily.ru##.advertisement-ad +thebarcodewarehouse.co.uk,garantikitap.com,webkitap.com,imge.com.tr,okurkitap.com,trthaber.com,trtspor.com.tr,calik.com,telekom.hu##.cookie-policy-container +||nonfictiontickle.com^ +ivanovonews.ru##.news-detail__panel > div.news-detail__panel-col:has(> div.news-detail__panel-bottom > a[href^="https://dzen.ru/ivanovonews.ru?"]) +||tnaflix.com/*.php?*idzone$script +datasciencelearner.com#$#html { overflow: auto !important; padding-right: 0 !important; } +##.gallery-slide-ad +vtubernews.jp##.rss-sub +||0157.l5eamr17d.com^ +||wasp-182b.com^ +||api.smh.com.au/graphql?query=query%20UpdatedPaywallRulesQuery +||1f84e33459.com^ +||livecam.com^$third-party +||operaharvestrevision.com^ +@@||cdn.privacy-mgmt.com/wrapperMessagingWithoutDetection.js$domain=gentside.com|ohmymag.com +timesofindia.indiatimes.com##[data-sp-click="stpPgtn(event)"] +||mintscan.io/_next/static/image/assets/banner/ +||bkxuprh.cn^ +forusex.com##a[href^="http://redheartnext.com"] > img +odido.nl#@#.cookie-content +otomobilgunluklerim.com#$#.adblockalert { display: none !important; } +||forexprostools.com^$third-party +||houstonbbs.com/data/ad/ +huya.com##a[class^="Ad--"] +||ovdimin.buzz^$popup +bestfree.ru##.distribution_bottom +rg.ru##.b-yandex-zen +||cadke.xyz^ +editingcorp.com##.default-sidebar > section[id^="block-"] +||titan007.com/images/item.gif +||hwhqbjhrqekbvh.com^ +archive.org##app-footer +19lou.com##.pop-ad +ads.bdcraft.net#$##showSkip { display: block!important; } +||avlcc.ajscdn.com^ +zeenews-india-com.cdn.ampproject.org##.co-container#warning-message +||showcasethat.com^$popup +||transitionfrenchdowny.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.firework-wrap +watson.de##div[class*="watson-teaserheld__"] > div[style="min-height: 60px;"] +||psoageph.com^ +||fjhrq.xyz^ +||axbofpnri.com^ +||ijogkae.churchserviceplanner.co.uk^ +||sharkyporn.com/img/11490.gif +zebranovel.com##div[class^="stpd_pandanovel_"] +eightforums.com##.p-body-pageContent > div[style^="min-height:"][class*="ad"] +worlddata.info##.adtg +meijumi.net##.widget_metaslider_widget +||decswci.com^ +||eontent.powzerz.lol^ +anime-fast.online##.text-center > a[target="_blank"] > img +||eolink.aomg5bzv7.com^ +||adpaths.com^ +||delfsrld.click^$document +||xfqynrp.cn^ +replyua.net##a[href="https://t.me/replyuanet"] +wiocha.pl###tnewsm +moviesroom.pl##a[href^="https://kloti.pl"] +###header > a[target="_blank"] > img[style="width:100%;height:60px;margin-bottom:2px;"] +delfi.lt##img[alt="topsport"] +||jkls.life^ +themoviesflix.co##div[style^="width:320px;height:100px;"] +@@||manchetehoje.xyz/*/*.php$stealth +||howtogeek.com/emv2/ +##.cazAd +||360protected.com^ +||pacificvernonoutskirts.com^ +||sexhay69.top/ads/ +androidmtk.com##.in-article-adsense +/c.js#pid=$script,third-party +cloud.tencent.com##.cdc-group-qr-card +||trpool.org^$document +||meekscooterliver.com^ +##.widget_wp_ads_gpt_widget +###dfp-middle +||3221dkf7m2.com^ +||cdn.iphoneincanada.ca/wp-content/themes/iphone/js/JDAB.js +||streamsport.pro/hd/popup.php +baidu.com#?#.c-gap-bottom-small:-abp-has(>a>div>div[class^="jr-stock-open-account-"]) +||d2eklqgy1klqeu.cloudfront.net^ +f1i.autojournal.fr#?#.list-ms-item > aside.widget:has(> div.textwidget > ul.reseaux_sociaux_am) +myfanserials.net##noindex > div[style="text-align: center;"] +@@||dejure.org/jcg/banner-ad.js +@@||adsatt.espn.starwave.com^$domain=livenewschat.eu,~script +grammarly.com#$#div[class$="--popup-popupEnterActive"] { display: none !important; } +helmiau.com#%#//scriptlet("abort-current-inline-script", "document.createElement", "404") +reolink.com##.reo-float-wrap-left-bottom +||readiong.net^ +||raw.githubusercontent.com/easylist/easylist/master/docs/1x1.gif +||dw.xcar.com.cn^*.gif? +blockchain-council.org#$##newsletterpopup { display: none !important; } +@@||geolocation.onetrust.com/cookieconsentpub/v*/geo/location$domain=channel5.com +||cdn.snigelweb.com^ +##.ad__content +@@||xfinity.com^$stealth +raspberrytips.com#$#html { overflow: visible !important; } +letmeread.net#@##google-ad +seznam.cz##li[data-analytics-entity-type="nativeSspAdvert"] +world4ufree.*##a[href="https://buycheaphost.net/"] +###imPopup +logitechg.com,logitech.com#$#body { overflow: auto !important; } +fitness-pro.ru###overlay__one +@@||passport.csdn.net/login^$stealth=referrer +wpolityce.pl##.nu-newsletter +cyrulicy.pl#$#body { overflow: auto !important; } +##.logoad +@@||takprosto.cc/wp-content/plugins/complianz-gdpr-premium/assets/css/cookieconsent.min. +||kyemwo.xyz^ +kontur-extern.ru#$##lightbox-veil { display: none !important; } +||51cto.com/js/activity_pop.js +||reactjspdf.com^ +dobrotsen.ru##.subscribe-right +||img.mikudm.net/img01/MP3/GG/20240415_CPS_960X75_general.gif +||ciksolre.net^ +/plugins/ad-ace/assets/js/slot-slideup.js$script +superwatchman.com#%#//scriptlet('remove-class', 'cookies-shown', 'body') +||adoptum.net^ +||discussedfacultative.com^ +amalgama-lab.com###quality +||perennialmythcooper.com^ +###content-ad-side +@@||sh.st$generichide +||gritaware.com^ +eol.cn,firefoxchina.cn,site.baidu.com##.popup +riwyat.com,vernamagazine.com,filmzone.com,rawneix.in,mangacrab.com,metalnaveia66.com,bollywoodhindi.in,flinsetyadi.com,theturtleislandnews.com,audiotools.in,animeactua.com,audiobookcup.com,7misr4day.com,michaelemad.com,lazytranslations.com,samuraiscan.com,activationkeys.co,world4.eu,elektrikmen.com,wartaterkini.news,iptv4best.com,sysnettechsolutions.com,aihristdreamtranslations.com,audioreview.m1001.coreserver.jp#$#body.unselectable { -webkit-touch-callout: default !important; -moz-user-select: text !important; -webkit-user-select: text !important; -ms-user-select: text !important; -o-user-select: text !important; user-select: text !important; -khtml-user-select: text !important; } +na-2.gunwars.io,na.gunwars.io,na.throwz.io##div[style^="width:336;"][style*="height: 280;"] +||ywhws.cn^ +||discourseoxidizingtransfer.com^ +||rouhaveneverse.info^ +tyla.com#@#div[class*="margin-Advert"] +###right_couple +oceantogames.com,themorningtribune.com##center > a[target="_blank"] +||mobtyb.com^ +iraw.rcc.jp##.comment_app_info +||glaijauk.xyz^ +||cpm.media^$third-party +hyperhost.ua###sidebar-right > .templatemonster-block +@@||chefkoch.de/ads/werbe-banner/doubleclicktag.js +@@||widget.pico.tools/static/js/bundle.js$domain=escapistmagazine.com +||aigniltosesh.net^ +eveeve.jp##.m-headerOpenApp +##.recent_ad_holder +jpost.com##div[class^="__ADORIC__"] +||bett2you.net^ +pigglywigglystores.com##.fp-item:has(.fp-tag-ad) +||canncentral.com/wp-content/themes/canncentral/assets/js/arcads.js +||ls.hongaries.com^ +techrepublic.com##.ta-campaign-widget--banner[data-campaign-fields*="newsletter"] +motorsport.com##.takeOverAdLink +douglas.at,douglas.be,douglas.ch,douglas.cz,douglas.de,douglas.es,douglas.hr,douglas.hu,douglas.it,douglas.nl,douglas.pl,douglas.pt,douglas.ro,douglas.si,douglas.sk##.swiper-slide:has(button[data-testid="sponsored-button"]) +toro.it#?#.single-blog-wrapper .code-block:not(:has([id^="iol-player-"])) +abplive.com##.ads-320x250 +yeswegays.com#?#.header > .nav > ul > li:has(> a[href^="https://www.flirt4free.com/"]) +donotpay.com##div[style="margin-bottom: 55px; margin-top: 55px;"] +modrinth.com##.normal-page__content [href^="https://nodecraft.com/"] > img +mdhstream.cc,taradinhos.com,sexseeimage.com,hotxfans.com,dotadostube.com#?#.video-block-happy:upward(1) +btdb.*#%#//scriptlet("abort-on-property-write", "zoneSett") +aminoapps.com##.overflow-scroll-sidebar > div +||goodcome.com.tw/block/ad/rndtopad.php +russian.rt.com##.Popup-zbook +||ourcommonnews.com^ +###player_middle_ad +$script,third-party,domain=colamanga.com +||pub-*.r2.dev^$domain=extramovies.ist +start.me##.app__message +cnn.co.jp#$##overlay { display: none !important; } +||celeb.gate.cc/assets/bilder/icloudhack +jcconcursos.com.br##.jc-lgpd-consent +||framingmanoeuvre.com^ +khmertimeskh.com##.swiper-container-horizontal +zap-hosting.com###social-media-button-instance-container +###ad-container-inner +ch3plus.com#$#.term-condition { display: none !important; } +youtube.com##ytd-popup-container ytd-mealbar-promo-renderer +||pugsgivehugs.com^ +aaaweb.cn##a[href$=".yhzu.cn"] +||qsptv.com/tpl/newstyle/js/extension.js +-1316632262.cos. +@@||smsonline.cloud^$generichide +naughtymachinima.com#%#//scriptlet("set-constant", "presrc", "") +||m.bombaytimes.com/detector.cms +travel.yandex.*#?#.root + div[class] section[class*=" "] + div[class*=" "]:has(> div[class] > div[class] > div[class] > form[name="MODAL_SUBSCRIPTION"]) +beincrypto.com##a[href^="https://t.me/BeInCryptoCommunity?utm_campaign"] +supersport.com##div[id*="_DSTV_SSZ_Responsive_Supersport_"] +||jiangyahuid.top^ +banknorwegian.de#$#.MuiBackdrop-root { display: none !important; } +###Cookie-Container +||ysesials.net^$popup +babeuniversum.com##.galleryad +tok-shop.hu#@#.cookie-alert +wondershare.com##.d-lg-none +mental-navi.net##.c-flt-banner +/wp-content/plugins/bazz-callback-widget/* +ai18.pics#%#//scriptlet('prevent-fetch', 'adsbygoogle') +talenta.co##.insight--subscribe +##.lazyadslot +houzz.ru,houzz.com,houzz.de##.hz-visitor-consents +||succeedscene.com^$third-party,xmlhttprequest +osuskins.net##body > div[style^="background:"][style*="position: fixed; display: flex; align-items: center; justify-content: center; inset: 0px; z-index:"] +eteknix.com###wrapper > header +@@||widgets.trustedshops.com/reviews/tsSticker/css/light.theme.css$domain=interpack.eu +dictionary.com,thesaurus.com##.fHACXxic9xvQeSNITiwH +||syndicate.payloadz.com^ +slant.co##.SummaryPage-LustreEmbed +||meableabede.click^ +||24w0p.com^ +||feb6262526.com^ +uploadrar.com#?#div[class^="banner"]:not(:has(> div#commonId)) +##.vce-ad-container +||img3.126.net^ +hexlet.io#?#main > section[class^="container"]:has(> div.row > div[class^="col-"] > div:contains(Рекомендуемые программы)) +cosplay18.pics#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||leadback.ru^$third-party +||loktrk.com^ +###leader-companion > a[href] +||excelfriendsdistracting.com^ +sleazyneasy.com,watchfree.to,vidbull.com#%#if (typeof localStorage != 'undefined' && localStorage.setItem) { localStorage.setItem('InfNumFastPops', '1'); } +fonelab.com##.product.green +hackyouriphone.org##.sweet-overlay +||cdn*.editmysite.com/images/site/footer/footer-toast-published-image-*.png +||logicconfinement.com^ +||kankanwu.com/xuxu/ +||patsincerelyswing.com^ +||show-creative1.com^ +ladenzeile.de##.ncta-Newsletter_Popup +dl.pconline.com.cn##.links > p:not([class]) +||tivapheegnoa.com^ +||gohere.pl^ +echofm.online#?#.support:has(> div[class^="sc-"] > div[class^="sc-"] > a[href^="https://apps.apple.com/ru/app/"]) +binance.com#?#body > aside[class^="css-"]:has(> a[data-bn-type="button"][href^="https://ftp.binance.com/"]) +opportunitydesk.info#?#.td-ss-main-sidebar> aside.widget:has(> a[href^="https://iubh.prf.hn/"]) +wacul-ai.com,vencon.ua##.fixed-bottom-banner +##.ad-block-section +satkurier.pl##div[id^="m_inside_"] +||sidsaignoo.net^ +reurl.cc###renews +###publicidadeLREC +##.adspace-336x280 +##.googleafc +bravotube.net##span[id^="BT-Native-"] +||replaceroute.com^ +/adsystem/* +mmafighting.com#%#(function(){if(-1==document.cookie.indexOf("_chorus_privacy_consent")&&document.location.hostname.includes("mmafighting.com")){var c=new Date, d=c.getTime(), date = new Date(d + 365 * 60 * 60 * 1000); document.cookie="_chorus_privacy_consent="+d+"; path=/; expires=" + date.toUTCString(), location.reload()}})(); +##.taboolaloader +||jo.lesbianbliss.com^ +airav.cc###Panel_GambleZone + .Hide_For_JP_AND_EN +###piao_div_0[style*="width:140px;"] +||static.c4assets.com/all4-ad-code/latest/adverts.js +speakingtree.in##.amazonProduct +streamer4u.site#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||poczta.interia.pl/next/adv,advKeyword$subdocument,important +||semawur.com/download3.png +rulesofcheaters.net,ontools.net,teknopaid.xyz,redirect.dafontvn.com,5ggyan.com,majidzhacker.com,links.iembra2or.com,ph.apps2app.com#%#AG_onLoad(function(){setTimeout(function(){if("undefined"!==typeof aesCrypto&&"function"===typeof aesCrypto.decrypt&&-1 div[class]:has(> div[class] > div#dss) +||ytvrtrya.xyz^ +||cintent.streanplay. +||d9qjkk0othy76.cloudfront.net^ +||zlvlciv.xyz^ +unogs.com##.nordvpnAd +||2ccc.com/images/aobi.gif +||zsjxwj.com^ +veolia.fr,aiesec.org,globalhome.solarmanpv.com,pepperstone.com#$#.ant-modal-root { display: none !important; } +||jfkc5pwa.world^ +bladeandsoul.com##div[id^="gCookieConfirm"] +frozenway.games,gbi.llc,dilbert.com,balifactoryoutlet.com.au,rinna.co.jp,mydoggieboosters.com,nikhilbharatshikshaparisad.in,7818448870.com,ai-aitech.co.uk,419.consulting,europeanresolverpolicy.com##.widget-cookie-banner +||3boys2girls.com/newfile/image2010/banner_housead_ +||bungalowlame.com^ +||baidu.com/smalllog/ +zippymoviez.cc###h97e +||172.255.6.135^$popup +myfreemp3.best##a[href="/a"] +||a.jamni.xyz^ +banglatech24.com##.extra-cls +notube.net#$##download2-add { display: none !important; } +scrolller.com#%#//scriptlet('json-prune', 'data.getAffiliateItems') +whatismyipaddress.com##.ip-detail div.call-to-action +||rapeboard.net/dep_bdsm.png +037hdmovie.com#?#.leftC > .filmborder:has(> div[style="text-align: center;"]:only-child > a[href][target="_blank"]) +@@||versand.ebay.de/druck/$document +roskomsvoboda.org###post-foreign-agent +###cookieInfoDiv +||zetadeo.com^ +||jmd.co.jp/api/linkimg.php?imgid=JMD_Application_ +||xxxvjmp.com^ +||epsashoofil.net^ +ah-me.com###allIMwindow +||bobgames-prolister.com^$document +@@||bhaskar.com/adblock/*.js^ +meteomedia.com#$#.taskbar { top: 0px!important; } +jetcost.*#$##ck-modal-container { display: none !important; } +smit-sport.de,moebel-akut.de#$#div[data-feature="Web.Core.Feature.PrivacyCategory.Dialog"] { display: none!important; } +||taigasdoeskin.guru^ +@@||uu.res.netease.com/pc/zt/*/img/ad_ +zaiks.org.pl##div[class^="cookiesInformation_wrapper_"] +||torrenteditor.com/img/graphical-network-monitor.gif +ilfattoquotidiano.it#?#.fq-extra-pushbar__content:has(> div.ifq-dfp > div.ifq-adv) +##.ad-container--hot-video +/frm_adv.aspx +@@||cdntvn.pl/adscript.js$domain=player.pl +##.blogroll_wrapper2 +||donateyowl.shop^ +||diseaseexternal.com^ +||superzarabotki.com/notify/ +###content-right-ad +||hujiang.com/ciku/getLesson +##.adboxo +goodprice4you.ru##.call-order +||adjug.com^$third-party +||cams.gratis^ +||elongatedmiddle.com^ +gamesrepacks.com##.nksub_tab +||s.rmimg.com/*.gif|$domain=nodeloc.com +nationalgeographic.com#$#body[class^="Scroll"] { overflow: auto !important; top: 0 !important; position: static !important; } +cinafoniaci.com#?#.tm-sidebar-b > .uk-panel > center:has(> a[href][target="_blank"] > img) +||savingsupervisorsalvage.com^ +mp4upload.com#?##container > div[style] > .container > div:has(> script[src*="apus.tech"]) +||tangrenjie.tv/gg/ +glavcom.ua##.kyk_menu +/wkp_cookies.js +smutindia.com##.container .row .orange + .yellow +||harrier.scdamerica.com.au^ +||calamityfortuneaudio.com^ +||cryingforanythi.com^ +komikindo.tv##.setdah +##.pro-molnk +tg.la7.it##.region > #block-block-21 +bloginkz.com#%#//scriptlet('adjust-setInterval', 'timer', '', '0.02') +rulesofcheaters.net,nurul-huda.or.id,thizissam.in,whatmyuseragent.com,embetronicx.com###LTF_GDPR_Compliant +creativeuncut.com###g_abox +||cutescale.online^ +movieverse.co#@#.ads_single_center +yellowpages.pl###section-cookies +eastday.com##.left-suspension +tutorialink.com##div[class^="tutorialink-ad"] +pujia8.com##.ad740 +||crlcw.link^$popup +||kawhopsi.com^ +kiro7.com#?#.row > div.wrap-bottom:has(> div.arcad_feature) +||aa2e7ea3fe.com^ +||mssl.fwmrm.net/libs/adm/*/AdManager.js$domain=eurosport.*,important +###ad_336 +bs.to#%#//scriptlet("abort-current-inline-script", "Date", "a.href,a.href") +msn.com#?#.todaystripe > ul > li:has(> .nativead) +||858e7ade92.06a21eff24.com^ +olevod.com##.B1L +soo.cool###PageOver[onclick="CloseDialog('ideaPopupExitOffer');"] +store.steampowered.com#%#//scriptlet('trusted-click-element', '.broadcast_embed_top_ctn_trgt button:has(> svg.SVGIcon_X)', '', '500') +linuxgizmos.com#$#table[align="center"] + center > table[width="100%"] > tbody > tr > td[align="left"] { visibility: hidden !important; } +###sidebar-ads +||rzin90j1pcgi268t.bortanews.com^ +/wp-content/uploads/*.gif$domain=moviedee24.com|123-hd.com|movie2uhd.com|nung2uhd.com|nung2hdd.com|movieshdfree.com|newseries-hd.com|movie22hd.com|moviehdfree.net|dooseries2uhd.com|newseries24.com|serieshd24.com +||b1181fb1.site^ +googledrivelinks.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +yahoo.com###sda-LREC2 +||reprimandhick.com^ +||0220.4puuqeh41.com^ +||55.y2sysv81v.com^ +dailymail.co.uk##.ad-wrapper +||bauchleredries.com^ +##.c-header__advert-container +||brillianceherewife.com^ +weathernews.jp##.wni-appMenu +investordaily.com.au#?#.b_yrl:has(> #mc-embedded-subscribe-form) +||codezap.com^ +||bujz.top^ +||bestcontentuse.top^ +xtube.com###tabVideos > .rowSpace > li.stamp:not(.deleteListElement):not([data-plid]) +||qaynarinfo.az/images/banner +||classickalunti.com^ +moje-gniezno.pl##.additional-advert-special +||ads.yahoo.com^$~image +##.header-ad-box +||rhombicsomeday.com^ +txxxporn.tube##.mangxgxnnaa +||rdsgick.icu^ +423down.com##span > a > b +livescience.com,space.com##.partner-banner +||hallanjerbil.com^ +/adx.php?source=$popup +###cookiesBox +add0n.com#?#.content tbody > tr:first-child:contains(Advertisement) +leza.hu,shop.leet.hu,avplanet.hu#%#//scriptlet('trusted-set-cookie-reload', 'UN_cookie_consent_v2', '%7B%22marketing%22%3A0%2C%22statistics%22%3A0%2C%22personalization%22%3A0%2C%22time%22%3A1710330581%2C%22id%22%3A%2232eadf34568c9a5d5b81d7ada0deac14%22%7D') +##.mb-advert__mpu +###infoCookie +||jxnews.com.cn^*_ad_ +radomszczanska.pl##.l-container--rwd > .l-row > .l-box > p > img[src^="/static/files/inline_images/"] +||app.getbeamer.com^$third-party +lux-okna.com###oktel_popup +/^https?:\/\/(.+?\.)?newser\.com[\/]{1,}.*[a-zA-Z0-9]{3,7}\/[a-zA-Z0-9]{6,}\/.*/$image,domain=newser.com +||gleeglis.net^ +textstudio.co##.premium-banner +shockingmovies.com##body .ads-block-bottom-wrap +##.adv-label +||server18.aomg5bzv7.com^ +disntr.com#?#[style^="font-size:"]:contains(Advertisement) +welt.de,cmp.bike-bild.de,cmp.autobild.de#%#//scriptlet('trusted-click-element', 'button[title="Alle akzeptieren"]') +studio55.fi#@#.column-ad +stopgame.ru#%#//scriptlet('trusted-set-local-storage-item', 'stalcraft_promo_shown', 'true') +qq.com##.main_ad_bottom +finfang.cc,designparty.sx#%#//scriptlet('prevent-eval-if', 'popunder') +reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion#@#.leftAd +@@||static.quantcast.mgr.consensu.org/*/cmpui-popup.js$domain=hideout.co +||zhrrzug.xyz^ +portal.newconceptsgroup.com##.flex-wrap-reverse > div.hidden > .bg-gray-100 +||snuffdemisedilemma.com^ +6oszwqmr.xyz#%#//scriptlet('abort-on-property-write', 'getLink') +@@||gigya.com/comments.getComments$domain=muscleandfitness.com +interestingengineering.com#$##newsletter-modal { display: none !important; } +###divStoryBigAd1 +||oacoagne.com^ +||countertrck.com^$popup +@@||onlinetyping.org/detroitchicago/cmbdv2.js +hromadske.ua##.Mailing +||tafrebadus.com^$third-party +letitbit.net##img[class="mcmp_postrol_img"] +###ad_row +.blog/ads/ +||conidiapewy.click^ +.gif$domain=xn--72czpba5eubsa1bzfzgoe.com +||betnoctowlor.com^ +akhisarhaber.com###base_side form[action^="https://api.follow.it/subscription-form/"] +||inhumanswancondo.com^ +towleroad.com##.towletarget +||tangerinetogetherparity.com^ +||s.acquire.io/*/init.js +surfline.com###sl-header-ad +pornotorrent.eu#%#//scriptlet('prevent-window-open') +||2500sz.com/site/ +health.harvard.edu#$#body[class] { overflow: auto !important; } +||news.ueep.com^ +||exoclick.com^$popup +##.fwAdTags +@@||weather.com/daybreak-today/assets/peel1.ext.df9c55.js$domain=weather.com +freexcafe.com###txtbanner +||xl.demosbattik.com^ +||encouragingpistolassemble.com^ +2345.com###J_gul_yg + .mod +||d37sevptuztre3.cloudfront.net^ +||bghebf.xyz^ +seo-akademiya.com#$#div[class^="mfp-"] { display: none !important; } +bloginkz.com##a[href^="//taghaugh.com/"] +semawur.com##.col-md-12 > div[style="text-align:center"] > span[style^="background-color:#fff;color:"] +@@||cdn.rhombusads.com/js/rh.min.js$domain=spin.com +tagesanzeiger.ch##section[class^="NewsletterBox_"] +36kr.jp##.chimp_magazin_wrap_cstm +||gemfowls.com^ +walmart.ca##[data-automation="flipkartDisplayAds"] +magnet.so###AD +@@||hypercomments.com/api/comments?widget_id=$stealth +interracial.com#%#//scriptlet("prevent-window-open", "about:blank") +||nekto.me/chat/img/gplay. +||4114.k45z7tagm.com^ +||api.brandlabs.ai^ +##.ad--p1 +@@||bitefaucet.com/ads/wp-content/plugins/wp-safelink/assets/$image,~third-party +###alerte_tracking +||dnwx.com/pic_ad/ +hiapphere.com##a[href="http://www.hiapphere.net/exchange/detail/id/2"] > img +euronews.com###sharethrough-ad-medium-up +||hespe-bmq.com^ +vicnews.com##.gam +caixinglobal.com##.caixinAPP +1800petmeds.com#%#//scriptlet('set-local-storage-item', 'emailLightBox', 'false') +hardx.com,21sextury.com##.promobar +saostar.vn##.full-width-banner-ads +offerup.com##.db-ad-tile +||manga18fx.com/bmo/*.php +ustream.to,upstream.to,playtube.ws,ninjakiwi.com##.overlay +filmweb.pl#$#.rodo { overflow: visible!important; position: static!important;} +||studiedabbey.com^ +||td.listdoddart.com^ +||tapir.lindahlstudios.com^ +@@/cdn-cgi/challenge-platform/*/orchestrate/jsch/v$domain=kat.* +meczyki.pl##.collapse-container > .row > .col-lg-4:has(> a[target="_blank"] > .news-item > .news-image > .ads-info) +smartstore.com#$#body { overflow: auto !important; padding-right: 0 !important; } +@@||cmp.osano.com/*/osano.js$domain=clickorlando.com +dyxs11.com,dianyingim.com##.shortcuts-mobile-overlay +||dncnudcrjprotiy.xyz^ +||cokepompositycrest.com^$popup +||shacsda.name^$third-party +||sgg.southcn.com^ +/zzzz/assets/js/common/discor_list.js +cnfol.com###CjAdvBt +###c_agrem +newspointapp.com##.Ad_wrapper +yofreesamples.com##.com-ad +maxthon.cn##.feast-gift-search +123greetings.com###ad_lightbox +||kankantv.*/javascript/thea +##.adsense-left +||rwuannaxztux.com^ +||cnki.com.cn/cnki/js/adrightdetail.js +@@||gstatic.com/images/branding/product/*x/translate_24dp.png$image,domain=translate.googleapis.com +$script,third-party,websocket,domain=52codes.net +bravoteens.com##div[class^="inplb"] +###advtop +##.ad-square +pornhdin.com,pornhd.com##.vp-under-video-spot +.com/js/o.js$domain=qdmm.com|qdwenxue.com|qidian.com +kocaelihaberci.com###emanset +mapquest.com##.sponsored-banner-ad +bok.polsatbox.pl##.showit +||whugeestauva.com^ +algonquincollege.com###fancybox-container-1 +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=netd.com +key-hub.eu###overlay +@@||udn.com/mall/images/spacer.gif? +||horse.usemiso.com^ +||bugleczmoidgxo.com^ +||bromiosgemmula.shop^ +||cabombaskopets.life^ +@@||sakurajav.com/wp-content/themes/teamk/vendor/coCoJS/cookies-enabler.min.js +123-hd.com###banner_top +healthline.com#%#//scriptlet('trusted-click-element', 'div[data-testid="modal"] button.window-close-button') +||tgandmotivat.com^ +gewandhausorchester.de#$#.cs-cookie__wrapper { display: none !important; } +@@||video.externulls.com/key=$stealth +curiositystream.com#?#main ~ div[class]:has(> div.flex > div.inline-block > button:contains(Cookies)) +||obliterateminingarise.com^ +wristreview.com#?##contents-wrap > div.block-wrap-native h2 > span[style]:contains(/NEWSLETTER$/) +tinhte.vn##div[style="width:300px;height:600px"] +anitokyo.tv##div[style="width: 240px; height: 400px;"] +porn300.com#?#.primary-nav > ul.main-menu > li.main-menu__item:has(> a[href^="http://traffic.bannerator.com/"]#tabcams-desk) +||uptostream.com/assets/coinif.php$important +##.advert--background +eurosport.co.uk#$##navigation-wrapper { position: static !important; } +||xmediaserve.com^ +##.videos-ad +lexigram.gr##.col1 > div[style="margin-top: 95px; height: 130px; text-align: center; min-height: 130px; "] > p +###adverts-top-right +map.baidu.com#%#//scriptlet('set-local-storage-item', 'firstEnter', 'false') +##.connatix-wrapper +||amswadloonan.com^ +telegraf.tv,telegraf.rs#%#//scriptlet('set-constant', 'telegrafSettings.noAds', 'true') +159i.com##div[id^="sidebar"] > :not(form) +shopping.yahoo.co.jp###h_app +||uohdvgscgckkpt.xyz^ +||ombfunkajont.com^ +##.ad-slot--top-banner-ad +eurometeo.com##td[width="738"] +abxxx.com##.video__wrapper > div.wrapper > section +||crawlcoxed.com^ +thec64community.online##iframe[id^="ad-"] +movies2watch.ru#%#//scriptlet("prevent-window-open") +shin5noblog.com##.rank-guide +||reachpane.com^ +gatevidyalay.com#?#aside > section.widget-sidebar:has(> div.textwidget > section > form[id^="subscribe-"]) +thecrimson.com,t3n.de#@##adsbox +||bossyinternal.pro^ +kijomatomelog.com##span[style="font-weight: bold;"] ~ a[href^="http://matomeantena.com/feed/"] +_ad_728_ +detik.com##.breaking-detikpagi +tproger.ru##.widget-telegram-feed__type-sobesyabr +||penzcentrum.hu/assets/js/bioep.min.js +yonlendir.whatsaero.com#?#body > hr:has(+ .description + center:contains(/^Advertisement$/)) +nanoreview.net##div[class^="wisinad_only_"] +##[href^="https://join3.bannedsextapes.com"] +||hipals.com^ +marketscreener.com###zppRight2 +$script,third-party,denyallow=fastlycdn.com|doodcdn.co|intensedebate.com|vixcloud.co|cdn.plyr.io|authkong.com|rsc.cdn77.org|linkvertise.com|fastly.net|statically.io|sharecast.ws|b-cdn.net|bunnycdn.ru|bootstrapcdn.com|cdn.ampproject.org|cloudflare.com|cdn.staticfile.org|disqus.com|disquscdn.com|dmca.com|ebacdn.com|facebook.net|fastlylb.net|fbcdn.net|fluidplayer.com|fontawesome.com|github.io|google.com|googleapis.com|googletagmanager.com|gstatic.com|jquery.com|jsdelivr.net|jwpcdn.com|jwplatform.com|polyfill.io|recaptcha.net|shrink.pe|twitter.com|ulogin.ru|unpkg.com|userapi.com|vidazoo.com|vk.com|yastatic.net|ytimg.com|zencdn.net|youtube.com|cackle.me|googleoptimize.com|vuukle.com|chatango.com|twimg.com|google-analytics.com|hcaptcha.com|raincaptcha.com|media-imdb.com|blogger.com|hwcdn.net|instagram.com|wp.com|fastcomments.com|plyr.io|cloudflare.net|rabbitstream.net|x.com,_____,domain=wap.dmwenku.com|m.wfxs.tw|h.fkxs.net|wap.ishuquge.la|m.91zww.com|592mh.top|dubuxiaoshuo.com|clm410.buzz|bookbl.com|shuku99.com|qiyoudy2.com|1yydstxt178.com|rouman5.com|feijisu20.com|iqb5.org|wap.xkushu.com|spoilertop.com|booktxts.com|bixia33.com|rouwenwu19.com|91porny.com|yznnw.com|vodtw.la|ckplayer.vip|uuread.tw|fengchedmp.com|aeahsck.cc|xiaoshubao.net|69xx03608.xyz|wap.yushuwu.cloud|twbook.cc +@@||deep-vision.cloud/graphql$stealth=3p-auth,domain=doveze.cz +||jsdelivr.vip^ +cissamagazine.com.br##.informativo-lgpd +hackster.io###article_page_simple_ad_portal +w3schools.com###right > div#internalCourses +hindustantimes.com##.moreFrom +naekranie.pl##.article-header > .vod-img.mobile > a[target="_blank"] > img +webtools.fineaty.com##div[class*=" hidden-"]:has(.adsbygoogle) +gamemodels3d.com##.friends-banner +||nindscity.com^ +||sdk.apester.com/*.adsbygoogle.min.js +mercomindia.com###text-28 +||icilyassertiveindoors.com^ +||imasdk.googleapis.com/pal/sdkloader/pal.js$script,redirect=noopjs,domain=southparkstudios.com +offerup.com###db-item-list a[target="_blank"][data-impression-feedback-url*="&ad_network="] +||wintrck.com^$document +||wereksbeforebut.info^ +@@||openfpcdn.io/fingerprintjs/$domain=uslugaplus.com +iamgujarat.com,eisamay.com,samayam.com,vijaykarnataka.com,indiatimes.com##.wdt-taboola +@@||torrindex.net/images/*.gif$domain=thepiratebay.org +family-fuck.net##.plink +||deferrenewdisciple.com^ +||kuroptip.com^ +bootcamp.uxdesign.cc,itnext.io,medium.com#?#div[role="dialog"] ~ div > div > div > div > div > h2:contains(/^Get an email|Sign up for/):upward(2) +||hdpornvideo.xxx/static/js/abb.js +||certifiedstarveeminent.com^ +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=winknews.com +player.neko-miku.com#$?#ul[data-ads] { remove: true; } +@@||52zy.com/gg/ +seeklogo.com##.centerAdsWp +service.smt.docomo.ne.jp##.bnr_area +evilbeetgossip.com,kyis.com,thesportsanimal.com,wild1049hd.com,wky930am.com##.textwidget +||cyberblitzdown.click^ +proekt.media##proekt-block > proekt-columns:has(> proekt-column.subscribe-bg .subscribe-form) +||garlicice.store^ +||skierastonishedforensics.com^ +||mediaresources.idiva.com/idivage/ +##.ad_wrapper_false +||oysterbywordwishful.com^ +newsmax.com##.nmsponsorlink + [class] +||7ca989e1.xyz^$document,popup +##.category-ad:not(html):not(body):not(.post) +@@||szhr.com^*ad +||theeraufudromp.xyz^ +||morclicks.com^$popup +accuradio.com###pl_leaderboard +@@||shijue.me/advertise/getList? +filezip.cc#$##blockblockB { display: block!important; } +olympics.com,scmp.com##.header-ad-slot +slipstick.com##.embedad +nkreport.jp,nknews.jp###wp-footer > #page-top ~ div[id][class] +||geethaiw.xyz^ +soccer.ru#$##main_body > div#left.sidebar { margin: 0px 0 0!important; } +||togenron.com^ +##.ads_middle +||subendorse.com^$third-party +||superserverwarrior.com^ +||click-rtb2-useast.applabs.live^ +||tingexcelelernodyden.info^ +xxxx.se#%#//scriptlet('set-cookie', 'pu_count', '1') +sogou.com##.bottombar +softpedia.com##a.mgleft_40 > img[width="728"] +||eanddescri.com^ +schecterguitars.com,parts-express.com,red.com##.cookie-warning-banner-view +||sex3.com/player/html.php?aid= +news18.com##.article_mad +###btopads +||zl.apardonslaving.com^ +oantagonista.com###form_captacao_home +okmusi.com##.footer-banner +disco-polo.info##.text-center > span[class="font8 text-muted"] +||leafy-feel.com^ +##.cookie-layer-visible:not(body):not(html) +||mindlessmark.com^ +||tighternativestraditional.com^ +dehn.at,dehn.de#$#.dehn-cookieconsent-overlay { display: none!important;} +||camsitecash.com^ +/ad-provider. +||zangaisempo.net^ +||1i8c0f11.de^ +northamptonchron.co.uk,blackpoolgazette.co.uk,lep.co.uk,scotsman.com,shieldsgazette.com,thestar.co.uk##div[class^="AdLoadingText"] +infopedia24.com#%#//scriptlet("adjust-setInterval", "counter--", "", "0.02") +tinyppt.com#%#//scriptlet("set-constant", "google_jobrunner", "noopFunc") +||furnishsmackfoolish.com^ +||olawa24.pl/media/campaigns/files/$image +##.single_ad_300x250 +searchengineland.com##.nl-inline-form +jaguar.ru,jaguar.com##.notificationBars +kissasian.*##div[style^="float:left; width: 300px; height: 250px;"]:not([class]):not([id]) +18-comicfrieren.xyz,18comic.org,18comic.vip##.modal-backdrop +||thupsirsifte.xyz^ +||merterpazar.com^ +||startpage.com/*/adsense/search/async-ads.js +/adsscript.$script +zzbaike.com##.imglistbg_ad +||brief-tank.pro^ +||suffixreleasedvenison.com^ +pcgamingwiki.com##.home-gamesplanet-promo +||mp4ba.net/static/js/mp4ba.js +bog.ac##.sidebar-url +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws##.pdp-psyv +||haszon.hu/images/banners/ +1movietv.com##li[onclick="frame('/favis/redcash.html');"] +parlamentnilisty.cz##.aoad +familyporn.tv##.textlink +||baggvon.icu^ +||relativefraudulentprop.com^ +kobo.com##.gdpr-consent-wrap +||adt100.com^$third-party +prowebscraper.com#%#//scriptlet('set-cookie', 'inc_optin_popup_long_hidden-1_417', '1') +||u1011.com^ +||adstik.click^$popup +demonoid.piracyproxy.biz#?#.main_content td[class][style^="background-color:"] > [class][style^="background-color:"][style*="visibility: visible !important"][style*="position: relative !important"] +theglobeandmail.com##div[class^="BaseAd_"] +sks-auto.ru##.jllikeproSharesContayner +studysmarter.de#%#//scriptlet('trusted-set-cookie', 'intent', 'opened') +tomsguide.com###article-body > .hawk-nest +||paydotcom.com^$third-party +||misuseproductions.com^ +||sahandkeightg.xyz^ +vlxx.day##.catfish-bottom +rtlplay.be#@##onetrust-consent-sdk +onleihe.de#@#.cookiePopup +careerkarma.com##.ck_box_1 +##.content_ad_head +||searchresultsadblocker.com^$document +||coffeemildness.com^ +###taboola-below-homepage-thumbnails-3 +##.m-balloon-header--ad +gothamist.com##.leaderboard-ad-backdrop +||ungillhenbane.com^ +||sasontnwc.net^$popup +||roughviolentlounge.com^ +@@||filecrypt.cc/js/ad.js^ +baidu.com##.game-adv-fram +wear.jp###ftrAppDownload +smods.ru###ab-warning +dailymail.co.uk##div[popupposition="BOTTOM_RIGHT"] +##a[href^="https://a-ads.com/"] +kartaplovdiv.com##.play-video +||alecclause.com^ +||cattle.spiral11.com^ +||attractwarningkeel.com^ +###oemaceptacion +architecturesideas.com##.linkpub_right_img +||apritvun.com^ +||slview.psne.jp^ +||optnx.com^$popup +gumtree.com###partnerships +||lianmen1.joyyang.com^ +||dariolunus.com^ +hrodna.life##.download-pwa-box +jq22.com##.fdad +||secthatlead.com^$popup +||hornyjourney.com/fr.js +||gynietrooe.com^ +||ud.luniertithers.com^ +meubella.nl##.cnotice +||clickterra.net^ +||nindsstudio.com^$popup +insideevs.com,motor1.com##.apb +||karponews.com^ +||discord.me/assets/img/units/digitalzealot_ad.png +||mylust.com/assets/script.js^ +###tfm_admanagerTeaser +||rankpeers.com^$popup +pinterest.*##.Jea.OVX.QLY.Rym.ZZS._he.feh.hA-.jzS.p6V.qJc.s7I.wYR.zI7.iyn.Hsu[style*="z-index: 10000;"] +@@||go.ezodn.com/tardisrocinante/lazy_load.js?$script,domain=raiderramble.com +##a[href*=".pcjx365.com/"] +##.ad--articlemodule +##.adsDesktop +@@||10drives.com/downv*.php$stealth +pngtree.com##a[data-huejs="enterprise_hours_left"] +xxxymovies.com#?#h4:contains(Sponsored Advertisement):upward(2) +||frendz4m.org/arlinablock.js +##.adv-mpu +||usuaryyappish.com^ +mangarock.com#?#div[role="presentation"] > div[id^="vertical-page-"]:has(> div[class]:not([style]) > a[href="/membership"]) +kumi.cn##.ad64060Box +||hotlink.cc/promo/*.gif$image,domain=1069boys.net +yelp.at,yelp.be,yelp.ca,yelp.ch,yelp.cl,yelp.co.jp,yelp.co.nz,yelp.co.uk,yelp.com,yelp.com.ar,yelp.com.au,yelp.com.br,yelp.com.hk,yelp.com.mx,yelp.com.ph,yelp.com.sg,yelp.com.tr,yelp.cz,yelp.de,yelp.dk,yelp.es,yelp.fi,yelp.fr,yelp.ie,yelp.it,yelp.my,yelp.nl,yelp.no,yelp.pl,yelp.pt,yelp.se#?#main[class^="searchResultsContainer"] li h2:-abp-contains(Sponsored) +||directlymilligramresponded.com^ +jekabpils.lv,cvk.lv,seplp.lv,tieslietupadome.lv,unesco.lv,president.lv,zemgale.lv,aizkraukle.lv,adazunovads.lv,balvi.lv,bauskasnovads.lv,dkn.lv,dobele.lv,gulbene.lv,jurmala.lv,kraslava.lv,limbazunovads.lv,livani.lv,ludzasnovads.lv,ogresnovads.lv,preili.lv,ropazi.lv,smiltenesnovads.lv,talsunovads.lv,tukums.lv,valka.lv#@#.cookie-wrapper +||naanalle.pl/pb/bid +@@||cookie-consent.ingatlancdn.com/icom-cookie-consent-manager-*.min.js$domain=ingatlan.com +shramikcard.in,cookar.net,cookad.net##.shr_interstitial_container +hao.360.com###pushbar-festival +pcgamestorrents.com,igg-games.com##.uk-margin-medium-top [style] > a[rel] > img +bookscool.com#%#//scriptlet("set-constant", "adblock", "1") +lic.me##.miniplayer +||gallonjav128.fun^ +real.discount##div[class="card"][style="height:300px"] +##.artnet-ads-ad +netdoktor.de##.footer-subscribe-list +fulltv.com.ar###content > div[class]:has(> iframe[src*="ver.gratis/"]) +niuacc.com##.masks +@@||js.driftt.com^$domain=sanity.io +##.sidebar_skyscraper_ad +sputniknews.ru#$#body { overflow: auto !important; } +18adultgames.com###block-107 +##.ad-area-small +||energypopulationpractical.com^ +||fixdynamics.info^ +3movs.com##.player-side +forums.hardwarezone.com.sg#$?#body { overflow: visible !important; } +fotospor.com##.alert-message +bryanadams.com##.promo +||orgyxxxhub.com/eureka^ +ithome.com.tw##.span4:nth-child(8) +zielonyogrodek.pl##.zo-recommended +##.ad-below +##.ad-spot +@@||v.fwmrm.net/ad/g/1$domain=tv3sport.dk,important +animezone.pl#@#.myTestAd +||9669.com^$script,third-party +reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion#@#.AdBar +##.sgsCookies +engblog.ru##.stb-content > p > a[href="https://englex.ru/sign-up"] +||mql5.com/ft/si/*.gif +foreignaffairs.com##.messages--container--bottom +||qq.com/nodeapi/api/ads +||a-m-s.adnonstop.com^ +thatparkplace.com,meteo.it,superguidatv.it,ospedalecristore.it,jbweld.com,worx.com,iriparo.com,iubenda.com,desenhosecia.com.br,emporiokit.it,romevaticancard.com,itsagro.it,ilpost.it,lifeanalytics.it,formu1a.uno,daily.dev,bper.it,dilit.it,dryhop.it,otticamassidda.it,androidiani.com,tag24.it,gaspa-milano.it,salentoltremare.com,kfc.it,bialetti.com,b810group.it,maxfelicitasvideo.com,vanillaos.org,kisene.com,avpasion.com,aziendabanca.it,marionlatex.com,spectator.co.uk,indabox.it,edizionibd.it,105.net,abwab.eu,danielesubrizi.it,gelocal.it,today.it,radiomontecarlo.net,r101.it,villacavalierisrl.it,villabetaniaroma.it,villamafalda.com,ambulatoriovillachiara.it,ambulatoriovillachiara.it,tvtech.it,crai-supermercati.it,centromedicoarcidiacono.it,usi.it,laboratoriodiegoangeli.it,analisiroma.it,edizioni.multiplayer.it,pianteweb.com,cioccolatonippon.it,hwupgrade.it,iphoneitalia.com,mediaset.it,arduino.cc,virginradio.it##body #iubenda-cs-banner +||ouo.io/js/adv +123moviess.pw##div[style*="height:250px;width:300px;"] +eldersweather.com.au###desktop_new_forecast_top_wxh +##.p-ad +||go4kora.tv/assets/js/script_antiAdBlock_*.js +mirror.co.uk##.email__toaster-component +/adfx.loader.bind.js$script +petco.com##.rmn-container:has([class*="SponsoredText"]) +||carelesstableinevitably.com^ +888fuq.com##div[class*="-bnslist-"] +##.adcode728x90 +||exe.io/files/urafes.js +||nfgxadlbfzuy.click^ +##.aggads-ad +supermariobroswonder.nintendo.com#@##onetrust-consent-sdk +bnnbreaking.com##.post__mobile-placement +moeimg.net##.post-single > div.entryblock.sp_only +conoha.jp##.sidebarBlock_banner +||ackeysulfid.top^ +||never2never.com^ +wikiloc.com##.cookie-monster__container +###ads-right-bottom +ecosia.org##div[data-test-id="mainline-result-ad"] +dobro.systems#@#.advBox +||avqdhss.icu^ +jin10.com##.l-main > div > div[class^="jin-"] > .jin-timeline > div[class^="jin-1"] +||goodgupiao.com/skins/default/js/backTop.js +cleodesktop.com#$#div[id="myTestAd"] { height: 1px!important; } +vedbex.com##.card-body:has(> div > a > img[src^="/assets/banners/"]) +portal.librus.pl#?#.common__main > .article-container > div[class]:not([class*="row"]):has(> div[class]:only-child > div[class]:only-child > div[class]:only-child picture > source[srcset]) +||descargas.pntic.mec.es/*/libot_drag.js +||strongesthissblackout.com^ +fila.com#$#body { position: static!important; } +hqpornstream.com##.lds-hourglass +kathmandupost.com##.pt-0 +||dvclhmt.cn^ +ethereumfaucet.info#%#//scriptlet("adjust-setInterval", "ct", "1000", "0.02") +||snapnsfw.com/i/snapshot/snap/$image +/stock_bnr_300-$domain=food-foto.jp|model-foto.jp|pro-foto.jp +||ordinalexclusively.com^ +||insistent-worker.com^ +||connectingresort.com^ +||sconline.com.tw/top/coolpc_ +@@||banaraswap.in^$xmlhttprequest,domain=techcyan.com +||s.union.360.cn^ +computerpedia.in##.overlay +flyingmag.com##.article_ad_text +@@||hk01.com^*/ga_trace.js +||a.warddogs.com^ +sciencenews.org##.wp-block-follow-us +mgsm.pl#$#.mediafarm { height: 0 !important; } +||inbrowserplay.com^ +secretflying.com#%#//scriptlet('abort-current-inline-script', 'jQuery', 'showAdbMsg') +pornogramxxx.com##.container > center > iframe[sandbox*="allow-popups"] +cpomagazine.com##.cpoma-adlabel +||upstream.to/js/kalturaup.js +||eventuallysmallestejection.com^ +@@||securepubads.g.doubleclick.net/tag/js/gpt.js$domain=tractorsupply.com +myshows.me##.kinopoiskBanner +carnewschina.com#?#.tdc_zone > div.td-stretch-content > div.vc_row > div.vc_column_container:has(div[data-scroll-to-class="newsletter-for-scroll"]) +crewbase.net,phineypet.com#$?##content > form[id]:has(> center > button) { display: block !important; } +lamarinaresort.com###cookies-advice +###reklama_big +###cookienotif +||echoachy.xyz^ +youtube5ch.com##.article-more-rss +goodrx.com##div[data-qa$="-ad"] +##.adboxesrow +dnoid.to##.banner_bottom +||mvng.cn^ +dhbr.diamond.jp#$#header { margin-top: 0 !important; } +##.res_ad +||acceptable.a-ads.com/1^$xmlhttprequest,redirect=nooptext,domain=go.freetrx.fun,important +tetris.com##div[class^="rowT"] > div[class][style*="min-height"] +||55fa118139.2ffabf3b1d.com^ +moneysavingexpert.com###fixed-cross-site-tipbox +||linuxde.net/wp-content/uploads/ad/ +||raekq.online^$document +primepress.by##.banner-top +||a8b68645.xyz^$document,popup +||anime.berangkasilmu.com/?ads=$subdocument +@@||pawastreams.info/gamer/*.php$subdocument,stealth=referrer +||5brxi.icu^ +@@||translate.yandex.net^$domain=speedtest.net +||dr.encaseshay.com^ +||kegtopless.click^ +||undergroundbrows.com^ +###bodyAd3 +gomovies-online.cam##body > div[class^="_"] > div[id^="_"]:only-child > style + div[id^="_"] +c4ddownload.com##.posts > div.grid-sizer:empty +||uhmcjdc.icu^ +@@||yellowbridge.com^$generichide +itbaoku.cn##.col-lg-12[style="padding-left: 0px;padding-top: 15px;padding-bottom: 15px;"] +guru99.com##.responsive-guru99-mobile1 +ip-tracker.org##div[class^="adunit"] +legend.az##.fban +/cookielawinfo.$~script +lemonade.finance##.molecule-cookie-box +||dnasolves.com/static/js/embed.js$domain=websleuths.com +urlcloud.us#%#//scriptlet("prevent-window-open") +webtorrent.io##a[href="/expressvpn"] + p +||itphanpytor.club^ +pornoreino.com##.right-side +theasianparent.com,tutoganga.blogspot.com,texte.work#%#//scriptlet("abort-on-property-read", "disableselect") +news12.com##.banner-homePageSidebar-area +hexun.com###newsPopWin +@@||xmissymedia.com/galleries/$domain=xmissy.nl,image +gigazine.net###banner-ef +mrsteinberg.com##.comments2 +||sexcelebrity.net/contents/restfiles/player/ +iflscience.com##.subscribe-bar +revolutionrace.de#$?#body > div[id^="vue-portal-target-"]:has(> div.modal-layer div.newsletter-block) { display: none!important; } +ilyarm.ru,hrc.org,cardgames.io###gdpr-notice +rakuten-bank.co.jp##div.hidden--pc > a[href^="/link/internal_"][target="_blank"] +||thingsshrill.com^ +vuejs.org##.sponsors-aside-text +||zubivu.com^ +sexvid.xxx##.player-cs +neowin.net##.widget-ad + div.widget-header +||barbecuedilatefinally.com^ +||allstat-pp.ru^ +||7800.5clo0xmbf.com^ +||pzphmkf.xyz^ +||ixwloxw.com^ +||lightsriot.com^ +||0153.4puuqeh41.com^ +||turkmedya.com.tr/ramazan?$domain=star.com.tr|gunes.com +bretagne-reisen.de,hippowaste.co.uk##.cookies-global +.com/tonglan.js +liisex.com###apDiv22 +dniwolne.eu###main > .axv +@@||toolforge.org/ad_block_test.js +linkedin.com##.premium-search-upsell +||dk45h.icu^ +google.*#?#div[jscontroller][jsaction] > div[jsname][jscontroller][data-record-click-time]:has(> div[jsname] > div[class] > a[jsname] > div[class] > span.rllt__details > div > span[class]:contains(Ad)) +||tpc.googlesyndication.com/simgad/$image,redirect=2x2-transparent.png,domain=a2zapk.io +||a.mafon.xyz^ +##.advertise-list +wdwmagic.com##.bannerad_300px +##.ad-border +###doyoo_monitor +jaunpurmusic.info#$#div[id^="wpsafe-wait"] { display: none !important; } +##.commercial-unit-mobile-top > .v7hl4d +unian.net#$#.main-menu { height: 50px !important; } +||adotone.com^$third-party +reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion#?##SHORTCUT_FOCUSABLE_DIV span > a[href$="/policies/cookie-notice"]:upward(section > div[style^="opacity"]) +||tneca.com^ +||expdirclk.com^$document +nzherald.co.nz##.story-card--sponsored-text-below +corriere.it##.boxADVmanuale +##.eis_muad +/reklama2.jpg$image +||precursorinclinationbruised.com^$popup +||acidpigs.com^ +||mylot.com^ +||adgardener.com^ +||cdn.asecv.xyz^ +pops.tv#@#.ad-placement +||inrsfubuavjii.xyz^ +dubznetwork.com#@#.adsbyvli +||mosrtaek.net^$popup +||s.elnkp2.com^ +6park.com##div[align="center"][style="background:#fbfeea;min-height:90px;"] +myshows.me##.likewiki +||paipsuto.com^ +||anthrylshoq.click^ +||0a2b3c4d5e.com^ +mail.yahoo.com##div[data-test-id="ad-viewability-tracker"] +||jfjle4g5l.com^$popup +##.cookie-policy-banner +||webpage.qidian.qq.com/qidian/chatv3/$third-party +||boastego.xyz^ +@@||cc.zorores.com/ad/*.vtt$domain=rapid-cloud.co +###ad_Top +##.admediumred +##.wg-ad-square +masmovilpanama.com##.toast-coockies +vr-bayernmitte.de#$#.lightbox--cookie-consent { display: none !important; } +@@||zx-pk.ru/abp/adblock_detector.js +gq.com##.journey-unit__container > div[class^="InContentWrapper"] +@@||explosm.net/js/adsense.js +||bankrate.com/jsfeeds/ +~alicdn.com##a > img[width="960"][src*=".alicdn.com/"] +||icfjair.com^ +befuck.net###ad_video_head +docs.nats.io###toast-0 +||tduenkq839.shop^ +###left-ad-iframe +catalogmineralov.ru#$#.modal_bg { display: none!important; } +||stat.jc001.cn^ +##.ad_watermark +||iopiopiop.net^$popup +endless-live.cz#@##reklama +girlschannel.net###commentFab +##.ad_belowfirstpost_frame +##.advertisingRight +adblock-tester.com##object[width="240"] +||sidenoteinvolvingcranky.com^ +ithome.com##.rm-modal1-body +tokyo-calendar.jp##.movie-link +bilibili.com##.video-page-game-card +music.tower.jp##.promotion-modal +###dfp-ad-right4-wrapper +digit-photo.com###messcookie +wallstreetcn.com#$#body { overflow: auto !important; } +###left-col-ads-1 +||producthub.info^ +||hurawatch.at/AA/*.js +##.ad--rightRail +msn.com##.articlePage_eoabNativeAd_new-DS-EntryPoint1-1 +@@||js.wpadmngr.com/static/adManager.js$domain=blog.carstopia.net|blog.coinsvalue.net|blog.cookinguide.net|blog.freeoseocheck.com|blog.makeupguide.net +tele1.com.tr##.googlenewsbar +50sen.com###box-ads +/gmu-download.oss- +weatherwx.com#@#.adbutton +||meaningfullandfallbleat.com^ +ibtimes.co.uk##.box-recommend-ad +||viiioktg.com^ +softonic.com##div[class="modal-di__step"] > div.modal-di__header +###rtl_cookie_small +##.ad-hoverable +||bulbbait.com^ +goodreads.com##.siteHeader__topFullImage +kasuwa.de#%#//scriptlet('set-cookie-reload', 'cc_main', '1') +zeropln.antyweb.pl#$#.pin.fixed.z-50.flex.flex-col.justify-end { display: none!important; } +##.RightAd +frankmedia.ru##.post__telegram +||louimg.com/i/2021/08/17/*.gif +||b.topeltof.com^ +blog.livedoor.jp##div[style="margin:0px;padding:0px;line-height:1.4;width:100%;background-color:#ddf4e1;"] +bestsolaris.com#%#//scriptlet("prevent-addEventListener", "click", "instanceof Function&&window") +standard.co.uk##div[data-island-hydration-component="NewsletterSignup"] +sivadictionaries.com#@#ins.adsbygoogle[data-ad-client] +ukraina.ru##.article__aggr +plos.org##.head-top +dailyfx.com#?#.row > div[class^="col"]:has(> div.dfx-ad) +my.deviantart.com##.tower-ad-header +goo.ne.jp###gphead-global-1 +##.sidebar-header-ads +5movies.to#?#.links > ul > li.download:contains(Download in HD) +imgpile.com##.nt-lg +jingyan.baidu.com##.right-fixed-related-wrap +diebayerische.de#$##cookie-consent-layer { display: none!important; } +@@||fotka.com/js/advertisement*.js +farmlend.ru#$#.modal-backdrop { display: none !important; } +moneysmart.sg##.floating-widget +||fargwyn.com^ +forums.macrumors.com###mrsubscribe +||vmvps.com/aoyohost-com-bann +remote.tools#?#main > div.banner:has(> div > div.row > div > form[action="/subscribers"]) +||usainoad.net^ +coursedown.com#%#//scriptlet("prevent-addEventListener", "DOMContentLoaded", "adlinkfly_url") +wsj.com#%#//scriptlet('google-ima3') +||imgtop.hdgays.net/img_bnnrs +||static-rtb2.adpix.online^ +mrowka.com.pl,mikale.ru,vivoplay.com.br,2ocr.com,fjallraven.com##div[class^="cookies"] +||tawdryson.com^ +dbook.docomo.ne.jp##.p-top-banner +||unblocked.*/abe.js +||tmenfhave.info^ +huss-licht-ton.de#%#//scriptlet('set-cookie', 'huss_cookie', '0') +||encirclesheriffemit.com^ +##.lazyload_ad_article +##.bannerInformativaEU +netzwelt.de##._Bell[onclick^="_webpushrGetPromp"] +ground.news#?##__next > div.sticky:has(> div.sticky > div.flex > div.flex > a[href="/about"]) +||adservg.com^ +news.goo.ne.jp##div[style="margin:15px 0;text-align:center;width:100%;"] +##.adSlot +pornissimo.org##.fp-ui-inline + div[style] +dirtyindianporn.info##.vid-b-wrap +adfoc.us#$##showSkip { display: block!important; } +||clickagy.com^ +meteologix.com,weather.us##.dkpw-billboard-margin +##.add-gg +||homeycommemorate.com^ +||otoadom.com^$document +##.post-ad +f2dsex1.com##.cover +||aimpocket.com^ +nubilex.net###text-29 +@@||revive.adsession.com/www/delivery/ck.php$domain=spankwire.com +m.liveexpert.ru##.app-info +/wpbanners_show.php$script +||njpaqnkhaxpwg.xyz^ +lunar.az#?##dle-content > .fulltitle:has(div[id^="SC_TBlock_"]) +||u68t5.icu^ +idntimes.com###videoPlaylistPlugId.convertoFloatClass +britannica.com##.marketing-slider +||remoterepentance.com^ +tapetus.pl,tapeciarnia.pl#$#body #aswift_0_expand { display: block!important; height: 1px!important; } +||07c225f3.online/loader.min.js$domain=edaily.co.kr|tenasia.hankyung.com +airtransat.com,transat.com##.TS-CookieLegalNotice +labnol.org##.adsbygoogle > img +###adslot_left +||idioticskinner.com^ +||adsovo.com^ +||homesyowl.com^ +bukinfo.com.ua###notification-subscribe +||unhorseaa.com^ +checkfelix.com,kayak.ae,kayak.bo,kayak.ch,kayak.cl,kayak.co.cr,kayak.co.id,kayak.co.in,kayak.co.jp,kayak.co.kr,kayak.co.th,kayak.co.uk,kayak.co.ve,kayak.com,kayak.com.ar,kayak.com.au,kayak.com.br,kayak.com.co,kayak.com.do,kayak.com.ec,kayak.com.gt,kayak.com.hk,kayak.com.hn,kayak.com.mx,kayak.com.my,kayak.com.ni,kayak.com.pa,kayak.com.pe,kayak.com.ph,kayak.com.pr,kayak.com.py,kayak.com.sv,kayak.com.tr,kayak.com.uy,kayak.de,kayak.dk,kayak.es,kayak.fr,kayak.ie,kayak.it,kayak.nl,kayak.no,kayak.pl,kayak.pt,kayak.sa,kayak.se,kayak.sg,swoodoo.com##.resultsList > div > div > div > div.G-5c[role="tab"][tabindex="0"] > .yuAt-pres-rounded +@@||biggestplayer.cachefly.net/ad300.html +/parsonsmaize/olathe.js$script +pandasnovel.com,panda-novel.com,zebranovel.com#%#//scriptlet('set-constant', 'pandaAdviewValidate', 'true') +insidemydream.com##.afxshop +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=receive-sms-online.info +||dcn.espncdn.shop/espnload.html +||openxadexchange.com^ +##a[href^="https://lone-pack.com/"] +love-piano.ru##.cookiesInfoBl +||ptipsout.net^ +||cined.com/content/uploads/*/MZed-Digby-Course_Front-Page-Banner.gif +##.headeradright +###campaign-banner +yourupload.com##.kado-button +sankakucomplex.com##div[style*="position"] > div[style] > div[data-test="post-card"] ~ div:not([data-test="post-card"]) +||sd2ua.icu^ +||ragapa.com^ +||cdn.miluwo.com^ +acgdoge.net,acglala.cc,chinalawedu.com,douyu.com,dzbhdm.net,gmgard.com,hggard.com,iqiyi.com,jinti.com##a[href*=".tmall.com"] +gap.eu#$#.ui-widget-overlay { display: none!important; } +||czasdzieci.pl/js/a-d-sync.js +###tescoCookieNotification +||taurunperch.shop^ +you.163.com##.m-appDownloadGuide +movie-censorship.com##a[href*="/out.php?"] +||loopr.co^ +||aqkkoalfpz.com^ +youwatchporn.com#%#//scriptlet("prevent-window-open", "snowdayonline.xyz") +dayoo.com###ad-xl +||codemylife.info^ +@@||ligainsider.de/public/desktop/js/dfp.js +||static.opensubtitles.org/libs/js/prop-pu.js +blogs.opera.com##.widget_text +bostonherald.com#?#body > div.modal-scrollable:has(> div[class*="newsletter-modal_notif"]) +arydigital.tv,barakbulletin.com##.bsac +gobankingrates.com##.exit-intent +||fanzhuang.net.cn^$third-party +##.homepage_block_ad +||commiseratefiveinvitations.com^ +legalteam.hu,quellocheconta.gov.it#$#.modal-backdrop { display: none !important; } +||trackingrouter.com^$popup +tops.co.th,uefa.tv##div[class^="CookiePolicy__Wrapper"] +||perceivequarter.com^ +f2movies.to##a[href="/android-movies-apk"] +##.adv-120x600 +4chan.org,boards.4channel.org##.danbo-slot +||5u3a2gse.fedqdf.quest^ +autodesk.de##.adsk-gdpr-footer-wrapper +pv-magazine.*,pv-magazine-usa.com,pv-magazine-australia.com###home-top-rectangle-wrap-2 +||watchadzfree.com^$popup +||toqsxdpx.xyz^ +||psiksais.com^ +##div[data-adzone] +imagebam.com###road-block +macway.com###grpd-consent +||deloton.com/afu.php?$redirect=nooptext,important +pinkoi.com##.n-promo-login-modal +@@||ads.viralize.tv/t-bid-opportunity/$domain=automoto.it|moto.it +emulatorgames.net##.site-label +||filoz.net/*/*/glowCookies$script,stylesheet,~third-party +feedspot.com##.et_pb_extra_column_sidebar > div.widget_custom_html +hinews.cn##div[id^="hi_gg_"] +||go.trvdp.com^$domain=~canaltech.com.br|~ig.com.br|~monitordomercado.com.br|~noataque.com.br|~oantagonista.com.br|~omelete.com.br +###ads_tower_top +###bottommpuSlot +||openslowlypoignant.com^ +file-upload.com#?#.container > div.page-wrap > center:contains(ads) +katestube.com,sleazyneasy.com,vikiporn.com,wankoz.com##.advertising +deindesign.de##.dd-cookie-banner +||5321.5clo0xmbf.com^ +###bbContentAds +msn.com##.vd-ad +||da-ads.com^ +||cc.relatoseroticos-gratis.com^ +123-bt.cn##.sd +||utilitypresent.com^ +##.mpu_wrapper +1kkk.com,dm5.com##.guide +realsporter.info##div[class]:not(.container):has(> center > [class^="ads"]) +||amazonaws.com/s?z= +yatu.tv###a_d1 +xteensex.net##.bokorasumi +##script + #rbbox +@@||static.ex.co/pb-story/production/*/story-viewer.js +||directrankcl.com^ +||offalakazaman.com^ +||cdn.livetv*.me/*/getbanner.php +ppt.ru##.cookie-conscent +hostixo.com###general-tos +/newAd/* +realmadryt.pl##.rmpl-comment-ad +eromanga-kong.com##a[href^="https://line.me/R/ti/p/"] +intouch.wunderweib.de##.bx-form--newsletter +||leavingsuper.com^ +gruener-punkt.de#$#.modal-backdrop { display: none!important; } +||forfrogadiertor.com^ +tubelion.com###cookies-policy-block +||fingerprintoysters.com^ +||tafuzcxr.xyz^ +thestockmarketwatch.com###tdOptIn +i.ua##.alarm +||app1.aomg5bzv7.com^ +||plaintivedance.pro^ +motorsport.com###ms_skins_top_box > div > img +||sss777.net/Alove-A/ +||cruel-national.pro^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=coolgames.com|newgames.com +||whistledprocessedsplit.com^ +||deepfakeporn.net/contents/rest/player/deepswap_japanese +||limpghebeta.shop^ +##a[href^="https://ndt5.net/"] +||lkw-stietzel.de/wp-content/plugins/ansolution-cookie/assets/js/ansolution-cookie.js +||mdadx.com^ +leeapk.com,mixrootmods.com,worldmak.com,mosqam.com,bimo-cash.readi.online,bitcomarket.net,1apple.xyz,mcrypto.club,apkmaven.io,gaminplay.com,choiceappstore.xyz,worldappsstore.xyz,tudaydeals.com,toolss.net,7apple.net,gifans.com,iptvjournal.com,moddingzone.in,insurance-space.xyz,rajsayt.xyz,jaunpurmusic.info,blognews.in,gaminplay.com,noithatmyphu.vn,dulichkhanhhoa.net,paidappstore.xyz,therootdroid.com#%#AG_onLoad(function(){try{var a=document.querySelector('form > input[name="newwpsafelink"]');if(a){var b,c=null==(b=JSON.parse(atob(a.value)))?void 0:b.linkr;if(c){var d=JSON.parse(atob(c.split("?safelink_redirect=")[1]));location.assign(decodeURIComponent(null==d?void 0:d.safelink))}}}catch(e){}}); +||dragon.sh2.com^ +||czxvgod.xyz^ +rynek-rolny.pl#%#//scriptlet('abort-current-inline-script', 'document.write', 'unescape') +cbs-soft.com#%#//scriptlet("set-constant", "adsbygoogle.loaded", "true") +||insultresignation.com^ +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv##.install-tip-bar +otonanswer.jp##aside > div[style="min-height: 881px;"] +meduza.io##.SignalBlock-module-is1to3 +@@||st.pussyspace.net/player/playBTN.png| +76xh.com###divFendDuo +||globaladmedia.com^ +||countabledawdlerunaudited.com^$all +||overseasearchopped.com^ +##html > div[style="position: fixed; inset: 0px; z-index: 2147483647; pointer-events: auto;"] +citimuzik.com##.entry-content > div[style*="margin:"] +/main/s? +||xdybwjpa.xyz^ +||beforehandeccentricinhospitable.com^ +glavred.net,glavred.info,forbes.ru##.article__subscribe +bnn.in.th##.the-pdpa-consent-bar +||yes-messenger.com^ +||fkf5.com/public/js/static.js +||carefree-ship.pro^ +jpopsingles.eu#@#.adsBanner +||belongedenemy.com^ +semrush.com#?#form:has(> span[data-test="subscription-button"]) +my.juno.com###scienceTile +/cookieok.js +pen4pals.com###block-block-245 +printer-care.de,printer4you.com###wwwschutz_div +||96b600f50a.a0e351a3aa.com^ +lent.az#$#.rek_header { display: none !important; } +mooc-list.com###block-affiliados +||nfts-opensea.web.app^ +||investcoma.com^$popup +##.news_ad_box +||atdmt.com^ +@@||imgadult.com/newimages/$domain=imgadult.com +||us-pub.dengage.com^ +||netmera-web.com^$third-party +analyticsindiamag.com##a[href="https://mlds.analyticsindiasummit.com/"] > img +aida64russia.com,aida64.com.ua,aida64.de,aida64.hu,aida64.it,aida64.co.uk#%#//scriptlet('set-local-storage-item', 'set_cookie_stat', 'false') +##.scroll-ad-item-container +||costhandbookfolder.com^ +kontramarka.ua##.promo-line +||d2n2qdkjbbe2l7.cloudfront.net^ +bde4.icu#@#a[href*="/entry/register/?i_code="] +||rtb-apac-v4.admozartexchange.com^ +/affiliate/banners/*$image +||iuou.ysw365.com^ +adsrt.com#%#window.open = function() {}; +@@||sc.r7.com/ads.js +vosveteit.zoznam.sk##div[class^="code-block code-block-"][style^="margin: 8px auto; text-align: center;"] +revuestarlightre.com#?#article > div > .article-sub-category > h3:contains(Vtuberピックアップ) +||yieldx.com^ +@@||mirrorlessrumors.com/wp-content/plugins/ginger/front/js/cookies-enabler.min.js +csdn.net##.csdn-toolbar-creative-mp +clubmonaco.com###talkable-offer +||widgets.jutarnji.hr/instar/index.html +||pinklabel.com^ +||pushmejs.com^ +||tetrylscullion.com^ +volynnews.com#?#.text_video_news2 > em:has(> a[href^="https://t.me/"]) +||n0211.com^ +purelovers.com###floating-footer-banner +vidzstore.com,moviesroot.club,kissmanga.*,mangastream.mobi,clicksbee.com,cutlinks.pro,leechpremium.link###myModal +andek.com.pl##.single-entry-summary > div[style="float:left;width:270px;height:260px;"] +||web-sdk.urbanairship.com/notify/ +5pillarsuk.com##a[href="https://t.me/news5Pillars"] +||czuvzixm.com^ +roseindia.net##.tutorialsstaticdata +m.mobile01.com##.u-gapNextV--lg.u-height280 +/pagead/lvz? +||flyte.aomg5bzv7.com^ +rexxx.com##.bottom_banners +dtf.ru##div.view > div:has(> div[class][style] > a[href^="https://booster.osnova.io/a/"]) +||alicdn.com/img/ibank/*_1623489831. +valueresearchonline.com#$#body { overflow: visible!important; padding-right: 0!important; } +ucretsizhivtesti.com##div[id^="tpapopup-"] +##.capa_cookies +noadsradio.ru##.no-adb +timgate.it##.cao-show +eastmoney.com###ListPage_r_Ad +danskebank.co.uk#$#.cookie-consent-banner-modal { display: none !important; } +scienceabc.com##.bigincontentad +###sidead1 +52pk.com##span[style*="gaosu"] +||cosmo100.top^ +fishki.net###fishki-prompt-widget +||adwebster.com^$third-party +shangyexinzhi.com##.advert +@@jamendo.com$jsinject +||eetognauy.net^$document +||studiocustomers.com^$popup +avivamed.de##.dialog-overlay +streetinsider.com#@##ad_space +pc-canada.com,tech-america.com##div[x-data^="xCookiePopup"] +everythingrf.com##.mid-ads +hlsloader.com#?#body > center > ins.adsbygoogle:upward(1) +##.top_ad_ban +r7.com##footer + .-base-bottom-full:has(> .base-flex-col > p > a[href="https://www.r7.com/termos-e-condicoes"]) +energetyka24.com,space24.pl,cyberdefence24.pl,defence24.pl,defence24.com#%#//scriptlet('set-local-storage-item', 'd24Cookie', 'true') +designwizard.com#$#.main-header { top: 0!important; } +toyota.astra.co.id#$#body { overflow: visible !important; } +###bottom_ad_region +creciendo.com###wpn-popup-backdrop +||web-hosts.io^ +bonginoreport.com##.homepage-ad-2 +therainbowtimesmass.com##img[alt="banner ad"] +##.ad-hide-mobile +delhaize.be#%#//scriptlet('trusted-set-cookie', 'CookieConsent', '1.0.0.0.0') +||ambiguousalarm.com^ +||d3kblkhdtjv0tf.cloudfront.net^ +tool.liumingye.cn###pop-container +||efd3941dd8.877f80dfaa.com^ +bibme.org,easybib.com,citationmachine.net##.adds-wrapper +/gdprcookie/*$domain=bricodepot.ro +ingles.com,spanishdict.com#%#//scriptlet("set-constant", "SD_IS_BLOCKING", "false") +||stressfulproperlyrestrain.com^ +||ea091c36b2.4f442e5c52.com^ +||mas.martech.yahoo.com^$domain=mail.yahoo.com +||remedyabruptness.com^ +||artevinesor.com^ +dattr.com###onFinish-thumbs +beermoneyforum.com###preloader +||milotree.com^$third-party +msn.com##div[id^="watch-feed-native-ad-"] +_atblockdetector/ +gpblog.com##li[class^="PromoItem_"] +||measure.mf.cz^$third-party +themehits.com##img[alt="728×90"] +jeniusplay.com#%#//scriptlet('prevent-window-open') +||coolerpassagesshed.com^ +||qerkbejqwqakw.top^ +timesnownews.com##.artical-description > #inline_video_ads +dwgshare.com#$?#.better-ads-listitemad { remove: true; } +@@||31vcd.com/player/kuyun.js +tryboobs.com,ah-me.com###videoContainer_pop +kagekidan.net,shurabanote.com#$#.left-container { margin-top: 0 !important; } +down.mdiaload.com##a[href*="download"][href*=".html"] +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=taufiqhdyt.com +anthropic.com##div[class^="ConsentBanner_"] +@@||buymeacoffee.com/*/widget.$script,domain=langoguessr.com +clickasnap.com#@#.CookieConsent:not(body):not(html) +dr-farfar.net##.footerBar > iframe +adespresso.com##.join-bar +ubezpieczenia.fly4free.pl,rankomat.pl##.rank-cookie-bar +checkfelix.com,kayak.ae,kayak.bo,kayak.ch,kayak.cl,kayak.co.cr,kayak.co.id,kayak.co.in,kayak.co.jp,kayak.co.kr,kayak.co.th,kayak.co.uk,kayak.co.ve,kayak.com,kayak.com.ar,kayak.com.au,kayak.com.br,kayak.com.co,kayak.com.do,kayak.com.ec,kayak.com.gt,kayak.com.hk,kayak.com.hn,kayak.com.mx,kayak.com.my,kayak.com.ni,kayak.com.pa,kayak.com.pe,kayak.com.ph,kayak.com.pr,kayak.com.py,kayak.com.sv,kayak.com.tr,kayak.com.uy,kayak.de,kayak.dk,kayak.es,kayak.fr,kayak.ie,kayak.it,kayak.nl,kayak.no,kayak.pl,kayak.pt,kayak.sa,kayak.se,kayak.sg,swoodoo.com##.J8jg:has(.J8jg-provider-ad-badge) +surfline.com#%#//scriptlet("adjust-setTimeout", "adFreePopup", "15000", "0.02") +||one-name-studio.com^$popup +brief.pl##.sidebar > .brief-widget > a:not([href*="brief.pl"]) > img +12377.cn###notice +@@||usercentrics.eu^$domain=aldi.fr|aldi.be|aldi.dk|aldi-nord.de|aldi.lu|aldi.pt|aldi.nl +||oardilin.com^ +||flndmyiove.net^$popup +torrentdownloads.pro##.download > li > a[href^="/td/"] > img +compensationcoincide.net,embedstreams.me,closedjelly.net,sportsonline.*,linenstandard.net,candlesouth.net,abolishstand.net,earthquakecensus.com,unbiasedsenseevent.com,nstream.to,wigistream.to##body > div[style^="position:absolute;"][onclick="$(this).remove();"] +news.dtkt.ua###trial-subscribe-widget +###cookiesck +||assets.jumpstartmediavault.com/abd/v2/jam_abd.min.js +zealy.io###chakra-toast-manager-bottom-right +readspeaker.com#%#//scriptlet('remove-class', 'show--consent', 'html.show--consent') +safenames.net,hobbybaecker.de#$#.modal-open { overflow: visible !important; } +stalkerportaal.ru##.adblock +||x.xxxbule.com^ +mediafax.ro###sidebar > div[style^="margin:10px auto; text-align:center;"] +asmag.com###en_footer1_bannerPopUP1_panel_claudebro +miastodzieci.pl##.text-center > a[href^="https://bit.ly/"] > img +movies123.pics##.popOverForADSInPlayer +fullporner.com###right1_ad +webos-forums.ru###purr-container +nypost.com,pagesix.com#?#.zephr-component +||tttppp.oss-cn-guangzhou.aliyuncs.com^ +shemalesin.com,ebony8.com,sortporn.com,freeporn8.com,amateur8.com,maturetubehere.com##.top2.pignr +vector-eps.com#%#//scriptlet("prevent-setTimeout", ".adsbygoogle") +milli.az#$#header > .info-panel2 { margin-top: 43px!important; } +studytonight.com##.container-fluid > div.center[style^="min-height:"] +zuoye.baidu.com,zybang.com###QRinside +imeteo.sk#@#.is-ad +||redadisappoi.info^ +mirror.co.uk##.tp-container-inner +||uomsogicgi.com^ +||xjfqqyrcz.com^ +tubator.com##div[id][style*="height: 250px;"] +tokyo-sports.co.jp##.leafs-app-link-container +iraw.rcc.jp###app-btn +||allsports4free.live^ +tustolica.pl##.slot +||stealneitherfirearm.com^ +||skai.gr/modules/custom/wbnotifications/ +bleepingcomputer.com#?#.post_wrap:-abp-contains(AdBot) +animefire.plus###sub_modal +hanime.tv##.full-page-height > .int[style^="width:"] +###vertad1 +bonusbitcoin.co###adX +-*-*-*-*.as^$script,third-party +###cliSettingsPopup +||dashboard.tinypass.com/*/load^$third-party +||partner.pcloud.com/media/banners/*300250.png +||relishpreservation.com^ +pinshan.com##.b_adv +krolewskie.pl#%#//scriptlet('set-cookie', 'HEINEKEN_ENSIGHTEN_PRIVACY_BANNER_VIEWED', '1') +terabox.fun#%#(async()=>{if(location.href.includes("/slmiddlepage/"))try{const t=location.href.split("/").at(-1);if(!t.length)return;const a=await fetch(`https://terabox.fun/api/shortlink/getoriginurl?&encrypt_surl_key=${t}`),i=await a.json();i?.data?.origin_url&&i.data.origin_url.startsWith("http")&&location.assign(i.data.origin_url)}catch(t){console.debug(t)}})(); +###TopRightRadvertisement +||cruiserx.net^ +||speakspurink.com^ +||beewhoapuglih.net^ +##a[href*="://4"][href*="/vod."] +follow.yahoo.co.jp,zdnet.de##.appPromo +www.microsoft.com#$#.modal-backdrop { display: none!important; } +||imtranslator.net/images/donate.gif +://s.htkk*.top:$script,third-party +||nurhagstackup.com^ +vaillant.it,vaillant-group.com,vaillant.at,vaillant.de#@##cookiewarning +mecze24.pl#?#.active > .list > li[class]:not([data-sport]):not(.inactive):has(a[href^="https://www.mecze24.pl/bukmacher"]) +xgan.cn##.bottom_fixed +@@||imfeifan.com/adv/$~third-party +||baj.fanwenzhan.com^ +##.comiis_guanggao_tit +yourbittorrent.com##.extneed +tieraerztliche-klinik.de#$#.pum-overlay[data-popmake*='"slug":"datenschutz"'] { display: none !important; } +##.outside_ad +||survey-daily-prizes.com^ +affpaying.com##.bg-ad +@@||cdn.concert.io/lib/concert-ads/*-latest/concert_ads.js$domain=vox.com +||workback.net^ +flyordie.com#$#body > iframe[style*="left: 180px;"] { left: 0!important; } +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=crunchyroll.com,important +||celsiusours.com^ +||neumanga.tv/uploads/*/banner728.gif +mycast.io#%#//scriptlet("abort-current-inline-script", "document.getElementById", "blocking_ads") +||dbmp4.com/js/foot. +||loldyttw.com/skin/lol/js/ds.js +pluggedin.com##div[data-pi-newsletter] +||bmqulua.icu^ +||tyranpension.com^ +tenorshare.com##.wz-ads +||mediaxchange.co^$popup +||jargonwillinglybetrayal.com^ +||woneguess.click^ +fssquad.com##.samBaasnnerUnit +gazetememur.com###cb-cookie-banner +||qarewien.com^ +||stageseshoals.com^ +xtube.com##.removeAds +forum.gamer.com.tr#?#.p-body-inner > .notices > .notice:has(> .notice-content > a[href="/help/cookies"]) +||stheadline.com/images/heading-jm +blog.nationapk.com#$##wpsafelink-landing { display: none !important; } +huurland.be#@##cookies-notice +toulousemetro3.fr##.janusbanner +redheadsound.studio#$#.header { margin-bottom: 0px !important; } +||vwwzygltq.com^ +kingdom-anime.com###topVisual +sfexaminer.com##.sfx-form +||glevoloo.com^ +/img/q/movie_*.gif +@@||photos.timesofindia.com/toi_js_ads.cms +thecustomrom.com#%#//scriptlet('adjust-setTimeout', 'window.location.href', '*', '0.001') +.monster/images/ads/2.png|$~third-party,domain=monster +||76fengyun.com/vip.php$popup +||203.195.121.195^ +@@-template-ads/*$domain=rapidgrab.pl +||marketscreener.com/content_openx.php +@@||mssl.fwmrm.net/p/msn_live/AdManager.swf$domain=msn.com +||bestboundary.com^ +@@||muralmasterpieces.site/*.jpg$stealth=referrer +mypolacy.de##div[class*="appBanner"] +||railwayboringnasal.com^ +koko.by##.cs-sidebar__inner > div.powerkit_opt_in_subscription_widget +||ethicel.com^ +eonline.com##.js-gdpr-notice +troisdorf.de,pirmasens.de,speyer.de,skoda.com.tr##.cookie-consent-dialogue +seselah.com###video-ads +@@||sourcepoint.mgr.consensu.org^$domain=spiegel.de +pracodawcy.pracuj.pl#?##__next > div[class]:has(> div[class] > div[data-library="@grupa-pracuj/cookie-agreements"]) +slickdeals.net#$#.sdModalOverlay { display: none !important; } +vc.ru###dpir-startup-generator +||shindystubble.com^ +bevmalta.org,chromoscience.com,conandaily.com,gamersocialclub.ca,hawaiireporter.com,michaelsavage.com##.wpa +mov18plus.cloud##div[style*="height:100%;width:100%"] > a[target="_blank"] +imacos.top##.sitetips +moneycontrol.com##.advbannerWrap +pimpmymoney.net##.widget_sow-simple-masonry +nanboya.com##.p-toggle-banner +press-start.com.au##.post-end-subscribe +picmo.me,jingukan.co.jp##.bfb_textBtn +fotocommunity.de,bizpacreview.com,flagandcross.com,szifon.com##.essb_mailform +localking.com.tw###adbannerurl +@@||sdk.iad-*.braze.com/api/v3/content_cards/sync|$xmlhttprequest,domain=dairyqueen.com +||ihookup.com/configcreatives/ +||pornpapa.com/extension/ +||picpar.com^$domain=18board.com|18p2p.com +##.ad_bottom_space +||trustedpeach.com^ +atlasformen.fr,atlasformen.de##div[id^="divCookieStickyLayer"] +||redirect-path1.com^ +||fstsrv8.com^$popup +cliphunter.com,wxx.wtf,jizzoncam.com,camwhores.video,moreamateurs.com,faptor.com,pornachi.com,porndude.wtf,orgazmax.com,pornwex.tv,pornfd.com,area51.porn,pornrabbit.com,milf-porn.xxx,sextaped.com,pornxpert.com,perverttube.com,fapnow.xxx,epicgfs.com,scatkings.com,pornflix.to,xbjav.com,heavyfetish.com,tabootube.xxx,amateur8.com,maturetubehere.com,crazyporn.xxx,pornissimo.org,lesbian8.com,enf-cmnf.com,filtercams.com,bigassporn.tv,porn00.org,keekass.com,fuckit.cc,camwhoresbay.com,camwhoreshd.com##.block-video > div.table +||olxoqmotw.com^ +macperformanceguide.com###tab-tools +###pr_advertising +@@||apiwaka.azure-api.net/api/key/$stealth,domain=wakanim.tv +@@||educationcanada.com/js/advertisement.js +libertycity.net,libertycity.ru##.create_acc +pinkvilla.com##li[id^="sideBarAd"] +||hitchprivilege.com^ +||rev4rtb.com^ +##.admeldBoxAd +@@||img.blesk.cz/static/data/blesk/reklama/advertisment.js +gbnews.com##.you-may-like__wrapper:has(> h4 + .OUTBRAIN) +||opositeasysemblyjus.info^ +||populationgrapes.com^ +||suburbgetconsole.com^ +###sidebar-left-ad +forum.digitalfernsehen.de#%#//scriptlet('trusted-set-cookie', 'xf_notice_dismiss', '1') +||opus-whisky.com^$popup +coolrom.com.au##table[width="980"] > tbody > tr > td[width="100%"][bgcolor="#000000"][colspan="2"][align="center"] +##.ad_right_2 +###ads300x200 +||reklammen.spellchecker.lu^ +||kstjqjuaw.xyz^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.images_game_container +@@||myneobuxportal.com/wp-content/plugins/*/adblock-detector/advertisement.js +##.right_advertisement +##.google-ads-container +||puysis.com^ +###ads_notice +||fastfuckgames.com/aff.htm +||jaadms.com^ +thw-bufdi.de,bbk.bund.de#@#.cookiebanner:not(body) +||blcdog.com^ +timesnownews.com##div[class^="_"] > div[class^="_"][style^="max-width:"] +||ddownload.com/images/promo/$third-party +||groameeb.com^ +||absorbingcorn.com^ +##.am-bazaar-ad +estetic-dent-sklep.pl##.wce_popup-consolidator +ewybory.eu#@##adv-text +##.td-sponsor-title +###sponsored-recommendations +stream037hd.xyz#%#//scriptlet("set-constant", "Object.prototype.ads", "emptyArr") +||cygnus.com^ +||jhulubwidas.com^ +||legalizedistil.com^ +csdn.net###footerRightAds +##.content-footer-ad-block +@@||pagead2.googlesyndication.com/pagead/$domain=nationalpost.com +||dogwrite.com^ +||petrelbeheira.website^ +paraphraser.io##.adsenbox +publish0x.com#$##registerPopup { display: none !important; } +vgtime.com##.vg_download_app +##.widget_admanagerwidget +easylearn.baidu.com##.feedback-icon +petri.com##div[data-petri-gutenberg-block="sponsors-logo-list"] +||playstretch.host^$popup +raulprietofernandez.net,personalbanker.com.ua###jbounce-jmodal +##.attachment-dm-advert-silver +||gipsiesthyrsi.com^ +odido.nl#@#.cookie-header +||d1lnjzqqshwcwg.cloudfront.net^ +||titaniumveinshaper.com^$popup +incrypted.com##.incrypted-cookie-bar +||declaredtraumatic.com^ +duowan.com###doc > div[style*="width:998px;height:90px;overflow:hidden;border"] +smutty.com##.bms_slider_div +-eu-cookies/$script +tvweb.com##.ad-leaderboard-wrap +cutpaid.com#%#//scriptlet("prevent-window-open") +thestudentroom.co.uk#$#.panel-main > #topFixedAd ~ #header { top: 0 !important; } +||nicelinks.site/ad-block- +||inestimableloiteringextortion.com^ +||proxysolutions.net/affiliates/ +serfery.ru##.fancybox-container +aimazu.com##.fixediv +||nubseech.com^ +www.o2.pl#?##root div[class]:matches-property("/__reactFiber/.return.memoizedProps.placeholder"="true"):has(> div > img:first-child + div:last-child) +###ados1 +dzen.ru#%#//scriptlet('abort-on-stack-trace', 'Promise', 'initContext') +||agraustuvoamico.xyz^ +allconnect.com#$#.modal-backdrop { display: none !important; } +chitubox.com##.top-count-down +@@||leoconnacht.com/wp/wp-content/plugins/bwp-minify^ +@@||cdn-ukwest.onetrust.com^$domain=skyshowtime.com +||bravotube.net/if2/f*.html +askona.ru##.cookie-data-warning +||krankenwagenmotor.com^ +tss-yonder.com###cookieconsent-bg +76xh.com##.index_advertising +hardreset.info#$#.modal-backdrop { display: none !important; } +||seo-overview.com^ +||wqah.com/images/banners/ +wankoz.com##body > .im_block +hcbbs.com###portal_block_2652 +||servedby.mondiale.co.uk^ +||xhamster3.com*/vast? +###ad728Header +||haolingsheng.com/public/daguzhe.jpg +fujifilmshop.com###consident +jutarnji.hr##.promo_heading_fix img +favn-pitomnik.ru##div[data="instagram"] +||passiondimlyhorrified.com^ +nhk.or.jp###nw_gdpr_view_id +||jivox.com^$third-party +##.adbox728 +newatlas.com###NewsletterSubscribe +||rougharmless.com^ +uxfeedback.ru#@#.cookies-notification:not(html):not(body) +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=loot.tv +/detroitchicago/kenai.js$script +||thetrendytales.com^ +@@||moat.com/creatives/advertiser/$domain=moat.com +cnbc.com##.BreakingNews-container +@@||cdn.wgchrrammzv.com/prod/ajc/loader.min.js$domain=journal-news.com +augsburger-allgemeine.de##.aside > div[style^="width:300px; overflow:hidden; text-align:right; border: 1px solid"]:not([class]):not([id]) +dryg.pl,ideco.ru,mercuryo.io,mycujoo.tv##div[class^="CookiesNotification_"] +jofogas.hu#$##page-content { margin-top: 0 !important; } +ozarksfirst.com###nxcms_dotbiz +prosleduetmedia.com##.donate +kituweh.xyz,artunnel57.com#@#.ad-placeholder +||dlne6myudrxi1.cloudfront.net^ +||rigorlab.com^ +fuqer.com#%#//scriptlet("abort-on-property-read", "fUnder") +technologzywnosciradzi.pl##.pum-overlay[data-popmake*='"slug":"facebook"'] +##.full_ad_box +yts.mx##.aksdj483csd +@@||cdn.privacy-mgmt.com/unified/wrapperMessagingWithoutDetection.js$domain=freundin.de +edealinfo.com###showFTCMessage +###hengfu2.banner +||902cd90852.616e9503a3.com^ +lilysilk.com#$#body { overflow: auto !important; } +inc42.com##.plus-bottom-bar +tv.rakuten.co.jp##footer > .appttl +euronews.com#$?##o-site-hr__leaderboard-wallpaper.u-show-for-xlarge { remove: true; } +@@||cdn.cookielaw.org/opt-out/otCCPAiab.js$domain=cwtv.com +divarese.com.tr,network.com.tr##.gizlilik-cookies +||refbanners.com^ +intellipaat.com##.recmnd-cours +||baidu.com/rec?*=ad& +sina.com.cn##.side-btns-game2021 +wenku.baidu.com##.area[href*="/adclick?aid="] +qq.com##.tmallskin +||alicdn.com/tfscom/*.sina. +||honorable-customer.pro^ +||nice.tryboobs.com^ +||65035033.xyz^$document,popup +@@||api.mi-img.com^$stealth=referrer +standard.co.uk###mpu_bottom_sb_2_parent +@@||alladvices.ru/wp-content/plugins/angwp/assets/dev/js/advertising.js +romsgames.net,msn.com##.adlabel +obi.*##.colorbox-cookiepolicy +chinaz.com##.plate-layout +||yterxv.com^ +moviehdd2023.com##div[class^="ad-"] +4downfiles.org#$#div[style="width:300px; height:250px; background-color:#f4f4f4; text-align:center"] { visibility: hidden!important; } +||b43bc6681c.4bad5cdf48.com^ +||meijucang.com/js/pop/ +||amuletcontext.com^ +premier.one##.m-notifications-container +expressen.se##div[id*="_randomContainer"] +@@||static.shorte.st/js/packed/interstitial-page.js$domain=sh.st +||cdn777.net/site/usagoals/sitelinks/xpopme.js +||wildcat.fspy.io^ +swfchan.com###aaaa +breakingmuscle.com###leaderboard[style] +||analyticsinsight.net/wp-content/uploads/*/wdc-ad +||brewsuper.com^ +ra.co##div[data-testid="cookie-consent-top-banner"] +nofootynolife.net##.blogroll_content2 +||jaurouth.xyz^ +||stats.g.doubleclick.net/dc.js$script,redirect=noopjs,domain=synonimy.pl +||okaydisciplemeek.com^ +reason.com##.primis-video-ad +||blockadstop.info^$popup +##.adalert-toplayer +||hvkwmvpxvjo.xyz +idnes.cz##table[id^="r-leaderboard"].s_branding +||condor.stadttunnel-feldkirch.at^ +||rtb-eu.admeridianopenrtb.com^ +||compensationpropulsion.com^ +nhlstream.net,nbastream.net##a[href="/watch-live/"] +speedtest.cn##.shade +##.cookieInformation +||bd95c06536.bc84617c73.com^ +postnl.be#@##cookiebar-container +||inndianew.cosmicnewspulse.com^ +###carbon-ads-container-bg +||icvsleec.xyz^ +||svr.lnk.news/click.php$popup +creciendo.com,perfil.com###wpnDialogcontainer +sexcelebrity.net##.sponsor +hardware.info#%#(function(){try{"undefined"==typeof localStorage||localStorage.getItem("consentData")||localStorage.setItem("consentData","{\"relevantAds\":{\"version\":1,\"approved\":false},\"youtube\":{\"version\":1,\"approved\":true}}")}catch(b){}})(); +###popup-cookie +.org/js/ads/ +/js/dyguosj/* +sixt-neuwagen.de#%#//scriptlet("set-cookie", "user_accepted_cookies", "1") +||adpresenter.de^ +@@||v.fwmrm.net/ad/g/1$domain=stream.nbcsports.com +blikk.hu##.bannerDesktopContainer +dorzeczy.pl##.box-list-item-ad +||damselfly.vegenook.com^ +telsu.fi#%#(()=>{window.googletag={apiReady:!0,getVersion:function(){return"202307200101"}};})(); +meyra.pl#@#.cc-window[aria-label="cookieconsent"] +||ad1rtb.com^ +##.double-ad +##.adsenseformat +playretrogames.com##.right-ad-game +blickamabend.ch##.rightElement > .widget_maxiteaser + h3 +||onlinecashmethod.com^$popup +||afrikalyrics.com/images/download-vantaart- +||cabbagereporterpayroll.com^$popup +animesrbija.com#%#//scriptlet("abort-current-inline-script", "document.addEventListener", "blockadblock") +teenagesex.tv,pornyoungtube.tv,pornteentube.tv##.player-bns-block +pacogames.com###ga_sp_preloader +|http://*/js/ad/ +||forum.ge/trash/Proservice_domain.png +##.adSpec +||aprilineffective.com^ +teamfortress.tv###aw +||hupu.com^*/stream.js +##hl-adsense +||imitrck.net^ +poedb.tw###head_toolbar + .text-center > a > img[style] +###AdPopUp +||af6937a2.live^$document,popup +fahrplan.guru##div[class*="StyledAdContainer"] +||metrica-yandex.com^ +toonily.com##a[href="https://toonily.com/membership/"] > img +||misguidedfind.com^ +||flushedheartedcollect.com^ +twominutebooks.com#?#main > div[id^="uid_"]:has(> div.rbc-container form.seva-form) +techgoing.com#?#.wpb_wrapper > div.tdm_block:has(> div.td-block-row h3:contains(/^Stay in touch/)) +||sexbarss.net/wap/ +wcjbb.com###frame37boCx +samsungmagazine.eu,letemsvetemapplem.eu,jablickar.cz##.ownad +##.advertisement_160x600 +||widow5blackfr.com^$popup +||islandgeneric.com^ +sourceforge.net###nels +||indiansgetfucked.com:8081/cont1/*.gif +###right-advert +||c57bd95239.75cbb85265.com^ +admanager.line.biz#@#.ad_frame +cmswire.com##[class^="styles_ad-block"] +mrlabtest.com##.adblockwrapper +vidian.me##div[id^="hide_ads"] +firstonetv.net#$#body > div[class]:empty { position: absolute!important; left: -3000px!important; } +apkmos.com##div[class^="apkmo-"][style] +ohyeah1080.co,ohyeah1080.com##.fancybox-container +||oversolosisor.com^$document +||entrerscab.com^ +dumpert.nl#%#//scriptlet('prevent-setTimeout', 'AdBlockerCheck') +||obf-io.deobfuscate.io/nexus_banner.webp +||uqaagi.xyz^ +||viewdeos.com^$script,third-party +ameblo.jp##aside[class^="TopLayout_AppInstallCTA_"] +spaste.com##a[href^="javascript:showhide('Adeals')"] +pharmencyclopedia.com.ua###geo_wgt +digitalvidya.com#$##page-container div[data-da-area^="divi-area-"] { display: none !important; } +||raananfunning.shop^ +##[data-adshim] +qq.com##.action_ad +||pheptoam.com^ +parapolitika.gr#@#iframe[width="100%"][height="120"] +newsmondo.it###detect ~ div[style^="display: flex; align-items: center; justify-content: center; position: fixed;"] +nytimes.com##.MAG_web_anon_new-journey-rollout +||glossysense.com^ +rbc.ru#$?#.popmechanic-disable-scroll { overflow: auto !important; } +||8a5229006e.4852cf38ec.com^ +tmtpost.com##.open-app +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=wp.pl|o2.pl|pudelek.pl|so-magazyn.pl +play.cdnm4m.nl,4fans.gay,men4menporn.eu,player.cdnm4m.nl#%#//scriptlet("set-constant", "canRunAds", "true") +dosenbiologi.com#$#.divright { float: none!important; } +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=soonersports.com +octane.jp##.memberRegistration +@@||ibon.com.tw/imageserver/images/ad_file/ +###ad_content_primary +||d29dbajta0the9.cloudfront.net^ +cumlouder.com##.resumecard +||zlut.com/_ad$subdocument +download.cnet.com##.product-single-left-rail-offer +||kksjsa.top^ +ticklingforum.com##div[id*="_banners_"] +games.qq.com##.dc-kf_list +mirf.ru###main-inplayer-2 +||static-rtb.adksrv.com^ +||trxs123.com/skin/default/js/jque.js +||1297.0s09t235s.com^ +uptime.com#$#body { overflow: visible!important; } +##.ad300x250_container +||councernedasesi.com^ +||og.elemeuric.com^ +||steadycdn.com/prod/js/*.js +gpblog.com##.promo-element +/common/ad.js$script +/peelads/*$script +###top-ad-rect +tko.pl,kaldata.com,techobserver.in##.tdn_block_newsletter_subscribe +||delfi.lv/news_export$domain=~delfi.ee|~delfi.lv +||gianwho.com^ +@@/advertising/*$domain=315.sh.cn +||tick.sculch.app^ +/^https?:\/\/s3\.*.*\.amazonaws\.com\/[a-f0-9]{45,}\/[a-f,0-9]{8,10}$/$script,third-party,xmlhttprequest,domain=~amazon.com +@@||cookiebot.com^$domain=cliente.nos.pt|login.nos.pt +||kioxia.com/etc/designs/kioxia/clientlibs_cmn/scripts/cookie_warning.js +@@||adx.adform.net/adx/$xmlhttprequest,other,domain=tvp.pl +pravda.if.ua#$#body { overflow: visible!important; } +###before-footer-ad +/adcgi? +midomi.com##div[style] > div[class^="Banner_snackBar_"] +@@||dcdirtylaundry.com/cdn-cgi/challenge-platform/$~third-party +||lexar.com/wp-content/plugins/lexar-cookie-accept/cookie.accept.js +||lkenflknkd.com^ +||cngoldres.com/web/js/*_advs +###index-bottom-advert +||goneawaytogy.info^ +gillette.*#$#.stop-scroll { overflow: auto!important; } +||yht7.com/web/assets/js/right.js +msn.com##.banner-container +||scarfsmash.com^ +rtl2.de#$#body { overflow: auto !important; } +glamour.com##div[data-testid="ProductEmbedWrapper"] +win2day.at#$#.cookie-not-accepted-overlay .main::after { opacity: 0 !important; z-index: 0 !important; width: 0 !important; height: 0 !important; } +/cgi-bin/ad/*$~xmlhttprequest +arenda.az##.banner_side +anandabazar.com##.right-add +##.adcode2 +||greewepi.net^$popup +lifehacker.com##.splashy-ad-container +||ddomjhr.icu^ +longzhu.com##.recommend-pop-up +##a[href^="//ejitsirdosha.net/"] +gordonua.com#%#//scriptlet('hide-in-shadow-dom', '.google_news') +bonus.is###nh-neth-gdpr-cookie-popup +||go.xlivrdr.com^$removeheader=location +||legmcwfok.com^ +sportfacts.net#%#//scriptlet('abort-on-stack-trace', 'XMLHttpRequest.prototype.send', 'adsBlocked') +||head-clickfusion.com^$third-party +##.adsArea +||houhoumooh.net^ +@@||games.pch.com^$generichide +||jellyfish.therapieplatz-finden.de^ +tribunademinas.com.br##.ggNews +delo.ua##.s-content__subscribe +howtogeek.com,gamerant.com,cbr.com,thegamer.com,screenrant.com,makeuseof.com,movieweb.com,androidpolice.com,xda-developers.com#%#//scriptlet('remove-cookie', 'articlesRead') +_Banner_Ads_ +digitalvidya.com###text-13 +shemale6.com##ul.primary > li:has(> a[href="https://theporndude.com"]) +||doprinplupr.com^ +bittorrent.com#?#.prodnews-container div[class^="col-"] > div.row:has(> div[class] > div[id="emailFormContainer"]) +sibreal.org###form-container +europa.eu###deu-cookie-banner +inazumanews2.com#$##rsshead { display: none!important; } +safe.kangkimin.com#%#//scriptlet("adjust-setInterval", "counter", "", "0.02") +@@||msn.wrating.com/a1.js +||ewogloarge.com^$popup +marcelpaa.com#$?#html.hustle-no-scroll { overflow: auto !important; } +regiojethotels.com,regiojet.*###__next > div[class^="fixed z-[100]"] +||brazzers.com/click/$popup +###right-widget-d-ads_widget-36 +##.ad--c +3addedminutes.com,anguscountyworld.co.uk,banburyguardian.co.uk,bedfordtoday.co.uk,biggleswadetoday.co.uk,blackpoolgazette.co.uk,bucksherald.co.uk,burnleyexpress.net,buxtonadvertiser.co.uk,chad.co.uk,daventryexpress.co.uk,derbyshiretimes.co.uk,derbyworld.co.uk,derryjournal.com,dewsburyreporter.co.uk,doncasterfreepress.co.uk,falkirkherald.co.uk,fifetoday.co.uk,glasgowworld.com,halifaxcourier.co.uk,harboroughmail.co.uk,harrogateadvertiser.co.uk,hartlepoolmail.co.uk,hemeltoday.co.uk,hucknalldispatch.co.uk,lancasterguardian.co.uk,leightonbuzzardonline.co.uk,lep.co.uk,lincolnshireworld.com,liverpoolworld.uk,londonworld.com,lutontoday.co.uk,manchesterworld.uk,meltontimes.co.uk,miltonkeynes.co.uk,newcastleworld.com,newryreporter.com,newsletter.co.uk,northamptonchron.co.uk,northantstelegraph.co.uk,northernirelandworld.com,northumberlandgazette.co.uk,nottinghamworld.com,peterboroughtoday.co.uk,portsmouth.co.uk,rotherhamadvertiser.co.uk,scotsman.com,shieldsgazette.com,stornowaygazette.co.uk,sunderlandecho.com,surreyworld.co.uk,thescarboroughnews.co.uk,thesouthernreporter.co.uk,thestar.co.uk,totallysnookered.com,wakefieldexpress.co.uk,walesworld.com,warwickshireworld.com,wigantoday.net,worksopguardian.co.uk,yorkshireeveningpost.co.uk,yorkshirepost.co.uk##[data-type="AdRowBillboard"] +streamsb.net#%#//scriptlet('prevent-addEventListener', 'click', '_0x') +||participateconsequences.com^$popup +||glersakr.com^$popup +digg.com##.ads-aside-rectangle +##.ad--desktop +##.ad-pagehead +zestolu.cz##div[style="min-height: 150px;"] +tvn24.pl#%#//scriptlet("json-prune", "playlist.movie.advertising.ad_server") +freetutorials-us.com,coursewikia.com,monetizemore.com###text-12 +ouo.press,leechpremium.link,cpmlink.net,shink.in##div[id*="ScriptRootC"] +back4app.com#%#//scriptlet('set-cookie', 'acceptedCookies', 'true') +||jpooavwizlvf.com^ +cleveroad.com##.bd_l0 +geekjob.ru##article#filter-box > section > div.s12 > div.message.violet.icon +||idthecharityc.info^ +goodcome.com.tw,sporttery.cn###mask +freecoursewebsite.com#@#.adsBanner +||harjuelu.ee/wp-content/banners/ +hc360.com###endAccessories1 +?adzone= +adsrt.org###vastWrapper +apkpure.com##img[data-slot-code] +erome.com##.free-space +||awyuge.xyz^ +cybermania.ws#?#.widget_text > .textwidget > p > ins.adsbygoogle:upward(2) +||sippansy.com^ +getpocket.com##.a47c4wn +||bdzdd2-sdd53-vxc.com^ +||superonclick.com^$third-party +||jsc.adskeeper.co.uk/*.js$script,redirect=noopjs,domain=hhkungfu.tv +||vesti.ru/4sport.html +||highcpmcreativeformat.com^ +ndtv.com,ndtv.in##[class^="firework"] +||cajanggaun.top^ +overdrive.com#$#.featherlight { display:none!important; } +||go2.global^ +comparic.pl##.container14 +/ttgg/*.js$script,third-party +nubiapage.com#?#.g1-collection-items > li:has(> div.g1-advertisement) +buyagift.co.uk##body > div[style*="position: fixed;"][style*="opacity: 0.8;"] +budcraft.ua##div[onclick="get_modal_callbacking();"] +domonet.jp##.banner_contents > a[href="/users/entry"] +sleazyneasy.com##.wrap > .sidebar::after +techsolutiontips.com##.widget_newsletter-pack +bajeczki.org##a[onclick*="https://www.greatdexchange.com/"] +||statserv.net^$third-party +creaders.net##a[title^="www.136888.com/"] +||amarotic.com/Banner/$third-party +@@||tstrs.me/img/*#/ +videobin.co#%#//scriptlet('set-cookie', 'overlay', 'true') +||livejasmin.com^$popup,third-party +||sysin.org/img/promotion- +mobilluck.com.ua###subscripepopup +simply-debrid.com#$##google_ads { height: 1px!important; visibility: hidden!important; } +||naggingirresponsible.com^$popup +best-legal.jp###common-cta +||img.etimg.com/photo/msid-111576466/whatsapp-banner.jpg +thestoryshack.com##.billboard-flash +/phpadsnew/*$image,script +##.top_ad_728 +modrinth.com#%#//scriptlet('prevent-element-src-loading', 'script', 'ethicalads.io') +easyupload.io##.mb-0.pb-0 +||yhdm335.com/piao/ +rawlplug.com##.z-cookiesBar +||obhggjchjkpb.xyz^ +@@||dropbox.com/*/oauth$document +wish.com##div[class^="ProductTray__ProductStripItem-"]:has(div[class^="DesignSpec__TextSpecWrapper-"][color="#6B828F"][data-testid] + div[class^="DesignSpec__TextSpecWrapper-"][color="#6B828F"]) +##.widget_blog_subscription +||nxtpsh.top^ +||brandaffinity.net^ +||cloudfront.net/js/gdpr_cookie_consent.min.js +cnyes.com#%#//scriptlet('remove-class', 'ppn-overflows', '.ppn-overflows.ppn-floating_enable') +questi.jp##.display-install-pwa +||whoavaud.net^ +mywatchseries.cyou#%#//scriptlet('adjust-setInterval', 'counter', '*', '0.001') +@@||free-hearts.com/game/js/lib/cookie-consent/cookieconsent.js +ifenpaidy.com#$##myModal { display: none !important; } +honwaka2ch.livedoor.biz##div[style^="width: 100%; height: 235px;"][style$="background: #fff;"] +||bend-me-over.com^$popup +m.xiaomiyoupin.com#@#[style*="mi-img.com"] +||mackerel.passiveincome.io^ +||choufauphik.net^ +##.adHeaderText +taboolanews.com#?#.taboola_feeds > div[tbl-feed-card]:has(> div.trc_rbox_container a.trc_attribution_position_after_branding) +book24.ru##.fake-jivosite +||gunmi.cn^$third-party +||bawdybeast.com^ +mp3juices.cc##iframe[src$=".html"][width="360"][height="51"] +aspor.com.tr###contactLink +foodingredientsfirst.com###leftnewslettersubsblock +bangpremier.com##.presentation-space-m-panel +||exertionbesiege.com^ +ifeng.com###upApp2 +||uepkcdjgp.com^ +||appendixbureaucracycommand.com^ +abplive.com###root > div[style="min-height:110px"] +autoguide.com,motorcycle.com,thetruthaboutcars.com,upgradedhome.com##.billboardSize +france-troc.com###div_pop_cookie +||teachingrespectfully.com^ +unmineablesbest.com##div[class^="uk-visible@"] +/get/?go=1&data=$subdocument +||idyllteapots.com^ +@@||ads.snapchat.com^$popup +/gaog/* +/^https:\/\/[0-9a-z]{5,}\.[a-z]{2,3}\/z-[5-9]\d{6}$/$script,~third-party +sport.ua##.t_subscribe +muzines.co.uk#@#.ad_main +||savefrom.net/build/js/chunk~popup +4shared.com##div[id^="epom-"] +||advmanager.techfun.pl^ +thehackernews.com##.custom-link +news.gamebase.com.tw##.rightMiddleAD +vipthz.com###fwin_content_imc_attachad [style="WIDTH: 100%; padding-left:10px;"] > div > p > a[href][target="_blank"] +goldpreis.de#$#html.force--consent.show--consent:not(#style_important) { overflow: visible !important; } +||fertilizerpairsuperserver.com^ +||mepupr486.top^ +jackjones.com#$#.flyout--cookienotification { display: none !important; } +thequint.com##.support-the-quint +||xlnvvbk.xyz^ +||spotxcdn.com^ +@@||static.doubleclick.net/instream/ad_status.js$domain=laksa19.github.io +||ice.hockey/images/sponsoren/ +||himunpractical.com^$popup +163.com#@#.s-btns +iloft.it##.cookie-law-policy +grabon.in##.g-subm > div.container +istockphoto.com##.slide-up-fade-in +entities.oclc.org###login-alert-popper +||swellstocking.com^ +indeed.com#$##popover-background { display: none!important; } +technicalatg.xyz#%#//scriptlet("adjust-setInterval", "wpsafe-", "2000", "0.02") +radio.at,radio.de,radio.dk,radio.es,radio.fr,radio.it,radio.net,radio.pl,radio.pt,radio.se##div[class*="md\:min-h-\[90px\] lg\:min-h-\[250px\]"]:has(div[id^="RAD_D_"]) +||geckibou.com^ +||fwbejnuplyuxufm.xyz^ +||banquetunarmedgrater.com^$popup +##.adPlacement +@@/wp-content/img/*$stealth=referrer,domain=komikcast.* +mypolitics.pl#%#//scriptlet('trusted-set-local-storage-item', 'scriptsPreferences', '{"adsbygoogle":false,"abgoogle":false,"ga4":false,"metapixel":false,"hotjar":false,"amplitude":false}') +textstudio.co#%#//scriptlet("abort-current-inline-script", "document.querySelector", "getBoundingClientRect") +||beturtwiga.com^ +ipa.zeejb.com###myModal +||minutelight-1.online^ +||aldragalgean.com^ +lvnews.org.ua,tenews.org.ua#$##ourSocial { display: none!important; } +setopati.com##.top-main-ads > .mast-head +||lyricsneighbour.com^ +medium.com#?#div[class*=" "]:has(> div[class*=" "] > h2[class*=" "]:contains(/^Get unlimited access/)) +fotor.com##.infoBox +zybang.com##.related-question-below-text +||hjalma.com^ +||multstorage.com^ +||sunporno.com/blb.php +||shallowtwist.pro^ +rok.guide##.ancr-sticky +||snugwednesday.com^ +onlyporn.tube,porntop.com###s-suggesters +manutd.com#@#.cookie-setting-message +theresanaiforthat.com#$#body.noscroll { overflow: auto !important; } +||peethach.com^ +bookoffonline.co.jp###m1 +||roundpush.com^$document +@@||cdn.onesignal.com/sdks/OneSignalSDK.js$domain=hideout.co +jigsawplanet.com###tsi-9c55f80e-3 +briefmenow.org##aside#secondary > a[href="https://www.prepaway.com/"][rel="nofollow"] > img +||weraveyou.com/wp-content/uploads/*/WeRaveYou_PromotionAD6.png +||anvilfaintmaiden.com^ +xbabe.com##.bnnrs-aside +haydenjames.io##div[id^="hayden"] +si.com#@##mplayer-embed +||hpyjmp.com^$popup +global.americanexpress.com##.text-align-center.pad-tb +||mqsjzm.cn^ +||fertilizerpokerelations.com^ +musescore.com###ad_cs_12219747_728_90 +@@||cdn.broadstreetads.com/init.js$domain=thebatavian.com +xfreehd.com##.cookieAcceptBox +online-qr-scanner.com##.appads +healthline.com#?#article > div:not([class]):not([id]):has(> section > div > div > div > div:contains(ADVERTISEMENT)) +##.wsa-cookielaw +###ad-leadertop +forumophilia.com##div[class$="text-center"] > a[rel="nofollow"] > img +||a433.com^$third-party +typingme.com##.ad970x250 +zmiksowani.pl#@#.gadContainer +##.nfy-ad-wrapper +medibang.com#$#.mpcViewerAds { display: none !important; } +xhamster.com##.yfd-fdsp-b +fcportables.com##div[class^="popup"][class$="wrap"][id] +||routerhydrula.com^ +/cdn-cgi/pe/bag2?r[]=*.mgid.com +||d1net.com/index.php?m=poster& +||basicflownetowork.co.in^ +||linksprf.com^$popup +uploadvr.com##.tag-vr-games::before +||handkerchiefstapleconsole.com^ +zfile.in.ua#$#.filelist > div#filelist2 { display: block !important; } +||lostdormitory.com^$popup +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=yallo.tv,important +||systeme-business.online^$popup +downforeveryoneorjustme.com##div[class*="min-h-"][class*="194px"][class*="210px"] > .text-lg > div[class*="cursor-pointer"]:has(> .shadow:only-child > a[rel="sponsored"]:only-child) +||hdtoday.tv/ajax/banner +||999fb.cn^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,domain=fontyukle.net +m1cu.org##.alert-fixed[style] +empik.com#%#//scriptlet('set-cookie', 'cad', '1') +||dreadfulprofitable.com^ +@@||instagram.com^$generichide +||disorderbenign.com^ +nationalprivacytest.org##.bg-grey-darkest.bottom-0 +||system-notify.app^ +@@||standardmedia.co.ke/assets/js/prebid-google-ads.js +###mediumRectangleAd +||yueuucoxewemfb.com^ +||google.com/*/ads.html|$redirect=nooptext,important,domain=napisy24.pl +freecourseweb.com#?#.getSection > a[href="https://freecourseweb.com/telegram"]:upward(1) +trickswire.com#$#.mts-cl-overlap-mode > .mts-cl-blur-area { filter: none!important; } +qq.com##.yscoin-box +||gayal.maxmasnick.com^ +||ardslediana.com^$popup +||wnacg.*/1605524662751.gif +||szjjzs.com/js/d*.js +remarkable.com##div[class^="CookieBarstyles__Bar-"] +##.ad-list-item +##.ads_label +filecr.com#@#.ad_unit +||akunssh.net/assets/js/extra.min.js +||thepopads.com^ +||jxcn.cn/js/hotpic_ +bereitschaftsdienst-hessen.de,kvhessen.de###js-cookie-settings-manager +||valleysrelyfiend.com^ +||d3qttli028txpv.cloudfront.net^ +inno.be#$##consentModal ~ .modal-backdrop { display: none !important; } +ps4.in.ua##.adblockDetectedMessage +||trackeverything.co^ +gayvidsclub.com,pokemonlaserielatino.xyz,vipboxi.net,stbpnetu.xyz,tmdbcdn.lat,asdasd1231238das.site,animeyt2.es,filmcdn.top,ztnetu.com,vpge.link,opuxa.lat,troncha.lol,player.igay69.com,xtapes.to,rpdrlatino.com,player.streaming-integrale.com,vapley.top,fansubseries.com.br,cinecalidad.vip,shitcjshit.com,playertoast.cloud,fsohd.pro,xz6.top,javboys.cam,vzlinks.com,playvideohd.com,younetu.org,mundosinistro.com,stbnetu.xyz,diziturk.club,1069jp.com,vertelenovelasonline.com,playerhd.org,gledajvideo.top,filme-romanesti.ro,video.q34r.org,ntvid.online,porntoday.ws,netuplayer.top,netu.ac,peliculas8k.com,hqq.ac,younetu.com,ekino-tv.link,nu6i-bg-net.com,cdngee.com,yalapwl.xyz,plushd.bio,xxxbestsites.com,universanimevf.com,xkeezmovies.com,jaygay.to,europixhd.net,cuevana.*,cuevana3.*,monstream.org,javboys.cam,koreanbj.club,redload.co,streaming-french.net,ytms.one,rpdrlatino.live,vaav.top,ddl-francais.com,cuevana4.cc,watch-series.site,illimite-streaming.com,gratflix.org,multiup.us,player.koreanpornmovie.xyz,filmesonlinehd1x.pro,netu.fshd.link,oyohd.one,xxvideoss.net,kitraskimisi.com,msmini.cyou,hydrax.xyz,waaw1.tv,vido.fun,czxxx.org,pajalusta.club,streamzz.*,xtapes.to,upvideo.to,moovies.in,richhioon.eu,haes.tech,wiztube.xyz,netu.in,cineflixtv.net,vizplay.*,view47.*,streamplusvip.*,oyohd.com,hindilinks4uto.com,msubplix.com,vidxhot.net,waaw.*,justswallows.com,meucdn.vip,yandexcdn.com,firstr0w.eu,hqq.*,onlystream.tv,streamz.*,3movs.com,alltube.tv,tryboobs.com,eporner.com,vivatube.com,verystream.com,ashemale.one,kaotic.com,hentaicore.org,alltube.pl#%#//scriptlet("abort-on-property-read", "BetterJsPop") +||d2hvwfg7vv4mhf.cloudfront.net^ +overclock3d.net##.bglink +||madnessindians.com^ +@@||letocard.fr/wp-content/uploads/$image,~third-party +||33445522.com//admin/adv/ +xkyn.com#%#//scriptlet("set-constant", "conone_lmg", "noopFunc") +/code/silent.js?h=$script +||123.sogou.com/discover/? +||ohtpigod.com^ +denizozel.com###footer > .kvk +chimpify.de#%#//scriptlet('set-cookie', '_coo_seen', '1') +hallhuber.com#@#.cookie-box:not(body):not(html) +supersextube.pro#%#//scriptlet("prevent-window-open") +chase.co.uk#%#//scriptlet('trusted-click-element', '#consent-manager-modal button.tw-bg-primary') +tabloidpulsa.co.id###sp642 +||fulhamscaboose.website^ +mmorpgitalia.it#$#.adContainer { height: 1px!important; } +||baidu.com/po/api/configure/show.jsonp +||rightsapphiresand.info^ +comicsxxxgratis.com,video.javdock.com##.video-container +aachener-bank.de,meine-rvb.de,volksbankeg.de,fiduciagad.de#$#body > .darken-layer { display: none !important; } +##.easy-ads +2cycomic.com,yemancomic.com##body > div > center +###ax-billboard-top +myshows.me##a[href^="https://myshows.me/pro/?from=banner"] > img +||blzz.xyz^$popup +fapcat.com##.spot-list +independent.co.uk#%#//scriptlet("set-constant", "google_tag_manager.dataLayer.gtmDom", "true") +rifurl.com#%#//scriptlet("prevent-window-open") +||wangjing.cn/iframe/zhounian.php? +avaxgfx.com#?#.col-right > .side-box > .title:contains(/^Adventising$/):upward(1) +epravda.com.ua,pravda.com.ua###checkUPcookies +/html/taobao_focus_ +insideedition.com##.player__wrapper.is-sticky > div.player__container +bigpicture.ru###bigpicture-webpush-widget +||uploady.io/nt1.js +=BAIDU_SSP_define& +||5b10f288ee.com^ +webrazzi.com,mouser.it###gdprBar +pokemon-goh.doorblog.jp##.article-body-inner > div.t_b + div[style="padding: 10px; margin-bottom: 10px; border: 1px dotted #333333;"] +neonime.*##.tampilan_tambahan > a[href^="https://bit.ly/"] > img +gaystream.pw#%#//scriptlet('trusted-click-element', '.streams .overlay-close > button', '', '500') +###takeover_ad +||eringosdye.com^ +##iframe[width="100%"][height="120"] +||dict.youdao.com/vip/privilege/show/V*?bannerType=fanyiTop$domain=fanyi.youdao.com +abercrombie.com###first-look-toaster +o-pro.online,eda-ah.com#%#//scriptlet("adjust-setInterval", "mdtimer", "", "0.02") +wallpaperflare.com##div[itemtype$="WPAdBlock"] +##.oas_ad +kitsu.io##.alert-kitsu +schwabach.de###pm_cookies +bitsfree.net#%#//scriptlet("abort-on-property-read", "adsBlocked") +preis.de##body .cookieBanner.active +||sgidskib.top^ +||bulserv.com^ +163.com##.m-adv +###adsSectionLeft +||uptostream.com/assets/ads.xml +||ykq3pfmcxw9lqmn2.quicknewssurge.com^ +imac-torrents.com##.button +||gammaplatform.com^ +esfera.com.vc##.js-global-cookies +jungewelt.de##.overlay-container +ural56.ru##.subscription-tg-menu +||dwebwj8qthne8.cloudfront.net^ +||apparelbrandsabotage.com^ +tptoon.com##span[style^="position:fixed; bottom:30vh;"] +stackexchange.com,superuser.com,stackoverflow.com##.js-dismissable-hero +mirvracha.ru#$#[class*="LayoutGuest_blur__"] { filter: none !important; -webkit-filter: none !important; } +chinayk.com##.yb_banner +@@||verticalscope-com.videoplayerhub.com/galleryplayer.js$domain=avsforum.com +||belavoplay.com^ +||gamecopyworld.eu/js/pp.js +||badslopes.com^ +fqlook.cn###rtj1009_iho3 +userscript.zone##.w300 +||animax.*/ax.js +longfonds.nl###ptCookieBarWrap +dap-news.com##.ads +liveexpert.org,jobs.dailymail.com,alniaciklar.com,templatemonster.com,insaatnoktasi.com,playson.com,zara.com,newpharma.fr,newpharma.be,newpharma.de,newpharma.nl,newpharma.at,apo24.ch,audemarspiguet.com,press.lv##.cookie-policy-popup +kukaj.me#%#//scriptlet('abort-current-inline-script', 'addEventListener', '/script\.onload[\s\S]*?message[\s\S]*\.show\(\)/') +huya.com###huya-ab-fixed +zapier.com##div[data-name="blog-article-popup"] +||ourhotstories.com^ +cnn.com##.stack__ads +fxstreet.com##div[data-gtmid="crypto-app-notif"] +privatedivision.com##.subscribe-form__modal +moegirl.org.cn#?#.capsule-card:-abp-has(.n-tag) +nivod2.com,nivod2.tv,nivod4.com,nivod4.tv,nivod5.com,nivod5.tv,nivod7.com,nivod7.tv,nivod8.com,nivod8.tv,nivod9.com,nivod9.tv##.img-list > .img-item:has(> a[href*=".ad_click"]) +zorox.to##a[href^="https://mangafire.to/"] +/ad_pop.php?$popup +cheaptickets.com,ebookers.com,expedia.at,expedia.be,expedia.ca,expedia.ch,expedia.co.id,expedia.co.in,expedia.co.jp,expedia.co.kr,expedia.co.nz,expedia.co.th,expedia.co.uk,expedia.com,expedia.com.ar,expedia.com.au,expedia.com.br,expedia.com.hk,expedia.com.my,expedia.com.ph,expedia.com.sg,expedia.com.tw,expedia.com.vn,expedia.de,expedia.dk,expedia.es,expedia.fi,expedia.fr,expedia.ie,expedia.it,expedia.mx,expedia.net,expedia.nl,expedia.no,expedia.se,hoteis.com,hoteles.com,hotels.com,orbitz.com,travelocity.ca,travelocity.com,wotif.com##.uitk-card:has(.uitk-badge-sponsored) +skyfilabs.com#?#.container > div.row-breadboard:has(> div[class] div[class] > form#subscribe-form) +eelly.com##.top-picture +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=jarochos.net +fanpage.it##.fp_underfollow +scribegeser.weebly.com#%#//scriptlet('abort-current-inline-script', 'document.write', 'atob') +bestrecipes.com.au,delicious.com.au,taste.com.au##.news-video +||urechar.com^ +||gaqscipubhi.com^ +||40451343.xyz^$document,popup +papara.com###smart +nagpurtoday.in###secondary aside.widget_custom_html +||cumbersomecake.com^ +||bumxmomcu.com^ +latinohentai.com##aside.widget_media_image > a:not([href*="latinohentai.com"], [href*="twitter.com"], [href*="discord.gg"]) > img +||ekr.zdassets.com/compose/zopim_chat/ +@@||linetv.tw/profile$stealth +##.site-head-ads +##a[href^="https://go.xlirdr.com"] +/lion321-$domain=spy-manga.com +||theyeiedmadeh.info^ +indy100.com##.addressed_cls +in.mashable.com#$?#.additional-info > div.additional-container:has(> p:contains(Advertisement)) { display: none !important; } +desire2music.net#?##content[role="main"] > #weeksong:has(> .d2m-banner-zone) +iphone-tricks.de###text-8:nth-child(5) +colonist.io##div[id^="in_game_ab_"] +||buyadvupfor24.com^$popup +||yxbao.com/js/beitou. +@@||10086.cn^*/ad$~third-party +||midwiferider.com^ +||fstsrv7.com^ +||mountrideroven.com^ +disboards.com#?#.p-body-sidebar > div[style^="background-color:"]:has(> div[align="center"] > a[href^="https://www.wdwinfo.com/"]) +zaobao.com.sg###ei_subscribe +||shulugoo.net^ +baodatviet.vn###mid_col > .content_160 > div[style="clear: both; margin-top: 5px; margin-bottom: 2px; width: 160; height: 150px"] +||koapsuha.net^ +||hphvd.cn^ +||vg876yuj.click^ +@@||baidu.com/static/touch/js/lib/fingerprint.js$~third-party +@@||agostea-karlsruhe.de/wp-content/themes/agostea/js/gdpr.js +movoto.com##.guide-banner-container +||6393.833enmhob.com^ +||mmtdfxh.xyz^ +techmaniak.pl,activemaniak.pl,gizmaniak.pl,agdmaniak.pl,rtvmaniak.pl,fotomaniak.pl,tabletmaniak.pl##.alead +||isbnrs.com^ +||rjqzljvorryba.top^ +||npnzfri.xyz^ +insurance.rakuten.co.jp###grpheader > div.spOff +gaokao.com###ad_top_gkw +||stackify.dev/images/banner/ +||adexchangeprediction.com^ +fydisk.com###vbox +gledajcrtace.xyz###sidebar-two > #HTML5 +||heleric.com^ +jmw.com.cn##.leftCouplet +financer.com##.modal-gdpr-full +||2bd8de8e62.4164d5b6eb.com^ +###ad_home_middle +axar.az###ptop > div[style^="float:left; width:500px; height:100px;"] +||nnteens.com/ad$subdocument +carsensor.net##.fixedAppBanner +||gjmedashb0.fun^ +reidl.de#%#//scriptlet('set-cookie-reload', 'ga-opt-out', 'false') +rems.de#%#//scriptlet('set-cookie', 'cookieinfosettings', '1') +newyorker.com##.cm-footer__wrapper +||silentcredit.com^ +||bird.recruitkit.com.au^ +huya.com##.room-gg-chat +pornflix.cc##.sbar +||8s32e590un.com^ +||7697.833enmhob.com^ +nhungcaunoihay.net##.text > a[href^="/away.php?file="][rel="nofollow"] > img +mouse-sensitivity.com##.ipsList_reset > li.ipsWidget_vertical > div[style="width:343px;height:630px;margin-top:15px;"] +51cg1.com,h3ugz0.arwiotgiy.com,h3ugz1.biyuhcltj.com,h3ugz2.lrjhvntu.net,h3ugz3.ogvoxarpd.com,h3ugz4.uovxifzj.com,h3uaz0.ogvoxarpd.com##article:has(> a > div.post-card > div[style^="background-image: url(\"data:image/gif;base64"]) +||embed.ex.co^$third-party +erogematome.com,syurabahazard.com,shuraba-matome.com,rebosoku.com##.toprss +||freedownloadmanager.org/js/achecker.js +||koapsout.com^ +audi-boerse.de,audi.*,audi##.ensPrivacyManager +businessinsider.de##.billboard-and-banner +magazine.skyeng.ru##.ske-email-subscription +||eespekw.com^ +thespike.gg##.siderail_ad_right +healthfirstweb.com,yogablogfit.com,howifx.com,imperialstudy.com#%#//scriptlet("adjust-setInterval", "timeSec--", "*", "0.001") +||zbporn.*/tri/zp.js +@@||jd.com^*&refer=http$script +||swoopkennethsly.com^ +jmbbs.com###xjj_jmbbs2015_01 +exploit.media#?#.content > p:has(> a[href="http://bit.ly/exploitex?ref=exploit.media"]) +.doc?t=popunder$all +||naughtyblog.org/81bf26be.js +/aot-content/assets/*/cb-ads/*$domain=asiaon.top|asiaontop.com +scribd.com###sidebar div[class^="_"]:has(> div[class] > div[class] > span:contains(ad)) +##.cc-banner +zdg.md##.block7 +whatnext.pl,whatsnext.pl##.wnbad +sony.ru,pch.com,sony.com.br,royalmail.com,uber.com##.privacy_prompt +wayfair.de##div[data-hb-id="Portal"] +||23.109.248.14^$popup +||optzsrv.com^$popup +||whetin.com^ +||adcleanerpage.com^$popup +@@||crackle.com/vendor/adex.js +motorcycle.com,autoguide.com##body .ad-top-strip +smallseotools.com##.available_on +||apkmodhub.in/wp-content/plugins/chaty-pro/js/cht-front-script.min.js +://www.*.com/js/css/$script,third-party,header=link:/adsco\.re\/>;rel=preconnect/ +@@||xhamster*.*/*/ads$xmlhttprequest,~third-party +hentaiprn.com,whipp3d.com##.widget_block +avito.ru##div[class^="personal-discount-adaptive-banner-"] +/wp-content/plugins/cookielay/public/*/cookielay.$domain=die-autodoktoren.tv +avcao.cc##.ps-body > div[class^="adv-top"] +||arabs.alarabsex.com^ +||locooler-ageneral.com^$popup +@@||i.pximg.net^$stealth=referrer,domain=pixiv.net|pixivision.net +rothe-gartenbau.de###eu_opt_in_cookie_banner +ts-tube.net##.js-uvb-spot +||supremepresumptuous.com^ +||tensasscarify.com^ +fragrantica.com,fragrantica.ru##.text-center.cell > div[style^="clear: both; width: 100%; text-align: left; padding:"] + div > sup +||hw70f395eb456e.aomg5bzv7.com^ +##.ads_4 +cashconverters.be#$#body { overflow: visible!important; } +||scannersouth.com^ +||lizebruisiaculi.info^$popup +softwaretested.com##.snippet-content +/91ad. +||starmobmedia.com^ +###sponsored-listings +drive.com.au##hr +||regulushamal.top^ +lhv.ee,skm.pkp.pl#$#.mfp-bg { display: none !important; } +freyerleben.de#@##cookieModal +##.ad_300_600 +wprost.pl##.bli-ad +freedownloadmanager.org###subscribe_form_wrapper +wsj.com##div[data-inset_type="newsletterinset"] +w3school.com.cn###sp_tiy +hdmotori.it,mauiathletics.com###overlay +@@||hvg.hu/Content/redesign/js-notbundled/showads.js +paste1s.com#%#//scriptlet("adjust-setInterval", "#second", "", "0.02") +maidirelink.it##.background-cover +||xml-eu-v4.boardpress-b.online^ +||asg.mainos.pro^ +graphicget.com,udemy-downloader.com#$#body { overflow: auto !important; padding-right: 0 !important; } +veriff.com#%#//scriptlet('trusted-set-cookie', 'veriff_cookie_consent', '%7B%22performance%22%3Afalse%2C%22functionality%22%3Afalse%2C%22targeting%22%3Afalse%7D') +||cwwgqu.xyz^ +@@||imore.com/sites/all/libraries/adblockdetection/adblockDetector.min.js +islamicfinder.org###sidebar div[class]:has(> div.row > div.banner-box) +##.adblock300250 +ligazakon.net##.subscription_sidebar_block +tozanchannel.blog.jp#?#.menuLineLightW-3:contains(人気記事) +tproger.ru##.tp-lubok-top +||rangfool.com^ +/_xa/ads_ +||dental-drawer.pro^ +pizzahutsurvey.com##.CookieBannerText_Mobile +mangaflame.org,nhk.or.jp,jucagototranslations.fukou-da.net,quotev.com,nontongratis88.live,freecourser.com#$#body * { -webkit-touch-callout: default!important; -moz-user-select: text!important; -webkit-user-select: text!important; -ms-user-select: text!important; -o-user-select: text!important; user-select: text!important; -khtml-user-select: text!important; } +||agamaevascla.top^ +time.news##section[data-id="1281c08c"] +cloud.google.com##.glue-cookie-notification-bar +avantree.com##.subscibe +||3wr110.xyz^$popup +ameblo.jp###acmp-opt-in +@@||ntou.edu.tw/bin/showads. +||un1.lawyernet.cn^ +/pagead/1p-user-list/*$image +helloworldonline.hu#$#.ad-skin-space { height: 0!important; } +royalcams.com,adultcams.me,adultchat2100.com,alphafreecams.com,bimbolive.com,bongacam.net,bongacam.org,bongacams-chat.ru,bongacams.com,bongacams.eu,bongacams2.com,cammbi.com,clipmass.com,prostocams.com,smutcam.com###fancybox-overlay +##.mks_ads_widget +primevideo.com##.DVWebNode-conditional-site-wide-wrapper > .fbl-banner:has(form[action*="/privacyprefs/sp/consent/"]) +digitalo.de#@##cookie_consent +##.advert_note +/\.(cc|com|top|xyz)\/i\/v$/$third-party,xmlhttprequest +||musselchangeableskier.com^ +||203.195.121.34^ +sourceforge.net##.sterling +||leeleo.top^$third-party +subdl.com##a[href^="https://subdl.com/ads.php"] +filmweb.pl##.faStaticBanner > a +||kirteexe.tv^$popup +||mediaspineadmirable.com^ +hindustantimes.com##.new__newsletter__signup +linkedin.com#$#.promo-bottom-sheet { display: none !important; } +dogemate.com##center > div[style^="width:300px;"][style*="height:250px;"] +bingdou.com.cn,hoteastday.com##.float_ad +tweaktown.com###cookies_footer_sec +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=10play.com.au +||ubdmfxkh.com^ +resetoff.pl#%#//scriptlet("set-constant", "ads_unblocked", "true") +###mpu2_parent +he-games.com###he_bottom_ad +||betonline.net.pl/media/images/$domain=elivescore.pl +blogs.oracle.com###delayedPopup +###div-adcenter2 +||pushify.com^$third-party +freepornhq.xxx##.aside-itempage-col +dymo.com##.cookieHandler +||employindulgenceafraid.com^ +masterani.me##.hero-726x90 +lawrievetgroup.co.uk#$##js-consent-wrapper { display: none !important; } +||watchcartoonsonline.eu/inc/ggz/ffa.js +###cookie_str +||cloakedpsyche.click^ +||towersresent.com^ +||hb.tewitfeoffee.com^ +||dsdsg44.fun^ +thestreet.com,qa.opensooq.com,komandacard.ru#%#//scriptlet('remove-class', 'fancybox-lock', 'html') +kleiderkreisel.de,mamikreisel.de##.js-notification > .c-cell +starwalk.space#%#//scriptlet('set-cookie', 'SWCOOKIESACC', '1') +blogs.bing.com,formula1.com,amp.n-tv.de###cookie-banner +||meiju22.com/new/Public/gg.js +nypost.com#%#window.checkState = function() {}; +||zdscdkc.icu^ +@@||survey.g.doubleclick.net^$script,domain=sporcle.com +##.main-column-ad +||ittorchicer.com^ +faxingw.cn##.detailadv +alternative.me#?#.container > .block[style]:has(> .adsbygoogle) +appledaily.com.tw##.adblock_splash +||lovense.com/UploadFiles/Temp/$third-party +||indictmentlucidityof.com^ +||pipsol.net^$popup +@@||simba.taobao.com/?name=mcad$script +||top888.com^$third-party +||8cc514abf6.a9579899d4.com^ +cat3movie.org##.float-ck-center-lt +||ndzoaaa.com^ +||ad-addon.com^$popup +cumlouder.com##.banner-frame +||rawgit.com/wejdaneblogger/master/master/wejdane-adblocker.js +piceramic.com#@#.cc-window[aria-label="cookieconsent"] +||69322ba5bb.fc7c8be451.com^ +||wcbxugtfk.com^ +|http://*/*_ad.js$domain=~pcpop.com|~xitek.com +hdzog.com##.xkggggx +link.paid4link.com#%#//scriptlet('remove-class', 'get-link', 'a.get-link[target="_blank"]') +##.tile_AdBanner +citilink.ru##.PersonalDataConfirm +baer-original.de,ballhandel.de,myblender.de#%#//scriptlet('set-cookie', 'allowCookie', '1') +||aultesou.net^ +@@||googleadservices.com/pagead/conversion_async.js$script,domain=zubizu.com +||doct-umb.org^$popup +||digit.in/js/ads_management.js +51cto.com###edu_adver +snob.ru##.entry__telegram +||jangiddywashed.com^ +##.ad-breakout +watchpornx.com#%#//scriptlet("prevent-window-open") +vidhub1.cc,vidhub.me,vidhub.tv##.promotelink +##.channel--ad +avcanada.ca###wrap > #page-header > table[cellspacing] +###adtxt +fitatu.com##.regular__content > div.regular__banner +18board.com,18board.net,18p2p.com,18p2p.tv##a[target="_blank"] > img[width^="72"] +@@/unadblock/adjs_$domain=hepan.com +||dzubavstal.com^ +##.google-ad-header2 +gab.com#?#main div[tabindex="-1"] + div:not([class]):has(> div[class^="_"] > div[class^="_"] > div[class^="_"] > a[target="_blank"][href="https://grow.gab.com"]) +2234.cn##.pc-down_url_left > .pull-left +inside-digital.de,sanalbasin.com##.push-wrapper +||d3ngt858zasqwf.cloudfront.net^ +||ovardu.com^$popup +sainsburys.co.uk##.pd-merchandising-product__wrapper +||gapchanging.com^ +abplive.com##.article-data > p[style="text-align: justify;"] + div.section.uk-padding-small +nembus.ru#$#body { overflow: auto !important; } +||nettruyenup.com/data/*/banner/*.gif +@@||cdn.privacy-mgmt.com/unified/wrapperMessagingWithoutDetection.js$domain=gentside.com +||tururu.info^ +@@||cdn.cookielaw.org/scripttemplates/otSDKStub.js$domain=everyeye.it +||jav-bukkake.net/images/download-bukkake.jpg +##.SideAdCol +||qumagee.com^ +||ptongouh.net^ +||1635.l5eamr17d.com^ +streamtape.*#%#//scriptlet("prevent-window-open") +@@||v.fwmrm.net/crossdomain.xml$xmlhttprequest +||afcnuchxgo.com^ +javfor.tv##.fel-playclose +||m1.darfd.com^ +staples.com##div[class^="sku-configurator__banner"] +||qn-5.com^ +bcquan.me##.bcqad +@@||auto-swiat.pl/*srcc=$stealth +##.blog-ads +||izqeyo.xyz^ +||pptv.com/game/aplus/client/gamedetail.html +diziizle.net###facebook-takipet +||dapperdeal.pro^ +||qxwoiv.com^ +||scores24.live/tvsv/offers? +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,important,domain=populistpress.com|canadafreepress.com|thelibertydaily.com|writerscafe.org|populist.press|welovetrump.com|grammarist.com|protrumpnews.com|concomber.com|gamersheroes.com|letocard.fr|100percentfedup.com|thepalmierireport.com|kresy.pl|beforeitsnews.com|thepatriotjournal.com|phoenixnewtimes.com|thepoke.co.uk|comicallyincorrect.com|thegatewaypundit.com +toolslib.net##.custom > a[href^="https://buy.malwarebytes.com/?c=cb&s="][rel="nofollow"][target="_blank"] > img +||prototypewailrubber.com^$popup +sina.com.tw###colorbox +livestreaming24.eu#%#//scriptlet('prevent-setTimeout', 'ad.clientHeight') +theregister.co.nz###custom_html-13 +||3942b8586f.bbc781f81e.com^ +naekranie.pl##body .prawa-szpalta +###bandeauCookie +play.tv3.lt##.c-details__leaderboard-ad +webmd.com##.top-picks +pesstatsdatabase.com##.ad-tag + center > a > img +||localelover.com^$popup +||newbluetrue.xyz^$popup +||vidschannel.online^ +yifyhdtorrent.org#%#//scriptlet("json-prune", "*.*", "*.clk") +||distant-handle.pro^ +gp.se##.adblock-checker +mathem.se#%#//scriptlet('set-cookie', 'CookieConsentPolicy', '1') +||nudepatch.net/dynbak.min.js +||tfarruaxzgi.com^ +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=slowopodlasia.pl +||confirmexplore.com^ +ssk.de#@##cookiebanner +americafirstreport.com##[href="https://jdrucker.com/ira"] +##.snippet-ad +||stripedcover.pro^ +@@||siteseal.certerassl.com/validate/dynamic$stealth=referrer +cww.net.cn##.adlinkL +||inlandpiereel.com^ +###cookie_bar +autocont.cz##.cookie-fade-window +vbaexpress.com##img[width="728"] +||seedoupo.com^ +||googletagservices.com/tag/js/gpt.js$script,redirect=googletagservices-gpt,important,domain=etf.com +/webads/*$image,domain=~cccc.edu|~meatingplace.com +comments.ua##.conteres > p[style="font-weight: 700!important;padding-top: 10px;padding-bottom: 10px;background: aliceblue;text-align: center;"] +/adv-scroll.$script +||freehao123.com/wp-content/uploads/2017/05/mmkdm.png +||sorrowfulclinging.com^ +huanqiu.com##.ad_all +||cpmrevenuegate.com^ +bicfic.com##a[href^="http://curve.talkrabbit.icu/"] +||pushub.net^$popup +faphouse.com,xhamsterpremium.com##.cookie-policy-agree +##.content-ad-box +fububu.com###wendibu +##.ad-banner-image +themaclife.com##div[id^="add_sidebar_"] +3mdeutschland.de##.privacy_prompt +element-plus.gitee.io##.sidebar > .page-content +winfuture.de#?#.topnews > div:has(span:contains(/(Anzeige)|Schnäppchen|sale|(? div.relative:has(> span + a[href^="https://www.deeplearning.ai/resources/"]) +mybroadband.co.za##.next-previous-article +||digipathmedia.com^$third-party +||ooeciumuplift.click^ +pcgamestorrents.com,igg-games.com##article > .uk-margin-medium-top[property="text"] > div[style] > a[aria-label] > img +||symmorybewept.com^ +||sogoucdn.com/translate/ssr/static/img/banner- +||inscribereclaim.com^ +||rqazepammrl.com^ +||adpays.net^$third-party +history.com##.m-in-content-ad +||rtrgt.com^ +business2community.com##.sticky-header +lazytranslations.com##a[href^="https://www.interserver.net/r/"] > img +||albumshrugnotoriety.com^ +tripadvisor.com#?#[data-automation="crossSellShelf"] div:has(> span:-abp-contains(Sponsored)) +hvhbbs.com##.block[data-widget-definition="SwiperWidget"] +baidu.com##.school-promotion-pop-wrap +spektr.press##.social-news-buttons +via.tt.se##div[class^="footer__notification styledBarNotification__BarNotificationOverlay-sc-"] +||tattepush.com^ +hotpot.tv#$#.bp3-portal { display: none !important; } +player.hu##.seethru +||gmknz.com^ +||openmindedaching.com^ +||3285.l5eamr17d.com^ +pornburst.xxx,serviporno.com##.ntv-disclaimer +||countdownwildestmargarine.com^ +##.ad-home-leaderboard-placeholder +_ad_sidebar_ +@@||hboav.com/guga/ads.js +||n0255.com^ +||nupdhyzetb.com^ +||s27.aomg5bzv7.com^ +wenku.baidu.com##.banner-more-title +flickr.com#?#.search-container-w-sidebar-content > div.view:has(> div[id^="yui_"] a[href^="/account/upgrade/pro?"]) +thebarentsobserver.com,cashtocode.com###newsletter-overlay +pluggedingolf.com##[id^="black-studio-tinymce-"] +||deenoacepok.com^ +||upsamurottr.com^ +###leader-board-ad +/^https?:\/\/([0-9a-z\-]+\.)?(9anime|animeland|animenova|animeplus|animetoon|animewow|gamestorrent|goodanime|gogoanime|igg-games|kimcartoon|memecenter|readcomiconline|toonget|toonova|watchcartoononline)\.[a-z]{2,4}\/(?!([Ss]cripts|[Uu]ploads|[Ii]mages|assets|combined|content|cover|img|static|thumbs|wp-content|wp-includes))(.*)/$image,other,script,~third-party,xmlhttprequest,badfilter +phemex.com#?#body > div.wrap > div.wrap:has(> .main > div > div > a[href$="/phemex-privacy-policy"]) +vuejs.org###special-sponsor +||clickppcbuzz.com^$popup +||shopbreakfast.com^ +||accedeproductive.com^ +||cloudtrack-camp.com^ +||grandezza31.fun^ +anyshemale.com##.wide > .af +tesup.com#$#body[class*="overflow"] { overflow: auto !important; } +factmonster.com###block-homepagefmabovethefoldads +weather.com##section[title="Top Deals"] +_468x80- +||a1b7fa8b46.250f851761.com^ +||ezcgojaamg.com^$popup +irishtimes.com###it-toast +training.javatpoint.com#%#//scriptlet('abort-current-inline-script', '$', '#myModal') +mecze24.pl##.list ol > li.promo > a[href][rel="external"] > img[src^="upload/bookmaker/"] +://m.*.pw/*/*.js?$third-party +||godpvqnszo.com^$popup +||albraixentor.com^ +||surrenderdownload.com^ +desipapa.tv##.video-tb > .video-col +###squareAd +lifestyleasia.com##.btt-top-add-section +||i.imgur.com/*.gif$domain=cakhia19.tv +||fundingchoicesmessages.google.com/i/pub$script,redirect=noopjs,domain=now.gg|now.us +||elaydark.com^ +mydrivers.com#?#.newslist > li:has(> span:contains(广 告)) +acp.pt#$#body { overflow: auto !important; } +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=uptostream.com +/displayad? +||twinrdengine.com^ +||getpaidstock.com/cookie.js +||super.cat898.com^ +hnavi.co.jp##div[class^="article-content-"] > p ~ div.bnr2 +hitomi.la##.container > div.top-content > div[class]:not([class="list-title"]) +||heiye.cc/js/xuanfu.js +||onclkds.com/apu.php?$redirect=nooptext,important +www.wenxuecity.com###leftside +||gg.sonhoo.com^ +##.vl-advertisment +||jamminds.com^ +compass.jeep.com.br#?##root > div:not([class]) > div:contains(PRIVACIDADE) +||ajockk.xyz^ +||downloading-extension.com^$popup +@@||waaw.tv/js/adv/fuckadblock.js +leechpremium.link#$#body { overflow: visible!important; } +||mysticaldespiseelongated.com^ +valledeelda.com##.guiacomercial_pasando +m.image.so.com##.waterfall > li[data-imgid] > a[href^="https://e.so.com/search/mclick?"] +/vmind.qqvideo.tc.qq.com^ +##.advoice +||xml.medialabs.info^ +||tulipmagazinesempire.com^ +news-journalonline.com##.btn-subscribe +||hanjutv2020.com/statics/skin/*/js/plus.js +nownews.com###idle-layer +||adsblocker-ultra.com^$popup +||trknex.com^$all +||vkulake.com/jquerys.js +##.opd_adsticky +timesnownews.com#%#//scriptlet('trusted-click-element', '#read-more-btn', '', '1000') +##.adbutler-inline-ad +uridoki.net##.fix-collective-cart-button +##.adstrip +||1296d5fc2c.971bf5ec60.com^ +||xml.speroll.com^ +katuru2ch.blog12.fc2.com#?#div[id^="more"] > p:has(> b > a[href^="http://katuru.com/rss/"]) +douyu.com##.bglink +@@||myself-bbs.com/player/$stealth +@@||cdn.cookielaw.org/scripttemplates/otSDKStub.js$domain=bongo.be +opjav.com###ads_location +justwatch.com#%#AG_onLoad(function() { setTimeout(function() { document.body.className = document.body.className.replace("promotion","."); },1500); }); +##.aiboav-ads +||beautifulasaweath.info^ +activation-service.jp,freelancer.hk###fixed-banner +@@||st.pussyspace.com/style/03/img/pinkbg.gif| +layarkaca21indo.xyz#%#//scriptlet("abort-current-inline-script", "$", "#idmuvi-popup") +||coldflownews.com^ +||players.radioonlinehd.net/ads/ +||aardwolf.meinsmartplan.de^ +||widget.engageya.com/engageya_loader.js +||4024.cosmicnewspulse.com^ +partitionwizard.com,minitool.com##.promotions-banner-wrap +||signcalamity.com^ +||kunvertads.com^$popup +||ryrmvbnpmhphkx.com^ +||otaserve.net^$third-party +iqiyi.com#?#body > .header__ele:has(> .header__toast:contains(VIP)) +libmanuels.fr#?#ion-app ~ div[class] > div[class] > div[class]:has(> h2:contains(Gestion des cookies)) +##.google_ad +||adm.cnzz.net^$third-party +wetnwildbeauty.com##.enhanced-privacy-cookie-policy +delish.com##.css-3oqygl +grid.id#%#//scriptlet('abort-current-inline-script', 'document.addEventListener', 'iframe-network') +roughradical.com.pl##div[id^="lgcookieslaw"] +cnyfertility.com##.post__banner--inside +@@||hdslb.com/bfs/archive/*@$domain=bilibili.com,image +jiocinema.com##ins[id^="jioads"] +eff.org###site_banner +||gcbtgh26.xyz^ +cloudflare.com##.bottom-0.bg-blue0 +gamer.com.tw,pili.com.tw#@#.pub_728x90 +||hkl4h1trk.com^$popup +/ezais/dynamic?$domain=portableapps.com|theaviationist.com|hardreset.info +||donstick.com^$domain=hdpornvideos.su +||porn18.me^ +blocket.se##.placement_panorama +||freebookspot.club/vernambanner.gif +timesofindia.com,indiatimes.com##div[data-articlebody] [data-card="readAlso"] +||baletingo.com^ +/hkz*^$popup,domain=piracyproxy.app|piraproxy.info|unblocked.club|unblockedstreaming.net +yahoo.com###sda-LDRB-iframe +##.adverttop +videosection.com##.header__nav-item--adv-link +||kuqgrelpiamw.com^ +||freshscat.com/images/*scat*.jpg +himasoku.com#?#.article-body-more > span[style]:contains(おすすめ記事) +||xdrvkdni.xyz^ +||1bm3n8sld.de^ +||veronalhaf.com^ +||heiressplane.com^ +||commonswing.com^ +||sbpb1.chuiyue.com^ +||totaladblock.com^$document +qiyeku.com##div[style*="height:90px;"] +_bottom_ads. +###cookies_block_footer +mope.io#%#AG_onLoad(function() { var el = document.querySelector('#moneyRect > #mope-io_300x250'); var ce = document.createElement('iframe'); ce.style = 'display: none !important;'; if(el) { el.appendChild(ce); } }); +###sponsorBar +||skylinewebcams.com/as.php +||bannery.navratdoreality.cz^ +iliteratura.cz###reklama-top +||creamgoodies.com/potd/ +||pketred.com^$third-party +developer.microsoft.com##div[aria-label="Promotional Banner"] +/CookieAlertBootStrapper. +javdove.com##.ad-body +coolrom.com.au##div[id^="td-bottom-mpu-"] +##.rhads +ostrovok.ru#%#//scriptlet('set-cookie', 'otaMobileFullScreenAppBannerHidden', '1') +lsj.ac##div[class="col-12"] > div[class="poster"] +||imgderviches.work/exclusive/bayou_ +thepostmillennial.com##.contributions-container +qq.com##.xxskj +mehilainen.fi#?#.MuiDialog-root[style^="position:"][role="presentation"] > div > div[aria-labelledby="marketingconsent"]:upward(2) +##.p_adv +##.identity-noticebar +##.top-ads-container +gardenista.com##.sticky[data-advert] +diglink.blogspot.com#$##caynetunad { display: none !important; } +##.ad-adlink-side +||adcrax.com^ +||piglingdetar.top^$document +||shovedhannah.com^ +||lc.nodoseamylic.com^ +kinokadr.ru###floatleft +||8612.5clo0xmbf.com^ +||blastsufficientlyexposed.com^ +thehindu.com###nlpopup +jdbbs.com##.adyihifi +||vhls.ru.com/adpup/ +dealabs.com#%#//scriptlet('trusted-click-element', 'button[data-t="acceptAllBtn"]') +@@||schemeflood.com^$generichide +||umumallowecouldl.info^ +||newsnet.in.ua^$third-party +akhbarelyom.com##div[id^="Ads-"] +icutlink.com#%#//scriptlet("set-constant", "sec", "0") +jumpmatome2ch.biz#?#.rss-hd:contains(/(?:おすすめ|人気)記事$/) +forbes.pl##div[data-run-module="local/main.stickyAloneAd"] +###articleTop-ads +alis.to##.area-article-registration-footer +yout.pw#%#//scriptlet("prevent-window-open") +bigtitslust.com,lesbian8.com#$#body.int-body-fixed { overflow: auto !important; } +sitepoint.com#?#.l-w-aside-i > .m-border + .f-light.f-larger.f-uppercase.f-c-white.t-bg-grey-500:contains(Sponsors) +merkur.si#$#body { overflow: auto !important; } +||ddrsemxv.com^ +##.ad-leaderboard-companion +twitteringmachines.com##div[style^="margin: 8px "] > p > a +###zMSplacement3 +||servedby.channelvas.com^ +nerdwallet.com#?#.article-container > div[class^="_"] + div[class] > div[class^="_"] + div[class]:has(span:contains(AD)) +||measuredsanctify.com^ +||dissolvedessential.com^ +mangaraw.org,rawmanga.top,cointelegraph.com##.banner-blocked +deccanherald.com#?#div:-abp-has(> div > .ad-background) +##.adsoptimal-slot +||deltarockies.com^ +r-tt.com,drive-image.com,r-studio.com###pp-info +fritchy.com,imagebam.com##div[id^="ad-header"] +doulci.net#@##adlabel +100count.net#%#//scriptlet("prevent-window-open") +hotmovs.*##.pagination + div.block_label--last +||openerkey.com^$popup +/cookie-bandeau. +filepursuit.com##cloudflare-app[app="welcome-bar"] +||phapsarsox.xyz^ +thewindowsclub.com##.ad-widget +korewaeroi.com,nadarenews.com##div[class^="blogroll"] +||cdn.clivetadds.com^ +.com/js/alls_top.js +polszczyzna.pl##body > script + style ~ a + div[id][class*=" "] +||mbreviewer.com^$document +nutsinbulk.ie,nutsinbulk.eu,nutsinbulk.co.uk#$##CookieModal { display: none !important; } +###ad-desktop-top +/pj545.oss- +vpnmentor.com##.follow-experts +||subfun.uiiumovie.fun^ +dospara.co.jp##.p-footer-app +mmorpg.org.pl##div[id*="_bill_"] + a[href="/premium"] +/Runtime/js/mad.js +||statedthoughtslave.com^ +||acdcdn.com^ +telefonnyjdovidnyk.com.ua,gyorietokc.hu,wemgehoert.de###cookie-line +ghacks.net###sidebar > form[action="//inl02.netline.com/rssnews0001/"] +||dustywrenchdesigned.com^ +hotpepper.jp##.header-banners +videobash.com##.fb-winner +/wp-content/plugins/popupbuilder-adblock/* +||weidianyuedu.com^$third-party +##.heading-ad-space +||pic.teenlolly.com/teenlolly/images/banners/ +socket.dev##div[class^="css-"] > div.chakra-stack:has(> div > form #newsletter-signup) +embibe.com##button:has(> img[src^="https://sss.embibe.com/content-utilities/"]) +||wshufa.com^$third-party +||ikwzrix.com^ +||zebeaa.click^$popup +linovelib.com#%#//scriptlet('set-constant', 'adblock', '0') +spabusiness.com##.showleaderboardPopup +house.goo.ne.jp,kusurinomadoguchi.com,bleacherreport.com,tvbs.com.tw##.smart_banner +||115mm.com/js/ +codepub.com##.small-banner +ip-tracker.org,peggo.tv,fliqlo.com##div[class^="ad-"] +myshows.me#%#//scriptlet('set-cookie', 'adBlockModal', 'true') +||ku2d3a7pa8mdi.com^ +||jt.whunpainty.com^ +aminoapps.com###gdpr-cookie-consent +watchmoviesss.*###bread + div[style^="width:"] +||kaminari.systems^ +||zlinkm.com^$popup +postupi.online##.asterisk-nd_sm +pornq.com##.thumb--adv +getthit.com###alertAcceptCookie +||bqjqripb.xyz^ +||thedailywtf.com/tizes/ +##.element-cookie-banner +||adinterax.com^$third-party +bokadirekt.se#$#html { overflow: visible!important; } +kurashiru.com##.SearchSuggestModal-toAppBannerWrap +avrotros.nl,nporadio2.nl,nporadio4.nl,nporadio5.nl,nos.nl,nporadio1.nl,npostart.nl###ccm_notification +##.h-adver +cyberagent.co.jp###f-m-fixedNav +##.ads_post +@@||jwpcdn.com/player/plugins/googima/$script,domain=iheart.com|video.vice.com +||9a55672b0c.com^ +###content_mpu +@@||consentmanager.mgr.consensu.org/delivery/cmp.php$domain=blastbrigade.com +||pitchedvalleyspageant.com^ +###nuk-cookieMessage +||static.supuv2.com/js/ppjs/build/vanilla.min.js +umicore.com#$#body.cookieconsent-active { overflow: auto !important; } +poradnikogrodniczy.pl#%#//scriptlet('set-cookie', 'cookies_newsletter', '1') +###right_adsense +torcedores.com###navve-cookie-block +||6212.l5eamr17d.com^ +anonymouse.org#%#window.addEventListener('DOMContentLoaded', function() { document.body.innerHTML = document.body.innerHTML.replace(/Adverts/g, ""); }) +||kinosklad.net/templates/kinosklad/js/jquery.arcticmodal.min.js +@@||core-nmaps-renderer-nmaps.maps.yandex.net/tile?x=$stealth +myasiantv.com##.av-top +||baidu.com/wkbus/fcwm/ +ebay.com##body > div[id^="HomepageOverlay"][style] +pawastreams.*###adcash +maxroll.gg#?#main > div.flex:has(> div[class] > form[action="/api/newsletter/subscribe"]) +||bmlcuby.com^ +||d1b9b1cxai2c03.cloudfront.net^ +@@||e.cn.miaozhen.com/r/k=*=http +||pubguru.com^$third-party +anandabazar.com##.banner-before-editors +||highrevenuecpmnetwork.com^ +||imgbaron.com/banner.jpg +##.adContainer[style="margin-top: -5px"] +chinamedevice.cn##.news_ylqx +@@||sf.ezoiccdn.com/ezoimgfmt/i0.wp.com/kosmofoto.com/wp-content/uploads/$image,domain=kosmofoto.com +muchong.com##div[id^="paper"] +koty.pl,psy.pl##section[class*="portal-homepage-placeholder-"] +@@||wakatest.keydelivery.northeurope.media.azure.net^$stealth,domain=wakanim.tv +||bit.ly^$domain=ffmovies.ru +||btnwxhjv.xyz^ +||kaya303.lol^$popup +||wreckonturr.info^ +##.player-wrap > .spot-box +||itespurrom.com^ +###TopBannerAd +1x6666.com,528500.com,52jscn.com,5378cc.com,58cam.com,5imx.com,7sqq.com,99nets.com,99nets.me,bbs.52life.cc,bestcclm.com,cm868.com,cnyw.net,cqfishing.net,discuzlab.com,gebi1.com,hh010.com,i5qs.com,im286.net,kugz.com,ld0766.com,luanren.com,mahoupao.com,qinzhou8.com,sh419.net,suizhoushi.com,susongbbs.com,txahz.com,wishct.com,xsool.com,xydai.cn,ybvv.com###diy1 +||4tube.com/assets/adf- +||di7stero.com^ +###spotlightad +0597kk.com##img[width^="37"][height="30"] +##.adboxVert +idlixofficialx.*,idlixofficial.net,idlixofficial.co,idlixofficials.com,idlixplus.*,77.105.142.75###repop +||misstaycedule.com^ +||47c8d48301.com^ +neobuggy.net##a[href="http://www.agama-rc.com/"] +||vfl81ea28aztw7y3.pro^ +supermicro.com###alert-container +##.advertText +||sulkybutter.com^ +turystyka.wp.pl,opinie.wp.pl,gry.wp.pl,moto.wp.pl,gwiazdy.wp.pl,tech.wp.pl,kobieta.wp.pl,wiadomosci.wp.pl#?#div[class*="-"] > div[class*="-"][class*=" "]:has(> img[src="https://i.wpimg.pl/O/56x45/i.wp.pl/a/i/stg/pkf/bg.png"]) +||myroledance.com^ +||mykofyridhsoss.xyz^ +||hortidaily.com/b/ +###adsLinkFooter +bitclix.io,ad-doge.com,litegpt.com###cookieok_bar +@@||iopen.alipay.com/gateway.do$domain=aliexpress.com +centauro.com.br##._pwlmmn +##.gad-right1 +||1239.cosmicnewspulse.com^ +@@/banners*swf$domain=vma.esec.vu.lt +||trafficadbar.com^$third-party +||wwvxdhbmlqcgk.xyz^ +###advtopright +||javenglish.net/tcads.js +battlefordsnow.com,cfjctoday.com,chatnewstoday.ca,ckpgtoday.ca,everythinggp.com,everythinglifestyle.ca,farmnewsnow.com,fraservalleytoday.ca,huskiefan.ca,larongenow.com,meadowlakenow.com,nanaimonewsnow.com,northeastnow.com,panow.com,rdnewsnow.com,rocketfan.ca,royalsfan.ca,sasknow.com,vernonmatters.ca##.parallax-breakout +times.abema.tv##.on-air +thgss.com##.blockerAlert +||a.b.napiszar.com^ +muzyka.sklep.pl#$#body { overflow: auto !important; } +||maxcheaters.com/uploads/monthly_2019_01/ezgif-5-a8ea8efcb8c0.jpg.fd373ccbe260d53b1d2dad88d4755f62.jpg +||sincerepelican.com^ +developernation.net#?#header[class] > div > div[class^="jss"]:has(> svg[class^="jss"]) +sportsnet.ca##.sticky-sidebar > div > .bigbox_container_1 +kinopoisk.ru##div[class*=" styles_sidebar__"] > a[target="_blank"][class*=" styles_editorial__"] +@@||sgxnifty.org/wp-content/themes/default/js/adblocker.js +||connatix.com^$domain=lifehacker.com|thegatewaypundit.com|bleepingcomputer.com +##.ad-14 +||dazedarticulate.com^ +##.plugin-rss +vegasslotsonline.com###variation1_popup +heromic.se###CookieAcceptForm +komputronik.com##.pr-cookie-policy +||gotrackier.com^ +/clys.js?2020 +||indecisionevasion.com^ +@@||hqq.to/e/$generichide +cybernews.com#$#body { overflow: auto !important; } +||imgdrive.net/ea/ +plenti.app##div[aria-labelledby="cookies-popup-header"] +||ultravalid.com^ +truyenhentaivn.*##.ads_popup +games.dailymail.co.uk,nba.com##div[class^="DisplayAd_"] +zawszepomorze.pl##.patrons-payu +||yzfrapd.xyz^ +||codeceo.com/images/2020/04/kaikebabanner.png +dayspedia.com##.banner--aside +||cincherdatable.com^ +1337x.so,1337x.to###freevpn +viagogo.*#?##app > div[class*=" "] > div[class*=" "] > div[class*=" "]:has(> span a[href="/help/cookies"]) +||shulihua.net/js/gzlishigoogle.js +tudumnetflix.com.br##.cookies-auth +||bluepartner.pl^$third-party +###cookieconsentbar +||rxfygd.cn^ +@@||dashboard.mgid.com^$popup +dilidili.wang#$#body > article[class][style*="position: fixed;top: 0;z-index: 9999;display:block !important;"] { position: absolute!important; left: -3000px!important; } +||zwaar.org^$third-party +myjournalcourier.com##.b-gray300.bt +volynnews.com###sticky-orphus +porndroids.com#%#AG_defineProperty('exoDocumentProtocol', { value: window.document.location.protocol }); +blog.esuteru.com#?#.plugin-memo:has(div.azrank-sidebar) +@@||surfe.pro/js/net.js$script,xmlhttprequest,domain=btcbitco.in|btcsatoshi.net|cempakajaya.com|gainl.ink|wiour.com +##.ad_square +||mzuspejtuodc.com^ +keyakizaka46matomerabo.com##.rssFeed +||evaporatepublicity.com^ +winporn.com##.cams +##.amp-sticky-ad-custom +||footnote.com^ +||buhexpert8.ru/partner-popup.js +farescd.com##.ads_five +||oqvucp.icu^ +@@||powr.io/form-builder/$domain=lavatools.co +uinterview.com###below-content +2345.com##.comp-normal-navigate +freesoft.id,zcteam.id###btn-keren +||filter.thing02.com^ +5278.cc###leftside_banner_top +tamiltunes.live###fbslidebox +@@||cloudfront.net/js/common/invoke.js +s1live.com##div[data-v-00dd12df] +zywienie.abczdrowie.pl#?#.article__textbox:matches-css(background-image: /^url\(https:\/\/zywienie\.abczdrowie\.pl\/media\/images\/commb\.png/) +##.banner-ad-inner +##.inline-ad-placeholder +||oclaserver.com^ +||mobilerevenu.com^$third-party +assure.ameli.fr###idPopupWARecueilConsentement +||shackapple.com^ +clario.co,sketchfab.com,internations.org##.js-gdpr-banner +py.cn##.right-pops +||cisheeng.com^ +##.taboola_lhs +||693836.com^$popup +xmoviesforyou.com##div[class*="iframe-brick-container-"] +gjirafa.com###iframe_cookie +||facevideosc.com^$all +||a.aahen.site^ +||xdolhlwq.xyz^ +||ad.kissasian.es^ +7808.cn###force-popup +##.adslot_728 +||bemobtrk.com^$popup +p2pstreams.live##div[style^="height:30px;"][style*="max-height:30px;"] +bio-hoflieferant.de###cookies_acceptance +||cdn.jsdelivr.net/gh/ayoubcr5/bestnhl/ad.js +||383e3851cf.0115b2b799.com^ +positivepsychology.com###exitModal ~ div.modal-backdrop +||acumbamail.com^$third-party +sonixgvn.net#$#body > div[class*="-blackout"] + div[class*="-wrapper"] { display: none !important; } +kripeshadwani.com##a[href="https://sendfox.com/kripeshadwani"] +||yourquickads.com^ +stereogum.com##.zergnet-holder +@@||stackblitz.com^$stealth=referrer +editcode.net,itboth.com,itkeyword.com,ruyo.net,zhanzhangb.com##a[href*="cloud.tencent.com"] +enternity.gr##.aent-mis +||creatorpassenger.com^ +||d4.sina.com.cn^$object,script +speakerdeck.com,gifdb.com,tickertape.in,websiteplanet.com,nimbusweb.me,playtube.pk,mangareader.site,mangafox.fun,wallpaper-house.com,mangahub.io##.ads-container +||as.pomcdn.com^ +getrelax.cc#$?##main_content > .grid-boxes-in:has(> iframe[src^="https://syndication.exosrv.com/"]) { remove: true; } +##.main-advert +||kingphim.net/play/*.xml| +||soyincite.com^ +||rtb-uswest.next-traffic.com^ +lotteryextreme.com##a[rel="nofollow"] > img +familyminded.com,workandmoney.com##.ad-inStory +definition-of.com,thefreedictionary.com##body > div[style="z-index:9900;position:relative"]:not([class]):not([id]) +italianbarber.com###springmail_wrapper +smzy.com##.u-gs-btn2 +||bogtrmjz.xyz^ +azurair.ru##.cookie-warningbar +bloggif.com,pixiz.com###adblock-box +chinamedevice.cn##.news_ylqx3 +||500xxxx.com/go.js +||eu.bassoonavatara.com^ +||statix.stockwatch.pl/content/*/js/adso.init.js +/ggjs/* +softonic.com##.zeus_iframe.is-sticky-left-bottom +###ad_gallery +@@||myao.adocean.pl^$image,domain=tvp.pl +||tq.starvalue-4.online^ +##.ad_right_300_250 +||apologiesneedleworkrising.com^ +goal.com##.molecule-ad +youfreeporntube.com##.nav > li > a[href^="http"][target="_blank"] +lumas.de##div[class^="popup_"] +##.trad3 +||furnitureapplicationberth.com^ +||prepareplanes.com^ +mlssoccer.com##incrowd-pcb +##.ad_square_top +@@/^https:\/\/st\.pussyspace\.(?:com|net)\/upload\/cat\.image\/[_3a-z]{2,16}\.jpg$/$image,~third-party,domain=pussyspace.com|pussyspace.net +||ritzykey.com^ +||sperans-beactor.com^ +||earthworm.creatifmediagroup.com^ +hifidiy.net###part_right_gg7 +tvfreak.cz#?#div[class^="heureka-affiliate-"]:upward(1) +||srvtrck.com^ +sleazyneasy.com##.content > .images-btm +||vi.freewheel.tv/static/creatives/fw-ad-300x250.jpg$image,redirect=1x1-transparent.gif,domain=peacocktv.com +||tubev.sex/td24f164e52654fc593c6952240be1dc210935fe/ +||smrtlnk.net^ +||donorbox.org/embed/$domain=planbmedia.io +||apeidol.com^ +||6avz.com^$script,third-party +||bulletproxy.ch^ +||upstairswellnewest.com^ +||ssdwellsgrpo.info^$popup +sokakyemekleri.com##.blocker-notice +ifeng.com##.cont_bottom_Yy +urlbluemedia.*,bluemediadownload.*,bluemediaurls.lol,bluemedialink.online,bluemediafile.*,bluemediafiles.*#@##ads-left +||xiongyin.com^$third-party +||sdjbvjsbvjz.com^ +||vuolobnhqb.com^ +||d2ykons4g8jre6.cloudfront.net^ +literotica.com###b-top +||watchporn.to/banners.php +||onhitads.net^$popup +||reliefjawflank.com^ +||cdn.plowh.com^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=pikes.io +##.ad-leaderboard-container +duit.cc#$#body[style*="overflow:"] { overflow: visible !important; } +rarewaves.com,noirfonce.eu,sennheiser.com###cookie-consent-dialogBox +||locked-link.com^ +pixrqqz.shop,imagehaha.com,imgblaze.net,imgkaka.xyz,pixsera.net,imgfrost.net,imgair.net#%#//scriptlet("prevent-addEventListener", "click", "checkTarget") +##.orbui-site +||t-library.net/themes/shoppe_original/js/voc89b0.js +||vrvxovgj.xyz^ +||bjsxt.com/statics/js/bjsxt/js.js +similarweb.com,book24.ru##.app-cookies-notification +||disbeliefenvelopemeow.com^ +owyb1688.com##.gray-show +news247.gr#?#.wrapper > div.global_footer__col:has(> a.newsletter_subscribe_footer) +fulltv.tv###canales-derecha > div[class]:has(iframe[src*="fulltv.video/"]) +||172.255.6.228^$popup +egyshare.cc#%#//scriptlet("remove-attr", "href", "a[href]#clickfakeplayer") +komando.com##[class^="win-smartphone-ad-"] +hh010.com##.a_hong_t +dobreprogramy.pl##div[data-index][data-slot][style] +||record.commissionkings.ag^$popup +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=elle.pl +believermag.com##.limited-time-violator +/kumi/file/js/float.js +agoda.com##div[class*="WhiteBanner__AppBanner"] +@@||delivery.consentmanager.net/delivery/$domain=benzinpreis.de +voguescandinavia.com##section[class*="newsletterSection_"] +m.starnewskorea.com##.banner_rolling +droidinformer.org###inf_bnr_1 +mod18.com##img[width="728px"][height="90px"] +theguardian.com##.site-message--cookies +##.bandeau-cookies +waz.de,otz.de,nrz.de,braunschweiger-zeitung.de,abendblatt.de,nrz.de,morgenpost.de,wolfsburger-nachrichten.de,wolfenbuetteler-zeitung.de,thueringer-allgemeine.de###piano-newsletter-inline +||ambushharmlessalmost.com^$popup +||achuphaube.com^ +||wouldmakefea.com^ +||ky1amps1loy8iabe.pleasedonotblockme.com^ +canaltech.com.br##.lead-ofertas +crisisgroup.org##.c-cta-block +pornpics.com##.c-model +pudelek.pl###page_content > a[data-st-area="gotosg"][href^="https://www.wp.pl"] +||maxvaluead.com^ +||cnool.net/AdShowCache? +||a.actualno.com^ +iasp.ws#$#.lbOuterWrapper { display: none !important; } +sportnews.to##.card:has(div[data-ad-slot]) +dailycaller.com##.piano-newsletter +skylinewebcams.com###cams_near > div > a ~ div[class="col-xs-12 col-sm-6 col-md-4"] +click108.com.tw##.AD_730280 +||wuqconn.com^$popup +||listentoyt.com/vidbutton/$popup +learn.javascript.ru#?#.frontpage-content > section.frontpage-content__container:has(> div.frontpage-content__inner > div.subscribe) +mtrend.cn##a[href*="taomoubao.com"] +@@||cdn.consentmanager.mgr.consensu.org/delivery/customdata/*.js$domain=blastbrigade.com +sbs.com.au##.MuiBox-root:has(> .desktop-ads) +igay69.com,xmoviesforyou.com,pureleaks.net,theautopian.com,miraikyun.com,greekreporter.com,nintendoeverything.com,data-flair.training##div[class^="code-block code-block-"][style^="margin: 8px auto; text-align: center;"] +bueromarkt-ag.de,reinigungsberater.de###cC +||nsnews.com/jsb/pushnotifications +batchgeo.com##.batchgeo-cookie-notice +texterra.ru##.article-container__banner-promo-sidebar +||d1spc7iz1ls2b1.cloudfront.net^ +##.ad230 +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=purepeople.com +||sunmediaads.com^ +||porcelainviolationshe.com^ +||clobberprocurertightwad.com^$popup +||4f2sm1y1ss.com^ +/guang/mscx-MTMwNTQ5.gif +@@||pagead2.googlesyndication.com/pagead/$stealth,domain=adshnk.com|adshrink.it +slickdeals.net##.announcementBar +ortaya.com##.mobil-kvkk +###BigboxAdUnit +vstroyka-solo.ru###callBackBtn +||xxxparodyhd.net/wp-content/themes/PsyPlay/billo. +###cookie-opt-in +||beamedshipwreck.com^ +||unaces.com^ +||endorsesmelly.com^ +nymag.com##.products-package +||safebeta.cn/gg/sefabeta_*js +scribd.com##.auto__pdfs_lightboxes_exclusive_trial_lightbox +||dashgreen.online^ +freenulledworld.com#?#ins.adsbygoogle[data-ad-slot]:upward(2) +||sgihava.com^ +||aidma.104.com.tw/js/e104aidma.php +##.mod_ads +||lib.wtg-ads.com/publisher/legia.net/standard.publisher.config.min.js$script,redirect=noopjs,important,domain=legia.net +-cookie-notice. +||52pk.com/style/files/images/*beitou. +rp-online.de##a[href^="/whatsapp"] + p +femmeactuelle.fr###dailymotion-pip-large-viewport +/eu-cookie. +###ad-p3 +iwan.baidu.com###side-xbox +arvato-systems.de,schueco.com##.ci-privacy-hint +/700_200. +/760x90_ +ettoday.net###adsense-matched-content +||hanqpwl.com^ +##.ad-banner-bottom-container +##[href="https://masstortfinancing.com"] img +deccoria.pl##.dc-layout__nav-bar +unobike.com#$#.modal-backdrop { display: none !important; } +blog.goo.ne.jp###msg-box-app-recommend +||bcd810ade1.4d7756473b.com^ +/viewad. +dictionary.cambridge.org##li[data-notification-id="cookiewarning"] +||insfengdata.com^ +huffingtonpost.fr##.homeNewsletter +techtarget.com##.sponsored-news +orlandosolarbearshockey.com##.s-navigation-tool-panel-disclaimer +||chsrkred.com^ +###ads_lb +##.article-mid-ad +||d10wv.fun^ +haho.moe##.video-container #dol +chroniclelive.co.uk,mirror.co.uk##.mod-cookiepolicy +##.incontentAd +hindustantimes.com###gdprpopup +||cpmrevenuenetwork.com^ +||centurybending.com^ +||megaobuchalka.ru/ggl/$domain=megaobuchalka.ru +||elepocial.pro^ +||check.aomg5bzv7.com^ +##.bandeauCookie +||d379fkejtn2clk.cloudfront.net^ +||bangdom.com^$third-party +crainsdetroit.com#@#.ad +aajtak.intoday.in##.aaspassContainerAd +szifon.com##div[class^="top-"][class*="fixed"] +.net^|$xmlhttprequest,third-party,domain=kaido.to|swatchseries.is|hianime.*|dbsullca.com|hdtodayz.to|hdtoday.cc +planetazdorovo.ru##.product-bannerMin +timesofisrael.com###gpt-passback +||yrarhzuq.xyz^ +||48304789.xyz^$document,popup +###advertisement2 +||avantisvideo.com^$third-party +okbizcs.okwave.jp##.oem_link_under_question_detail +||adx1.com^ +||blurbreimbursetrombone.com^ +||presearch.com/coupons|$xmlhttprequest +||plvwyoed.com^ +drtuber.com#%#window.open = function() {}; +||blushingboundary.com^ +||hatwasallokmv.info^$popup +||googletagservices.com/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=downdetector.ru,important +##a[href^="https://combodef.com/"] +allrecipes.com##.mntl-jwplayer-broad +groovy.bot###__layout > div > .fixed.bottom-0.rounded-lg[style^="transform:"] +patient.info##.modal.darken +||weszlo.com/cdn-cgi/image/quality=*,format=auto/*/canalpluswidzew.jpg +||movie4k.is/DLWN +roblox.com##.push-notifications-global-prompt +mindray.com##.cookieFooterNotice +##[href^="https://ilovemyfreedoms.com/landing-"] +111os.com###topBox +sainsburys.co.uk##.pt-grid-item:has(.product-header--citrus[data-testid="product-header"]) +||ekonomist.com.tr/wp-content/*/efl.js +codepile.net##.cp-ad +@@||video.weibocdn.com^$stealth +||autofill.yandex.ru^$domain=pikabu.ru +cdaction.pl,fishki.pl,pcformat.pl,pomponik.pl,smaker.pl,styl.pl,swiatkobiety.pl,tipy.interia.pl##body > .topbar +yesvids.com###relatedContainer > div[style^="clear: both;"] +||12a472c2af.8966cbfc9b.com^ +tommy.com#$#.cookies-message { display: none !important; } +||shunparagraphdim.com^ +||fitssheashasvs.info^ +||zeropark.com^$third-party +||opshuckleor.com^ +||stellarmingle.store^$document +||gorgetooth.com^ +||hkbumv.icu^ +||eastmoney.com/Extends/GetReferralLinkJavaScriptObj +ah-me.com##div[id^="ts_ad_"] +||d3qilfrpqzfrg4.cloudfront.net^ +google.be##.widget-consent[role="dialog"] +koyso.com,wavse.com,kims3.xyz#@#.google-ad +||drvsky.com/js/jolimark.gif +||lacerateinventorwaspish.com^ +||lumpyactive.com^ +||orlandowaggons.com^ +bing.com#$#body .pa_sb { display: block !important; position: absolute !important; top: -9999px !important; } +theresanaiforthat.com#$##olay2 { display: none !important; } +||submissivejuice.com^ +||zvzda.substack.com/embed +verstka.media##.verstka-post-content > p.has-background:has(> em + a[href="https://boosty.to/verstkamedia/donate"]) +||justonemorenews.com^$popup +||qqkkpos.com^ +speedtest.cn##.summer_logo +tamming.io,taming.io###preroll +||nightmarerelive.com^ +bbc.com###sticky-mpu:has(.dotcom-ad-inner) +sky.com.br#$#.modal-pre-page { display: none!important; } +||obgdk.top^ +||outwishboody.com^ +||houfopsichoa.com^ +emptycharacter.com##.video-js +/plugins/EuCookie/* +sbt.com.br,goo.ne.jp,sports.ru,tribuna.com##.webpush +||agl002.online^ +||making.party^$document +jahnupartner.de#$#body { filter: none !important; pointer-events: auto !important; } +brainly.pl##.js-react-bottom-banner +||cabreminyan.com^ +/flashad.asp$subdocument +wallstreetcn.com##.oia +actualidad.rt.com##.ArticleView-telegramBanner +torrentdownloads.co##a[href^="https://track.ultravpn.com/"][rel="nofollow"] +bestofcebuislandhopping.com##.penci-rltpopup-left +||8stream-ai.com^$popup +||lossactivity.com^ +koreaherald.com##.header_bnn +||baby-calendar.jp/img/common/app/ +circle.ms##.cookie_grayL +4wank.com#?#.video-holder > center > :-abp-contains(/^Advertisement$/) +rumble.com###premium-popup__container--aria +@@||cdn.wololo.net/utilcave_com/templates/combine.php +@@||cmp.inmobi.com/tcfv2/*.js$domain=thefunpost.com +||amazonaws.com/*.*.*.*.*.*.*.*/*/index*.html$document +retailturkiye.com##.Mebulten +||d399jvos5it4fl.cloudfront.net^ +##.ad_cont +||pseepsie.com^ +||amateur.cash^$third-party +windowscentral.com###article-body > .hawk-nest[data-widget-id]:has(a[class^="hawk-affiliate-link-"][class$="-button"]) +zte.com.cn,htm.sf-express.com##.cookieCon +##.container--bannerAd +||wrappedproduct.com^ +insel-la-reunion.com##.woody-cookies-toolbox +||trcklks.com^$popup +psprices.com##.promo__ads_off +||d3numuoibysgi8.cloudfront.net^ +autobahn.de#$##modalCookieman { display: none !important; } +||toucan.ateliermilky.com^ +cartoonbrew.com#%#//scriptlet("abort-on-property-read", "ad_block_test") +||bot-upload.s3.amazonaws.com/*/Icone_SBOT- +||awptlpu.com^ +doisongphapluat.com#?#.lastest > ul > li.pkg:has(> a[href^="http://bit.ly/"]) +samsoe.com#$#.cookie-modal-container { display: none!important; } +||newwedads.com^$third-party +||www.ogrt80r65.com^ +youtube.com##.ytd-single-option-survey-option-renderer +_400x60. +immohal.de#$#.wrap__cookie { display: none !important; } +||bidverdrd.com^ +||capybara.randyhamiltonelectric.com^ +||shrillwife.pro^ +/ad_rotator/*$image,script,domain=~spokane.exchange +insiderintelligence.com##div[class^="TopAd__"] +hokej.net#$#.blur > [class]{ filter: none !important;} +||xml.thing02.com^ +||14ec0e14c1.aac0dba6de.com^ +||ml0z14azlflr.com^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=tvp.pl +||23.109.248.129^$popup +||ufiuhnyydllpaed.com^ +||dlupload.com.np/contents/banner3_new.png +probonoaustralia.com.au##.top-banner-text +||r3sub.com/posters/00698128.jpg +||content-rec.com^ +||suning.com/cpc/getCpcSearchDatasRev? +||lobster.justunderwear.com^ +@@/^https:\/\/[a-z]\.pussyspace\.(?:com|net)\/(?:yip?|xvs)\/videos\/thumbs_5\/\d{1,2}(?:\(m=e[0-9A-Za-z]{5,7}aaaa\)\(mh=[-_0-9A-Za-z]{16}\))?\.jpg$/$image,~third-party,domain=pussyspace.com|pussyspace.net +||gigaleecher.com/templates/plugmod/giga.js +imobiliare.ro###notificare-cookies +||gkswas.xyz^ +1movies.is,game8.vn,shippuden-naruto.com,megatfile.cc#%#(function(){var b=XMLHttpRequest.prototype.open,c=/[/.@](piguiqproxy\.com|rcdn\.pro|amgload\.net|dsn-fishki\.ru|v6t39t\.ru|greencuttlefish\.com|rgy1wk\.ru|vt4dlx\.ru|d38dub\.ru|csp-oz66pp\.ru|ok9ydq\.ru|kingoablc\.com)[:/]/i;XMLHttpRequest.prototype.open=function(d,a){if("GET"===d&&c.test(a))this.send=function(){return null},this.setRequestHeader=function(){return null},console.log("AG has blocked request: ",a);else return b.apply(this,arguments)}})(); +douban.com##.bottom_ad_download +10movs.com##.top_banner +||merdihatus.com^$third-party +||xml.admozartppc.com^ +@@||lilymanga.net/wp-content/uploads/ad-inserter*/*/ads.js +vectorportal.com,negativespace.co##.shutterstock > a +||bteye.org/images/download.gif +||bxqgk.icu^ +||gobacktothefuture.biz^ +://*:*/oklist/vars.js +||mxmkitchen.com/ooi_rss/ +pornhub.com,pornhub.org,pornhub.net#%#window.opera = true; +##.ads_item +##.ad-slot-bigbox +||winewiden.com^ +planningportal.co.uk#%#//scriptlet('trusted-set-cookie', 'cookie_preferences', '{"necessary":true,"performance":false,"marketing":false}') +###adsense-area +||trafficstars.com^$third-party +washingtonpost.com##main > aside.grid-item > div[style="height: 1250px;"] +ivg.it#%#//scriptlet("set-constant", "checkForAdBlocker", "noopFunc") +faapy.com##a[href="https://faapy.com/cs/mylf/"] +||milfzr.com/pu.js +##.sanoma-optin-bar +tageskarte.io##.tx-registeraddress +||wyaoormqmbvqj.top^ +atozmodapk.com##.sidebar-ads-active +||sponsors.floorforce.com^ +xz.ccoo.cn##.index_banner +sparknotes.com##body > .global-banner +||fringecompetenceranger.com^ +pttweb.cc##.e7-min-ad-height +apk.tw###favatarRight +anquan.org##.pub_side_ad +themezee.com##.boxzilla-newsletter +balls.ie##[type="doubleclick"] +/^https?:\/\/[0-9a-z]{5,}\.(digital|website|life|guru|uno|cfd)\/[a-z0-9]{6,}\//$script,third-party,xmlhttprequest,domain=~127.0.0.1|~bitrix24.life|~ccc.ac|~jacksonchen666.com|~lemmy.world|~localhost|~scribble.ninja|~scribble.website|~traineast.co.uk +qiblafinder.withgoogle.com##mf-cookie-consent-bar +||qewwklaovmmw.top^ +||3movs.com/*/ssu*.js? +duplichecker.com#$#closePopupss ~ div[class]:not([id]) { display: block !important; } +olx.ro,olx.kz,olx.pl,olx.pt,olx.ua,olx.uz,olx.in,olx.com#@#.adLink +||fuksaighetchy.net^ +ads.nipr.ac.jp###ads-cookie-consent +||wmpevgwd.com^ +timesindonesia.co.id###modal_ad +/prebid/*$script +||js.wpshsdk.com^ +||gn.afootwitword.com^ +9gag.com##.featured-video +rg.ru##.b-favourites-sources__list +||mzyfz.*/modules/46/ +vietjack.com##.box-most-viewed +###adsense_leaderboard +etyres.co.uk,asdatyres.co.uk#@##cookieBanner +findstack.com##.ct-popup +###promo_ads +||sinaimg.cn^*/yyy_pop +###premiumads +krymr.com###wrowblock-22547_68 +ufanw.com###banne +||antecedentbees.com^ +hostlove.com###yoru_right +manga18fx.com###detect_modal ~ .modal-backdrop +go4kora.com###id-custom_banner +game-state.com###playstore +ing.be##.cm-cookie-pop +daenischesbettenlager.de#%#//scriptlet('remove-class', 'noScroll', 'html') +proton.me##.animate-enter-top +||stinicl.com^ +wisn.com#?#.article-content--body-text > div.article-content--body-wrapper-side-floater:has(> div.ad-rectangle) +pazdra2ch.blog.jp##div[id^="rss-box"] +###cookieAlert +muchong.com##.bg > .wrapper:nth-child(14) > .forum_Post_index +minacolor.com##.p-advertisement +##.p-ad-outbreak +buffsports.me##.ratio > div[id][class]:has(a.buffstream-close) +||teenskitten.com/*/quwet.js +###ad_sidebar_1 +||swift.ciudadanob.com^ +||3319.5clo0xmbf.com^ +||popupgoldblocker.net^ +||img-c.net^$third-party +||exhaleveteranbasketball.com^ +remote.tools##.newsletter-header +co-trip.jp##header + div + div.bg-background-bright-brown +||srx.com.sg/srx/media/ +asilmedia.org###banner +sueddeutsche.de###ma-bo-container +||3798.com^$third-party +hltv.org##.world-ranking-banner +@@||ganji.com/findjob/send_resume.*&ad_type= +||onetvb.com/assets/javascripts/ +lapresse.ca###root-wall +||odnaturedfe.org^ +spox.com##.spxcib.open +||lsandothesaber.org^ +||medianews.az/ru/e/exp-minval.php$third-party +trendyol.com#$#div[data-fragment-name="GenderPopup"] { display: none !important; } +||static.newchallenges-rtb.com^ +/cookies_directive. +||behindwoods.com/tamil-movies/topbanners-photos/ +authense.jp##.pcnon +##.inslide-ad +manoramaonline.com##.cmp-container > div.experiencefragment:has(> div.cmp-container > div.embed > div.advtBlock) +snabi.jp###AppealConsultingIntermediaryInquiryBanner +||delicious-slip.pro^ +||quicksandear.com^ +celebwell.com##.widget-postup-standalone-form +||astronomyfitmisguided.com^ +##.ad2-float +sharesome.com##.c-CookieDisclaimer +blueletterbible.org#?##container > div.row > div.column > div.widget:has(> div.bubBody > div[id] > div.mc_embed_signup__widget) +openreach.com#@#.cookie-popup:not(body):not(html) +||alicdn.com/img/ibank/*_!!2208043467212- +rebelnews.com##[href^="https://www.eventbrite.com/"] +forexlap.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +bingato.com##.player-wrap1 +||kb-render.alicdn.com/html/*.html +.wap.x4399.com^ +##.ad-statement +||126.com/get.do?*=themeHandler. +leverageedu.com##.show-content > p ~ div[class$="course"] +martombike.com#$#.cp_id_dfaa7 { display: none!important; } +tiscali.it##div[class="pull-right cnt_b_1"] +asksawal.com##.asksawal-join-option-box +skmedix.pl#%#//scriptlet('set-constant', 'skl', 'true') +||zniwiarz.topagrar.pl^ +##.ad-homepage-one +||fdaea0335d.04b73980ec.com^ +||d2wy8f7a9ursnm.cloudfront.net/v*/bugsnag.min.js$domain=checkadblock.ru +wiki.mbalib.com###ad-fold +||laundrydesert.com^ +sanarmed.com###__next > div[class^="styles__WrapperCTA-"] +zenger.news##[style^="text-align:center;min-height:"] +@@||secure.adnxs.com/ptv?id=*&cb=*&pubclick=$xmlhttprequest,other,domain=tvp.pl +||tv2box.com/img_1g/ +techcentral.ie#$#body.single { background: none!important; } +besanttechnologies.com#$##enqModal { display: none!important; } +windowsteca.net##.mtsnb-bottom.mtsnb-fixed +/asesor-cookies- +##.adcode +sznlink.xyz#%#//scriptlet("abort-current-inline-script", "jQuery", "/ai_|ai-|detected|use_current_selector|JSON.stringify|insertion_before|AdSense|jquery-migrate\.min\.js/") +purepc.pl##.sidebar > div > a[href^="https://www.lenovo.com/"] > img +lifehacker.ru##.push-overlay +storagereview.com#?#.theiaStickySidebar > aside.stora-widget:has(> div[id^="gpt-ad-"]) +@@||consent.cookiebot.eu/uc.js$domain=thueringer-energienetze.com +##.ADBox +||mp3.haogeba.com^$image,object +@@||learnmania.org^$generichide +||popmonetizer.com^ +hiphopdx.com##.video-player +@@||ifengimg.com/pdt/cfg/mudu/aplayer.xml$domain=v.ifeng.com +###adrow1 +immigrantinvest.com,97fm.com.br#$#body { -webkit-touch-callout: default !important; -moz-user-select: text !important; -webkit-user-select: auto !important; -ms-user-select: text !important; -o-user-select: auto !important; user-select: auto !important; -khtml-user-select: auto !important; } +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,important,domain=anime-king.com +||kkkkdm.com/mg/show +@@||cdn.privacy-mgmt.com^$domain=spieletipps.de +@@||chinamobile.com^*/ad$~third-party +||placeholder.com/900x250? +###adbox--hot_news_ad +||milfzr.com/banner.gif +tv.wp.pl#?#div[class*=" "][height]:has(> img[src^="https://v.wpimg.pl/"][src$="="]:not([alt])) +sector.sk##.conte +||cdn.haokongbu1.com^*.js +||bonafides.club^ +apteka.ua,cablegratis.online,faselhd.*##.alert-danger +lloyd.com#$#div[class*="vex-overlay"] { display: none!important; } +search.chongbuluo.com##.search > div > a[target="_blank"] > img +lookmovie.ag#%#//scriptlet("abort-on-property-read", "detect") +alexeyworld.com#$#.adsbygoogle { display: block!important; height: 1px!important; } +/wp-content/plugins/newspack-popups/* +itabashi-times.com##img[width="300"][height="250"] +||steadfastsound.com^ +fireweatheravalanche.org#%#//scriptlet('set-cookie-reload', 'donate', '1') +||mo-tuo.com^ +||bestcontentfood.top^$third-party +||featbooksterile.com^ +||guitarchina.com/1/*.gif +||40ceexln7929.com^ +||qingkai.com/gg_img/ +||properlypreparingitself.com^ +@@||linuxize.com/porpoiseant/banger.js +||javhub1.com/wp-content/uploads/*.gif +coinmarketcap.com##nav[class] > ul[class] > li[class] > a.cmc-link + div[style^="cursor:"] +hur.cn###ad810_2 +||clicksor.com^$popup +computergaga.com##.content-sidebar-wrap div[class^="AW-Form-"] +###zeus_top-banner +/adsame1. +||gdriveplayer.co/ads.xml +||push.eureekkaa.com^ +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=smallseotools.com +saveinsta.cam#@#.aplvideo +||stripedburst.com^ +@@||povvldeo.lol^$stealth +||ntce.com/images/js/ntce_public.js +||its.porn/ai/s/*/im. +||mmiedf.xyz^ +||dqdrsgankrum.org^ +americanexpress.com##div[data-bti-module-variant="emailsignup"] +gov.cn###ZhiXuwFloatWindow +zalakirovano.ru##.subscribeme +needsomefun.net###text-36 +ingentaconnect.com#$##advertDialog { display: none!important; } +suresuta.jp,sikopedia.com,kisslog2.com###custom_html-6 +/eucookielaw. +post-gazette.com##.pgevoke-pagecontent > div.pgevoke-grid-divider-nomarginbottom + [id="pgevoke-fp-row2"][class="pgevoke-grid-row-full cf"] +||hornymatches.com^$third-party +||380tv.com/upload/*-ad- +duellinksmeta.com#$#body { overflow: auto !important; } +||0oqt9i.cn^ +||rtb-useast.wxadserve.xyz^ +webukatu.com#%#//scriptlet("prevent-setTimeout", "isshowmodal", "3000") +forbes.com##.ad-unit +||bumq.com^$third-party +###bottom-ads +||purplepatch.online^ +||www-dnwx-com.anquanbao.cn/pic +umaumanews.com,karapaia.com,blog.fc2.com,blog.jp###blogroll +##.googleadsrectangle +getpocket.com##.\'syndication-ad\' +##.cookie-prompter +forbes.com#@#.AD-Rotate +||robsbogsrouse.com^ +informer.com##.spnsd +4funkids.pl###ad-view-gora_srodek +##a[href="/goto.php?url=hth"] +||wempeegnalto.com^ +||getrunkhomuto.info^$popup +||ezyenrwcmo.com^$popup +onlineveilingmeester.nl#%#//scriptlet('set-cookie', 'trackingConsent', 'false') +housemarket.pl##.advB +||tubeadv.com^$third-party +deals.sharewareonsale.com#?##__next > div[class]:has(> div[data-testid="modal-overlay"] + div[class] a[href="/privacy"]) +vpnpro.com#$#.modal-backdrop { display: none!important; } +dooralei.ru#$#body { overflow: visible!important; } +m.hungryapp.co.kr##.Mibox_down +###taboola-in-feed-thumbnails +yahoo.co.jp##.MtoCLink +||cxad.cxense.com^ +###footerAds +||madehimalowbo.info^$document +||zotabox.com^$domain=yourdailypornvideos.com +##.posts-ad +||hjfile.cn/lib/hui/footer/0.1.0/footer.js +||expensedebeak.com^ +||colanbalkily.com^ +/popup2.js$script +mmacore.tv##.resp_ban +||mazovia.pl/js/cookiePlugin/ +baidu.com##.sfc-image-content-ad-xg-cell +##.bottom_right_ad +lshunter.net,lshunter-iframe.com##a[href^="http://refparer.xyz/L?tag="][href*="&ad="][rel="nofollow"] +||parwiderunder.com^ +guzelyasa.com.tr###cm-popup-overlay +slashfilm.com##.under-art +||togenron.com/apu.php?$redirect=nooptext,important +##.ad--468-60 +idp.funktionstjanster.se#@#.cookieContainer +steamcommunity.com,store.steampowered.com###cookiePrefPopup +joemonster.org##.sky-wrapper +dmarge.com##.section-background-subscribe +###ads-728x90 +||gobmodfoe.com^ +||clips4sale.com^$image,domain=ticklingforum.com +||qydoex.icu^ +72.ru###articleBody > div[class^="uiArticleBlockText"]:has(> p > a[href^="https://invite.viber.com/"]) +ck101.com##.topicReward5Container__float +||observationtable.com^ +lolalytics.com###ncmp__tool +freelive365.com,timeanddate.com,ratemyprofessors.com###ad300 +||d2b7n13v8adl6f.cloudfront.net^ +washingtonpost.com##div[style="min-height:220px"][data-qa="right-rail-item"] +###ad_marker +sapo.pt,parismatch.com,monterail.com,revolutionrace.de,nonfungerbils.com##.newsletter-block +###taboola-right-rail-text-right +all-free-download.com###detail_content > a[href^="http://shutterstock."] +||rumble.com/embed/*&autoplay=2$domain=thepostmillennial.com +||2671.5clo0xmbf.com^ +||kvyyyde.cn^ +||d28s7kbgrs6h2f.cloudfront.net^ +smbc-card.com##div[class^="cv__banner-area"] +wbijam.pl,polishbrief.pl###simplecookienotification_v01 +qwic.nl,qwic.eu,qwic.de#@##cookie-consent +putlockers.do##.textb +thomassabo.com#$##__tealiumGDPRecModal { display: none !important; } +||teambetaffiliates.com^ +launcherleaks.com#%#//scriptlet('prevent-setTimeout', '===0x0&&Swal') +||366378fd1d.com^ +kaspersky.ru##.kl_sm_sidebar_banner +||sohu.com/s/sohuplayer/iplay.html?*&autoplay=true$domain=eetop.cn +||jv.beamierwaisted.com^ +||excite.co.jp/news/js/web-push.js +||enot.fyi^ +||pazashevy.com^ +||wholewowblog.com^$popup +||myflixer.is/ajax/banners^ +imtranslator.net###topframe +||imglnkb.com^$third-party +solopornoitaliani.xxx###first-visit +openculture.com##body > div[style="display: block;"] > a +onet.pl#$#.insertedSlot { display: none !important; } +||ifkdy.com/ifkdy/weixin/isFollowMe +calciomercato.com,highlights.legaseriea.it#%#//scriptlet('trusted-click-element', '#cl-consent button[data-role="b_decline"]') +||a.naliw.xyz^ +interia.pl##a[href][target="_blank"][onclick*="https://www.plushbezlimitu.pl/abo/"] +##.adboxes +tomshardware.com,digitalcameraworld.com,gamesradar.com##.box.newsletter-signup +||widgets.entireweb.com/pixel/ +||opgolan.com^ +behealthymagazine.abczdrowie.pl##style + div[class]:has(> img[src^="https://v.wpimg.pl/"]:first-child + div:last-child) +##.google_adsense +xfantasy.tv##nav > ul > li > a[target="_blank"] +fielmann.de##.cookienotice +create.vista.com,shephardmedia.com,roosterteeth.com##.policy-banner +mojanorwegia.pl###green-bar +||variable-love.pro^ +xiaopi.com##.gg_box +###block-adsense-banner-channel-bottom +@@||cdpn.io^$generichide +wordreference.com##.mobiletopContainer +leonardo.it#%#//scriptlet("set-constant", "adBlockRunning", "false") +||pseergoa.net^ +freealts.pw##a[class^="banner"] +||riftharp.com^ +maildealer.jp##div.modalbn +ditchthecarbs.com###milotree_box_wrap +gmanetwork.com##.sidebar-main > #mrec-container +telecine.com.br#?#div[class^="StyledLayout"] > div[data-testid="banner"] > div[class] > button[data-context="cookiebanner-cta-button-accepted"]:upward(2) +holod.media##.banner1 +||kesseolluck.com^ +satellites.pro##.placea +wcoforever.net,wcoforever.com#%#//scriptlet("prevent-setTimeout", "AdBlock") +###banner_pos1_ddb_0 +bgr.com##aside > section:has(> div.bgr-ad-right-rail-top) +||storage.googleapis.com/didna_hb/webifacts_llc/webifactsthebrighterside/didna_config.js +t.qq.com###talkList > li[ispopula="1"][tv="2"] +||cpm.theardent.group^ +##.instream_ad +||7807091956.com^ +||homosexualfordtriggers.com^ +||lamprey.seagyndavis.com^ +||seeluphill.shop^ +nuvexus.com,stream-together.org##.middle-banner +||vga4a.com/wp-content/uploads/Horizon-Web-Banners*-x-*.jpg +itpro.co.uk###sidebar-second > #block-boxes-subscription-promo-content +baidu.com##.chunwan-wrapper +||ec7be59676.com^ +/adsmanager.nsf/*$image +ageofconsent.net###content > .alert.small +##.d_banner_inner +tousatu-club.com###text-51 +||porno666.com/code/script/ +meituan.com##.component-downtip +mobinozer.com#%#//scriptlet("set-constant", "noAdblock", "true") +||believersymphonyaunt.com^ +||topthink.com/api/basic/ +tubeon.com#?#.contain > div.c-appellation:has(> div.c-medappellation-output > h2:contains(/Advertising|Reklama|Werbung|Publicité|Anuncio|Advertentie|Pubblicità|Anúncio|Реклама|広告/)) +||possibilityrespectivelyenglish.com^ +||1dc651d70c.2d5c3a63b2.com^ +||sos.aomg5bzv7.com^ +@@||pubads.g.doubleclick.net/ssai/event/*/streams$xmlhttprequest,domain=news4jax.com|gmg-wjxt-prod.cdn.arcpublishing.com +bing.com##.ad_sc +filewhopper.com#$#.exitpopup-v2 { display: none !important; } +||soduso.com/js/4 +101.ru##.bnr-flyup__wrapper +||imagespublic.tk/clothes/comeliness.php +gunsamerica.com###slidebox +daringfireball.net###SidebarMartini +||ascc.javquick.com^$popup +||xaajawwskkcnfuc.com^ +||adfusion.com^ +itscybertech.com,cxem.net###antiAdBlock +/howone7.$script,~third-party +24h.com.vn###div_inpage_banner_open +hatauzmani.com##.bn-lg-sidebar +||zpbpenn.com^ +||kbugxeslbjc8.com^ +||affiliate-b.com^$third-party +worldpopulationreview.com##.h-64 +||securecloud-sml.com^$popup +||porntopic.com/player/html.php?aid=pause_html&*video_id=*&*referer= +1plus1.ua##.article__content > .subscribe +/ggpic/* +seznam.cz##.atm-ad-label +rtxkeeda.com###alert > #alertmsg +kisssub.org###kanban +###article_ad_bottom +free-icon-rainbow.com###ad_responsive +||caonme.xyz^ +||heavenly-landscape.com^ +google.ac,google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.by,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.jo,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.ru,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tn,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.ve,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hk,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.it.ao,google.je,google.jo,google.jp,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.ne.jp,google.ng,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tl,google.tm,google.tn,google.to,google.tt,google.us,google.vg,google.vu,google.ws##a[href^="/aclk?sa="][href*="&adurl=&placesheetAdFix=1"] +||f70d00bbcf.614c5b2887.com^ +sextu.com##section[style="padding: 12px;"] +||horriblesubs.info/images/b/ +m.infox.ru###install_bg +zhidao.baidu.com##.doodle-container +||d3b2hhehkqd158.cloudfront.net^ +receive-smss.com##.page-info > a[href^="https://app.smsplaza.io/"] +2chblog.jp##.rss-pickup +easyticket.de#$#div[id^="cookie_consent_popup_"] { display: none !important; } +lezhinus.com,lezhin.com###viewer-coach +||poltarimus.com^ +watchguard.com##.blog__sidebar--subscribe +||lemetri.info^ +functions-online.com##.box_wide +||rock.porn/ai/s/s/im.php?ss= +hbr.org##.PartnerCenter-module_container__w6Ige +||dodo8.com/template/*/images/g_js/ +##.polaris-ad--wrapper-desktop +kittycatcam.com,morganhillwebcam.com,njwildlifecam.com,atlanticcitywebcam.com,palmbeachinletwebcam.com,juneauharborwebcam.com,portnywebcam.com,nyharborwebcam.com,portbermudawebcam.com,pompanobeachcam.com,fllbeachcam.com,ftlauderdalebeachcam.com,keywestharborwebcam.com,porttampawebcam.com,portcanaveralwebcam.com,sxmislandcam.com,mahobeachcam.com,portstmaartenwebcam.com,paradiseislandcam.com,portnassauwebcam.com,miamiairportcam.com,portmiamiwebcam.com,ftlauderdalewebcam.com,portevergladeswebcam.com#%#//scriptlet("prevent-setTimeout", "contentCheck") +||iu.chartsimmi.com^ +||iqgessh.icu^ +||servedby.schrotundkorn.de^ +unicreditbank.cz,essilor.com,tastecooking.com,cinemark.com,lavazza.it,parcelforce.com,iberostar.com,nsandi.com,forcepoint.com,vodafone.com,sony-asia.com,abnamro.com,avis.de,unipolsai.it,o2.co.uk,tsb.co.uk,sainsburysbank.co.uk,hsbc.co.uk,sunglasshut.com,oakley.com,telekom-dienste.de,zurich.it,ray-ban.com,lavazzagroup.com,sony.*,tescomobile.com,falke.com,disney.pl,thewaltdisneycompany.eu,shopdisney.eu,tuclothing.sainsburys.co.uk,epson.com.br,avisautonoleggio.it,qvc.it,gap.eu,disneyplusdayroom.com,sites.prh.com,khaleejtimes.com,tealium.com,robeco.com,totalenergies.de,hsbc.com,newbalance.*,sick.com,aktion-mensch.de,diesel.com,totalenergies.com,zurich.de,cineworld.co.uk,otterbox.de,dropbox.com,penguinrandomhouse.com,familienratgeber.de,barclaycard.co.uk,tuicruises.com,bahia-principe.com,open-telekom-cloud.com,t-systems.com,nh-hotels.de,magentasport.de,goertz.de,stepstone.de,smarthome.de,nuernberger.de,cloud.telekom-dienste.de,tui.com,france.tv,opendns.com,victoriassecret.com,huawei.com,argos.co.uk,tealiumiq.com,ti.com,disney.de,ups.com,macys.com,rakuten.de,trendmicro.com,epson.com,3m.com.tr,command.com.tr,virginmedia.com,francetvinfo.fr,greenmangaming.com,logitech.com,logitechg.com,webex.com###__tealiumGDPRecModal +||jyuwkba.top^ +##.meteored-ads +###search-sponsored-links +se.pl###hook_content > .listing[data-upscore-zone="[NCES] - RON"] +39.net##[id^="ac_im"] +idahopress.com,wataugademocrat.com##.promo-designer-modal +surabaya.tribunnews.com###jualbeli2022 +||fguhyg.cn^ +||bilder.augsburger-allgemeine.de/img/incoming/*/Mobilportal-Promo-Smartphone-Portrait-*x*px.png +##.eucookielaw +||ccm.land24.de/app.js +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=soisk.pl +||auerkbo.cn^ +||lifesoonersoar.org^ +wakacje.pl#$#html.modal-active > body { overflow: visible!important; padding-right: 0!important; } +###mainDivLegacyCookie +juejin.im###juejin > .global-component-box > .book-new-user-award-popup +###adbottom +||sm.mashable.com/zdadkit2.js +||streamsearchclub.com^$popup +cheatcodes.com##.ad_btf_728 +mangoporn.net#%#window.open = function() {}; +eplaza.panasonic.ru##.bannerFixed +||qq.com/playgame/videoweb/ +||kmspicoofficial.com^$all +||dominaeusques.com^ +||indictmentparliament.com^ +logout.hu###right > div[class$="-responsive-300px-600px"] +||mediumtunapatter.com^ +||sockwardrobe.com^ +ortobom.com.br###aceitaCookies +youtube-nocookie.com,youtube.com##.video-annotations +dreamstime.com#$##gdprtext { display: none!important; } +||amazonaws.com/sp-sw-sdk-production^ +##.wpd-advertisement +gpucheck.com##.unitBox +||imgur.com/oPNxy4w.gif +tvgids.nl#@#.cookie-notice:not(body):not(html) +||qiuaiea.com^ +||weryt111.fun^ +||advmedialtd.com^$third-party +multiup.org##.alert.alert-success +||vm4.aomg5bzv7.com^ +kohls.com##.products_grid.sponsored-product +coolors.co##[style*="position:absolute;top:20px;"] +||xml-v4.inptr.com^ +||glouftarussa.xyz^ +internationalsexguide.nl,usasexguide.nl##.isg_banner +##.ads-square-large +navigium.de#$#body { overflow: visible!important; } +wjunction.com##.p-body-content > div > div[style^="text-align:"] > a[target="_self"] > img +ondemandkorea.com#?#article section[class^="css-"] ~ aside[class^="css-"]:has(div[id^="Companion_"][id*="_"]) +||okhrtusmuod.com^ +||202.102.26.253:8182/files/7/lhzs1k.jpg +myanimelist.net#$#div._unit[style] { position: absolute!important; left: -3000px!important; } +footballhd-news.com#?#.bloc_right > div[class^="bloc"]:has(> div.nopromo_view) +www.iqiyi.com#%#//scriptlet("set-constant", "Object.prototype.parseXML", "noopFunc") +||d1lky2ntb9ztpd.cloudfront.net^ +gdmm.com##img[width="1200"] +||fmlabsonline.com^ +##.advertisementTop +||llpgpro.com^$popup +||sampalsyneatly.com^ +yahoo.com##.darla-lrec-ad +tallink.com#$#body { overflow: auto !important; } +||axept.io^$third-party +wayfair.de#$#.u-noScroll { overflow: auto !important; overflow-y: auto !important; } +/adblock_logger.$script +||xuoizbtl.xyz^ +@@||quiz.marquiz.ru^$domain=skillfactory.ru +||dczhbhtz52fpi.cloudfront.net^ +||xml-v4.mediataggus.com^ +||gatejav12.fun^ +thesimsresource.com###eucookie +||ce.wlaoc.cn^$third-party +||tedioustooth.com^ +blick.ch###blick-tv-pop-out +retouch4.me##div[class*="CookieConsentBanner"] +||ytgngedq.xyz^ +overwolf.com##.big-banner +||braggingbehave.com^ +gloucestershirelive.co.uk#%#//scriptlet("set-constant", "chameleonVideo.adDisabledRequested", "true") +||messengerreinsomething.com^ +@@||d1-dm.com^$generichide +adzsafe.com#%#//scriptlet("set-constant", "chk_ads_block", "noopFunc") +||b211.xyz^$document,popup +||336t.com/img/boss/*.gif$domain=wmsj.pw +||sltbjrf.cn^ +qsptv.net###widget-weixin +focal.com###cookie-request +pornfapr.com##a[href^="http://c.trclkr.com/"] +unileverfoodsolutions.com.tr#$#.cookie-wall { display: none!important; } +@@||cdn.cookielaw.org/scripttemplates/otSDKStub.js$domain=hollywoodreporter.com|resmed.com|southpark.de|movistar.es|redbull.com|all.accor.com|karriere.mcdonalds.de|blaklader.*|wallapop.com|rts.ch|npr.org|upc.pl|next.co.uk|zoom.us|rtlplay.be|motorsport-total.com|player.pl|mensjournal.com|gqmagazine.fr|nintendo.*|mtv.com|ryobitools.eu|cc.com|3sat.de|zdf.de|costco.com|giantbomb.com|glovoapp.com|rte.ie|digitaltrends.com|spiele.bild.de|spiele.stern.de|vanityfair.com|saarbruecker-zeitung.de|olympics.com|tvn.pl|bergfreunde.de|oe24.at|epicgames.com|toteraz.pl|natgeotv.com|midomi.com|volksfreund.de|kawasaki.com|ga.de|shop.mango.com|kralmuzik.com.tr|westernunion.com|roastmarket.de|new.cappex.com|vimeo.com|heute.at|ntv.com.tr|wargaming.net|metacritic.com|gq-magazine.co.uk|viafree.dk|viafree.fi|viafree.no|viafree.se|glamour.de|cbsnews.com|worldoftanks.ru|vg247.com|newyorker.com|games.miamiherald.com|eurogamer.es|eurogamer.de|bet.com|ikonpass.com|mcdelivery.de|id.trimble.com|skateboarding.transworld.net|newegg.com|docs.vmware.com|udemy.com|olx.pl|usmagazine.com|uefa.com|milwaukeetool.eu|muscleandfitness.com|20min.ch|ted.com|elisa.fi|nhl.com|porn300.com|indiewire.com|victorinox.com|darkreading.com|trustradius.com|start.gg|geappliances.com|popeyes.com|channel5.com|bigbearmountainresort.com|quora.com|vod.pl|blick.ch|elle.com|teenvogue.com|vogue.co.jp|vogue.co.uk|vogue.com|vogue.com.tw|vogue.de|vogue.es|vogue.fr|vogue.in|vogue.it|vogue.mx|vogue.ph|tvnturbo.pl|superporn.com|thebump.com|bk.com|safeway.com|motor1.com|southparkstudios.com.br|southpark.lat|southparkstudios.com|realsimple.com|538.nl|skyradio.nl|radio10.nl|radioveronica.nl|homedepot.ca|wired.com|europapark.de|jdpower.com|bonava.lv|nick.com|mtvema.com|mtv.co.uk|mtv.de|mtv.it|themessenger.com|nickjr.com|lnw.com|otodom.pl|irishtimes.com|tntsports.com.br|sonos.com|rossmann.pl|rentcafe.com|seriouseats.com|bhg.com|gamescom.global|championsleague.basketball +||xhand.com/player/html.php?aid=*_html&video_id=*&*&referer +||deturbcordies.com^ +tamrieltradecentre.com#%#//scriptlet("set-constant", "adsbygoogle.loaded", "true") +/v2/ads/* +||goourl.me^ +###google-ads-directoryViewRight +||oyoperseduca.com^ +piyonote.com,dora-guide.com,codedosa.com,gradium.co.kr,semesters.in#%#//scriptlet("set-constant", "disable_copy_ie", "noopFunc") +||riddleloud.com^ +||dianomi.com^$popup +swatchseries.to##.centeres > #rotating-item-wrapper > .notify +||spaceshipads.com^ +sp.live.nicovideo.jp##div[class^="___program-information_"] > div[class^="___launcher_"] +18adultgames.com,gizchina.com###block-36 +stbemucode.com#%#//scriptlet('prevent-window-open') +besoccer.com##.dugout-wrapper +kingcard.com.tw#@##adbox +theweathernetwork.com##.woahbar +||j6t91e89q.com^ +##.reklama-vert +bookbeat.pl##div[class*="cookieBanner_container_"] +||howbuy.com/subject/js/jquery.blockUI.js +||6021bfc225.a5058f0d07.com^ +||boar.kostholdsveilederen.no^ +##.ad__300x250 +||streetabackvegetable.com^ +##.imageads +mangakita.net,westmanga.info#%#//scriptlet("set-constant", "puShown1", "true") +gmtv1.xyz##.pc_rb_float +||905trk.com^$document +inoreader.com##.mid_hero +||cdn.taxel.jp^$third-party +hola.com##.hm-sticky-sidebar +priceminister.com###legalNotificationEltId +newworld.com,amazongames.com###ags-CookieDisclaimer +computerworld.com##figure > a[href^="https://www.androidintel.net"][rel][target="_blank"] > img[alt="AI Newsletter"] +##.cookie-confirm +###connatix-moveable +nllb.metademolab.com###root > div[style^="position: fixed; left:"] +||gray-wbay-prod.cdn.arcpublishing.com/pf/resources/js/ads/arcads.js +gotvach.bg###artbot +simplehuman.com#$#html[class] { overflow-y: auto !important; } +||complementinstancesvarying.com^ +dominationworld.com,femdomzzz.com##.ban-tezf +||promo.pixelsee.app^$popup +shemale6.com##.block-video > div.table +transtv.co.id#%#//scriptlet('abort-current-inline-script', 'document.getElementsByTagName', 'oncontextmenu') +||172.255.6.150^$popup +||autolegal.ru/_fb/widget.php +||vv.7vid.net^ +www.playno1.com##.eis_box_s +petri.com##div[data-petri-section="widget-newsletter"] +##.ui-ad +flightradar24.com##.overlay-open-in-app-button +||ap.frarychazan.com^ +##.ad-unit-panel +###advertising_leaderboard +drogeria-zdrowie.com.pl,apteka-zdrowie.com.pl###cookie-tsue-wrapper +||hyenadata.com^$popup +||cc8110e902.78343186b9.com^ +51cto.com#$#.top_bg { height: 60px !important; } +/bload$domain=8boobs.com +mt.360tv.ru###mt_popup +dts24.pl#?#:is(.elementor-size-small, .elementor-size-default):contains(/^Reklama$/) +codexworld.com##.SidebarBox ~ div.adsSt_widget +@@||s*.bpwco.com^$xmlhttprequest,stealth +||complimentingredientnightfall.com^ +@@||s.nitropay.com/ads-*.js$domain=soccerguru.live +||fentent.streampiay.me^$popup +meinebank.de,muenchner-bank.de#$#.darken-layer { display: none !important; } +@@||walla.co.il^$csp +||oaphoace.net^$popup +##div[id^="zergnet-widget"] +||monarchoysterbureau.com^ +##.boxOverContent__banner +||sitamedal4.online^ +||cryptocoinsad.com/ads/show.php$subdocument,redirect=noopframe,domain=btcbitco.in|btcsatoshi.net|cempakajaya.com|gainl.ink|manofadan.com|wiour.com +###ad-placeholder +lasvegassun.com###ad-colB- +news.bloomberglaw.com##.HeaderAdSpot_height_1B2M2 +||ravzbd.xyz^ +banker.ua##.es-form-outer +androidpit.com,androidpit.es,androidpit.fr,androidpit.it##.tile_newsletterSubscription +optimyz.com,ringsidenews.com##.elementor-shortcode +wolframalpha.com##.sc-13120a7c-0 +fanyi.baidu.com##.trans-side-ad-wrap +iyf.tv##.guide_box +##.ad-300 +@@||ttk-com.ru/wp-content/plugins/popup-maker/assets/js/site.min.js +||bipblog.com^$subdocument,~third-party +||fadsipz.com^ +@@||consent.cmp.oath.com^$script,domain=express.co.uk +myreadingmanga.info##center[style*="width: 300px; height: 250px;"] +@@||gifshow.com/rest/wd/common/log/collect/acfun +||yield-op-idsync.live.streamtheworld.com^ +mirrored.to###result > .col-sm > table.hoverable > tbody > tr:has(> td[data-label="Host"] > img[src="https://www.mirrored.to/templates/mirrored/images/hosts/FilesDL.png"]) +##.item-ad-leaderboard +||skeeping.com/live/$subdocument,third-party +newser.com##.whiteBack > div#lightbox +sukkisukki.com#%#//scriptlet('abort-on-property-write', 'onload') +nextdoor.directly.com,oyunicin.com,discord.com,abus.com###onetrust-banner-sdk +usnews.com##div[class^="KioskEconomy__Container"] +||ymmiyun.com^ +##.adsky +||travelingshake.com^ +provenceguide.com##.footer-cookie-notification +||js.capndr.com^ +##.adMpuHolder +||uploadex.com/tst/download1.png +||notifysrv.com^ +thebarentsobserver.com,cannagardening.com,rz.com.ua##.pane-simplenews +||filmaffinity.com/imgs/cc/ +opony-samochodowe.com,sklep.hard-pc.pl###kqs-cookie +||enloweb.com^$popup +argenta.be#$#.modal--activeNoScroll { position: unset!important; } +store.gaijin.net##.yp-cb.js-cb-policy +kocpc.com.tw##.topbarad +israelnationalnews.com##.article-join +imagevenue.com#%#//scriptlet("abort-on-property-read", "__ads") +###accept_cookie +||wilfulknives.com^ +||apostropheammunitioninjure.com^ +sportowefakty.wp.pl##.sgwpbutton--breakingnews +||putridchart.pro^ +||s.playa.to^ +mtbiker.sk###biscuitModal +walterfootball.com###top_S +||wanigandoited.shop^ +@@||sinaimg.cn/tech/https_index/share. +||coliassfeurytheme.com^ +glavred.info##.telegram-new__block +finsmes.com,skardu.pk,mikrometoxos.gr,filmdaily.co,connectwww.com,helpnetsecurity.com,journaldev.com###mailchimp-top-bar +1909.me,8se.me,crxs.me,xchina.biz,xchina.co##.push-top +||withmefeyaukna.com^ +pentruea.com#%#//scriptlet("abort-on-property-read", "sc_adv_out") +dazn.com#%#//scriptlet('json-prune', 'PlaybackDetails.[].DaiVod') +mediafire.com##.Avast +businessinsider.com##.right-rail-min-height-250 +||mywellness.de/wp-admin/admin-ajax.php?action=get_eprivacy_data +||roajaiwoul.com^ +whocallsme.com###cnt_2 +###cookiePolicyWrapper +market.yandex.*##div[data-apiary-widget-id="/footer/subscription"] +time.com###time-in-content-widget.myFinance-widget +@@||sdk.privacy-center.org/sdk/*.js$domain=goplay.be +||attrapincha.com^ +||rivcash.com^$third-party +##[data-freestar-ad][id] +||72hdgb5o.de^ +||deveincyanids.com^ +||a.wmmbcwzd24bk.shop^ +||hoatebilaterdea.info^ +||mobile01.com/groupbuying.php +||afnhc.com^ +@@||forum.miuiturkiye.net/konu/reklam.$~third-party,xmlhttprequest +||game333.net/aainset/ +||nads.io^ +bhaskar.com,divyabhaskar.co.in##div[style*="overflow:hidden;min-height:"][style*="max-height:"] +||sicilianelmondo.com/banner/ +##.ad-unit-text +://www.*.com/js/css/$script,third-party,header=popads-node +givee.club#%#//scriptlet('abort-current-inline-script', 'document.addEventListener', 'adjs') +||addiply.com^ +offshoreleaks.icij.org#$#.modal-open { overflow: auto !important; } +ittoolspack.com,woxreview.com,aimtuto.com#%#//scriptlet('prevent-element-src-loading', 'script', 'pagead2.googlesyndication.com') +||governmentwithdraw.com^ +crazyblog.in,studyuo.com#%#//scriptlet("adjust-setInterval", "wpsafe-", "", "0.02") +michaelemad.com#%#//scriptlet("adjust-setInterval", "timer", "", "0.02") +crewbase.net,crewus.net,shinbhu.net,shinchu.net,thumb8.net,thumb9.net,uniqueten.net##.f +chapaofan.com##a[href^="http"]:not([href*=".chapaofan."]) > img[src*=".sinaimg."] +||bounceads.net^$popup +healthline.com##.css-1p8o5rz +||excuseparen.com^ +||marketgid.com^ +fulibl.cc##.widget_text:last-child +||ayarkkyjrmqzw.top^ +||vwuiefsgtvixw.xyz^ +sap-certification.info#?#.sidebar > section[id^="text-"]:has(> div.textwidget ins.adsbygoogle) +sofascore.com#?#div[display="none,block"] > div[class^="sc-"] > div[elevation="2"]:has(img[alt="Sofascore App"]) +jurong.cn,ld0766.com##.totalad +medicalnewstoday.com,healthline.com#%#//scriptlet('trusted-click-element', 'button[data-testid="gdpr-accept"] > span') +||yydwkkxhjb.com^ +@@||spolecznosci.net/js/core*-min.js$domain=shinden.pl +||phaidaimpee.xyz^ +||twsylxp.com^ +||adtechjp.com^$third-party +thegadgetflow.com##.gfl-widget-gdpr-wrap +##.ad300px +techiedelight.com##.sidebar > #custom_html-9 +||rmzsglng.com^$document +fotoo.org#%#//scriptlet('abort-on-property-write', 'noAdsCont') +##.feed-ad +||superfastcdn.com^ +satoshitap.com##ins[style*="width:468px;"][style*="height:60px;"] +##.cardAd +hightech.plus##div[class^="article__telegram-share"] +delovoymir.biz##.art_tlgm_dz +print24.com##.hintContent +diit.cz#$#html > body.domain-diit-cz { background-image: none !important; padding-top: 0 !important; } +###head_ad_area +##.bottom_ad_block +||whehilru.com^ +||doflygonan.com^ +findlaw.cn###wlcommonbot +theculturetrip.com##.chat-to-our-teamstyles__StyledFlex-sc-1kcd7ss-0 +niebezpiecznik.pl#?##sidebar > ul > li[id^="custom_html-"] > h2.widgettitle:contains(/^Reklama$/):upward(1) +transfermarkt.de##.newsletter-anzeige +mtrend.cn##.daogou-foot +||tragicleftago.com^ +##.guanggaoBox +@@||poedb.tw/dfp.js +totalizator.pl#$#section.popup.js-popup { display: none!important; } +||foresee.com^$third-party +||kiwihk.net^$third-party +||uahozcfq.xyz^ +sogou.com#?#div[class^="right-feedback"]:-abp-has(>.list-step-title:-abp-contains(网游)) +humblebundle.com,last.fm,linuxtoday.com,pcmag.com,techrepublic.com###_evidon_banner +##.adSuperboard +ns.nl#@##cookie-notice +zlotowskie.pl##.adv +m.youku.com##.recommend +fucksporn.com###FloatingLayer +yenimesaj.com.tr#?#div[class="div"]:has(> div[class="div"][style] > div.tradingview-widget-container) +||programmeframeworkpractically.com^ +.gif|$domain=99re.com +||gn01.top^ +naekranie.pl#$?#.wtg-placeholder { remove: true; } +nortonlifelock.com###ensConsentWidget +||laimroll.ru^ +oantagonista.uol.com.br###oa-lightbox +bst.bratsk.ru##.my-sheet-Adv +kurs.com.ua#$#body div.fc-ab-root:not(#style_important) { display: none !important; } +curseforge.com##.project-description [href^="/linkout?remoteUrl="][href*="www.ocean-hosting.top"] > img +||blockchaintop.nl^$popup +rp.pl##.marketing--comp +||pos.aomg5bzv7.com^ +msn.com#%#AG_onLoad(function(){setTimeout(function(){var b=document.querySelector("body > fluent-design-system-provider > entry-point")?.shadowRoot?.querySelector("#entry-point-hp-wc-root-wrapper > .content-container > .stripe-wc-container > stripe-wc").shadowRoot.querySelector("fluent-design-system-provider > .stripe-feed > .feed-section > .river-section > stripe-slider > msft-feed-layout")?.shadowRoot?.querySelector("fluent-card > fluent-design-system-provider > msn-info-pane")?.querySelectorAll("msn-info-pane-tab[aria-label*='$'][aria-label*='.'][aria-label*='Starter'], msn-info-pane-panel > msft-info-pane-slide > msft-content-card[href*='/shopping/']");b&&b.forEach(function(b){b.remove();})},2E3)}); +||rovno.xyz^$document +rastaneko-blog.com##div[style="background-color: #f5f5f5; padding: 10px; font-size: 18px; border: 1px dotted #000000;"] +||affstrack.com^ +thebell.co.kr##.bannerBox +t-depo.hu#@#.cookie-alert +||gvfkzyq.com^ +###acceptCookie +pc.yiyouliao.com##.yyl-ads-swiper +6park.com##a[href*="bpropolis."] +||becomesfusionpriority.com^ +||bonertube.com/*/license.*.js +camwhores.tv##body > div[style^="position: fixed; height: 50px; width: 50px;"] +marketscreener.com##.zppAds +hao123.com,jiegeng.com##.rightTip +publico.es###newsletters--bloque +||slideff.com^$popup +kies-und-beton.eu,softportal.com,azerty.nl###cookie_wrapper +video.az###js-dialog-social-overlay +adslink.pw,jpopsingles.eu#$##no-blocking { display: block !important; } +||augu3yhd485st.com^ +||blog.livedoor.jp/love120331/$subdocument,~third-party +myresume.ru##.rulesInfo +conotoxia.com,cinkciarz.pl##[on-save-fn-name="afterCookieAccept"] +||arcedcoss.top^ +moneycontrol.com##.advertise_brand +propolski.com##body > div[id][class][style*="z-index: 9999"] +heise.de##.inread-cls-reduc +open.spotify.com##a[data-context-item-type="ad"] +fileborder.com,phsensei.com#%#//scriptlet("abort-current-inline-script", "String.fromCharCode", "decodeURIComponent") +pistenbully.com###cookiemanager-banner +tennis.com##article > div.d3-l-grid--outer:has(> div.oc-c-article__body > div.body-parts-center > div.oc-c-article__adv) +rwz.de,gks-rechtsanwaelte.de###GDPRConsent +sk7mobile.com#$#.modal-main { display: none !important; } +||ibradome.com/ba/chargi.js +mixanitouxronou.gr##div[class="prel min-height"] +@@||cdnjs.cloudflare.com/ajax/libs/jquery/*/jquery.min.js$domain=youav.com +reviewjournal.com#$#.amp-wp-header { margin-top: 0 !important; } +pondesk.com###trustedsite-tm-image +pastemagazine.com###newsletter-signup-overlay +##.google-ads-long +gumtree.com###integratedMpu +||inpptouch.info^$third-party +acouplecooks.com##.mv-list-adwrap +||duanmeiwen.com/static/cpt/img/write_right_float.png +ch225.com###apptx2 +###ads_3 +incredibox.com#?#.content > section.bloc:has(> #newsletter) +@@||cdn.privacy-mgmt.com^$domain=gala.fr +@@||files.nextcdn.org/stream/$stealth,domain=animepahe.*|kwik.cx +||opqhihiw.com^ +||success-news.net^ +@@||anyporn.com/js/v*_all.js +scoresports786.com#%#//scriptlet('abort-on-property-read', 'newTab') +tweakers.net#%#//scriptlet('trusted-click-element', '#pg-shadow-root-host >>> button#pg-configure-btn') +||organize3452.fun^ +||zrtfsoz.com^ +||adoni-nea.com^$document +profitgenerator.io##a[href^="/main/redirect/"] > img +###topAdArea +||ynet.co.il/gpt/ +||pioneerusual.com^ +##.site_ad--label +||unstantleran.com^ +meczyki.pl##div[class^="col-md-"] > .row > div[class^="col"] > .widget-wrapper:has(> .widget-wrapper__header > h3[title="Bukmacherzy"]) +||shon.xyz/js/script.js +||d3m9ng807i447x.cloudfront.net^ +@@||google.com/maps/embed/v*/place?key=$stealth +||glaivoun.net^ +||qq745.com/m/ad/ +anoopcnair.com,answersq.com,wuxiaworld.com##aside[id^="ai_widget-"] +msn.com##.qohvco-DS-EntryPoint1-1 +glamour.hu#$#body { overflow: auto !important; } +||ndha4sding6gf.com^ +coolors.co##.native-carbon + div[id] +||pornhdxvideos.com/nb/fn_la-*.js +greens-efa.eu#%#//scriptlet("set-cookie", "ZEDWCC", "5") +##.ad-hold +&aab=$domain=vipleague.tv,important,redirect=nooptext +||2nt.com/m/a/t/matomate/rssblogroll.html +||gfpvvwf.xyz^ +onionplay.net#%#//scriptlet('set-constant', 'scds', '0') +||woyaoq.com/201904100958_5cad4dbac9c5f.png +||pb-news.info/wp-content/themes/jnews/assets/*/remodal +cn.bing.com#?##b_results > li:-abp-has(.b_adProvider) +0gomovie.tv###servers-list > a[target="_blank"] > img +@@||revdownload.com/*.php$generichide +surviv.io##div[class^="adblock-plea"] +||bardatm.ru^ +||startd0wnload22x.com^$popup +wired.com##div[class^="ConsumerMarketingUnitThemedWrapper"] .cm-footer a[href^="https://subscribe.wired.com/subscribe/"] +||whisperingbadge.com^ +home-connect.com,junker-home.com,gaggenau.com,balay.es,profilo.com,constructa.com,pitsos.gr#$#body.cookielaw-blur-background { overflow-y: visible !important; } +||lijjk.space^ +||spirteddvaita.com^ +iotransfer.net,macbooster.net##.fl-accept +||dad1mq193mgtr.cloudfront.net^ +||stiffenshave.com^ +openculture.com#@##influads_block +adyen.com##.page-cookie-bar +||providedovernight.com^ +yrsprts.stream##div[style^="display:flex;height: 230px; width: 100%; max-width:"] +@@||techdays.ru/Banners/Redirect?bannerId= +bloggingguidance.com##.col-md-offset-1 > h3 +:81/c/i.php?id=$script +||chinafpd.net/js/2012-10/ +||zwqzxh.com^ +open.spotify.com#$#div[data-testid="lyrics-container"] p.encore-text { -webkit-touch-callout: default!important; -moz-user-select: text!important; -webkit-user-select: text!important; -ms-user-select: text!important; -o-user-select: text!important; user-select: text!important; -khtml-user-select: text!important; } +||terabox.app/api/ad/ +||fztyrv.xyz^ +##.ads-block-top-right +extreme.com,ilksesgazetesi.com###my-welcome-message +chinese.engadget.com##div[class*="Mih(90px)"][class*="Bdbc(engadgetGray)"] +snapinsta.app##.btn-app +gadgetsnow.com##._2slKI +||mmn811.top^ +/banner.js$domain=28188.com|28188.net +||file.imgprox.net/728x90 +poczta.onet.pl##.main-container > div[class^="go"]:only-child > nav + div[class^="go"] > div[class^="go"] > nav + div[class^="go"]:last-child > div[class^="go"]:last-child:has(> div[class^="go"]:only-child > div[class^="go"]:only-child > div[class^="go"]:first-child + .onet-ad:last-child) +||yoomoney.ru/quickpay/shop-widget$domain=ovgorskiy.ru|blog.themarfa.name +||d127s3e8wcl3q6.cloudfront.net^ +careers360.com##.stickyBottom +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=zefoy.com +@@||cdn.tv*.eu^$stealth +||5184.com/container/html/news_view_gg +w3techs.com##.feat +||vidsfull.online^ +||thootsoumsoa.com^ +||cdn.taboola.com/libtrc/ndtv-ndtvmobile/loader.js$domain=ndtv.com +||ringtonepartner.com^ +##.ad-index-main +||certona.net^ +###cs_right_couplet +gamestar.hu##div[id^="rltd-ad-"] +||restorationpencil.com^ +tumblr.com##aside > div[class]:not([style]) > div[class][style^="background: rgb(255, 138, 0)"] +||ipuswrg.cn^ +playboard.co##.chart__row--ad +fresnobee.com,kansascity.com###story-cta-widget +||psozoult.net^ +latestlaws.com#?#.front-sidebar > div.row:has(> div.col-md-12 > div.widget-border > a[href^="https://nalsa.gov.in/"]) +opjav.com##.float-ct +##.divads +@@||imasdk.googleapis.com/js/sdkloader/ima3.js^$domain=zattoo.com +metruyencv.info###middle-three +olympics.com###header-adv-banner +||extmatrix.com/ad/ +@@||cdn.privacy-mgmt.com^$domain=bold.dk +||lainaumi.com^ +||lveodaz.icu^ +||eukova.com^ +hfxbs.cc##body > a:not([href*="hfxbs.cc"]):not([href^="/"]) > img +firstpost.com##.add_placeholder_300_600 +###ads_0_container +qriv1.ucoz.com##span[style$="font-weight: bold;"] +||sedodna.com^ +||pliantleft.com^ +###viewabilityAdContainer +audiogon.com##body > div[style]:has(> div#zmodal_parent_div > iframe[id^="zaius-bluebook_revamp"]) +||wj.jiancai365.cn^ +so.com###msocomBottomBanner +@@||camsexvideo.net/js/advertising.js +zaobao.com.sg###ei_subscribe ~ .modal-backdrop +###cookieAcceptMessage +||neehoose.com^ +alphacoders.com##.css-grid-content:has(> .in-thumb-ad-css-grid) +||kaucatap.net^ +||champagne.futurecdn.net^ +###adRight1 +uteka.ru##div[data-test="banners-slider"] +||doomna.com^ +||8779.ogrt80r65.com^ +kanetaya.com###st_mb +##.ads300250 +icrypto.media#?#.head_2:has(> a[href^="https://cryptofans.news"]) +###NotificationsAskMsg +weather.com.cn##.tuiguang +koreaboo.com##.vm-ads-dynamic +/mhw0/duniao/* +1010jiajiao.com###yueyu3 +auto-data.net##.adin +gaia.com##.layer-modal-footer +||datingamateurs.com^$third-party +urbandictionary.com#?#main > .container > .items-center:has(> div[data-ad-slot]) +digitalfoundry.net#@#.optanon-alert-box-wrapper +||mobgold.com^ +empflix.com#%#//scriptlet("prevent-addEventListener", "", "/exo") +youth.cn##div[style="width:960px;height:90px;margin:0 auto;"] +||scrawmthirds.com^ +||holmicnebbish.com^ +swisscows.com##.bnnr-widget +nissen.co.jp###nissen_app_area +##.ads_topleft +||dumpilydieted.click^ +jagranjosh.com##[class*="_BodyAd_"] +nextgov.com#%#//scriptlet('set-cookie', 'views-since-welcome-ad', '3') +||cash.femjoy.com^ +##.col2-ads +techspot.com##article > div[style="min-height: 280px"] +@@||static-cf.cleverbridge.com/mycontent^$domain=secure.ccleaner.com,stealth +klebetape.de,baden-in-halle.de,aw-halle.de,hws-halle.de,havag.com,swh.de###keksdose +||flagads.net^$popup +||tapinvited.com^$popup +||ad-score.com^ +||iy.micastpyridic.com^ +gay-streaming.com,gayvideo.me##.sgpb-popup-dialog-main-div-wrapper +torrentfreak.com#?#.page__sidebar > .widget_text > .o-widget__title:contains(/^Sponsors$/):upward(1) +androidcommunity.com,euro-sd.com,sfbg.com,techworm.net##.td-header-rec-wrap +cults3d.com#?##content > .grid--guttered > .grid-cell > .tbox:has(> .drawer > a:not([href*="cults3d.com/"], [href^="/"])) +||beareyes.com.cn^*/ad/ +||wantatop.com^$third-party +backstagepro.de#%#//scriptlet('set-cookie', 'cconsent', '1') +kakprosto.ru#%#//scriptlet("abort-on-property-read", "Object.prototype.Rtb") +||linkelevator.com^ +pharmaguideline.com##.email-join-box +@@||st.pussyspace.net/style/03/img/pinkbg.gif| +soyoung.com###pubWideBanner +||n0gge40o.de^ +bilibili.com##.bili-video-card:has(.bili-video-card__info--ad) > .bili-video-card__wrap +/eucookie. +elespanol.com###gallerynews_footer +zdf.de#$#.smartbanner { display: none !important; } +news.at#@#.optanon-alert-box-wrapper +||szmyl.cn^ +||prettyvirgin.com/js/show.html +@@||mfstatic.cz/js/advantage.min.js$domain=mobilmania.cz +rollingstone.com#%#//scriptlet('set-constant', 'pmcPiano.newsletterForm', 'emptyObj') +@@||costco.com.tw/_ui/shared/js/analyticsmediator.js +360zbz.com#@#.rightad +||mhvllvgrefplg.com^ +##a[href^="https://getmatchedlocally.com/"] +clickssl.net##.privacy_cookies_policy +##.left-ads +skymetweather.com###appblock +||gg.7976.top^ +syndication.bleacherreport.com##.commentsUpsell.content +||greenplasticdua.com^ +sharpporn.com#%#//scriptlet('prevent-addEventListener', 'mouseup', 'flipped') +fsiblog2.com#?#.elementor-widget-wrap:has(> div.elementor-widget-ipe-ad-zone) +||rainpat.com/Scripts/jquery.SuperSlide. +##a[href^="http://handgripvegetationhols.com/"] +||adframesrc.com^ +.gif$domain=manga168.net +||whenolri.com^ +takiedela.ru#$#.arcticmodal-container { display: none !important; } +blog.domesoccer.jp#?#.main-post-list > div.blogrss:upward(1) +blog.livedoor.jp##.tabmoji2 +114la.com###egg-packet +standard.co.uk#%#(()=>{const a=function(){};window.apstag={fetchBids(c,a){"function"==typeof a&&a([])},init:a,setDisplayBids:a,targetingKeys:a}})(); +ben.nl#$#.cookie-wall { display: none !important; } +||bosch-thermotechnology.com/resources/vendor/privacy-settings/ +life.ru#$#body { overflow: auto !important; } +||xineurope.com/static/image/banner/ +nanoreview.net###nfloat-sb-right +||azlyrics.com/local/anew.js +||fivulsou.xyz^ +||traceprof.com^$third-party +expressen.se##.pa-dialog +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_rank +sogeti.com#@##CookieConsent +||nowspots.com^ +||speedtest.cn/api/v2/show +baidu.com,youdao.com,yun.cn#@#.share-content +||lmp3.org^ +tiscali.it##.adv300x100vd +@@||api.friends.ponta.jp/api/$~third-party +ifeng.com##div[class*="SlideAd"] +||d1qow5kxfhwlu8.cloudfront.net^ +netgeek.biz###text-10 +||sohu.com/mail/pv/ +books.com.tw#$#.page-content.with-app-banner #content { padding-top: 70px !important; } +||actrkn.com^ +darksoftware.net#%#//scriptlet('set-constant', 'XV.ad_block', 'undefined') +||pantherads.com^$third-party +doomovie-hd.com##.header-banana_container +||turnstileunavailablesite.com^$popup +##.elementor-widget-wp-widget-advads_ad_widget +||torpidtongue.com^ +||www9.downloadani.me^ +||wonderfulstatu.info^$popup +||haksaigho.com^ +forums.techguy.org##div[style="text-align:center;"] > div[style="font-size:80%;"] +||qmaacxajsovk.com^ +jenismac.com#%#//scriptlet('adjust-setInterval', 'counter--', '*', '0.02') +||wheel-of-fortune-prod.com^ +||vulkan-bt.com^$popup +||etology.com^$third-party +salidzini.lv,diariodoestadogo.com.br###consent-box +||cfgr1.com^ +kekeshici.com###pcAd +stelux.online,gooltok.com,cgcosplay.org,loiz.store,myprivatejobs.com,bestloanoffer.net,techconnection.in,towerofgod.me,happyy.online,chevalmag.com,glo-n.online,jolk.online,infinityskull.com,audiotools.blog,fattelodasolo.it,koume-in-huistenbosch.net,spidergame.online,pedalpower.online,offeergames.online,sealat.com,dent-de-lion.net,mens1069.com,english-dubbed.com,fx4ever.com,businessnews-nigeria.com,day4news.com,net4you.xyz,gameblog.jp,ster-blog.xyz,yazilidayim.net,pandanote.info,forexrw7.com,3rabsports.com,hyogo.ie-t.net,chatgbt.one,shrinklinker.com,felicetommasino.com,chatgptfree.ai,keroseed.net,ewybory.eu,nghetruyenma.net,south-park-tv.biz,telewizja-streamer.xyz,azrom.net,mitaku.net,siirtolayhaber.com,japannihon.com,kllproject.lv,telephone-soudan.com###page + div[id][class] +_adskin. +@@||f95zone.to/login/$stealth +indiamart.com##.pd-ad2 +@@||outkick.com/wp-content/plugins/advanced-ads/public/assets/js/advanced.min.js +||sewingunrulyshriek.com^ +||86uk.com/uploads/*0.gif +||showhaotu.$domain=18board.com|18p2p.com +@@||hc360.com/ad/*.css +||2477april2024.com^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=cdn.witchhut.com +dvdgayonline.com##.mtsnb-shown[style^="background-color:"] +schnittmuster-datenbank.de#$#body { overflow: auto !important; } +||sadsaunsord.com^ +||quicksitting.com^ +@@||firkloveren.no/*/cookienotice.css +||haxqxd.xyz^ +theatlantic.com###site > div#leaflets +||thyroidaketon.com^ +gellerreport.com#?#.widget-area > section.widget h2.donate-title:upward(section.widget) +.com/js/a_d/ +||pisism.com^$popup +||xxvideoss.org/wp-content/uploads/*/bannerrtx.jpg +||lumnstoodthe.info^ +||forzubatr.com^$popup +.com/invoke.js$script,third-party,redirect-rule=noopjs +northerndailyleader.com.au##div[id^="story"][id$="-container"] +emulatorjs.com#%#//scriptlet('trusted-click-element', '.skip-ad', '', '2000') +||secure2.everlytic.net/public/forms/get/$domain=memeburn.com|ventureburn.com +||pixoctopus.pixnet.net^ +##.advads_ad_widget-21 +||ruguoapp.com^$domain=aixiaoju.com +nibelungen-kurier.de#%#//scriptlet('set-cookie', 'user_consent', '1') +youjizz.com##[data-i18n^="ads."] +posti.mail.ee##tbody#eml-list__tbody > tr[id^="row"] > td +baidu.com##.union-tg +netflix.com##.cookie-disclosure-visible +||afm01.com^ +||d3qygewatvuv28.cloudfront.net^ +||getrunbestlovemy.info^ +||unbuttonfootprintssoftened.com^ +sdamgia.ru##.PageLayout-Main > div[class*="_fixedHeight"] +||ostrich.pergaudiaadastra.de^ +||hizanpwhexw.com^ +||ninetyninesec.com^ +||miastodzieci.pl/wp-content/uploads/*/*/screening-*.jpg +pdf2go.com##.extension-container +||xml-v4.clickmi.net^ +##.in-article-ad-wrapper +arenda.az,globalinfo.az,sfera.az,metbuat.az##.ainsyndication +||amusementmorning.com^ +||upload.cc/i1/2020/07/13/8BGJiL.gif +###ads_horz +techposts.org###sidebar > .wp_subscribe +||vianadserver.com^ +||dpe5t.space^ +||revampcdn.com^ +||d3qxd84135kurx.cloudfront.net^ +||adimpact.com^$third-party +###ad-sticky-footer-container +||0023.5clo0xmbf.com^ +wago.com#?#.js-ce-hide > div.wg-modal__overlay:has(> div.wg-modal__container > main > p > a.js-cookie-details) +law.ed.ac.uk#@#.cookie-check +navitime.co.jp###daiko-app +||persaonwhoisablet.com^ +pilkarskiswiat.com###secondary > #custom_html-37 +||freejavbt.com/assets/images/banner +@@||assets.vlitag.com/prebid/default/prebid-*.js$script,domain=financemonk.net|rtxkeeda.com|houseofblogger.com|dropgalaxy.com|djxmaza.in|miuiflash.com|thecubexguide.com|jytechs.in +||asdidmakingby.info^ +||nyetm2mkch.com^$popup +@@||aliyun.com/nocaptcha/analyze.js +||zidapi.xyz^$popup +ebay.co.uk,ebay.it,ebay.de,ebay.be#$#.gh-banner-active #gh { margin: 0 0 0 0!important; max-width: none!important; } +xxvidsx.com,tubsxxx.com##.videoAd +iqiyi.com##.zzVideo +@@/js/adview_*.adsbygoogle.js$~third-party,domain=letv8.cc|zhibo1.cc +||fstsrv9.com^ +||thingsafterthought.com^ +voachinese.com##.slide-in-wg +infoq.com##.related__sponsor +@@||haichaobiao.com^$generichide +@@||img2.xyz.futbol/comics/$domain=jmana1.net,stealth +rugby365.com##.snack-container +chinamedevice.cn##.ads_img +##.photo-ad +||knottysticks.com^ +/8drama_yahoo/* +godbolt.org###ces +ndtv.com##.cnAdzerkDiv +||replay.az/share2.jpg +futurism.com#?##__next > div.antialiased > div > div.text-center:has(> div.mx-auto > div:contains(newsletter)) +||auditioneasterhelm.com^ +||drawbacksubdue.com^ +||homesickclinkdemanded.com^ +||hotkinkyjo.xxx/resseler/banners/ +ivoox.com#$##promo-starter { display: none !important; } +||loader.to/images/loader/convertr.png +gifyagusi.pl#%#//scriptlet("set-constant", "adsbygoogle.loaded", "true") +||minimizetommyunleash.com^ +||cngold.org/api/p? +stream2watch.ws##img.fpi +||24.935ft4j96.com^ +busuu.com#%#//scriptlet('adjust-setInterval', 'clearInterval(a);k.current') +stooq.com##table[width="98%"][height="250"][align="center"] +rifme.net###content li.greysmall +||meteorclashbailey.com^ +||picklecandourbug.com^ +twojstyl.pl#$#.body--ad--sticky .main--header { top: 0 !important; } +eporner.com###movieplayer-box-adv +cricketnetwork.co.uk,f1network.net,pop.inquirer.net,rugbynetwork.net,thefootballnetwork.net###billboard +mysellix.io,sellix.io##.sellix-cookie-container +elle.pl,kobieta.pl,mojegotowanie.pl,mojpieknyogrod.pl,przyslijprzepis.pl,glamour.pl,gotujmy.pl,ilewazy.pl,mamotoja.pl,national-geographic.pl,party.pl,polki.pl,viva.pl,wizaz.pl#$#.ediplayer-ui-floating:not(.ediplayer-ui-fullscreen) .ediplayer-container { position: static !important; width: 100% !important; } +||szpxp.cn^ +||errorpalpatesake.com^ +||67.21.92.*.gif +||cpro.baidu.com/cpro/ui/rt.js$script,redirect=noopjs,domain=rjno1.com +thebell.io##.arena-cut-black +pixnet.net##div[class*="article-ad"] +filehorse.com###newsletter1 +||mildjav11.fun^ +pacesuite.com#%#//scriptlet("remove-class", "cookies-requested", "body") +||structurerod.com^ +anicobin.ldblog.jp#$#.rss-wrapper2 { height: 0 !important; background: none !important; padding-bottom: 0 !important; } +@@||developer.qcloudimg.com/http-save/$image,stealth=referrer +/promo.php?type=partnerchat&file=PRVD_partnerChat.js +vergoelst.de#$#html { overflow: auto!important; } +scientificamerican.com##.house__home_ad +##.adTileWrap +###adBelt +mocah.org#%#//scriptlet("prevent-setInterval", "adsbygoogle") +ada.com#?##outer-container > #page-wrap + aside[class]:has(a[href="/cookie-policy/"]) +||sidanarchy.net^ +gosch.de,ousuca.com#$#body > * { filter: unset !important; } +cleantechnica.com###zox-top-head-wrap +sina.cn##[data-href*="://sax"] + aside +bka.de,polizei.de#$#.mfp-ready { display: none !important; } +sachsen.de##.datenschutz-wrapper +ohsex.pro,violetmovies.com##.slavery +##.js-toast-cookies +||obrom.xyz^ +||askanydifference.com/beardeddragon/iguana.js +||520call.me/ad/ad_ +###content_ad_container +reneweconomy.com.au,tenforums.com##div[data-fuse] +codingnepalweb.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +mouthshut.com###ads_customheader_dvRightGads +m.basketnews.lt##div[style^="text-align: center; width: 300px; height: 250px;"] +||jav-master.com/image/avsubthaiv3.jpg +hipornvideo.com##noindex div[style*="data:image/jpeg;base64"] +sochi.ru#$#body { overflow: visible !important; } +||pornv.xxx/static/js/abb.js +||8.y2sysv81v.com^ +aixam.com,aixamerd.hu###indication_cookie +wjbc.com##a[href^="http://sweetdeals.com/bloomington/deals"] +tanp.jp##app-download-coupon-popup +||klenhosnc.com^ +||exhibitapology.com^ +definebabe.com##.fp-ui > div[style^="position: absolute; inset: 0px; overflow: hidden;"]:not([class]) +||junkieswudge.com^ +||eqygki.xyz^ +||conf.aomg5bzv7.com^ +##.adv_banner_hor +||ebengussaubsooh.net^ +globus-baumarkt.de##.alpha-popup--wrapper +||trafficfactory.biz^ +||ifengimg.com/static/news/js/advtrack +coin360.com##.y49o7q +||xml.xmlking.com^ +thepostmillennial.com,iflscience.com##div[class^="AdChoiceContainer"] +myshopify.com,quantumleapfitness.de,sanctum.shop,nakedoptics.net,tartanblanketco.com#$#.cc-window-wrapper { display: none !important; } +allergan.com.tr##.agn-cookie-consent-outer-wrapper +##.galleryRightAd +||impossibilityfighter.com^ +||jamaicaobserver.com/images/FMC_BizWrap.jpg +freedium.cfd#%#//scriptlet('set-local-storage-item', 'showNotification-buymeacoffe-ban-block', 'false') +wordreference.com##a[title$=" App"] +flvto.biz,flv2mp3.by##.push-offer +forbes.com##.top-ed-placeholder +topographic-map.com#$#body { overflow: auto !important; } +||babbnrs.com^ +smash-media.jp##.st-apps +mayoclinic.org##.globalnotice +pvstreams.com#%#//scriptlet("prevent-window-open") +@@||www.pussyspace.net/class/captcha/arrow.png| +###hours_ad +||shaidraup.net^ +virgintvgo.virginmedia.com##.notifications-manager +##.advt +||wanalnatnwto.com^ +hotpepper.jp##img[width="760"][height="140"] +dailymail.co.uk##a[href^="http://itunes.apple.com/app/"] +pcstore.com.tw###keyad-right +neowin.net#$?#.news-item--sharethrough { remove: true; } +@@||optimatic.com/redux/optiplayer-$domain=pch.com +priceline.com##div[data-testid="HTL_NEW_LISTING_CARD_RESP"]:has(a[aria-label*=" Promoted"]) +canyoublockit.com##a[href^="https://www.amazon.com/gp/"] +hdporn-movies.com##.adbox-inner +revuestarlightre.com,scienceplus2ch.com###rss-roll-01 +||xxxvogue.net/_ad +###ads-footer-inner +patrika.com##.google-ads-full +||kickassz.com/c.js +raider.io##.rio-zone +izismile.com###banner_code_rotator +pondesk.com###c00kieMsg +myticket.de###c-eventalarm +udn.com##.overlay-container +trtworld.com#$#body > #smartbanner ~ header.navbar { margin-top: 0 !important; } +||youtubetomp3music.com/static/js/pops- +@@||cdn.howtofixwindows.com/wp-content/*/better-adsmanager/js/advertising.min-*.js +thestival.gr###ros_featured +||gog.cn/sys/online_calc.js +parenting.pl,abczdrowie.pl##div[data-element="wide-placeholder"] +smak.pl##div[style="height:775px;"] +mylife.com,casetify.com##.ccpa-container +yourstory.com###broadcast-toast +40407.com###tcdgg +fakedetail.com##.ads_us +westword.com##.a65vezphb1 +||aqours.today/img01/MP3/ZL.JPG +||orange.arabtoons.net^ +||acceptvigorously.com^ +$script,domain=blog.carstopia.net|blog.coinsvalue.net|blog.cookinguide.net|blog.freeoseocheck.com|blog.makeupguide.net,redirect=noopjs +||bwjfnj.xyz^ +vk.com,vk.ru###system_msg +.ru/?iam=$script +znanija.com###__next > div.js-main-page > div:not([class]) + div[class^="section--"] +||andriesshied.com^ +japantoday.com##.widget--jobs +ktoto.info##.cookiesbox +libertatea.ro,9am.ro#$#.qc-cmp-ui-showing { overflow:visible!important; } +||zkczzltlhp6y.com^ +proagro.com.ua#$#.td-outer-container { background-image: none !important; cursor: default !important; } +pulse.mail.ru##div[data-sid="fulltext_wiget_promo"] +jianshu.com#$#.download-app-guidance { display: none !important; } +||deductionobtained.com^ +##.bmd_advert +love4porn.com##.block-video > div.top +zycie.pl##.grid__container > div.grid__row:has(> div.grid__col > div.card > div.box > div.box__container > div[id^="bills_in_rotation_"]) +forums.catholic.com##.widget-connector img +nudeclap.com##a[target="_blank"][rel="nofollow noopener"] +||oaphooftaus.com^ +alternativeto.net##div[style^="min-height:114px;background-color:"] +||automaticflock.com^ +onefitmamma.com,fumettologica.it##body div[id="td-outer-wrap"] ~ div[id][class*=" "] +animeworld.*###sidebar > div.widget:has(> div.this-message-does-not-harm-to-you-dont-remove-it) +###sidebargoogleads +forms.app#%#//scriptlet('trusted-set-local-storage-item', 'lastOpenedPopup-newYears', '$currentDate$') +embedstream.me##body > .position-absolute +||op00.biz^ +||roboticourali.com^ +y2mate.is#%#//scriptlet('prevent-element-src-loading', 'script', 'pagead2.googlesyndication.com') +||gammradiation.space^ +||reflectionseldomnorth.com^ +mql5.com##.giyamx4tr +happydog.de#%#//scriptlet('set-cookie', 'mnd-cookie-accepted-happydogde4', '1') +cyberdaily.au#?#.grid-item > .b-sideSub:has(> .b-sideSub__form) +||smart.sunporno.com^ +||tracker.com/public/plugins/plugin_consensacceptcookies. +||frostplacard.com^ +doodle.com##div[data-testid="ads-layout-placement-top"] +regionedanubio.it,regiondunaj.cz,donauregio.nl,donauregion.at,salzkammergut.at#$##cookie-modal { display: none !important; } +||moneymakercdn.com^ +||xnrowzw.com^ +/SetConsentCookie. +skysmart.ru##.form > cis-main-form +download.csdn.net##.quake-slider +pbs.org##.production-and-funding:has(.sponsor-info-link) +komiktap.info###bannerhomefooter +pornobae.com##.promo-cabecera +eastmoney.com##.popswipe +###ad-banner-atf +idoctors.it#$##modal-cookies { display: none !important; } +||algolduckan.com^ +||free.ovl.me^ +johannische-kirche.org#$#body.noscroll { overflow: auto!important; } +vxxx.com##.recltiecrrllt +###adhome +memedroid.com###aside-affix-container > div[style] > a[target="_blank"] > img +digminecraft.com###pre_header > div[class]:not(#header) +/script/antd.js$third-party +pornwhite.com##.info_wrap > div[class="cs"] +go-streamer.net,vgfplay.xyz,elbailedeltroleo.site,tioplayer.com,listeamed.net,bembed.net,fslinks.org,embedv.net,vembed.net,vid-guard.com,v6embed.xyz,vgembed.com,vgfplay.com,fusevideo.net,erome.com,coolors.co,kropic.com##body > a[target="_blank"] +macitynet.it#$#body.td-ad-background-link { cursor:initial!important; } +##.m159-cookies +tvtropes.org#?#div:matches-css(z-index: 100001) +||qunlove.com^*.gif +@@||feldherr.com^$stealth +chips-journal.ru##.subscribe-newsletter-simple +||visionplus.id/videocontents/vod/$domain=okezone.com +||188.42.84.137^ +:81/s/i.php?id=$script +||sxvideohs48241.34gwl8v1a.com^ +||hl.queresspurdie.com^ +||console.imagineobx.com^ +canalplus.com#%#//scriptlet('set-cookie', 'cp_cc_stats', '0') +gzt.com##.google-subscribe +yixingjia.com###wp > table[width="960"] +##.topbannerad +firefoxchina.cn##.float-small +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=4gtv.tv +@@||mediateka.pl/media/desktop/zpr_footer/js/adblock_detector.js +||start-xyz.com^$popup +||fireworkadservices1.com^$third-party +wbnq.com,wbwn.com,wjbc.com##a[href^="https://www.menards.com/main/home.html"] +||qr-captcha.com^$popup +@@||signalstart.com/assets/global/plugins/cookieconsent/cookieconsent.min.js +||pj.uptraceforlore.com^ +viet-jo.com###notify-bottom +genshin.ru#$#.popmake-overlay[data-popmake*="cookies"] { display: none !important; } +||wheenacmuthi.com^ +theconomy.me###adb +@@||x.*.xyz/*/xox_*.jpeg$stealth +lokalise.com###cookie-directive-container +m.k24klik.com##.lightbox-popupCustom +||edutechlearners.com^ +||booking.com/flexiproduct.html?product=banner$domain=happywayfarer.com +topeuropix.site###MyAdsId300x250 +||s.smutty.com//javascript/yo/yolor.js +multipolar-magazin.de###cookiezeile +||debaucky.com^$document +##.ad350 +books.com.tw##.header_box_pop > [class^="flash_banner"] +/bbs/include/javascript/adblock. +realmadryt.pl#@#fieldset +||forum.mobzon.ru/adbp +auchan.hu#$#body { overflow: visible!important; } +skell.sketchengine.eu###SkE_CC +360doc.com###divunderZcommondAd +vegetarian.ru#?#.widget:has(> div[id] > div.bx-subscribe) +||freiepresse.de/w3b/bkgd.jpg +||coedmediagroup.com^ +diep.io#%#AG_onLoad(function(){var c=document.querySelector("#ac1"),a=document.createElement("div"),b=document.createElement("iframe");b.style="width: 0px !important; border: none !important;";b.setAttribute("id","google_ads_iframe_");c&&c.appendChild(a);a&&a.appendChild(b)}); +###left-ad-skin +||cycyw.com/mf/ +charlott.fr###promote-panel +##.ad_float +||ifengimg.com^*300x600 +||creativecommons.org/wp-content/uploads/pum/ +vuz24.ru,allobebe.fr,echo-books.com,parachutefonts.com,truckerapps.eu,free3dbase.com,diamant.ua,chorkowka.pl,bestfile.io,freelancer.com.br,novyny.pro,tsmodelstube.com,1kr.ua,asuntoslegales.com.co,appdb.to,dmarcian.com,zippyfiles.co,gocmod.com,esportfire.com,uploadsea.com,zerobounce.net,custhelp.com,magnit.ru,neubox.com,fullstore.cz,bch-battery.cz,webz.io,undetectable.io,bateriecepek.cz,imageupload.io,pasaz24.pl,mplco.pl,otempo.com.br,baldursgate3.game,tellows.*,tellows-au.com,tellows-tr.com,rktbns.de,banderolaakcyzowa.pl,citocare.pl,citomed.pl,orvit.pl,goboony.*,okocrm.com,kiauto.fr,freevpnplanet.com,healthplanet.by,2x2tv.ru,progroshi.news,catolicasc.org.br,metar-taf.com,finanso.com,zadovoljna.si,vogue.ua,e-account.by,nowports.com,wearerepost.com,lama-media.com,ks-is.com,peple.com.tr,postnauka.ru,e-bebek.com,froneri.ru,webdock.io,zdravopedia.sk,xn--h1alcedd.xn--d1aqf.xn--p1ai,paysale.com,2x2.su,meintierdiscount.de,wkruk.pl,ingrad.ru,valledeelda.com,zoom.earth,educacionyfp.gob.es,golfdondurma.com.tr,metaflux-ts.cz,oneticket.cz,glavred.net,moviezone.cz,mnemonic.io,zgora.pl,egzaminy.edu.pl,gamdias.com,hm.edu,evropochta.by,barclayscorporate.com,emall.by,e-dostavka.by,frutonyanya.ru,trudvsem.ru,gandalf.com.pl,club.pravda.com.ua,pho.to,halkbank.mk,botrix.live,bangkokbiznews.com,cloudpayments.ru,proxy-list.download,nanocad.com,ikea.com.cy,caaquebec.com,esquire.ru,lunamum.de,egyptair.com,mhealth.ru,akado.ru,operahouse.od.ua,rusvpn.com,21buttons.com,taylorandfrancis.com,cosmo.ru,goodhouse.ru,portmone.com.ua,vvdntools.com,bnews.com.br,apppay.com.br,doit.software,mini.lenta.com,markups.kdanmobile.com,blog.calltouch.ru,dille-kamille.de,hi-fi.ru,internxt.com,xlhome.co.id,expres.online,baza.io,newbalance.cz,singulart.com,aoc.com,rss.com,sigortacini.com.tr,bauprofessor.de,privatbank.ua,techmagic.co,tavyatirimholding.com,jus.br,danwood.de,skillbox.ru,sas.am,321-weg.de,ver-television.online,medaboutme.ru,advstreet.ru,nedir.org,testfiltering.com,totalexpress.com.br,ebay.it,food.vkusvill.ru,hatsukimanga.com,anticor.hse.ru,classguru.ru,efeeme.com,auto10.com,bitfinex.com,homepedia.com.br,technolove.ru,itkkit.ru,leroymerlin.com.br,calameo.com,planeta.ru,orientsigorta.com.tr,play.pl,bocchi.com.tr,belarus24.by,compendium.com.ua,city-story.ru,gartic.io,telekom-dienste.de,iqos.com,d3o.com,befirst.info,eblocker.com,parapolitika.gr,makandracards.com,webtekno.com,2plus2.ua,unian.info,unian.net,unian.ua,cinemacity.hu,pepco.hu,pepco.pl,pepco.eu,pepco.sk,pepco.cz,pepco.ro,pepco.hr,pepco.lt,pepco.si,pepco.lv,pepco.ee,pepco.bg,1plus1.ua,otus.ru,astonmartin.com,sapphiretech.com,cbreaker.net,glavred.info,abarta.pl,alo.com.pl,universiteitleiden.nl,pap.pl,fly4free.pl,store.hmv.com,editions-delcourt.fr,square-enix-games.com,capcom-germany.de,global.astonmartin.com,crytek.com,tomorrow.one,vypocitejto.cz,rozklad.pkp.pl,rozklad-pkp.pl,aliorbank.pl,macpaw.com,polsatsport.pl,meczyki.pl,dhosting.com,dhosting.pl,ostrog.com,godealla.pl,diamante-wear.com,twinings.co.uk,moviepilot.de,euronics.it,amnesty.org,glavred.info,urtekram.com,ecuestre.es,betchannel.fr,scamner.com,mountainbike.es,feelunique.com,flooxer.com,tui.fr,comparateur-energie.be,sacsirlari.com,omaweetraad.nl,salusi.nl,uptodown.com##.cookies:not(html, body) +ubuntubuzz.com###subscribebox +monese.com#$#body { overflow: auto !important; } +||cmp.quantcast.com^ +@@||highcharts.com.cn/highcharts/modules/heatmap.js +||luolikong.net^$third-party +babel.ua##.c-subs-box +##.jw-ad-media-container +||lwlwlw.com/ggzx/ +lzdcctv.cn##.ac_pc +||ss.6ib.ru^$third-party +kkbox.com##.google-ad-manager +||7194.5clo0xmbf.com^ +||0370.5clo0xmbf.com^ +##.text-advertisement +||cheezwhiz.z9.web.core.windows.net^ +/\.[a-z]oubli[a-z].top\//$script,third-party +autoplius.lt##.headtop +||discuss.com.hk/dfp_forum.php?au=Discuss_Web_ +last.fm##.full-bleed-ad-container +||freepublicporn.com/prerolls/ +||mildoverridecarbonate.com^ +||pushalert.co^$third-party +kalunga.com.br###divCookiePoliticaPrivacidade +modellbau-metz.com#@#.cookie-notice:not(body):not(html) +bizimyaka.com##.block-fan +techymedies.com#%#//scriptlet('trusted-click-element', '#form a.bt-success[href*="?gentoken="]', '', '300') +||46243b6252.com^ +||sports.ru/censusbarca/*.js +sakh.com##.promo-popup +||dietarydecreewilful.com^ +||aduptaihafy.net^$popup +||content.ingbank.pl^ +rou.video##.grid > div[class^="col-span"]:has(> div[class] > div[id^="ts_ad_native"]) +||zvert.xyz^ +bank-codes.com#%#//scriptlet('set-constant', 'ab3', 'false') +usnews.com###ac-lre-player-ph +||myfastcdn.com^ +ultimate-guitar.com##.spl-fixed-action +patch.com##.patch-home-page-subscribe-block +@@||static.adsafeprotected.com/skeleton.js$domain=cwtv.com +||ngvcalslfbmtcjq.xyz^ +lifehacker.com,lifehacker-com.cdn.ampproject.org#?#article > aside:has(> div > div > a[data-amazonsin]) +##.small-ad-long +||downloadthesefile.com^$popup +duo.op.gg###duo-container div.flex > div.mt-2:has(> ins.adsbygoogle) +/app/apx19.js +||hoodentangle.com^ +soundandvision.com###sub_pop +thuyetminh3d.com##.ad-container +##.dynamicad2 +||lightningcast.net^ +||d38b9p5p6tfonb.cloudfront.net^ +bluejaysnation.com,canucksarmy.com,dailyfaceoff.com,flamesnation.ca,oilersnation.com,theleafsnation.com###in_article_300x250_1 +jamadvice.com.ua##.autolike +##.ads_topbanner +##.feed-item[data-ad] +next.gazeta.pl##[class^="ban"] +###belowheaderad +||moonicorn.network^$domain=birdurls.com +||dynamicadx.com^ +pesni-tut.com##.r_m_genre_songs + div[id] + div:not([id]) +qzone.qq.com##.ck-act +@@/favicon.ico^$domain=hackintosh.zone +||vnebi.com/jquerys.js +||dydab.com^ +##.l-ads +medimax.de#$#body { overflow: visible !important; } +||3lift.com^ +@@||rainmail.xyz/storage/js/suv4.js +||retardpreparationsalways.com^ +||getbrowbeatgroup.com^ +koyi.pub#@#.main_ad +vansky.com##.liAds +chesterstandard.co.uk##.send-us-your-news-cta +lahoo.ca##.right_multi_banner +123freeavatars.com##div[style="float:left;"] > .hd[style] +playtv.com.cn##a[href="http://www.sdhanrui.cn/"] +thequint.com##._3VDj4 +||eekeeghoolsy.com^ +bremerhaven.de#$#body { overflow: auto !important; } +geo.fr##body > .pmc-newsletter + div[id^="sp_message_id"] +skinme.cc,yuntue.com##.huodong +irctc.co.in##div[id^="adContainer"] +asiananimaltube.org#%#window.open = function() {}; +###ad-masthead +||scripts.cleverwebserver.com^$script,redirect=noopjs,domain=crewbase.net|crewus.net|shinchu.net|thumb8.net|thumb9.net|uniqueten.net +ganji.com###write_resume_id +radio.*#?##content-wrapper #stations-in-family ~ div[class] div[id^="RAD_NET_D_"]:upward(2) +bestx.stream#%#//scriptlet("set-constant", "alert", "undefined") +###cookie-law-consent-section +glasswire.com#$#body { overflow: visible!important; } +##.index-wz-ad +||inventionallocatewall.com^ +siouxcityjournal.com#?#section.block:has(> div.clearfix h3:contains(Ads)) +##.ads-fr +hwupgrade.it###col-dx-inner > div[style="width:300px; height:250px; "]:not([class]):not([id]) +@@||nbc.com/generetic/scripts/ads.js +thestar.com,thespec.com,therecord.com,thepeterboroughexaminer.com,stcatharinesstandard.ca,niagarafallsreview.ca,wellandtribune.ca,bramptonguardian.com,caledonenterprise.com,cambridgetimes.ca,durhamregion.com,flamboroughreview.com,guelphmercury.com,hamiltonnews.com,insidehalton.com,insideottawavalley.com,mississauga.com,muskokaregion.com,mykawartha.com,newhamburgindependent.ca,niagarathisweek.com,northbaynipissing.com,northumberlandnews.com,orangeville.com,ourwindsor.ca,parrysound.com,sachem.ca,simcoe.com,theifp.ca,toronto.com,waterloochronicle.ca,yorkregion.com,legacy.com,edition.pagesuite-professional.co.uk,hub.metroland.com#@#.adBlock +||pornxxxplace.com/eureka^ +reuters.com#%#//scriptlet("prevent-addEventListener", "scroll", "#sticky-video") +lada.ru###event_cookie_notify_container +mercedesclub.cz#%#//scriptlet("abort-on-property-read", "gaFailedToLoad") +##.mw-cookiewarning-container +##.lb-advert-container +nytimes.com#%#//scriptlet('remove-attr', 'inert', '#app') +socket.dev##header + div[class^="css-"] > div[data-theme="dark"]:has(> div[data-theme="dark"] > div.chakra-stack > a[href="/github-app"]) +||hjshal.com^ +||baidu.com/api/*/ads/ +d4builds.gg###pwParentContainer +||88ae72dc45.5ed55e7208.com^ +portel.pl#$#iframe[src*="/R1"][src$=".html"][style*="display:block !important;"] { position: absolute!important; left: -3000px!important; } +||tvhay.*/ads/popup-tt.js$~third-party,script +||media.kasperskydaily.com/wp-content/uploads/sites/*/protect-your-smartphone-V1-sidebar-*.png +##.before-header-ad +||sudvclh.com^ +##.ads_wide +||vkcdnservice.com/api/spots/$redirect=noopjs,domain=waaw.to|waaw1.tv|waaw.tv|czxxx.org|scenelife.org|hqq.tv +coincity.in#%#//scriptlet("adjust-setInterval", "timeleft", "*", "0.02") +||results.certifyads.com^ +gayforfans.com###bulletinwp-bulletin-item-5 +##.ads-bigbox +kentcdodds.com##main + div[class]:has(> div.w-full a[href="https://epicreact.dev"]) +biznews.com##.wp-image-1055350 +||whugesto.net^$popup +vetz.vet##.cookie-information-wrap +bfmtv.com#$##android_banner { display: none!important; } +||fentent.streampiay.fun^$popup +##.cookies-box +||yehaobo5.com/js/ +###HP2-ad +velocitytechsolutions.com##div[data-wzb="CookieNotification"] +###ad-billboard-bottom +turbobits.cc,turbobiyt.net,turbobit.net###adfrc_download_wrapper +hypebeast.com##.article-email-signup-wrapper +||beginnerhooligansnob.com^ +voicy.jp##v-sp-download +@@||supremejav.com/supjav.php^$stealth +||stork.notlessbutbetter.com^ +://news-*/process.js?id=$third-party +metode.my.id,sigaptech.com,tutorialsaya.com,bantenexis.com###adb +onamae.com##.bannerLeft +||wenhua.jiaoshou.com^ +||szyepu8.com/data/AADDimg/ +||firmware.center/.coinhive.min.js +@@||birdload.com/*/js/advertisement.js +||adzs.com^ +arcor.de##.cookiepopup +51cto.com###advCanvas +@@||oglaszamy24.pl/*js-css/reklamy/bannery/*/adv.js +||service.smscoin.com/js/sendpic.js +||dashedheroncapricorn.com^ +|http://*/js/ad.$domain=~coolpc.com.tw|~sac.net.cn +||outkisslahuli.com^ +520call.me#%#//scriptlet("set-constant", "all520dddaaa2022ccc", "true") +investguiding-com.custommapposter.com#%#//scriptlet('prevent-fetch', 'adsbygoogle') +palyazat.gov.hu#%#//scriptlet('set-cookie', 'CookieShow', 'true') +||dradvice.in^$popup +||t2.picb.cc/2022/08/07/6rpRKd.jpg +/104_150/1360_1| +digitimes.com.tw##.edm-frame:has(> .adtext) +indyweek.com##.newspack-popup-container +@@||ad.thsi.cn/siteHome/ +###boxAD +povvldeo.*,steampiay.cc,pouvideo.cc,pomvideo.cc###oly +vokrug.tv##.videobomba +pisupisu.pl###bear_wrap +||598f0ce32f.com^ +comparic.pl##iframe[src^="https://capital.com/widgets/"] +||monetizer101.com^ +||lavish-brilliant.pro^ +||97927e3b4d.com^ +@@||sdk.privacy-center.org/sdk.*.js$domain=orf.at +##.unit-ad +||ppcnt.pro^ +##.carbonad-tag +||blobopics.biz^$domain=picfox.org|picbank.tk +subzero-wolf.com##.footer-announcement +rainews.it#@#.as-oil +silvergames.com###x-300 +behance.net##li[class^="PrimaryNav-loggedOutOption-"] > div[class*="PrimaryNav-tooltipWrapper-"] +||irisaffectioneducate.com^ +||effectivecpmcontent.com^$popup +##.verticalAdText +###ad-slot-2 +gulf-up.com###adblock_msg +@@||cdnjs.cloudflare.com/ajax/libs/blockadblock/3.2.1/blockadblock.js$domain=dutchycorp.ovh +||cscript-cdn-*.cassiecloud.com/loader.js +||abminbuy.com/789. +express.co.uk##.trevda +ensonhaber.com##body #eshNotify +###headerAd +hahamx.cn#@#.ad-1 +lance.com.br##div[class^="styles_outerContainerNewsletter"] +portal.librus.pl#$?#advertisement-module { remove: true; } +telegram.hr##.banner-separator +~upupoo.com##a[href^="http://www.upupoo.com"] +||dameparts.com/pbanner/ +##.sponsored-links +vergol.com##div[id^="capa"] +@@||cdn.privacy-mgmt.com^$domain=hs.fi +||sass.hk/images/hengfu.jpg +onlytik.com##.temporary-real-extra-block +operawire.com##.advads-post_ads +||172.255.6.152^ +/conch/asset/js/open-vb. +||ql.uzuzuz.com^ +@@||magesy.blog^$generichide +##.ad_160 +##.player-ad +||osafsr.xyz^ +@@/banner/ad/*$image,domain=achaloto.com +picrew.me#$#.play-Imagemaker { height: 100% !important; } +prevention.com##.list-items > div[class="flexblock-image"] +oney.pt#$#body.prevent-scroll { overflow: auto !important; } +cheatcc.com#%#//scriptlet("abort-current-inline-script", "$", "window.open") +@@truyen$stealth,image,domain=blogtruyen.vn +||techhome-js.github.io/main.js^$third-party +habr.com##section.tm-block_spacing-around:has(> div.tm-block__body > div.tm-promo-block__content-wrapper) +sci-hub.org.cn##.gs_r[data-cid=""] +smarty.cz,jrc.cz,iziwork.com,nowtv.com.tr,answers.unity.com,ring.com,interchalet.de,fox.com.tr,gameduell.de,screencrush.com,justwatch.com,loudwire.com##.consent-banner +posta.sk##iframe[src^="https://static.posta.sk/cookies-consents/"] +afjord-sparebank.no,andebu-sparebank.no,aurskog-sparebank.no,berg-sparebank.no,bien.no,birkenes-sparebank.no,bjugn-sparebank.no,dengulebanken.no,eh-sparebank.no,eika.no,esbank.no,etnedalsparebank.no,gildeskaal-sparebank.no,grong-sparebank.no,gruesparebank.no,haltdalensparebank.no,hegrasparebank.no,hemnesparebank.no,hjartdalbanken.no,hjelmeland-sparebank.no,hsbank.no,jaerensparebank.no,jbf.no,kvinesdalsparebank.no,larvikbanken.no,marker-sparebank.no,melhusbanken.no,nordirekte.no,oasparebank.no,odal-sparebank.no,oppdalsbanken.no,orklasparebank.no,orskogsparebank.no,oslofjordsparebank.no,rindalsbanken.no,romsdalsbanken.no,rorosbanken.no,rsbank.no,skagerraksparebank.no,skuesparebank.no,sn.no,sognbank.no,soknedal-sparebank.no,strommensparebank.no,sunndal-sparebank.no,tinnbank.no,totenbanken.no,tsbank.no,tysnes-sparebank.no,valdressparebank.no,valle-sparebank.no,vekselbanken.no#%#//scriptlet('set-cookie', 'eika_consent_set', 'true') +iclicker.com#$##header-secondary-outer { display: none !important; } +||7-7-7-partner.com^ +apnews.com#$#.LeadFeature { min-height: auto !important; } +##.w_ad +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=cbssports.com,important +||xszcdn.com^ +ucankus.com##.follow-info +###divSponsoredLinks +||fc2.com/video/css/u/pm/img/PC_bnr_ +||empizem.cn^ +||wjct3s8at.com^ +||cduno.cn^ +##.live-ad +##.downcode[style^="position:fixed;z-index:1000;top:200px;"] +||ummid.com/masthead-ad.htm +leparisien.fr###dailymotion-pip-large-viewport +||thawheek.com^ +mbasic.facebook.com,m.facebook.com##[data-ft*="quick_promotion_instance_log_data_encoded"] +###Ads_BA_VID +###duilian_left +||unbloodied.sbs^$document +||xaxrtiahkft.com^ +prufy.ru##.recomend +urlvoid.com#$#.banner-offset { padding-top: 0px !important; } +||douyucdn.cn/butterfly-java/*?width=1200&height=100& +##.gnt_x +||bobs-tube.com/frontend_loador.js +ringover.com#%#//scriptlet('set-session-storage-item', 'showEventsBanner', 'false') +||d359wjs9dpy12d.cloudfront.net^ +crictracker.com##div[class^="style_followUs_"] +###commentTopAd +##.ad-leaderheader +dallasinnovates.com,morphio.ai###acceptance +||wokenoptionalcohabit.com^ +indianexpress.com##.rhs-banner-wrapn +||api.hotscope.tv/snaps/top +waitomo.com#$?##cookieConsentBanner { remove: true; } +neurosciencenews.com,italianbark.com,survivalmesserguide.de##.optinforms-form-container +###taboola-placeholder +dataguru.cn###popDiv +||resourcechasing.com^ +@@||cookiebot.com^$domain=cinemas.nos.pt +cs.money###notifications +||vintageperk.com^ +||topsexcams.club^$third-party +||rwusvej.com^ +##.widget_openxwpwidget +###rightColumnAds +file.fm,files.fm##div[id^="any_media_banner"] +@@||ad4m.at/opt-out.js$domain=ad4mat.net +||hb8g86k.mom/mz.js +||tournamentsevenhung.com^ +howwe.biz##._300_ad +gamejksokuhou.com,shoneekapoor.com,extrememanual.net,kakaowebtoon.com,cafe.daum.net,webtoon.kakao.com,page.kakao.com#$#body { -webkit-touch-callout: default!important; -moz-user-select: text!important; -webkit-user-select: auto!important; -ms-user-select: text!important; -o-user-select: auto!important; user-select: auto!important; -khtml-user-select: auto!important; } +||03505ed0f4.com^ +||assets.propublica.org/static/prod/*/syndicated-newsletter- +whackit.co##.adconleft +||kite.ibirthdayclub.com^ +drawize.com#%#//scriptlet('set-constant', 'firstAdLoadPassed', 'true') +duduk123.com,beritanaik.com##.warning_iklan +agents.media#?#.stk-post > div[class^="stk-grid stk-theme_"]:has(form.mailchimp-form) +##.singpagead +||thronosgeneura.com^ +baidu.com#?#.container:-abp-has(>.bottom-section>.item_voice_room[data-yysid]) +rmj.ru##div[class*="reg_auth_popup_overlay"] +i38.ru##span.ots +###videoOverAd +hqxxtube.com,xxvidsx.com,tubsxxx.com##.aBlock +||peskycrash.com^ +mixnews.lv#$#.amp-wp-footer > div.menu-footer-menu-container > ul:not([id]):not([class]) { margin-bottom: 0px !important; } +||vidmoly.me/check.php +@@||forexprostools.com^$domain=shougedui.com +||pushmaster.xyz^$third-party +||a11b24d103.2153bf35df.com^ +techcult.com###block-37 +poe.trade##.search-results-block > .centered +popnow.com.br##.mvp-content-main > p +svyaznoy.ru##div[class="uxs-wrapper"][style*="cursor: pointer"] +||ignals.com^$document +image.baidu.com##.tjImgli +schaken-mods.com#%#//scriptlet('prevent-setTimeout', 'adblockdetector_') +||njjavt.xyz^ +ilbianconero.com,calciomercato.com###dialog-push-notification +||wigsynthesis.com^ +forbes.com##.profile-sidebar__sticky-container +medyascope.tv##.elementor-element-5bded82f +skmedix.pl#@#ins.adsbygoogle[data-ad-slot] +/MPUAdHelper.js$script +chemicalbook.com,foodmate.net,nmgnews.com.cn,sportscn.com##.ad3 +||kaigaidoujin.com^ +||disciplecousinendorse.com^ +mypolitics.pl#?#div[class^="sc-"] > div[style^="width:"]:only-child > .adsbygoogle:upward(2) +||g0-g3t-msg.net^ +||oxbbzxqfnv.com^ +||elementcircumscriberotten.com^ +||straightenchin.com^ +/float_ad.js$script +##.CitrusBannerWrapper--enollj +comicbookrealm.com###tad +blockchain.info##span[translate="SPONSORS"] +##.ads-styled +@@||edgeservices.bing.com^$stealth +mothership.sg##.ad--lb +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=autofaucet.dutchycorp.space +civicx.com#%#//scriptlet("set-constant", "Object.prototype.rellect_adblock_detector", "false") +###af-cookie-policy +.160x600_ +@@||kiwihousesitters.co.nz/members$urlblock +weartesters.com#?#.sidebar-content-inner > div:has(> div > div > div[id^="weartesters_300x250"]) +msn.com#%#//scriptlet('hide-in-shadow-dom', '.mail-signout-banner-container') +celery-marine.net,otoko-honne.com,ske48matoeme.com,kijolifehack.com##div[id^="rss"] +||bookrb.com/images/jtt +arcadespot.com##.as-label +||worldfreshblog.com^ +daagreat.com##.admask +##.ad_wrp +so.com##.newsfeed-popup +max.book118.com##.preview-app +||ads.ads-goodstream.homes^ +||thegatewaypundit.com// +||adult.xyz^$script,third-party +tech-latest.com##.lates-adlabel + div[style^="height:"] +novoresume.com###popup-cookie-policy-small +||dualmarket.info^ +thequint.com##div[style="height:50px"] +blogs.archives.gov##section[id^="email-posts-to-subscribers-"] +##.vertical-ad +||coolors.co/ajax/get-ads +||cdxyb.cn^$third-party +||d3g4s1p0bmuj5f.cloudfront.net^ +||ipla.hit.stat24.com/*ad.xml$xmlhttprequest,redirect=noopvast-3.0,important,domain=polsatnews.pl|polsatsport.pl|twojapogoda.pl +||ptaufefagn.net^ +appleyardim.org###vbturkopopup +||halbertduffed.top^ +navita.co.jp,nikkeimm.co.jp##.c-cookiePolicy +||xxivzamarra.shop^ +shemalesin.com,ebony8.com,sortporn.com,freeporn8.com,amateur8.com,maturetubehere.com##.invideo.pignr +||ec.geo-online.co.jp/img/usr/cotegory/risumaho_ +||elasticstuffyhideous.com^ +||swamgreed.com^ +/reklame/*$~xmlhttprequest +ebaumsworld.com#@#.promoAd +||puwpush.com^$popup +deepdotweb.com##.feedburner-email-subscription +||std.wpcdn.pl/wpjslib6/wpjslib-sgap.js$domain=easygo.pl +||exploitpeering.com^ +czasnabuty.pl###topLayerBackDrop +typhoon.yahoo.co.jp,weather.yahoo.co.jp##.mdStickyFooter +genmirror.com##.container div[style="height:280px;width:100%;"] +||embwmpt.com^ +~aircn.org,~steamcn.com,~x3cn.com##.wp.a_t +hbr.org##div[data-testid="adContainer"] +indiatimes.com#@?#div:-abp-has(> div[id^="div-gpt-ad-"]) +joom.com##div[class^="disclaimer_"][role="region"] +purepc.pl#@#.reklama +rakumachi.jp###js-MultiPageHeader +gamingbible.com,ladbible.com,unilad.co.uk,unilad.com##div[class*="margin-Advert"] +||pcbeta.com/data/cache/common_fbdbbsyuzhttpx.js +##.medium-top-ad +||goole24.shop^ +@@||brave.com/static-assets/$image,~third-party +fandomwire.com##div:has(> [data-openweb-ad]) +||kijonotakuhaibin.com/js/koteilink +##.Article-advert +elektroda.pl##.the-category > .section-patrons +||bouptosaive.com^ +||peelupsu.com^ +k.sina.cn#$#.sina_sliders_pos { display: none !important; } +||torrentproject2.se/p.js +||adfree-stat.p3g.hu/detect/detect.min.js +/pus/script$domain=turbobit1.com|turbobiyt.net|turbobita.net +||googleads.github.io^ +||cookieq.com^$third-party +xyg39.xyz###__top_header + script + div +outdoorchannel.com,thesportsmanchannel.com##.lity[role="dialog"] +#%#var AG_onLoad=function(func){if(document.readyState==="complete"||document.readyState==="interactive")func();else if(document.addEventListener)document.addEventListener("DOMContentLoaded",func);else if(document.attachEvent)document.attachEvent("DOMContentLoaded",func)}; +||ladbrokesaffiliates.com.au^ +||ssurvey2you.com^ +||ivtqo.com^ +xszav2.com#@#.ad-content +places2visit.pl,filmesonlinex.co##.ArevicoModal +saal-digital.*#@##onetrust-consent-sdk +||vihub.ru^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.close_btn[src*="/adsense/"] + div:last-child +play.tv3.lt#%#//scriptlet('set-constant', 'Object.prototype.isNoAds', 'trueFunc') +manoramaonline.com,theweek.in##.gdpr-outer +||dy2018.com/js17/ +##.ad_line2 +cointiply.com#@#.side-ad +wow.xxx,fullhd.xxx,porner.xxx,fullvideos.xxx,omg.xxx,4kporno.xxx,fullporn.xxx,fullporno.xxx,freepornvideos.xxx##.sponsor +@@||multicanais.org/get/auth$stealth +||chaser.ru^$third-party +firefoxchina.cn##.mrec-banner +||analyticsq1.com^$all +||bmp1.ali213.net/js/ +smaker.pl,pomponik.pl,interia.pl#%#//scriptlet('remove-class', 'body__ad-spons--desktop-ph|body__ad-spons--mobile-ph|body__ad-spons--collapsed', 'body[class*="body__ad-spons--"]') +sportpursuit.com#$#div[data-modal="unified-register"] { display: none !important; } +interestingengineering.com##.t-h-\[176px\] +###side-banner-ad +jta.org##.right-rail-container +||t2.picb.cc^$image,domain=dmxq1.com +@@||douglas.*/public/CookieConsent.*.async.js$domain=douglas.de|douglas.at +16honeys.com###ad-container +salonveronika.ru#$#.marquiz__bg { display: none !important; } +||wpuiuwh.icu^ +deepl.com##aside[aria-labelledby="customer-quotes-heading"] +##.adsizewrapper +canonrumors.com#?##main > #text-15:has(#canonrumorsFreeStarVideoAdContainer) +##.forum-ad-2 +##.js_related-stories-inset +arbeit.nifty.com##.listAppBanner +@@||graph.microsoft.com$stealth=3p-auth +||tigershark.hasanahmad.ca^ +howtofix.guide##.coupon-box-wrap +nekowan.com##div[class^="blogroll-"] +||boqsxdpx.xyz^ +london-dental-implant.co.uk###block-london-cookies +||logresempales.shop^ +##.rekl_left +pochta.ru##div[class*="Trackingstyled__UnauthorizedPopupWrapper"] +##.ahe-ad +##.async-ad-container +||sunnyscanner.com^ +||idreammedia.com^$third-party +||coin-have.com^$third-party +||api.trafficfactory.com^ +||afgr9.com^ +||ifeve.com/wp-content/uploads/*/WechatIMG +||sophisticatedround.pro^ +xmtrading.com#$#body { overflow: visible !important; } +cookingforengineers.com##.nothing +sonichits.com##div[style="max-width: 98%; width:500px; margin: 0 auto"] +appuals.com##.wp-timed-p-content +sigortam.net##.kvkk-fixed-header +nordvpn.com##.BlogPost__banner-wrapper +||one101.xyz/data/images/*.gif +bilibili.com##.operate-card[data-target-url*="doubleclick."] +###div-gpt-mini-leaderboard1 +@@||dpbolvw.net^$domain=bradsdeals.com|coupons.com|dealigg.com|dealnews.com|goodsearch.com|groupon.com|hotukdeals.com|moneysavingexpert.com|offers.com|retailmenot.com|slickdeals.net +||venisonreservationbarefooted.com^ +cbs.com#%#!function(){function b(){}function a(a){return{get:function(){return a},set:b}}function c(a){a(!1)}AG_defineProperty('_sp_.config.content_control_callback',a(b)),AG_defineProperty('_sp_.config.spid_control_callback',a(b)),AG_defineProperty('_sp_.config.vid_control_callback',a(b)),AG_defineProperty('_sp_.config.disableBlockerStyleSheets',a(!1)),AG_defineProperty('_sp_.checkState',a(c)),AG_defineProperty('_sp_.isAdBlocking',a(c)),AG_defineProperty('_sp_.isAdblocking',a(c)),AG_defineProperty('_sp_.isContentBlockerPresent',a(c)),AG_defineProperty('_sp_.getSafeUri',a(function(a){return a})),AG_defineProperty('_sp_.pageChange',a(b)),AG_defineProperty('_sp_.setupSmartBeacons',a(b)),AG_defineProperty('_sp_.msg.startMsg',a(b)),document.addEventListener('sp.blocking',function(a){a.stopImmediatePropagation(),a=document.createEvent('Event'),a.initEvent('sp.not_blocking',!0,!1),this.dispatchEvent(a)})}(); +gas.goodlife.tw###main_content > div#widgets +||b1dd039f40.com^ +||mini.hao123.com^ +||vplayer.enthusiastgaming.com^$domain=systemrequirementslab.com +citybuzz.pl##div[class^="cbz-content"] +lernstudio-barbarossa.de#?#section > div#modalBackdrop:has(> div#modalContent > div.ctools-modal-content > div.bounce-convert-custom-modal) +###ad_midstrip +/images/ads-$domain=~ads.com +||ghyktyahsb.com^ +pornstarchive.com##.squarebanner +||88ys.cc/js/abcd.js +lentv24.ru##.article__social-buttons +||thanksgivingtamepending.com^ +||snakesshop.com^ +uisdc.com##.post-pm-content +softobase.com##div[class^="modal-shading"] +y2meta.com#%#//scriptlet("set-constant", "generatorAds", "true") +||insensitiveintegertransactions.com^ +eksmo.ru##.cmenu__block-subscribe-info +###cookie_info_area +united-domains.de#$#body { overflow: auto !important; } +/code/cpv.asp? +##aside[id^="adrotate_widgets-"] +smugmug.com#$#aside[data-testid="cookiebanner_panel"] { position: absolute !important; left: -99999px !important; } +||ptumtaip.com^ +||www.quicknewssurge.com^ +ettinger.de,billerbeck.shop,emder-fisch-feinkost.de,der-schlauchfritze.de,tipronet.net,campingshop-24.de,bw-discount.de,teddytoys.de,topdoors.de,main-moebel.de,shop.pistenbully.com##.eightworks-cookie-consent-plus +koinbulteni.com#$#body.dialog-prevent-scroll { overflow: visible!important; } +tustolica.pl##.s-label +###qrcodeWrap +||ridikoptil.net^ +/^https?:\/\/[0-9a-f]{50,}\.s3\.amazonaws\.com\/[0-9a-f]{10}$/$xmlhttprequest,third-party +||hipintimacy.com^ +imydl.com###enhancedtextwidget-5 +telefonicaempresas.es##body > div:not([class]):not([id]) > div[data-cy]:has(> div[data-cy="Popup cookies"]) +||luckyads.pro^ +getmyuni.com##.horizontalRectangle +||titan007.com/news.aspx +###svtCookieInformationContainer +@@||securepubads.g.doubleclick.net/gampad/ads?pvsid=$domain=portmiamiwebcam.com +||yijuxie.com^$third-party +||newkerala.com/banners/amazon +||unpkg.com/videojs-vast-vpaid$important,domain=video.q34r.org|korall.xyz|porntoday.ws|tabooporns.com|netuplayer.top|wiztube.xyz|netu.ac|zerknij.cc|speedporn.net|chillicams.net|meucdn.vip|yandexcdn.com|waaw1.tv|waaw.*|czxxx.org|scenelife.org|hqq.*|peliculas8k.com|filme-romanesti.ro|tikzoo.xyz|gledajvideo.top|playerhd.org|ntvid.online|rpdrlatino.live|vertelenovelasonline.com|1069jp.com|diziturk.club|stbnetu.xyz|mundosinistro.com|younetu.org|playvideohd.com|vzlinks.com|javboys.cam|xz6.top|fsohd.pro|playertoast.cloud|pupupul.site|shitcjshit.com|cinecalidad.vip|fansubseries.com.br|vapley.top|player.streaming-integrale.com|rpdrlatino.com|xtapes.to|player.igay69.com|troncha.lol|vpge.link|opuxa.lat|ztnetu.com|filmcdn.top|animeyt2.es|asdasd1231238das.site|tmdbcdn.lat|stbpnetu.xyz|pokemonlaserielatino.xyz|gayvidsclub.com +||stvbiopr.net^ +zpruszkowa.pl#%#//scriptlet('set-cookie', 'impgdpr', '0') +businessinsider.de##.bi-image > a[href="https://www.businessinsider.de/informationen/money-mindset-finanz-newsletter/"] +linuxtopia.org##.raCloseButton +iqiyi.com##.oppo +cashearn.cc#%#//scriptlet("adjust-setInterval", "#timer", "", "0.02") +/300x250. +motortrend.com,mumsnet.com##.min-w-\[300px\] +software-on.com#$#div[style^="display:inline-block"] > .loading { display: none!important; } +||xcelltech.com^ +||arwobaton.com^$document +archive.wikiwix.com##body > img[style^="position:absolute;left:0;top:0"][style*="z-index:1000"] +||townstainpolitician.com^ +every.to,viture.com,vpntesting.com,magilev.by,bobruisk.ru###subscribe-popup +isitdownrightnow.com###commentstop +fastcompany.com##.nativeSecondScroll__container:empty +page.kakao.com#$#div[id="epubViewerBody"][class^="css-"] { -webkit-touch-callout: default!important; -moz-user-select: text!important; -webkit-user-select: auto!important; -ms-user-select: text!important; -o-user-select: auto!important; user-select: auto!important; -khtml-user-select: auto!important; } +||awmplus.com^ +spravportal.ru##.alert-danger:has(> span#learnschemaCard) +||begknock.com^ +||vrtzads.com^ +reallifecamsex.xyz#$##video_player_container { display:inline!important; } +midea.com,sony.ua###__tealiumDNS_banner +||d87b616bee.e33e9583d8.com^ +lifewire.com##.mntl-jwplayer-broad +tempostorm.com##.meta-snapshot > a +bitcointalk.org#?#.bordercolor > tbody > tr:has(> td > table > tbody table[width="100%"][class] + [class] a[href]) +cifrus.ru,nssgclub.com,nssmag.com,stiefelparadies.de###footer-newsletter +hotnews.ro##div[id^="ad1-box"] +||swallow.pelias.io^ +freepik.com###main > section[class=""][id*="_"]:not([class*="spr"]) +||dazeactionabet.com^ +forbes.com#?#.pay-wall-content > div.ribbon:has(> div.bottom-flexbox > a.meter-cta) +||painfultransport.com^ +||chidsimp.com^ +actu.orange.fr#$#.modal-backdrop { display: none !important; } +news.finance.ua##div[aria-label*="subscription"] +||oxydend2r5umarb8oreum.com^ +thegay.com#?#.underplayer__info > div:has( > div#und_ban) +mediaexpert.pl#$#body.is-bodyScrollDisabled { overflow: visible !important; } +windowscentral.com##.panels-flexible-region-inside > a[href^="https://www.awin1.com/awclick.php?"] +||keyimaginarycomprise.com^ +||bans.bride.ru^ +xuite.net###single-bottom-ad +mybestgames.dk#%#//scriptlet('adjust-setInterval', 'PrerollAd', '*', '0.001') +club-opel.com#%#//scriptlet('remove-attr', 'class', 'body > div#obalovydiv') +sankaku.app#$##anti-adblock { display: none !important; } +aftonbladet.se#$#.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links { display: block !important; } +capcut.com##.lv_cookie_banner-wrapper +||nuevonoelmid.com^ +fselite.net#$#body > div[id][style^="background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(4px);"] { display: none !important; } +javfun.me##a.bp-btn-review[href="http://pornhd4k.tv"] +takaritogep.hu#@#.cookie-alert +###ad-fullbanner2-billboard-outer +zzbaike.com##.imglistbg-ad +||sw.admangr.com^ +||bptracking.com^ +###syad1 +goodknight.in##.coustomcookiepop +club.autodoc.pl#$#.popup-visitor-auth { display: none !important; } +###ad-top-low +baidu.com##.wgt-union +reuters.com##div[class^="regular-article-layout__newsletter"] +@@||receivesmsonline.net/ads.js +||421f03c2e5.46acd35e41.com^ +@@||mssl.fwmrm.net/crossdomain.xml$domain=vplayer.nbcsports.com +cyberleninka.ru##body > div.info +@@||novelpia.com^$stealth +||5gxs.org^ +acefitness.org##.qn-chat-prompt +elespectador.com##.Cookies-Container +||monsterofnews.com^$popup +pravmir.ru##div[id^="hh_donate_button_widget"] +||acasadf112.cn^ +##.webadvert-container +||bruceleadx.com^ +||enquirysavagely.com^ +##.crumb-ad +xxxpicz.com##.container-fluid[style^="z-index:9999;font-size:"] +||oontent.powzers.lol^ +||i.imgur.com^$domain=av.movie +||gaypornwave.com/wp-content/plugins/simple-miner-tweaks^ +naked-science.ru##.footer-app-block +i-loadzone.com###i-loadzone_com_678x280_main_top_responsive +##.l-header-advertising +||www.rhsy174op.com^ +||ohooftaux.net^ +@@||st.pussyspace.com/style/03/img/dropmenudownarrow.png| +||xdyjt.com^ +||blamechevyannually.com^ +@@||dictionary.reverso.net/dictlookupiframe.aspx^$elemhide,jsinject,domain=context.reverso.net +news.de###nllayer-container +||pleasantpaltryconnections.com^ +mashnews.ru,pkge.net,lucasentertainment.com,mindbodyonline.com,friendhosting.net,ad-maven.com,wmeagency.com,lesara.de,megawrzuta.pl,postnauka.ru##.notification +lephoceen.fr#$#div[class^="paywall_modal_"][aria-labelledby^="Adblock"] { display: none !important; } +meteum.ai##article[class^="AppPromoMeteumApp_wrap__"] +indiatimes.com#$#body .adBanner { display: block!important; } +16668tu.com,alibuybuy.com,chewen.com,faloo.com,newhua.com,ph66.com,tv.cntv.cn,weishangshijie.cn##div[class^="ad_"] +||1xlite-016702.top^$popup +||adv.bandi.so^ +bikeroar.com##.lower-panel +flyertalk.com##.adblock-section +auto-online.com.tw##.text_links_h +mel.fm##.b-pb-article__body > .b-pb-article__publication-newsletter-formarticle__publication-newsletter-form +swagger.io##.doc-ad-zone +doruk.net.tr,yesilirmakedas.com###header-announcement +tommy.com#@##cookiesMessage +||smoggylong.pro^ +||jsmpsi.com^ +##.cookies-notice:not(body):not(html) +ocre-project.eu#$#body #cookiePopup { display: none !important; } +findaphd.com#$#body { overflow: visible !important; padding-right: 0 !important; } +@@||pranmcpkx.com/index.js$domain=reviewjournal.com|agweek.com +boxrox.com##.rolling-mrt +tracker.gg##.profile-hint +irecommend.ru##.review-yesno-widget +/script/awesome.js$third-party +linksly.co###imgAddDirectLink +katadata.co.id##.center-belt +||nweon.com/wp-content/repo/ad/ +||newdisplayformats.com^ +||germmasonportfolio.com^ +||naitive.pl^$third-party +||pupur.net^$popup +inside.bahn.de##.db-popup-unique +every.to##.post-body p:has(> em + a[href^="https://every.to/subscribe"]) +onlyporn.tube,pornhits.com#$#.xplepele { position: absolute !important; left: -3000px !important; } +terminix.com##.ToggleChatButtonWrapper +wowbiz.ro#@##onetrust-consent-sdk +originalnews.nico###right_rec_banners +||lv.myapks.com^ +##.td_reklama_bottom +||shauladubhe.top^ +nineanime.com##.ad320 +||assoc-amazon.com^$third-party +||quwkke.xyz^ +peekvids.com##.watch-page-banner +theatlantic.com##.article-body > .injector-promo-wrapper--article-top > .injector-promo > aside +thecrimson.com##img[class^="message-"][alt^="Please disable your ad blocker"] +independent.co.uk#%#(()=>{const a=function(){};window.apstag={fetchBids(c,a){"function"==typeof a&&a([])},init:a,setDisplayBids:a,targetingKeys:a}})(); +###tt-cookie-alert +qq.com###mod_float_box +internazionale.it##.cta_nl_ext_container +maxedtech.com#$##site-logo { top: 1px!important; } +zaochnik.ru##.vuedals +@@||ktozvonit.com.ua/src/js/advertising.js +||upytsgo.cn^ +youtg.net###sp-testata +charlieintel.com#?#.col-span-full > .items-center > .flex:has(> div[class^="top-"]:only-child > div[data-ad-unit-id]) +ddooo.com#?#ul:-abp-has(>dd:-abp-contains(高速)) +2345.com###J_s11_foot +masterpaiki.ru#?##secondary .widget-title:contains(Новые статьи на почту) +||bladswetis.com^ +||fvgxfupisy.com^ +##.sponsored-tag +radio.net##.topAdSpacer +d.wanfangdata.com.cn##.wfPubAcc +redtube.com##svg +craftscouncil.org.uk#@#.cookie-banner:not(body):not(html) +ohmymag.de##body.omm .larger.button-subscribe +mgmresorts.com###main + div.overview-component +||colonialismmarch.com^ +||d31ph8fftb4r3x.cloudfront.net^ +planetware.com##.mediavine-sidebar-atf-target +alternative.me###footer > div[style^="position: fixed; bottom:"][style*="z-index:"] +pinflix.com,pornhd.com###inVidZone +appinn.com###ranshownow +||youx.xxx/videos/player/html.php?aid=pause_html&*video_id=*&referer= +@@||tq121.com.cn/j/ad/caoyu-min.js$domain=products.weather.com.cn +kakto.pl#%#//scriptlet('abort-current-inline-script', '$', 'RodoCookiesInfo') +republicbroadcasting.org##.left-sidebar-padder > #text-8 +anonymousemail.me#$#.adsense { height: 1px!important; } +||taco.sexreels.net^ +idlixofficialx.*,idlixplus.*#%#//scriptlet('abort-on-stack-trace', 'DOMTokenList.prototype.contains', 'manageBodyClasses') +||adblock-pro.org^ +filerio.in##div[id^="glx-"][id$="-container"] +||hetahien.com^ +||stunninglover.com/*/$third-party +chubbyporn.com##.twocolumns > .aside +||oataltaul.com^$popup +iphone.apkpure.com,theinquirer.net##.ad-slot +163.com##.right_originalcolumn_ad +||abovethecityo.com^ +||suzbcnh.com^ +cricbuzz.com##body div.bg-cbLightGrayish:has(> div[id*="leaderboard"]) +56.com##.goods_show +@@||tanx.com/ex?i=$script,domain=dlkoo.cc +###bottom-not-ads +###CRTL_CookieAlert +||nxhh.net/gw/gw.js +||search.semp.net^ +regenzi.site,hegra.cam,migration.cam,reviewpalace.net,techplanet.cam,techland.live,gameplanet.cam,topgames.cam,techsoul.cam,gamehub.cam,gameland.click,gamestation.cam,gamezone.cam,gamesera.online,free-games.cam,top-games.live,gulftech.live,reviewhub.vip,reviewtech.me,pcreview.me##.visible-block +0rechner.de#$##cookieconsentmodal { display: none !important; } +ebc.net.tw###lotteryfnc +@@||ads.dblink.us$~image,~third-party +||zsyk91.cn^$third-party +game8.vn##.bn2 +||sansuni.xyz^ +oantagonista.uol.com.br##.newsletter_form_amp +y99.in##.me-container +ganjing.com##div[class^="cookie_notice_notice_container"] +||koolearn.com/www/subject/script/subject_form.js +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xmlhttprequest,redirect=googlesyndication-adsbygoogle,domain=livemint.com,important +||994e4a6044.com^ +||services.aomg5bzv7.com^ +cleananddelicious.com##.wp-block-kadence-rowlayout +||9031.l5eamr17d.com^ +@@||cowcotland.com/scripjs.php$document +anisearch.com##.rect_sidebar +imageresizer.com##div[class*="md:w-\[728px\]"] + div.absolute +eastnews.pl###cookie-frame +sosfanta.calciomercato.com###gdpr-law +@@||downloadgameps3.com/ads.js +||consentmanager.firststars.io^$third-party +||ongoingverdictparalyzed.com^ +lyrsense.com#%#//scriptlet("abort-on-property-read", "clipboard_addLink") +puntocellulare.it#$?##pushbox { remove: true; } +smaker.pl,pomponik.pl,interia.pl#$##sponsCont { display: none !important; } +##.ad-current +||x4q4g2zy7.com^ +||rtb-eu.saroadexchange.com^ +manhuadb.com##.d-flex.px-2 +wroffle.com#@#.SponsorAds +##.ad--in-content +##.module-adslists +||zcode12.me^$popup +###mpu_ad +mr4x4.com.au##div[class^="mr4x4-article-hrec-"] +pemi.cz###pnlCookieConsent +cpmlink.net#%#window.open = function(){}; +pharmastuff.org.in#$##sgpb-popup-dialog-main-div-wrapper { display: none !important; } +||damselfly.clk.click^ +nytimes.com#$##site-content { position: static !important; } +.oeya.com/$domain=realtw.com +terenyinwestycyjne.info#?#.news-list > .news-item:has(> .advert-block-wide) +||psumainy.xyz^ +##.backgroundAd +||nr.celaenomash.com^ +###ad_head +||poolgmsd.com^ +||d31vxm9ubutrmw.cloudfront.net^ +||undercovercinnamonluxury.com^ +truphone.com#$#div[aria-describedby="cookie-modal"] { display: none !important; } +zen.yandex.*##.feed-subscription-promo +@@||rdsubfrm.relateddigital.com/api/Unsubscription +coolrom.com.au#%#//scriptlet("adjust-setTimeout", "download()") +@@||googleapis.com/youtube/$stealth,domain=angrybirdsnest.com +bfmtv.com#$#.video-js.vjs-pip-active { position: static!important; } +||01u.net/js/tj.js +utne.com###URTK_Bottom_728x90 +||mountain.zhidao.baidu.com^ +cellmapper.net##.bootbox-alert +meczyki.pl#$#.zabka-overlay { background: none !important; } +||ntswithde.autos^ +||d22rmxeq48r37j.cloudfront.net^ +iai.tv##.auw--container +||nativeshumbug.com^ +||apionloadmedia.com^$third-party +@@||freeview.com.au/media/*/freeview-plus-web-ad-template_ +||khanjeeyapness.website^ +||xxxx88xxxx.com^ +macupdate.com##.mu_banner_layout_header +||7ee4c0f141.com^ +.com/logo/ad.js +||windrightyshade.com^ +svetandroida.cz#%#//scriptlet("abort-on-property-read", "detectAdBlocker") +disk.yandex.*,yadi.sk#@#.content_ads +bankvostok.com.ua##.cookies-accept-block +ncl.com##.m5 +flowgpt.com#%#//scriptlet('set-local-storage-item', 'appDownloadBannerDismissed.chat', 'true') +||leadsecnow.com^$popup +campbellsci.com#$#.modal-backdrop { display: none !important; } +||phpad.cqnews.net^ +||qzehwg.xyz^ +||tingroom.com/images/qsbdc.gif +hastidl.me##.container > center +||chatmazeful.shop^ +claimcrypto.cc##a[href^="https://cryptowin.io"] +||pastjauntychinese.com^ +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=viralmods.net +magesy.blog,routech.ro#%#//scriptlet('prevent-xhr', 'pagead2.googlesyndication.com') +motopedia.otomoto.pl#%#//scriptlet('set-cookie', 'cc-cookie-accept', 'false') +app.studysmarter.de##app-feed-ads +||showsteel.com^ +elektroda.pl#$#.adBanner.advert.advertisement.adsby { display: block !important; } +||distantsoil.com^ +||cnzzla.com/public/scripts/money.js +||0cf.io^ +serieslatinoamerica.org#%#//scriptlet("abort-current-inline-script", "atob", "decodeURIComponent") +||ev-dating.com^ +/rtb/r/?token=$script +||worthwhile-wash.com^$all +||affiliates.goodvibes.com^ +greatandhra.com##.container:has(> .container-inner > #id1.child) +gameost.net##.apsc-floating-sidebar +##.adsense_sidebar_top +@@||studioclassroom.com/ad/ +||reconstructalliance.com^ +||sacrificeaffliction.com^ +wdzj.com##.ggao-everyone-rebeat +||d3uqm14ppr8tkw.cloudfront.net^ +streamsport.pro###layer1 +timesnownews.com##div[class^="ArticleShow-ze__subscribe-container-"] +sheshaft.com#?#.heading:has(> h2:contains(AD)) +anysex.com##div[style="margin-top:-16px;"] +@@||webaksiyon.com/cdn/plugins/advert/advert.js +wwd.com##.a-homepage-top-stories__newsletter +wrw.is##.site-header-inner > a[rel="nofollow"] > img +theverge.com#$#.mt-80 { margin-top: 50px !important; } +||grigsreshown.top^ +kisscartoon.me##iframe[id^="adsIfrme"] +###horizads728 +iflscience.com###FollowOnGoogleNewsBtn +||decordingholo.org^ +||23.109.87.$popup +purina.co.uk##.component--newsletter +@@||bdstatic.com/??*,*,*, +tulapressa.ru#?#.content > div.news_alert:has(> div.news_alert-text > a[data-href="https://zen.yandex.ru/tulapress"]) +torrentfunk.com##.content td[align="center"] > a[href*=".html"] > picture +x99av.com#%#//scriptlet('set-constant', 'ADSOBJET', 'emptyObj') +omgfoss.com###sidebar > #text-9 +forums.oneplus.com##.app-recommand-layer +||tk.massifbramble.com^ +||anopportunitytost.info^ +||dm.jb51.net^ +||agriculturalpraise.com^ +myauto.ge##.medium-banner +go.rtl2.de##.fixed-footer +##.apd-footer +antwerpen.be##app-cookie-wrapper +wenxuecity.com#%#//scriptlet("set-constant", "adsbygoogle", "noopFunc") +||extinguishadjustexceed.com^ +instiz.net#%#//scriptlet("prevent-setInterval", "nocopy") +||pornj.com/wimtvggp/ +hausbau-forum.de#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +###sliderAdHolder +last.fm##.profile-banner +||androidcentral.com/sites/androidcentral.com/files/article_images/*_banners_$image +comss.info##div.toplogo > span[style^="position:absolute; margin-left:"] +new-gomovies.online##a[href="/user/profile/premium-membership"][target="_blank"] +examveda.com#?#.sidebar > .padding2 > div[id^="div-gpt-ad"]:upward(1) +||iconfinder.com/static/js/istock.js +megaup.net#$#.imgAds > img { height: 250px !important; } +||downloadprivacy.com/wp-content/uploads/2020/06/ipvanish-featured-sidebar.gif +||plorexdry.com^$document +194.233.68.230###adsimgxatass +||mbjrkm2.com^ +thebell.io##.post_content > figure.inner-image:has(> picture > img[src="https://thebell.io/storage_v2/images/9d1/4a0/9d14a067-284a-49a1-8601-c759bc7e2f1f.webp"]) +bitchesgirls.com#$#.item > .post { height: auto !important; } +brief.pl##.sidebar > #custom_html-2 +||495720ba1f.79dc3bce9d.com^ +rahim-soft.com,uploadrar.com###commonId > a[target="_blank"] +wko.at#$#.popup__cookie { display: none !important; } +##.ad_blk +||partridgehostcrumb.com^ +||kgeqsu.xyz^ +||avjd014.com/statics/layer_mobile/layer.js +||mawtoload.com/wp-content/uploads/*.webp +||adultdeepfakes.com/static/js/p.js +safelink.asia#@#.banner-468x60 +||cpddgcr.xyz^ +sportsbull.jp#$##post-content-container.noevent a { pointer-events: auto !important; } +notthebee.com##.w-full > div.justify-center:has(> div > div.w-full > form[action="/newsletter"]) +||assoc-amazon.it^$third-party +@@||yandex.com/search/?$generichide +modshost.net##.sense_horizontal_1 +||ged46.xyz^ +freetutsdownload.net#%#//scriptlet("set-constant", "adblock_is_adsense", "0") +bokadirekt.se#$#.cookie-modal { display: none !important; } +atlasobscura.com##.advertisement-disclaimer +||touroumu.com^ +###adsense-468x60 +||hellporno.com^$subdocument,~third-party +turnoffthelights.com##.slideads +wifi4games.com#%#//scriptlet('prevent-setTimeout', '/\!window\[[\s\S]*?String\.fromCharCode[\s\S]*?document\.createElement\("script"\)/') +exponea.com##.ccpa-notice +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=bdcraft.net +/index-ad-$stylesheet +miuithemers.com#@#.ads-left +||lustre.ai^$script,third-party +praxis.nl##.mxd-cookie-bar +||cachead.com^*.js +techspot.com##div[class^="billboard_placeholder_"] +###CCompliance +idg.se##.spklw-post-attr[data-type="ad"] +freshnewsasia.com#?#div[itemprop="articleBody"] > div[style]:has(> a[href*="/banner/"]) +||oafhif.icu^ +||loading-delivery1.com^$third-party +||eastday.com/jrdftt/static/javascript/ad/configDouble11. +||tozoruaon.com^$popup +blackenterprise.com##.theiaStickySidebar > .widget_text +kuyhaa-me.site,hentaigasm.com,kuyhaa.me,authentisch-italienisch-kochen.de,filekuy.com,witcherhour.com,hypando.com.br,dwgshare.com,ivfauthority.com,hokx.com,willcycle.com,gourmetsupremacy.com,informatykit.it,domhouse.it,soisk.pl,samuraiscan.org,magiskmanager.com,infortechno.com,gaypornhdfree.com,powerup-gaming.com,mixrootmod.com,wanderertl130.id,davescomputertips.com,movies4u.*,engtranslations.com,smarttips.in,netfuck.net,sociologicamente.it,freepreset.net,textfonts.net,ketubanjiwa.com,javboys.tv,boyfuck.me,javgay.com,gaypornhot.com,ethernalworld.com,ubitennis.com,3dzip.org,movierulzhd.skin,igay69.com,ayatoon.com,fastssh.com,cgtips.org#%#//scriptlet('prevent-addEventListener', '', 'aadb_get_data') +||rendchewed.com^ +studyis.xyz#$##wpsafe-generate { display: block !important; } +##.singlepostadsense +palit.com,gainward.com###pp_overlay +||qqlnvwjtjhve.com^ +###rb-cookie-container +||go.strpjmp.com^ +||privateinternetaccess.com/affiliate.min.js +51credit.com##.credit-box +/gamedog_mobile_ +||1905.com/data/js/*.json +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.switch_radios + div[class] +cococut.net###oneDownVideo + p +xn--80az8a.xn--d1aqf.xn--p1ai##.UILib_CookieNotification +msn.com##a[href^="https://clkde.tradedoubler.com/click?"] +||bajowsxpy.com^ +||thecambabes.com/js/mypop2.js +||tamil.samayam.com/tsmipp/ +xn--d1aiavecq8cxb.xn--p1ai##app-block-page-header > div.shell +alu.cn##.Tg_290x60 +@@||mssl.fwmrm.net/p/abc_live/AdManager.js$domain=abc.go.com +||ignobleordinalembargo.com^ +||teenfinder.com/landing/$popup,third-party +||freecamsexposed.com^$popup +||xinhuanet.com/jjimages/jc/js/fla.js +m.diariovasco.com##.cookies-div +||iffobi.xyz^ +animaunt.tv##.icon-bar > .fl-fl +##.ContentAd +@@||builder.io^$generichide +##a[href^="https://cams.imagetwist.com/in/?track="] +fastcompany.com###FCGlobalPlayerFrame +pchome.net###bzhref +wmaraci.com##.e-posta-abonelik +||outgratingknack.com^ +raysigorta.com.tr#$#.modal-backdrop { display: none !important; } +le.com##.H-tg +||airdrop-manager.ru^ +blog.quastor.org#?#div[style*="word-break"] + div[style="padding: 24px 0;"] +||simple-isl.com^$popup +qq.com##.adword +puzzlegarage.com##.banner--inside +joongang.co.kr##.goto-app-btn +celebwell.com##.vi-video-wrapper +zshort.io#$##showContainer { display: none !important; } +||cixompoqpbgh.com^ +||copemorethem.live^ +audiosexstories.net#?#.column > div.wrapper > li.sam_pro_block_widget:upward(1) +freiepresse.de###aboBanner +##.ad-page-setting +||protected-redirect.click^$popup +mangabat.com##div[style$="overflow: hidden;"] > div[style^="width: 300px; height: 250px;"] +||gdecordingholo.info^$popup +tea.ru##.feedback-wrapper +||174.127.195.66/bbs/include/javascript/adblock.js +||imgur.com/df53F09.jpg +zoomgirls.net##.side-header2 +octopusenergy.co.jp##main + div > section.fixed.text-ice +emojipedia.org#$#@media (max-width: 899px) { body div[class^="Container_container-wrapper"] > .flex-col > div[class^="Tabs_tabs_"][data-sticky] { top: 65px !important; } } +||4071073a42.ea011c4ae4.com^ +wuxiaworld.com##.container-fluid .pw-container > a[target="_blank"] +||apromoweb.com^ +freetutorialonline.com#?#.sidebar > div.widget:has(> div.title-block-wrap > h5:contains(Coursera Affiliate)) +shop.wenko.de,ersatzteilshop.de,easyfitfood.com,dosenmatrosen.de,par71.de#$#.acris-cookie-consent { display: none !important; } +blizko.by##cite +silesia24.pl##.vertical__ad +||njreka.xyz^ +kienyke.com###block-mailchimpblock +washingtonpost.com##.softwall-overlay +tozanchannel.blog.jp##.waku-1 +||jrtlisa.top^ +$webrtc,websocket,xmlhttprequest,domain=pirateproxy.live|thehiddenbay.com|thepiratebay.org|thepiratebay10.org +gossipfunda.com##.widget_mc4wp_form_widget ~ aside.widget +||pkyjuc.cn^ +||conditioncrush.com^ +||obduratewiggle.com^ +sanctum.shop,zeerawireless.com###shopify-section-popups +||d1upt0rqzff34l.cloudfront.net^ +||pxxnejx.xyz^ +||invaderimmenseimplication.com^ +||goettgen.de/cookieajx.php +homedecoratione.com#@#.advertiser +tribunnews.com###wideskyscraper +||ads.eorezo.com^$third-party +##.adace-vignette +auto.de#$#.MuiModal-backdrop { display: none !important; } +||datajsext.com^ +##.ad-in-read +echofm.online##main > article.wp-embed-responsive ~ div[class^="sc-"]:has(> div[style="visibility: visible;"] > div[class] > div[class] > label > input[name="paymentMethod"]) +||whiprayoutkill.com^ +||madurird.com^ +||fpdisplay.com/upload/n_ad/ +||convers.link^ +||intriguingsuede.com^ +playground.ru##.promoted-bonus-component +5278.cc,hboav.com#%#//scriptlet('prevent-setTimeout', '/ad block stop|warm_msg/') +vesty.co.il##[class*="ShareComponent"] +info.nicomanga.jp##.wp-block-post-content > div.wp-block-group:has(> p > a[href="https://site.nicovideo.jp/nicomanga/?appstore"]) +app.handelsblatt.com#$#.show-appinstall-banner #hb-app { padding-top: 0px!important; } +||roobetaffiliates.com^$popup +||iasrv.com^ +||minorityspasmodiccommissioner.com^ +||hitime5.com/skin/css/*.js +keirin.netkeiba.com###tipstarApeal_wrap +czateria.interia.pl##.video-player-container +retailgazette.co.uk##.boxzilla-popup-advert +||cdn2reference.com^ +kytary.*#%#//scriptlet('set-cookie-reload', 'CookieConsent', '0') +##.ads_side +youtube.com#%#//scriptlet('json-prune-fetch-response', 'playerResponse.adPlacements playerResponse.playerAds playerResponse.adSlots adPlacements playerAds adSlots', '', '/playlist\?list=|player\?|watch\?[tv]=/') +@@||archehukuk.com/_api/communities-blog-node-api/_api/posts/content/$xmlhttprequest +||video.streamtape.com^ +||taizigly.net^ +||imasdk.googleapis.com/pal/sdkloader/pal.js$script,redirect=noopjs,domain=channel5.com +seznamzpravy.cz##div[style^="max-width:"][style*="480px;"] +shadertoy.com###compliance +||elitedistasteful.com^ +elamigosedition.com##.tabs-b > div[class^="but"] > a[target="_blank"] +buzzfeednews.com##.newsblock-promo-popup +tokfm.pl##newsletter-popup +||igouthoatsord.net^ +androidiani.com###post_ +158.69.120.31#$#body { overflow: visible!important; } +||pushnotice.xyz^ +hollywoodreporter.com##.above-header-ad +||adzo.cn^ +defence-industry.eu##.has-small-font-size.has-text-align-center +paypay.ne.jp###footerApp +||content.astro7.ru/js/chat-bot- +||qjrhacxxk.xyz^$popup +||vdai.lrv.lt/Project/Modules/Gpdr/assets/ccc-script.js +/t63fd79f7055.js$domain=jesseporn.xyz|kendralist.com|erotichdworld.com|freyalist.com|doseofporn.com|guruofporn.com|steezylist.com|moozporn.com|sharkyporn.com|lizardporn.com +walmart.com##.WMXOMPAdController +||htoptracker11072023.com^$popup +||aboutads.quantcast.com^$third-party +yts.one#%#//scriptlet("prevent-window-open") +presseportal.de##.mobile-container.app-notification +||vampedcortine.com^ +easypet.com##.kadence-conversion-inner +www.google.ac,www.google.ad,www.google.ae,www.google.al,www.google.am,www.google.as,www.google.at,www.google.az,www.google.ba,www.google.be,www.google.bf,www.google.bg,www.google.bi,www.google.bj,www.google.bs,www.google.bt,www.google.by,www.google.ca,www.google.cat,www.google.cd,www.google.cf,www.google.cg,www.google.ch,www.google.ci,www.google.cl,www.google.cm,www.google.co.ao,www.google.co.bw,www.google.co.ck,www.google.co.cr,www.google.co.id,www.google.co.il,www.google.co.in,www.google.co.jp,www.google.co.ke,www.google.co.kr,www.google.co.ls,www.google.co.ma,www.google.co.mz,www.google.co.nz,www.google.co.th,www.google.co.tz,www.google.co.ug,www.google.co.uk,www.google.co.uz,www.google.co.ve,www.google.co.vi,www.google.co.za,www.google.co.zm,www.google.co.zw,www.google.com,www.google.com.af,www.google.com.ag,www.google.com.ai,www.google.com.ar,www.google.com.au,www.google.com.bd,www.google.com.bh,www.google.com.bn,www.google.com.bo,www.google.com.br,www.google.com.by,www.google.com.bz,www.google.com.co,www.google.com.cu,www.google.com.cy,www.google.com.do,www.google.com.ec,www.google.com.eg,www.google.com.et,www.google.com.fj,www.google.com.gh,www.google.com.gi,www.google.com.gt,www.google.com.hk,www.google.com.jm,www.google.com.jo,www.google.com.kh,www.google.com.kw,www.google.com.lb,www.google.com.ly,www.google.com.mm,www.google.com.mt,www.google.com.mx,www.google.com.my,www.google.com.na,www.google.com.ng,www.google.com.ni,www.google.com.np,www.google.com.om,www.google.com.pa,www.google.com.pe,www.google.com.pg,www.google.com.ph,www.google.com.pk,www.google.com.pr,www.google.com.py,www.google.com.qa,www.google.com.ru,www.google.com.sa,www.google.com.sb,www.google.com.sg,www.google.com.sl,www.google.com.sv,www.google.com.tj,www.google.com.tn,www.google.com.tr,www.google.com.tw,www.google.com.ua,www.google.com.uy,www.google.com.vc,www.google.com.ve,www.google.com.vn,www.google.cv,www.google.cz,www.google.de,www.google.dj,www.google.dk,www.google.dm,www.google.dz,www.google.ee,www.google.es,www.google.fi,www.google.fm,www.google.fr,www.google.ga,www.google.ge,www.google.gg,www.google.gl,www.google.gm,www.google.gp,www.google.gr,www.google.gy,www.google.hk,www.google.hn,www.google.hr,www.google.ht,www.google.hu,www.google.ie,www.google.im,www.google.iq,www.google.is,www.google.it,www.google.it.ao,www.google.je,www.google.jo,www.google.jp,www.google.kg,www.google.ki,www.google.kz,www.google.la,www.google.li,www.google.lk,www.google.lt,www.google.lu,www.google.lv,www.google.md,www.google.me,www.google.mg,www.google.mk,www.google.ml,www.google.mn,www.google.ms,www.google.mu,www.google.mv,www.google.mw,www.google.ne,www.google.ne.jp,www.google.ng,www.google.nl,www.google.no,www.google.nr,www.google.nu,www.google.pl,www.google.pn,www.google.ps,www.google.pt,www.google.ro,www.google.rs,www.google.ru,www.google.rw,www.google.sc,www.google.se,www.google.sh,www.google.si,www.google.sk,www.google.sm,www.google.sn,www.google.so,www.google.sr,www.google.st,www.google.td,www.google.tg,www.google.tl,www.google.tm,www.google.tn,www.google.to,www.google.tt,www.google.us,www.google.vg,www.google.vu,www.google.ws#$#html.QVCmK { overflow: auto !important; } +plvideo.ru#?#div[class^="mocked-styled"] + div[class^="index_css_content_"]:has(div[data-description="stack-wrapper"] p[class^="text_css_root_"] a[class^="index_css_link_"]:contains(куки)) +||paripartners.ru^ +windowsblogitalia.com##.tile-content:has(> ins.adsbygoogle) +simpcity.su#%#//scriptlet('set-cookie', 'zone-cap-papi-hates-blocks', '1') +wikijob.co.uk##.mv-video-target +deccanherald.com###desktop-ad +flight.qunar.com##.l_rside > .b_fly_ban_b:nth-child(2) +open.spotify.com#$#.Root__top-container--has-notice-bar .SearchInputBox--feedback-bar { top: 0!important; } +kijiji.ca#?##base-layout-main-wrapper > div[class^="sc-"]:has(> div[class^="sc-"] > div#gpt-leaderboard-top) +shethepeople.tv##.whatsapp_logo_link +||cornpic.com/images/*.gif +fh-studiengang.de,der-gruenmacher.de##.sqrcookie +forums.overclockers.ru###pagecontent > table.tablebg+div[style^="border: 1px solid #ccc; margin: 5px 0; text-align:center; background-color: #d9e5f1;"] +tvr.by##.watermark +||fzszuvb.com^ +##.printAds +newtimes.co.rw##.header-top +schuhe.de##.news-wrp +||megaffiliates.com^$popup +||consent.cookiebot.com/*/cc.js$important,domain=continente.pt|tfl.gov.uk +android.com.pl#?#.wp-block-acp-post-feed:has(> h2:contains(Promocje i oferty polecane przez redakcję)) +ixigua.com##.J_ad +@@||franklymedia.com/*/300x150_WBNQ_TEXT.png$image,domain=wbnq.com +galaxus.fr,galaxus.de#$#div[data-test="cookieBanner"] { display: none !important; } +||x0or8.icu^ +###longAdWrap +##.LayoutHomeAds +##.p_cookie +||advantagespire.com^ +||ccmiocw.com^ +theamericanconservative.com##.c-subscribe-email +###cookiePolicy +vku.de#%#//scriptlet('set-cookie', 'ww_cookieNote', '1') +||ad.samsungadhub.com^ +@@||decompiler.com/javascripts/ads-prebid/prebid-ad*.js +akhbarelyom.com##center > img[style="height: 300px; width: 300px;"] +##.banner-ad-below +reedsy.com##.d-admin-exit-modal +##.playtopad +muratordom.pl#$#.adsbox.doubleclick.ad-placement { display: block !important; } +||trvl-px.com/trvl-px/ +burgan.com.tr###footer_cerez_politikasi +||thebigadsstore.com^$popup +||sw.reqeqp.com^ +@@||c.mipcdn.com^$domain=prpcoin.com +dalmatinskiportal.hr##.banner +||edadmy.xyz^ +||hashpreside.com^ +delfi.lv##a.ads-blocks-link +ao.com###aoMessageHolder +web1s.asia,mizugigurabia.com,matomeiru.com,pornleaks.in,insideeducation.co.za,tirumalatirupatiyatra.in,geekering.com,banfaucet.com,trigonevo.com,digter8.com,ymknow.xyz,nullpk.com,onemarksolution.com,oportaln10.com.br,adslide.io,meteoregioneabruzzo.it,descargaseriestv.com,animexin.vip,bitview.cloud,camcam.cc,60fps.xyz,s1os.icu,shineads.org,azoranov.com,jenismac.com,nsw2u.*,unofficialtwrp.com,downloadlyir.com,pinsystem.co.uk,173.249.8.3,rttar.com,torrentmac.net#%#//scriptlet('abort-current-inline-script', 'eval', 'split') +manhwa-raw.com#%#//scriptlet('abort-on-property-write', 'advads_passive_placements') +newkaliningrad.ru#$#body { overflow: visible!important; } +##.ad_trick_header +okmarket.ru,ulker.com.tr,vogue.ru##.cookie-pane +##.ads-cnt +||wibtntmvox.com^ +brosislove.com##div[style="height:280px;"] +livehindustan.com##.sgnupbtn +||connexionsafe.com^$popup +solarbe.com##.LT_banner +||lightenintimacy.com^ +###cookie_warning +###left_block_ads +||crmentjg.com^ +shop.spd.de#$#div[id^="cookieModal"] { display: none!important; } +||mikakoku.tophosting101.com^$domain=pimpandhost.com +||knitstamp.com^ +||lrkfuheobm.one^ +||googletagmanager.com/gtag/js$script,redirect=noopjs,important,domain=earnhub.net +||bcebos.com/725c659194eeebb8c6b970e52e2dc8aa. +blogto.com##.blogto-sticky-banner +||mc.mwgpg.cn^ +||gadspmz.com^ +||feegozoa.com^ +gurmeninyeri.com,marjin.com.tr,mismarsanalmarket.com,temin.com.tr,kocakbaklava.com.tr,kocak.com.tr,aksesuarix.com##.cerez-mesaji +###liste_top_ads_wrapper +||adperium.com^ +||ijwkdmzru.com^ +/acceptCookies. +||postlnk.com^$popup +3h3.com###gaosu_down_bt +@@/detector/adsbygoogle.js$~third-party,script,domain=streamratio.com +@@||nulledsite.com/ads-prebid.js +##.adtextleft +pornhub.com,pornhub.org,pornhub.net##.bottomNav > a[rel="noopener nofollow"] +gameforge.com##div[class^="cookiebanner"] +||obsessivepossibilityminimize.com^ +###footerad728 +##a[href^="https://track.aftrk3.com/"] +researchgate.net#$#.research-resources-summary__inner.is-sticky { top: 0 !important; } +unifique.com.br#$#body { overflow: auto!important; padding-right: 0!important; } +ixbt.com##div[id^="marketWidget"] +boohoo.jp#$#body { overflow: auto !important; } +slideshare.net###above-recs-desktop-ad-sm +ondemandkorea.com##.swiper-wrapper #featured-banner +focus.it,my-personaltrainer.it#%#//scriptlet('trusted-click-element', '.amecp_button-customize') +324324.cn###gg_468_60 +||plus.net/images/referrals/ +turnoffthelights.com##.castpress:has(> .slideads) +bigtitslust.com,lesbian8.com#$##int-over { display: none !important; } +##.belowNavAds +###cookie-policy-warning +in-pocasi.cz###topbanner +animenewsnetwork.com#$#body { background-image: none !important; background-color: unset !important; } +||cdn.xbcpcn.com^ +yandex.com##.DirectFeature +wunderground.com##.pane-wu-fullscreenweather-ad-box-atf +@@||imasdk.googleapis.com/pal/sdkloader/pal.js$domain=pluto.tv|tunein.com +||3alian.net^$third-party +ebb.io#%#//scriptlet('set-constant', 'google_empty_script_included', 'true') +||perryvolleyball.com^ +||cash4members.com^ +||etherealpinnacle.com^ +radarbox.com##.student-offer +||qfamlcfqhtla.com^ +novalnet.de###daextlwcnf-cookie-notice-container +/js/gg123/* +smdv.de#$?##cc_info { remove: true; } +@@||ad.alimama.com^$genericblock +po-bandzie.com.pl##.elementor-widget-container > a:not([href*="po-bandzie.com.pl"], [href^="/"]) > img:is([alt=""], [alt*="_290x300"]) +##a[href^="https://black77854.com/"] +##.ad-block-big +||lffl.org/wp-content/uploads/*/techrepair.jpg +yxdown.com##.news_tl +||sv2.biz^$third-party +ithome.com##.down_app +||prosumsit.com^ +||swatad.com^ +||erli.pl/static/media/mobile_go_footer_desktop. +santanderconsumer.pl#$#.modal-open { overflow: auto !important } +:1010/openV5.js +hao.360.cn,hao.360.com###activity +||bosda.xyz^ +hdhive.online#?#.mt-4:-abp-has(>.text-lg) +||tours.aomg5bzv7.com^ +||brookredheadpowerfully.com^ +||aqua-adserver.com^$third-party +fileproinfo.com#$##dvtopad { display: none !important; } +||hunchmotherhooddefine.com^ +pornstream.org##.player > div.right +1-2-3.tv#%#//scriptlet('set-cookie', 'pageHint', '1') +||s3vracbwe.com^ +/ftt2/js.php$script +cwtvembeds.com#%#window.open = function() {}; +||dswqtkpk.com^ +||frontend.poool.fr/engage/ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###game_live_list +||thenceshapedrugged.com^ +||trolleydemocratic.com^ +||contaminatespontaneousrivet.com^ +hitbdsm.com,pridesource.com,bollyflix.lol,artificialintelligencestechnology.com,tecmint.com,embetronicx.com,arabtimesonline.com,javsister.com,desiflix.club,vladan.fr###custom_html-9 +dzbhdm.net##.inn-nav__placeholder + .poi-container > a[target="_blank"] +||zcswet.com^ +||show-me-how.net^ +vc.ru##.microsoft-ticker-special +##.js-advert +beaumontenterprise.com,chron.com,ctinsider.com,ctpost.com,expressnews.com,houstonchronicle.com,lmtonline.com,middletownpress.com,mrt.com,mysanantonio.com,newstimes.com,nhregister.com,registercitizen.com,seattlepi.com,sfchronicle.com,sfgate.com,stamfordadvocate.com,thehour.com,timesunion.com##.mnh90px +waifly.com,grangeinsurance.com,comstern.de###cookit +hur.cn###ad810_6 +gplpalace.one###adb +||riscil.com^ +||ribsegment.com^ +azoranov.com##div[id^="sticky-ads-az-"] +||grudgewallet.com^ +||portkingric.net^ +||mat1.gtimg.com/2014/vikkydu/GA/haier +pcdown.net##.sort_list > .clearfix:first-child +lawandcrime.com,themarysue.com##.promo-unit +||demonstrationsurgical.com^ +baidu.com##.v-s-tuiguang-wrap +###PaneAdvertisingContainer +||hhiswingsandm.info^ +||988aiai.com/static/js/common.js +||viewerebook.com^ +||spqi.xyz/static/tmp/ +###analytics_ad +||kolerevprivatedqu.com^ +pg-wuming.com#%#//scriptlet("abort-current-inline-script", "$", "!document.getElementById(btoa") +||peggo.tv/ad^ +@@||2mdn.net/instream/ +moviesdaweb.blogspot.com#%#//scriptlet("abort-on-property-read", "onPopUnderLoaded") +relevantmagazine.com##.ad-supported +||hammereternal.com^ +||kuaihou.com/js/new/xiazai +equiva.com#$#html { overflow: visible!important; } +studysite.org##.layout-header > span[style^="float:left; vertical-align: middle;"] +@@||sdk.privacy-center.org^$domain=jeuxvideo.com +||adnuntius.com^$third-party +dropgalaxy.com##iframe[data-aa] +||respondunexpectedalimony.com^ +roshy.tv##.roshy-widget +||appearzillionnowadays.com^ +1ting.com##div[style="position:fixed;bottom:0;z-index:999"] +||sportradarserving.com^ +discovermagazine.com#$#body { overflow: auto !important; } +||hexun.com/js/att_count.js +huya.com##.ab-content +bdinfo.net###header_AD +||itc.cn/hdpv.js +||osshydreigonan.com^ +||pageloadstats.pro^ +sweden.se##div[class^="CookieManager_cookie-manager__"] +||api.cloudleadia.com^$third-party +stacksocial.com#%#//scriptlet('set-cookie', 'sc_cookie_consent', '0') +||ad4.udn.com^ +||wauthaik.net^ +||bbttf26.shop^ +||athyimemediates.info^ +sentinelone.com###cookie-message-panel +xalingo.com.br###wrng-agrmnt +||newjulads.com^$popup +filehippo.com##.program-description__slot +eeskill.com##.channel-featured-adv +||desgolurkom.com^ +gamezop.com###cookieCard +@@||discord.com^$generichide +nypost.com##.widget_nypost_vivid_concerts_widget +themarysue.com#%#//scriptlet('prevent-addEventListener', 'error', 'Disable Your Adblocker') +big.az##a[href="http://unvan.az"] +issuu.com##div[data-testid="side-section"] > div[class^="sc-"]:has(> div[class^="sc-"] > #playwire-video) +||signup.e2ma.net^$third-party +@@||bdstatic.com/static/common/widget/ui/admanager/ +||androidcentral.com/sites/androidcentral.com/files/article_images/*/gamestash-970x460_2.jpg +belloflostsouls.net,ginx.tv,op.gg,paladins.guru,smite.guru,theloadout.com##.vm-placement +blog.unity.com#@##onetrust-consent-sdk +||xdownloadright.com^ +bell-labs.com##.n-cookie-notice +||6park.com/img/*0.gif +ithardware.pl##div[id^="art-"][id*="Baner"] +kinarino.jp,kinarino-mall.jp##.p-view-in-app +##.single-ads-section +||promo4partners.com^$third-party +##.adv-carousel +##.cont-ad +ionos.fr##div[id^="bio_ep_reworked"] +###index_aside_ad +d1xz.net##.base_ad_300_250 +gizbot.com,oneindia.com###containerPop +||231dasda3dsd.aniyae.com^ +||autohome.com.cn/Topic/RobotVideo? +coursera.org##.rc-Alice +||powvideo.net/bon/exonat.html +twitch.tv##a[href="https://vk.com/bust3rshop"] +blogspot.com,web.app##img[onclick="kemana()"] +newtalk.tw##.dable_response +mangaku.blog##.nctr +##.ad-medium-two +||mileporn.com^$third-party +paymentandbanking.com,pressherald.com##.gform_wrapper +@@||wchat.freshchat.com/js/widget.js$domain=livecrowd.com +||cbn.com.ua/wp-content/uploads/2019/06/20061924.jpg +||ithome.com/images/productgif/pcmaster.gif +_cookie_bar/ +||fastpic.ru/chrome.php +||arkkcu.xyz^ +trans.info#?#.container > div.text-center:has(> ins[class^="staticpubads"]) +gulte.com#$#body[style^="overflow"] { overflow: visible !important; } +bilibili.com##.adcard-content +9to5linux.com##.widget:has([href$=".php"]) +||pupspu.com^$popup +||ku42hjr2e.com^ +||ostsee24.de/consent/ +sekai-kabuka.com##table[width="762px"] > tbody > tr > td[class] > div[id][class] > div[style="width: 259px;"] +58.com#?#LI[sortid]:-abp-has(.icon-jingxuan) +||wyhifdpatl.com^ +pekao.com.pl###cookies-popup-container +tubachorzowa.pl#%#//scriptlet("abort-current-inline-script", "$", "adshowed") +||resterent.com^$popup +||terrifictooth.com^ +securityweek.com##.simplemodal-container +||childlikecrowd.com^ +||cdn.thealtening.com/ad-*.png$image +poral.eu###adblock-message +9am.ro##.retail_insert_in_article +##.block-bg-advertisement +||6park.com^$subdocument,badfilter +##.cookie_wrapper +||freeevpn.info^$popup +||secureclouddt-cd.com^ +||asyy6.com/dm/ +||instant-adblock.xyz^$document +listenradio.jp###fancybox-wrap +blunt-therapy.com#?#.elementor-column-wrap div.elementor-widget:has(> div[class] .elementor-heading-title:contains(Get Our Best tips)) +insidermonkey.com##.top-left-ad +schmuckrausch.de##div[id^="nltk_popup_"] +forums.watchuseek.com###sidebar_container +tvgids.nl###cmp-faktor-io-parent +likegeeks.com##.code-block > div[style="min-height: 250px;"] +@@||sciencedirect.com^$stealth +studionotesonline.com##.sidebar-main > #text-2 +||gloumsie.net^ +searchenginejournal.com##.sej-ttt-link +||geobanner.blacksexmatch.com^$third-party +transtutors.com##.pgc_side +fdc.com.cn##.yifangbanner +beiersdorf.de,beiersdorf.com##.bdf-cookie-policy-popup +/floating-ad-rotator-$script,stylesheet +##.adcol1 +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xmlhttprequest,domain=app.axenthost.com +abetterrouteplanner.com###eula-div +||bandelcot.com^ +##.player-rm-float +@@||paywall.production.ippen.space/js/dfp.min.js +reelviews.net##.picHolder +||campootethys.com^ +sankei.com###piano_information_Article +elog-ch.com##.l-sidebar > aside.widget_custom_html:last-of-type +###uk-cookie-use +###cookieAdv +pornhd6k.net##.menu-item-35602 +||milimili.tv/js/loadjs/jquery +patriotpost.us###subscribe-prompt +sportowefakty.wp.pl##a[href="https://kswshop.com/pl/"][target="_blank"] > img +||17house.com/zt/style/*_banner*.js +||servedby.cricketworld.com^ +filmy4wap.co.in#%#window.addEventListener("load",(()=>{window.stop()})); +||youx.xxx/*.php| +domekiogrodek.pl,portalparentingowy.pl###anchor +notthebee.com###app > div:has(> div.items-center > div.items-center > div.w-full > form[action="/newsletter"]) +komputerdelisi.com,actressgalleryfcs.xyz,freetutorials.club###cookie-ify +mona.de,mia-moda.de,wenz.de,meyer-mode.de,albamoda.de,babista.de,impressionen.de##div[data-entd-teaser="banderolenteaser"] +###sideAdSub +film.ru##.hochuvkino +||enoneahbut.org^$popup +private-shows.net##.place +oddee.com##div[id="slidebox"][style="right: 0px;"] +||secomapp.com/promotionpopup/$domain=oozeki-japan.com +travelsupermarket.com##.gptAdUnit__Wrapper-sc-f3ta69-0 +||bobabillydirect.org^ +||tu2.taohuaimg.com^$third-party +||japan-indepth.jp/wp-content/uploads/2019/02/jid_member.png +##.largeAd +||delicateomissionarched.com^ +###ad-300 +dinamalar.com#%#//scriptlet("abort-current-inline-script", "$", ".style.display=") +||oz-yypkhuwo.rocks^ +.com/java/shang1.js +||spacash.com^$third-party +wyspaszkrabow.pl,abel-falisse.be,zadowolenie.pl#$#.modal-backdrop { display: none !important; } +gottanut.com##.reclamUndervideo +news.nifty.com##.widget_official_full_app +bettycrocker.com#$#.adhesiveAdSpacing { display: none !important; } +animeid.tv###player > div#ap +textreverse.com###txt-start-desktop +||anattospursier.com^ +||hweriou.top^ +||ca.aomg5bzv7.com^ +pornflip.com#$#.bottom-banner > .a-label { visibility: hidden!important; } +||neitherpennylack.com^ +||n0633.com^ +vivre.*#%#//scriptlet('set-cookie', 'notification-newsletter-closed', 'true') +greatist.com,medicalnewstoday.com#$##modal-host { display: none !important; } +://ads2. +||kityour.com^ +||violet-strip.pro^ +||graizoah.com^ +||asmetotreatwab.com^ +||omnisnippet1.com^$third-party +glowandglamcorner.com,dadinthemaking.com,listofthis.com,phineypet.com,actualpost.com,beautifulfashionnailart.com,americanstylo.com#%#//scriptlet("trusted-replace-node-text", "script", "innerHTML", "/== ?'IFRAME'/", "== 'BODY'") +||mziso.xyz^ +interspar.at#@#.cookie-notification:not(body) +baidu.com##.ec-fc-ad-results +||cmpsywu.com^ +usnews.com##div[class^="Ad__Container-"] +##a[href^="javascript:gl012"] + img +||cas.*.criteo.com^ +pacificleague.com###bannerBox-newsTopBanner +doodrive.com#?#.uk-first-column > .uk-margin.uk-margin-auto:not(:has(>*)) +###bnrAd +gesundheit-nordhessen.de#$#.tarteaucitron-modal-open { overflow: visible !important; } +perlego.com##div[data-testid="cookieBannerWrapper"] +swordalada.org,navernovel.com,visorsmr.com,marcialhub.xyz,infamous-scans.com,ragnarokscanlation.net,lectormh.com,yuramanga.my.id,inmoralnofansub.xyz,galaxytranslations97.com,nocfsb.com,grootnovels.com,scansatlanticos.com,bokugents.com,lscomic.com,samuraiscan.org,nartag.com,mhscans.com,noblessetranslations.com,diamondfansub.com,atlantisscan.com,tecnoscann.com,mantrazscan.com,jkhentai.co,rightdark-scan.com##body > .wrap + div[id][class*=" "] +9goals.live##.container > center:has(> div[id^="div-gpt-ad"]) +||player.twitch.tv^$domain=nwdb.info +||tc911.vip^ +weibo.com#?#.card-wrap:-abp-has(> .card-film > .card-head > .title:-abp-contains(广告)) +||news-weekend1.xyz^ +||fgttbz.xyz^ +||xcity.org/tc2ca02c24c5.js +||homicidelumpforensic.com^ +||aquete.com^$popup +sohu.com###turn-ad +profile.ru##.read-yzd +||sr7pv7n5x.com^$popup +/320x250. +##.adsCell +businessinsider.in##.clmb_eoa +patreon.com#$##lanyard_root { display: none !important; } +xn--24-3qi3cza1b2a4dxc2byb.com##[class^="ad_"] +brandible.de,walbusch.de##.bannerNewsletter +download.io#%#//scriptlet('trusted-set-cookie-reload', 'dlio_offer_eligible', 'not_eligible') +||outnumberpickyprofessor.com^ +||zhifuok.com/19xa.jpg +||ominousgutter.com^ +@@||gaybeeg.info^$generichide +daad.de#$#.cookie-backdrop { display: none !important; } +movies123-online.me##.jw-logo-top-right +##.iab300x250 +||yoda.aomg5bzv7.com^ +bandwerk.com,goelds.de#$?##gdpr-blocking-page-overlay { display: none !important; } +||jwpcdn.com/player/plugins/bidding/ +iryo.eu##app-cookies-manager +||basindecisive.com^ +animenewsnetwork.com#$#body #Adbanner { display: block !important; height: 1px !important; } +###ads-space +||eventucker.com^ +||static.ad2click.in^ +##.zox-widget-side-ad +||nubiles.net/webmasters/promo/ +||omissionmexicanengineering.com^ +cnki.com.cn##.mainboxconbanner +||s.elnb22.com^ +||za.gl/external/prizesmodule/js/prize.local.js +ghostery.com###ghostery-consent +||bmcdn3.com^ +||ketchupethichaze.com^ +netfly.*,netfly.tv##.container-slide +pizzafan.gr,bendodson.com,cinestar.de###newsletter-section +||psaushoas.com^ +delltechnologies.com,dell.com###consent-button-div +niezalezna.pl##.wtg +@@||cookieinfoscript.com/js/cookieinfo.min.js$domain=cookieinfoscript.com +togetter.com###appdl_bottom +nordvpn.com##.SubscribeSection +###ad-story-right +||kicka.xyz^ +sutterhealth.org##.modal-backdrop +||66308888.com^ +msn.cn##.consumption-page > above-river-block +||wouldlikukemyf.info^ +infographicjournal.com#?#.et_pb_module:-abp-contains(Partners) + .et_pb_module +||xlarixmmdvr.xyz^ +hdporncomics.com###sidebar-right > #text-3 +###wide_ad_unit2 +yalla-shoots.tv##.demand-supply +@@||login.wmtransfer.com^$stealth +@@||static*.akacdn.ru/assets/min/frontend/all.$script,stylesheet,domain=9anime.one +hentaicore.org##a[href^="https://myhentai.org"] +||cams.com/go/$popup +##.adType2 +||januarydeliverywarfare.com^ +||sinkingswap.com^ +||ui.videojav.com^ +@@||bikerumor.com/porpoiseant/banger.js +||clkpback3.com^$popup +||g.cda.pl/xml_adbc.php +@@||fm.ipinyou.$domain=ipinyou.com.cn +mtp.pl#%#//scriptlet('trusted-set-cookie-reload', 'cookieOptions', '{"analitics":false,"marketing":false}') +socialclub.rockstargames.com##div[class^="CookiesBanner__"] +||nerdwallet.com/cdn/apps/prod/article-client/build/js/chunks/components/gated-content-banner.*.js$script +||phoaphoxsurvey.space^ +tsv1860-shop.de,creativ-discount.de,the-british-shop.de,vet-concept.com,msg-praxisbedarf.de,leaf-schmuck.de,comfortschuh.de,77onlineshop.de,kotte-zeller.de###agreementPrivacy +uinterview.com#$#.modal-backdrop { display: none!important; } +/125x600- +||xml-api.online^ +###page-ad-top +||www.0s09t235s.com^ +gazeta.pl###rodoNotificationWrapper +##.index-top-ad +pch.com###sfad-wrapper +||chinaz.com/images/210x175.jpg +news.gallup.com##.section--callout +tripmydream.com##.wind-banner-place +|http://*.me/ad/ +||restoreinfilm.com^ +arubanetworks.com###aruba_cookie_privacy_popup +dailymotion.com#$#body .ad_box { display: block !important; } +||dedating.online^$popup +richards.com.br###newsModal +stat.gov.pl###polityka-ciastek +shop.shoppersdrugmart.ca##.lds__privacy-policy +ensonhaber.com#%#//scriptlet('set-local-storage-item', 'firstFirebaseModalShow', 'true') +company.wizards.com#?#header > div[class^="css-"]:has(> div > div > div > p > a[href$="privacy-policy"]) +||odintsures.click^ +examtiger.com##center > div[style^="font:14px Arial;"][style*="color:#ddd;"] +||rightypulverizetea.com^ +techuniverse.it###cb-logo-box > div.cb-h-block > img[alt] +||8623.5clo0xmbf.com^ +||xueserverhost.com^ +||oogrowairsiksoy.xyz^ +###ads-text +||iporn.world/attachment/ad/ +||socialmedia.com^$third-party +||ygeosqsomusu.xyz^ +manutd.com##.primary-header-sponsors +||baboon.vacanti.com^ +@@||dplayer64.site/multiplayer.php?v=$subdocument,stealth=referrer +||68aq8q352.com^ +the-express.com##.stn-video-container +deccanherald.com##.article-adver +uptime.com#$##receive-alerts-modal-partial { display: none!important; } +||ddshu.net/a_d_code/ +vlive.tv#$##header > .dimmed_bg { display: none!important; } +||groguzoo.net^ +||vikaez.xyz^ +||mysteryislands-music.com/assets/072853a1a46c768de403067f145fdadb.js +attheraces.com##.gutter-left +eskago.pl,pcgamesn.com,trueachievements.com,tvcatchup.com##div[class^="app_gdpr"] +deepl.com##aside[aria-labelledby="career-banner-heading"] +itdog.cn##.top_contents +euromaidanpress.com##div[class*="mc4wp_form_widget"] +||tcz.pl/*/reklama*.php +||d1q0x5umuwwxy2.cloudfront.net^ +hexlet.io##.x-promo-bg-gradient +||joastaca.com^ +nesoacademy.org##.right-section > section.right-subject > div[class*=" jss"]:first-child +||d.adultporn.tv^ +##.cookieconsent-popup +mail.ru##.block_subscription-terms +||spxhu.com^ +||psouthee.xyz^ +evosmart.it###snowflakes +###stickyBottomAd +||clixwells.com^ +/cookie-consent-$domain=adventist.org +##.push--ad +||6f257d3f47.b3ab84c0f7.com^ +yimenapp.com##.widget_image_ad +||filter.thetrafficbid.com^ +luxtimes.lu##div[id^="ad_leaderboard"] +rediff.com###world_right1 +game735.com#$#div[id^="gklobl"] { height: 1px!important; } +theverge.com###notice.p-notice +||collectorcommander.com^ +ispmint.com##.sliding-div +||mowcawdetour.com^ +brave.com##.announcement-banner +zaim.net##.top-fix +vlxyz.net##body .xx-ads +||gracesmallerland.com^ +ichinuke.com###custom_html-56 +###article-sidebar-ad +kitizawa.com##.article-body-more > div[style="border:1px solid #F90;padding:10px;border-radius:10px;background:#f9f9d4;"] +##.c-gallery-vertical__advert +||xcec.ru^ +xxxvogue.net,ehftv.com##.banner-wrapper +reform.news##div[class="b-r b-r--after_p_1"] +||trellian.com^$popup +##.rightSideSponsor +||filearchive.cnews.ru/*promo$media,domain=cnews.ru +albelli.de#$#body { overflow: visible!important; padding-right: 0!important; } +@@||freeopenvpn.org^$generichide +page.auctions.yahoo.co.jp###prmdl +cenyrolnicze.pl##p > a[rel="nofollow"] > img[width="100%"][height="NaN"] +||zjdruhn.xyz^ +@@||popler.tv^$stealth +postimees.ee#%#//scriptlet("prevent-setTimeout", "adblockNotif") +||b8118ff927.806cb9d130.com^ +gpudrops.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||whaudsur.net^ +||zoawufoy.net^ +||ce56df44.xyz^$document,popup +||support-v2.sweetwaternow.com^ +##.UnderAd +w3newspapers.com##.rads +3movs.com#?##side_col > div.section:has(> div.block_header_side > h4:contains(Advertisement)) +##.ad_250x200 +||bowldescended.com^ +washingtoncitypaper.com##.widget_newspack-ads-widget +m.toutiao.com##.recommendation-container + div[class] +kslsports.com##iframe[title="Signup Widget Embed"] +||whatisuptodaynow.com^ +||4399sj.com^*/mask-ad +@@||bordeaux.futurecdn.net/bordeaux.js$script,domain=gamesradar.com|tomsguide.com +/^https?:\/\/(?:www\.|[a-z0-9]{7,10}\.)?[a-z0-9-]{5,}\.(?:com|bid|link|live|online|top|club)\/\/?(?:[a-z0-9]{2}\/){2,3}[a-f0-9]{32}\.js/$script,xmlhttprequest,third-party +||achpokevvh.com^ +||aquaticowl.com^ +agyserkento.hu#$##exposeMaskOverlay { display: none !important; } +###privacyWarningBanner +||datingshall.life^$popup +||pushckick.click^ +ppc.world#$#body { overflow: auto!important; } +||ggjqqmwwolbmhkr.com^ +##.Ad_D +infinitestart.com##.cs-sidebar__inner > .widget:has(> ins.adsbygoogle) +mentalflare.com##.qa-placement--monetization +||vbozbkzvyzloy.top^$popup +pulzo.com,hellomagazine.com##.formNewsletter +||9ads.mobi^ +||xml.search-house.co^ +||greatlyclip.com^ +||wdavrzv.com^ +@@$subdocument,xmlhttprequest,stealth=referrer,domain=pichive.online +||salamogolden.click^ +||youzhan.org/img/aliyun- +wetter24.de##.emailSub +||web-hosting.net.my/banner/ +f95zone.to##a[href^="https://candy.ai/"] +24sata.hr,lalibre.be,index.hr,filmstarts.de,nrj-play.fr,movilzona.es,softonic.com#%#//scriptlet('trusted-click-element', '#didomi-notice-learn-more-button') +searchenginejournal.com##.content-unit +flixscans.*##.teaser-buttom +webnovel.com##body > .m-streamer.lh1d5 +mainichi.jp###pi-sp-all-popup +||fppcrl.xyz^ +||evaluationfixedlygoat.com^ +||unpkg.com/blip-chat-widget$domain=apppay.com.br +||gallopsalmon.com^ +||consoletarget.com^$domain=gamecopyworld.* +libtorrent.org,mailgen.biz,speedcheck.org,torrentfreak.com,tubeoffline.com,utorrent.com##[href*="://go.nordvpn.net/"] +washingtontimes.com##.piano-top-ribbon +||abdlnkjs.com^ +||moderator.az/rus_banner.html +||pw2ct1.asia^ +###adcontextlinks +||hoptopboy.com^ +||ambiguousquilt.com^ +katuru2ch.blog12.fc2.com##.saishin +freedert.online,rtde.site,rtde.life##.Subscription-isReact +||agl001.bid^$popup +||superfb.com/_img/banner/sfb*.png +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > style[id^="s-"] + div[id]:nth-child(2) +yandex.com##.ProductGallery +fixpart.*#%#//scriptlet('trusted-click-element', 'button.cookie-accept', '', '300') +||sklxqcam.com^ +otzovik.com#%#//scriptlet("abort-on-property-read", "Object.prototype.RtbBlockRenderStart") +||360doc.com^*.html?t=$badfilter +fetishshrine.com###mobile-under-player +||cycvyo.xyz^ +forums.anandtech.com,forums.pcgamer.com,forums.tomsguide.com,forums.tomshardware.com###footer_leaderboard +logout.hu###rules_accept +||wheelscomfortlessrecruiting.com^ +||vezizey.xyz^$popup +||cc1794b51d.0127c96640.com^ +_728x90. +||huanjugu.com/dm +||sanctiontaste.com^ +||rtb2-uswest.mediarise.io^ +moviesand.com###ggf-aside > .inner-aside-af +briian.com##.hentry-gad +||58e0.site^$document,popup +msn.com#%#AG_onLoad(function() { var cookiemsg = document.getElementById("msnstaticpage"); if (cookiemsg) acceptAction(); }); +||tapnative.com^$third-party +heraldsun.com.au,dailytelegraph.com.au##.w_ad +documentaryheaven.com###side-subscribe +###ad_headerbanner +art.wearmedicine.com##div[class^="Modal_modal_"]:has(> div[class*="CookiesConsentPopup"]) +likar.info##.rating-likes-wrp +||baseporno.com^ +||caahwq.com^ +||wpu.sh^ +||deluxe-download.com^$document +cryptobriefing.com##.widget-newsletter-form +||555bbb555www.com^ +filext.com###b1c +||vfdvdfv77.fun^ +||egmfjmhffbarsxd.xyz^ +onet.pl##div[data-run-module="local/main.stayOnServicePopup"] +blog.system76.com##.tmblr-iframe +||awbbcre.com^ +##.entry-ad +||feakio.top^ +viaccess-orca.com##.hs-cta-node +flightconnections.com##.display-box +amazon.*#?#div.s-result-item[data-asin=""]:has(> .sg-col-inner > div[cel_widget_id^="MAIN-VIDEO_SINGLE_PRODUCT-"]) +||subito.it/static/script/subito-adv.*.js +###cookies-wrapper +||forasmum.live^ +@@||github.io/videojs-ima/node_modules/video.$domain=setn.com +google.*#?#body > div[class]:has(> div > div[data-hveid] > a.sh-np__click-target[data-merchant-id]) +||pornexpanse.com/ban_pimp +###imgad +_background_ad. +spabusiness.com##.leaderboardContainer +###adsSectionRight +||fibrefilamentherself.com^ +/bannerad. +hindustantimes.com#%#//scriptlet("abort-current-inline-script", "$", "areAdsBlocked") +||slidecaffeinecrown.com^$popup +||cooshouz.xyz^ +unmatched.gg##app-advertising +||dsb6jelx4yhln.cloudfront.net^ +iol.co.za##.lbMtEm +maxthon.cn###top-slider-ad +||adcy.net^ +||rebosoyodle.com^ +metro.de#@#.cookie-container +||shitsowhoort.net^ +||owingsucceeding.com^ +home.kingsoft.jp##.col-md-3 > a[href] > img +@@||seomafia.net^$generichide +||drtuber.desi/footer_tiz.php +||ethichats.com^ +vbleos.de#$#.lightbox--cookie-consent { display: none !important; } +androidiani.com##div[class^="juice_"] +haiwai.com##.container + .fixed-bottom[style^="box-shadow:"] +navcomic.com##body > div#document-header > aside.widget.widget_text +money.pl##a[href="https://www.kongres590.pl/"] > img +||bestwaterhouseoyo.info^ +||fb-plus.com^ +||astra9dlya10.com^ +vnexpress.net##.newsletter_sidebar +mstream.xyz#%#//scriptlet("abort-on-property-read", "doSecondPop") +189.cn,vua.sh,weiyun.com,youdao.com#@#.share-link +###cookiePlaceholder +carnewschina.com##.newsletter-for-scroll +luciferdonghua.in##.mvelement > div.announ:has(a.telegramim_button) +##.blogroll_wrapper_honbun +||tubesex.me/js/939eka394.js +||172.255.6.199^ +||mnbvjhg.com^ +androidcentral.com#?#.article-body > .article-body__section > .article-body__aside:has(> p.caption > img[alt="Zagg Ad Hero"]) +||hystericalcloth.com^ +##.footerAd +||boostable.com^$third-party +||pki87n.pro^ +meawfy.com##.info-section > a[target="_blank"] +arcjav.com,hotcelebshome.com,jav.guru,javcrave.com,pussycatxx.com##.widget_custom_html +fastfoodmenupreise.de#@#.ad-space +xanimeporn.com#?##sidebar > .sidebar-widget:has(> .widget-title > span:contains(/^Sponsor$/)) +||gradualmadness.com^ +@@||ads.google.com^$domain=ads.google.com|analytics.google.com +||notablevehicle.com^ +||scrapembarkarms.com^ +@@||feed.4strokemedia.com^$domain=video.corriere.it +hdpornvideos.su#$#.prefixdger-player { max-width: 1050px!important; } +.lol^$domain=sextb.net|javplayer.org +lebenslauf.com#%#//scriptlet('trusted-click-element', '#consent-settings-button, #checkbox-accept-button') +scamrate.com##[style="max-width: 728px;"] +||post-redirecting.com^ +||digitaldsp.com^$popup +tonarinoyj.jp#?#.image-container > div.page-area:has(> div.page > div.link-page-content > div.link-slot > a[href="https://ynjn.jp"]) +||cload.video/static/js/jwplayer/*/plugins/vast.js +||hxpyrgqycgreyy.xyz^ +||retgspondingco.com^ +||lf8q.online^ +eurosportplayer.com##.ply-notification +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$redirect=googlesyndication-adsbygoogle,domain=lapagan.net +||yourfreshposts.com^ +##.cookieBarReviewDesktop +||admin.etology.com^ +gazetaprawna.pl##.subscribeButton +||aglocobanners.com^ +flipline.com##.box_grey_br +||nurno.com^ +||hp8g6.icu^ +sankakucomplex.com#$#body { overflow: auto !important; } +||84a0e8beca.5ede78f7a0.com^ +||ikisahil.az/images/banner^ +gsmware.com#$#.gsmware-com { height: 1px !important; } +||provely.io^$domain=hacktiv8.com +||ti.solipedsnarls.com^ +###mastAd +@@||cdnb.4strokemedia.com^$domain=video.gazzetta.it +gaming-age.com,freecoursesite.uk###ai_widget-7 +||rochesterbreedpersuade.com^ +kinoheld.de##div[class^="flex items-center justify-center"][style="z-index: 9999;"] +/js/piaofu_bet. +||mudwars.io/assets/interface/bannerSquareBg.png +lacrossetribune.com#$#.modal-backdrop { display: none !important; } +iamgujarat.com##style[type="text/css"] + div[class]:not([id]):not([style]):not([class*=" "]) +||affroller.com^$document +@@||cookie-cdn.cookiepro.com/consent/$domain=turn-on.de +m.tokopedia.com#$#.unf-overlay { display: none!important; } +yuzu-emu.org##.column > div.px-md +alko-garden.*###divDisabledBackground +||fastcmp.com^$third-party +||wqzmed.cn^ +||embezzlementthemselves.com^ +texty.org.ua##.aside-subscribe-form +sexy-youtubers.com##a[href="http://weknowporn.com"] +||catwenbat.com^ +shqipkinema.cc###adBlockerPopup +||timot-cvk.info^ +technoarabi.com#@#[data-ad-width] +neko-miku.com##.ads-825-100 +||ik123.com/js/dd.js +timesofindia.indiatimes.com#$#.ad1 { position: absolute!important; left: -3000px!important; } +slovniky.lingea.sk#$##ppoadvmodal { display: none!important; } +@@||vendorlist.consensu.org/vendorlist.json$domain=hideout.co +chromeunboxed.com##.topSpace +||polothdgemanow.info^ +independent.co.uk,standard.co.uk##article > div[class^="sc-"]:has(> div[class^="sc-"] > div[data-ad-unit-path]) +lightsnovel.com,pandasnovel.com,panda-novel.com##div[class^="novel-ins"] +||cww.net.cn/js/urdev.js +/nofa7.$script,~third-party +||sex.5clo0xmbf.com^ +||tnpads.xyz^ +/js_ad_utf8. +@@||consent.trustarc.com/get$domain=fortune.com +||southolaitha.com^ +##.advert-border +##.forumAd +||mestupidity.com^ +a-z-animals.com#$##exitIntentModal { display: none !important; } +||treehouse.wwoz.org^ +wiadomosci.onet.pl##div[data-slot-img-width="300"][data-slot-img-height="168"] +jeans-fritz.de###maincontent a[href="/fashion-app"] +||porngames.tv/images/skyscrapers/ +||romance-net.com^ +||azureedge.net/prod/cosprings/loader.min.js$domain=gazette.com +.nyaa.fun/static/img/host/*.gif +||azureedge.net/adtags/ +iobit.com##.agree-pop +umod.org##ins[data-revive-id] +||abadit5rckb.com^ +@@||lookmovie.ag/*dfp.min.js +mysexgamer.com#?#.alertHolder > div.alert > div.row:has(> div.col-12 > div[style] > a[href^="https://fap-titans.com/"]) +@@||transcend-cdn.com/*/airgap.js +ds-b.jp###pc-fixed-menu +tproger.ru##.yikes-mailchimp-container +habr.com##ul.tm-article-list-block__list > li.tm-article-list-block__item:has(> div.tm-promo-post-link) +||sucocesisfulylyde.info^ +gdmm.com###hd > .wp > .module +xinhuanet.com##.adv-column2 +||4f1fca8377.2ea4fb5aea.com^ +douglas.de#?#.cms-container div.split-teaser-container:has(> div.split-teaser > div.content-wrapper > div.split-teaser__media-container a[href^="/de/cp/douglas-app"]) +kpopjams.com#%#//scriptlet('abort-current-inline-script', 'dataLayer', 'detectAdBlock') +blutv.com##a[test-id="registerStickyLink"] +||arwhismura.com^ +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=video.corriere.it +tumblr.com##.Yc2Sp +desixflix.com##iframe[data-src^="//ad.a-ads.com/"] +watchfree.to##.link_middle > .sl_wrap +||smoulderantler.com^ +bestbuy.com##.shop-pushdown-ad +anadolugazetesi.com,sonhaber.com.tr##.inginizicekebilirContiner +||placingcompany.com^ +||gfx.radiozet.pl/design/radiozet/javascript/module/radio-sponsor.js +||shiveringspot.com^ +||agl001.bid^ +||kayak.co.kr/s/horizon/common/gdpr/ +||bcc2e48039.911c3826e7.com^ +replayjeans.com#$#body { overflow: visible!important; } +iplaysoft.com##[style*="width:3"][style*="height:2"] +||hwderdk.com^ +coingape.com##.Sidemads +||08088.top^ +nextapple.com###lrec01 +||injuredjazz.com^ +streamty.com##div[class^="video_adp"] +ranobes.net##.free-support +###ad_header +9xav.cc#%#//scriptlet('remove-class', 'q-body--prevent-scroll', 'body') +youla.ru#%#//scriptlet('set-cookie', 'youla_fullscreenbanner', 'disabled') +ssyoutube.com#%#//scriptlet('prevent-window-open') +gotporncams.com##.notifier-wrapper[data-position="bottom"] +influencermarketinghub.com###cta_popup +windy.com###articles +shopee.sg#?#.shopee-header-section__content:-abp-contains(Ad) +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###platform_spread_video +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=anime-king.com +androidauthority.com##div[class*="-sidebar"] div[id^="aa_subscribe-"] +motherless.com#%#//scriptlet("set-constant", "_ml_ads_ns", "null") +icy-veins.com###top_leaderboard_container +||zixokseelta.com^ +||xhamster.com*/vast? +retrip.jp,rtrp.jp#$#header-induction { display: none!important; } +||1.shopit.cn^ +||cdn.eapteka.ru/local/react/build/static/*/loyaltyProgramm. +bilibili.com##a[data-target-url*=".taobao.com"] +goal.com##.component-ad +armidaleexpress.com.au##.lg\:max-w-mrec +openplayer.net###pauseModal ~ .modal-backdrop +help.xunlei.com#@#.a_fr +sina.com.tw##div[style="height:156px;width:570px;margin:0px auto;display:block;"] +163.com##.idx_textlink_ad +javdove.com,javdove2.club,porn5f.com##.preroll-adv-popup-overlay +##.adSideBarMPU +kinderraeume.com#$#.newsletterregistration--modal ~ div.js--overlay { display: none !important; } +panini.com.br,mydecor.ru,retailer.ru,blog.samaltman.com,defenseone.com,relish.com,obozrevatel.com,immigrantinvest.com,borsagundem.com.tr,404media.co,promokodi.coupons,motociclismo.es,mind.ua,occrp.org,shopify.engineering,boardingarea.com,defense.gov,bitsofco.de,vogue.ua,cuprum.media,re-russia.net,kinobusiness.com,seroundtable.com,naukatv.ru,avtovzglyad.ru,glavred.net,glavred.info,stopcor.org,bcs-express.ru,mpr-shop.ru,varianty.lviv.ua,gotovim.ru,livelib.ru,daily.afisha.ru,cnnturk.com,ko.ru,torontovka.com,mrpl.city,mydeliciousmeals.com,marieclaire.ru,kp.ua,trendymen.ru,plus-aliance.ru,instyle.ru,twilio.com,novostivl.ru,exkavator.ru,logincasino.com.ua,liveposts.ru,320volt.com,versia.ru,neft.by,shopify.com,zoutons.com,myfreesoft.ru,maximonline.ru,woman.ru,parents.ru,vokrugsveta.ru,psychologies.ru,ellegirl.ru,wday.ru,elle.ru,marieclaire.ru,indiatimes.com,shopify.in,vz.ru,vokrugsveta.ru,censor.net,fizzicseducation.com.au,fparf.ru,revouninstaller.com,logincasino.com,officelife.media,kod.ru,masterinvest.info,bessarabia.ua,football.kulichki.net,jeotermalhaberler.com,glavcom.ua,hindustantimes.com,hightech.fm,culture.ru,blog.eva.ua,officiel-online.com,wccftech.com,ideanomics.ru,goldsilver.com,kp.ru,infobus.eu,atorus.ru,castorama.ru,marieclaire.ua,mvs.gov.ua,oneplus.com,tickets.ua,europaplus.ru,krossovki.com,belretail.by,femmie.ru,mauijim.com,netpeak.net,wday.ru,buhgalteria.ru,ellegirl.ru,gameslog.ru,gizmag.com,healthhacks.ru,klerk.ru,menshealth.com,rbc.ru,snce.ru,turizm.ru,wegame.com.ua##.subscribe +speedrun.com##.curse +||doujs03.xyz^ +procrackerz.org,torrentdownload.info,freeappstorepc.com,masseurporn.com,rennlist.com,f4freesoftware.com,sadeempc.com,workingkeys.org##center > a[rel="nofollow"] > img +||andomediagroup.com^ +hqq.ac#%#//scriptlet('prevent-element-src-loading', 'script', '/script_') +||qrwcss.xyz^ +||spo-play.live^$popup +fastfoodnutrition.org##.a_leader +io.help.yahoo.com##.ad-style +kontur.ru,fnvolga.ru,news.bg,lifestyle.bg,topsport.bg,m-strana.ru,thebellmirror.com,gadgets360.com,cityam.com,world.hey.com,mvs.gov.ua,kontur-extern.ru,okocrm.com,lifestyleasia.com,cars.av.by,business-standard.com,holiday.by,hcdinamo.by,ural56.ru,slidstvo.info,cozumpark.com,x-team.com,m.vz.ru,shoppinglive.ru,starhit.ru,gamemag.ru,careeraddict.com,glasswire.com,metaratings.ru,starhit.ru,busfor.ua,brighteon.com,championat.com,goodhouse.ru,ichip.ru,irk.ru,thepostmillennial.com,skidochnik.com.ua##.subscription +://banners.$third-party +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=pac-12.com +game-2u.com##aside.widget a[href^="https://bit.ly/"] +slobodnadalmacija.hr,lovelive-petitsoku.com#%#//scriptlet('remove-node-text', 'script', 'Ad-Shield') +||planningbullyingquoted.com^ +hpjav.com##.video-box-ad +||6863fd0afc.com^ +##.ad--p6 +1010jiajiao.com###daan_recommend + .xiti +kai-you.net##.l-side-banner_list +||wscewc.xyz^ +||applifysolutions.net^$popup +auto123.com##.yoo_list-builder +smaker.pl#$#.popupFacebook { display: none !important; } +###baseboard-ad-wrapper +bang-olufsen.com##.cookie-row +##.ad-pos +smartbear.com##.cc-pop +||headerbidding.services^$third-party +livemint.com##.storyPage_storyblockAd__r4wwE +sklep.natko.pl,sweetplanet.pl,medyczny.store,odlewkiperfum.pl,czasnaherbate.net##.jconfirm +||nishoagn.com^ +bike-discount.de,fahrrad-xxl.de###element_cookie_banner +||dustyrabbits.com^ +#%#var AG_abortOnPropertyWrite=function(a,b){var c=Math.random().toString(36).substr(2,8);AG_defineProperty(a,{beforeSet:function(){b&&console.warn("AdGuard aborted property write: "+a);throw new ReferenceError(c);}});var d=window.onerror;window.onerror=function(e){if("string"===typeof e&&-1!==e.indexOf(c))return b&&console.warn("AdGuard has caught window.onerror: "+a),!0;if(d instanceof Function)return d.apply(this,arguments)}}; +||pressedbackfireseason.com^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xmlhttprequest,redirect=googlesyndication-adsbygoogle,important,domain=educationat.xyz +||d6.mobaders.com^ +||fbgdc.com^ +##.np-header-ad +ulta.com##.CriteoProductRail +softportal.com##a[href="https://t.me/softportalcom"] +||leroaboy.net^ +||aktual.az/musavat$third-party +thequint.com##._4xQrn +||maddencloset.com^ +##.sets-cookie +myrealgames.com##.block_adv_mix_top2 +journal.tinkoff.ru###mailing-inside-article-main +||h2aek6rv0ard.com^ +@@||hopto.org^$generichide +||awaydefinitecreature.com^ +easyjet.com,experianidentityservice.co.uk,experian.co.uk,postoffice.co.uk###ensBannerBG +mydigit.cn##.radi +||wfdlrirntafl.com^ +||peevishaboriginalzinc.com^ +||rootzaffiliates.com^$popup +||effectivedisplayformat.com^ +union-bulletin.com,timescall.com##.Mg2-connext.bottom +monsterspost.com##.bannerpop +###advert-skyscaper +||hoaxviableadherence.com^ +snowfl.com,domain-status.com##.aunit +sklep.lak-auto.pl,waterpikpolska.pl,malachowski.pl###poscookielaw +basketballbss.com##.widget:has(> div[class] > iframe[src*="rss_.html"]) +vogue.ru,gq.ru##div[class^="NewsletterStickyWrapper-"] +||beforeignunlig.com^$popup +||acdwef114.cn^ +agroclima.climatempo.com.br##.styles__Wrapper-huphx +||sport205.club^ +||googleapis.com/qmftp/$script +###modal-ad +vivat.de,emag.com,zoo-leipzig.de##.cs-cookie__wrapper +||safeguardoperating.com^ +sportarena.com##div[aria-describedby="socialModal"] +||lead1.pl^ +tmz.com###legalbar +gdziepolek.pl#?#div[class^="jss"][style^="margin-bottom:"] > div.MuiTypography-root:contains(/^reklama$/) +emma-matratze.de##.page-overlay +||prodresell.com^ +||dgw7ae5vrovs7.cloudfront.net^ +||d2uu46itxfd65q.cloudfront.net^ +##.ad-marquee +s.cosme.net##.act-bottom-nav +aktualne.cz##.souvisejici-box > .idvert-wrapper +desitales2.com##.inside-right-sidebar > aside[class$="widget_block"] +infolaw.co.uk#?#.textwidget li > a[title="Sign up to our email list"]:upward(1) +waitrose.com#%#//scriptlet('trusted-set-cookie-reload', 'wtr_cookie_consent', '1') +||z1.pclady.com.cn^ +##.sal-adv-gpt +fctables.com##.box-width > .hidden-xs +bankinfosecurity.com###popup-interstitial-full-page +vrcmods.com#%#//scriptlet('prevent-element-src-loading', 'script', 'cdn.ad.plus') +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws#?#.rl_full-list div.rl_tile-group > .rlfl__tls > div > div[data-hveid] > div[class]:has(> div > a > div[class] > .gghBu) +||alicdn.com/kf/Ub1be4a53456c4dd2a7dbc839969ed856a.gif +in-win.com###gdpr_container +backbook.me##br + br ~ * +nu.nl#$#.webpush-popup { display: none !important; } +||newlyleisure.com^ +inpost.pl##.app-screen +||paulcorrectfluid.com^ +techonthenet.com##.e72e4713 +||psaumpoum.com^ +||coosync.com^$document +greekreporter.com##.td-is-sticky p > a[target="_blank"] > img +||azenka.one^ +heavy.com###fp-popup-modal +tiz-cycling-live.io#%#//scriptlet("prevent-setTimeout", "ins.adsbygoogle") +ruggable.de,talentdays.pl#$#html { overflow: auto !important; padding-right: 0 !important; } +||konradsheriff.com^ +||ly55442.com^ +||mysticmatebiting.com^ +mashable.com#?#div[data-pogo][id]:matches-css(before, content: /^ADVERTISEMENT$/) +theshaderoom.com##header > #hello-bar +maps4heroes.com#$#.adsbygoogle iframe { position: absolute!important; left: -3000px!important; } +belmarket.by#?#.aside:has(> div.soc-wrapper) +||mite.tetrameros.com^ +pocketgamer.com###mid-main > div#skin-video-tab +@@||noahedu.com/ad/$~third-party +||oppositeoperation.com^ +||worldbestposts.com^ +@@||cmp.inmobi.com/*/vendor-list-*.json$domain=thefunpost.com +google.*#$#div[data-msau^="https://consent.google.com/minor-save?continue"] { display: none !important; } +apkmirror.com###bottom-slider +##.ad-slotRgc +@@||ad-emea.doubleclick.net/ad/*$domain=channel4.com +hesapkurdu.com#$##js-sign-up-modal { display: none !important; } +lekarenplus.sk#%#//scriptlet('trusted-click-element', '.modal-open #cookiesModal[style*="display: block;"] .cookie-confirm') +lk21tv.com#$#a[href][rel="nofollow"] > img[src*="/ezgif-"] { position: absolute!important; left: -3000px!important; } +icons8.com##.ads-ss +||skirmishbabencircle.com^ +||stripedonerous.com^ +##a[href="/e/member/register/index.php?tobind=0&groupid=1"] +translatorscafe.com###site-notification-cookie-consent +viz.com#$#.o_overlay { display: none!important; } +||api.live.bilibili.com/*/Banner +||leadadvert.info^ +apemans.com###shopify-section-cookies_law +/rightad.js$script +||xml-v4.a1.0network.com^ +||d13nu0oomnx5ti.cloudfront.net^ +grammarist.com###sidebar > #custom_html-3 +thesaurus.net,cboard.net,joongdo.co.kr,viva100.com,thephoblographer.com,gamingdeputy.com,alle-tests.nl,maketecheasier.com,automobile-catalog.com,allthekingz.com,motorbikecatalog.com#%#//scriptlet('prevent-eval-if', '/07c225f3\.online|content-loader\.com|css-load\.com|html-load\.com/') +epizy.com###stats > div[style="text-align:left; position: float;right:00px; vertical-align:left;"] +||jiaoben.jucanw.com^ +forbes.com#$#.fbs-auth__adblock { display: none !important; } +||norrisengraveconvertible.com^ +ulyanovskcity.ru###popup_contact +dailydooh.com###skysbar +||snapnsfw.com/inc/js/p0p/script.js +starwank.com,fapnado.xxx,analdin.com##iframe[src*="/api/spots/"] +ameliconnect.ameli.fr###pageConsentement +utair.ru##.CookiesAccept +.com/script/xbox.js$third-party +chosun.com#$#.article.paywallFixed { overflow: auto !important; } +bloomberg.com##.dvz-v0-ad +celeb.gate.cc###sidebar > div[style="width: 200px; height: 200px;"]:not([class]) +ganganonline.com##body > [style^="position: fixed; z-index: 1000;"]:not([class]):not([id]) +||earlyfortune.pro^ +heros-ultraman.com##.sw-Bnr_Footer +media.zalo.me##.zsponsor-wrapper +kq7.com##.J_appFromLen +||routeme.one^ +||richaudience.com^$third-party +@@||mccm88.com^$generichide +kleo.ru##.footer-sub +###tileAds +||dokondigit.quest^ +-contrib-ads.$~stylesheet +||hembrandsteppe.com^ +||mp3vizor.com^ +||wirenth.com^ +||pagead2.googlesyndication.com/pagead/show_ads.js$script,redirect=noopjs,domain=scanner.thetimetube.com +###cartelcookielegal +yenialanya.com##.alert.fixednews +||onmantineer.com^$document +newkaliningrad.ru#$#body > noindex { display: none!important; } +##.sponadbox +mitula.com.pl###dfpRightLastContainer +||nastyrat.com/*_*.js| +forum.fok.nl##.popup_1TXMW +||ptcdwm.com^ +frame.work##.container > div[data-test-id^="email-signup-"][data-controller="spree--containers--email-signup-component--email-signup"] +zegtrends.com##.tpm-ads-unit +watzatsong.com###announcement +||labourmuttering.com^ +digi.no##.poster-placeholder +||brokennails.org^$popup +ecuabet.com###main-wrapper > app-menu-mobile > div[class]:not([id]) +||show-review.com^ +insider.az##.content-img > a > img[alt="Top Banner"] +aeink.com##p[style*=".alicdn.com/"] +vipleague.st#%#//scriptlet("abort-current-inline-script", "decodeURIComponent") +||tibcpowpiaqv.com^ +betaseries.com##.blockPartner +||facebook.com/audiencenetwork/web/? +##.adfix +##.a-d-90 +||chaintopdom.nl^ +||sellingmombookstore.com^ +||china.chemnet.com/cnbanner/ +darnytsia.ua###main > div.a_aui_auj:has(> span > a[href="/cookies-policy"]) +##a[href^="https://camfapr.com/landing/click/"] +redscan.com###bounceModal +@@||sdk.privacy-center.org^$domain=canarias7.es +faces4watch.com,baudasdicas.com,deejayplaza.com,hardwaresfera.com,cioupdate.com.tr,moumentec.com#%#//scriptlet("set-constant", "tie.ad_blocker_disallow_images_placeholder", "") +||complextoad.com^ +@@||player.mediavitrina.ru^$stealth=referrer +theatlantic.com#$#.welcome-screen-open::after{display:none!important;} +bestcash2020.com#%#//scriptlet("prevent-window-open") +editpad.org#%#//scriptlet('prevent-addEventListener', 'error', 'blockedUrl') +||ifeve.com/wp-content/uploads/*/cachekit +/adswrapperintl. +###ads_expand +subscribercounter.com##div[class^="index__ModalContainer"] +tvr.by,uznaytut48.ru##.podpiska +||brodmn.com^ +?subPublisher=popunder:$all +meduza.io##.Material-subscribe +plagiarismchecker.co###afterbox +###adaptvcompanion +malaysiaairlines.com#$#html { position: unset !important; } +eromanga-show.com,hentai-one.com,hentaipaw.com##div[id^="ts_ad_"] +teachthought.com,napeza.com,collegelearners.com###block-4 +spiderum.com##.hubspot-container +||braketoothbrusheject.com^ +toggl.com#$#.home > .hero { height: 100vh!important; } +zeolearn.com#$#body { overflow: visible!important; padding-right: 0!important; } +||autofaucets.org^$domain=rifurl.com +||adbro.me^ +funkypotato.com###ads_header_games +||static.eureekkaa.com^ +myabandonware.com##body > #ddneu +||candyhiss.com^ +telefonica.com,scambieuropei.info##.box--newsletter +||zmonei.com^ +kravira.by###content div.ask_a_question_wrapper +silesion.pl#?#.theiaStickySidebar > aside > .widget_block:has(> figure.wp-block-image > a[href^="https://silesion.pl/"] > img[srcset]) +g2a.com#$#.noscroll { overflow:visible!important; position:static!important; } +utilitymagazine.com.au,tefida.com,linearmotiontips.com###text-15 +theportugalnews.com##.donation +||dictionary.cambridge.org/*/iaw-cdo.min.js +||atservineor.com^ +usersdrive.com#%#//scriptlet('abort-on-property-read', 'popurl') +cartoon-sex.tv#%#//scriptlet("prevent-addEventListener", "mousedown", ")]){return") +||rtbix.xyz^ +@@||sdk.privacy-center.org^$domain=serially.it +app.zasta.de,tester.userbrain.com#%#//scriptlet('set-cookie', 'CookieConsent', 'true') +/MDassets/images/*.gif$~third-party +||show.wealthn.com/iframe/ad*.php +||brabus.com/_Resources/Static/Packages/Wysiwyg*CookieHandling/ +##.ad-block-bottom +##.widget_abn_admanager_sidestealer +handelshof.de#?#body > div.fancybox-container:has(> div.fancybox-inner > div.fancybox-stage div.newsletter-modal) +||kantie.org/a/images/car.jpg +@@||downloader.disk.yandex.$stealth +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_banner +pozbruk.pl#%#//scriptlet("abort-on-property-read", "openRodo") +/^https?:\/\/[0-9a-z]{8,}\.com\/.*/$~media,third-party,domain=kickassanime.ro,badfilter +empireonline.com,graziadaily.co.uk##.advertWrapper_billboard__npTvz +jabank-tokushima.or.jp,joins.com,jtbc.co.kr#@#.ad_bottom +wko.at#@##cookie-banner +||topnewsfeeds.net^ +allegro.hu,allegro.com,allegro.sk,allegrolokalnie.pl,allegro.cz#$##opbox-gdpr-consents-modal { display: none !important; } +pearos.xyz#%#//scriptlet('prevent-fetch', 'adblockanalytics.com') +oriflame.com##.w-cookie-notification +||rearedblemishwriggle.com^$popup +||adsales.snidigital.com^ +@@||cdn.privacy-mgmt.com/mms/$domain=elle.de|instyle.de +nfl.com#@#.nfl-c-strip +lxax.com###embed-overlay +||banners.cams.com^$popup +||zt.chuanke.com/?mod= +wiki.mbalib.com###p-ad-bd +||blockadsnot.com^$document +maid.my.id##.iniiklan +||wp.com/vfxdownload.com/wp-content/uploads/*-banner- +##.adthrive-video-player +windowsnoticias.com,movilforum.com,mrlabtest.com##.publi +m.soundcloud.com#$#div[class^="Tooltip_TooltipOverlay__"] { display: none !important; } +||constructbrought.com^ +||qiyipic.com/zongyi/fix/mxdj +linkvertise.download,linkvertise.com###headerTopAd .ad-dp1-wrapper +||xtcxflak.xyz^ +exportfromnigeria.info###affs +||soathouchoa.xyz^ +||wdohhlagnjzi.com^ +||cijianggun.com^ +##.readerListADbox +||incloseoverprotective.com^$popup +||jhkfd.com^ +||aiosearch.com/vpn/warning*.html +mail.com#%#//scriptlet('abort-current-inline-script', 'Date', 'uabp') +familyporn.tv###player_adv +download3k.com###google_top +||uqcktxp.icu^ +alypw.com##.adbkk +##.rec_container_right +xmtrading.com#$#.cookie-modal ~ div.modal-backdrop { display: none !important; } +||t1.612.com^ +||1.95ye.com^ +||meilunsc.com^ +gamestorrents.fm##.mid_aviso +clashforwindows.org###elementor-popup-modal-144 +westjet.com##.wj-header-usercookies +||windingsynonym.com^ +||d1jcj9gy98l90g.cloudfront.net^ +@@||sharethis.com^$third-party,domain=gamesradar.com +everydayporn.co,danude.com,pornachi.com,pornchimp.com##.top +software.informer.com##div[id^="inf_bnr_"] +||purifybaptism.guru^ +meczyki.pl#%#//scriptlet('prevent-addEventListener', 'copy', '.attached') +edumap.az##.single-post a[href^="https://bit.ly/"] +rfidworld.com.cn###placeHolderR +/vendor/*/plugins/advert/js/shut-blocker.js$domain=kamudanhaber.net|yenimalatya.com.tr|habervakti.com|medya28.com|milliirade.com|kanalmaras.com +wpteq.org,snowman-information.com,xn--kckzb2722b.com,xn--n8jwbyc5ezgnfpeyd3i0a3ow693bw65a.com,nobodycancool.com,kagohara.net,meilblog.com###st-ami + div[id][class*=" "] +||jwamnd.com^ +drtuber.com##a[href^="/partner/"] +my.yahoo.com##li[id^="ad-"] +||glersooy.net^$popup +/image/affiliate/*$image +/page/?s=$third-party +aconvert.com#%#//scriptlet('set-constant', 'numblock', '0') +||tffkroute.com^$popup +popsci.com##.arcAdsContainer +samsung.com##.gb-gnb__notice-bar +kyivindependent.com###dare-to-ukraine-top-banner +abc7.com##div[data-testid="prism-newsletter-form"] +||informengine.com^ +||cdn.xwqea.com^ +||cxsh.cn.com^ +||e.so.com/search/pcnew? +||mznizrhd.xyz^ +||tarteaucitron.io^$third-party +psychpoint.com##.adblockpopup +businesstoday.in,aajtak.in##.rhs-fixwhtsapp +theoryandpractice.ru##a[href^="https://form.typeform.com/"] +||phosphatepossible.com^$popup +||ftdbtko.xyz^ +||lowleafeontor.com^ +megalink.*,1link.vip,oko.sh##.box-main > center > a > img +epmonthly.com##.polis-target +||my-hub.top^$document +@@||player.ex.co/player/$domain=si.com +||steadyquarryderived.com^ +dallasobserver.com#%#//scriptlet("set-constant", "VMG.Components.Adblock", "false") +10news.com##.module--email-widget +||wewrute.top^ +||adswam.com^ +||daejyre.com^ +andropalace.co##.sgpb-popup-overlay +##.adv-full-width +||widget.yenimedya.com.tr/Partner/$domain=haberler.com +flowgpt.com#%#//scriptlet('set-local-storage-item', 'appDownloadModal.Dismissed.p', 'true') +||sdnc.top^ +yahoo.com#?##YDC-Stream > ul > li.js-stream-content:has(> div > div > span > a[href^="http://help.yahoo.com/kb/index?page=content&y="][rel="nofollow noopener"]) +||sfjslib.top^ +||bebseegn.com^ +@@||explainxkcd.com/wiki/images/$image,~third-party +kronikaonline.ro###page-mask +yatsan.com##.smpl-close-main +tinys.click##.separator > a[target="_blank"] +||aidmat.icu^ +dailycaller.com###dailycaller_incontent_3 +sanswiss.pl#$#body { overflow: auto !important; } +shoop.de##accept-cookies-banner +talkspace.com#$#.modal-backdrop { display: none!important; } +gazprombank.ru##.nr-cookie-accept +||aganicewride.click^ +||pantomimecommitmenttestify.com^ +pagalguy.com##iframe[id^="vqa:ads:"] +videobin.co#%#//scriptlet('abort-current-inline-script', 'document.attachEvent', 'initBCPopunder') +||paritywarninglargest.com^ +nen.com.cn##.w610 +||patefysouari.com^ +||intextdirect.com^$third-party +/adcomp. +laleggepertutti.it##div[class^="notizie-blue-bnr-"] +dapenti.com##a[href*="sq.cc"] +||1024mzs.pw^$popup,third-party +||polaranacoasm.shop^ +conservativebrief.com#?##primary > div.main-box:has(> h3:contains(Newsletter)) +ifa.com.au###mmk-popup-screen +||actoys.net/js/beitou.js +||ljpbtjq.xyz^ +/wpxbz-theme.js$script +||grairgoo.com^ +drive2.ru##.js-page > div[class*=" "] > div[itemscope] ~ div[class]:not([id], [data-role], :last-child):has(div:empty + script) +||olibes.com^ +cetas.com.tr,warmhaus.com.tr##.cookie-description +autosport.com##.ms-ap-native +||pushwoosh.com^$third-party +||anastasia-international.com^ +||8h93.com^*.gif +jumbomail.me##.cookies-usage-panel +||rtb-useast.stringads.com^ +||fouwheepoh.com^$popup +vibefm.pl,voxfm.pl##div[class^="zpr_inside_"] +forum.benchmark.pl##div[id][style*="min-height:"]:has(> img[src="https://std.wpcdn.pl/images/adv/placeholder_wp.svg"]) +||2542.5clo0xmbf.com^ +htxt.co.za#?#.elementor-widget-container:has(> h2:contains(NEWSLETTER)) +||ablogica.com^$popup +xpassd.co##aside[id^="tn_ads_widget-"] +theringer.com##.c-newsletter_signup_box +ufret.jp,tekniknot.com,toptoon.com#$#html * { user-select: auto !important; -webkit-touch-callout: default !important; -webkit-user-select: auto !important; -moz-user-select: text !important; -ms-user-select: text !important; } +andhrajyothy.com##.grey.pb4 > span +||xdttxdqe.xyz^ +/firebase-messaging.js$domain=euautodily.cz|euautoteile.de|euautoteile.at|euautoteile.ch|euautopezzi.it|euautopieces.fr|euautoczesci.pl|euantallaktika.gr|euautorecambios.es|euautopecas.pt|euautoonderdelen.be|euautodele.dk|eualkatresz.hu|euvaraosat.fi|euspares.co.uk|euavtodeli.si|euroautodiely.sk|euavtochasti.bg|euautodalys.lt|euautopiese.ro|euautoonderdelen.nl|euautodeler.co.no|euautodalas.lv|euautoosad.ee|eurobildelar.se|worldstar.com|tv1.nontondrama.click|tmailor.com|super.ru|gazeta.uz|thevoicemag.ru|novayagazeta.eu|zab.ru|nike.com.br|webursa.com|bfm.ru|theswagsports.com|focus.ua|ukranews.com|comments.ua|coub.com|porno90.me|cnnamador.com|giallozafferano.it|fptplay.vn|jooble.org|mobile01.com|myinstants.com|pdalife.ru|rg.ru|m.iguides.ru|donanimhaber.com|profile.ru|womanhit.ru|news.noteru.com|narodna-pravda.ua|newstm.in|sabah.com.tr|dreamstime.com|popbee.com|avtovzglyad.ru|allbasketball.org|tw.news.yahoo.com|takvim.com.tr|ria.ru|pars.host|calculator-online.net|operanewsapp.com|ahaber.com.tr|tamindir.com|concursosnobrasil.com.br|kompas.com|news.ebc.net.tw|recyclingtoday.com|homedecoratione.com|khersondaily.com|mirtesen.ru|belsat.eu|op.gg|novayagazeta.ru|pocket-lint.com|turunculevye.com|bloomberght.com|stardima.com|aksam.com.tr|portamur.ru|fishki.net|ranking.goo.ne.jp|ohmymag.com|semnasem.org|bluradio.com|carwale.com|finanznachrichten.de|home.kingsoft.jp|sputnik.kg|sportskeeda.com|notizie.it|diarioregistrado.com|colombia.com|penangpropertytalk.com|m24.ru|yenisafak.com|mirf.ru|sozcu.com.tr|hindustantimes.com|elcordillerano.com.ar|sport-express.ru|mentoday.ru|es.memedroid.com|lublin112.pl|iguides.ru|lk21official.mom|news.tvbs.com.tw|lsm.lv|paraphraser.io|mynet.com|surabaya.tribunnews.com|birgun.net|gunes.com|b92.net +##.advert_header +||kiees.cn/k1.js +||dailynews.lk/wp-content/uploads/2024/02/D-E +mobilarena.hu##div[onclick^="$.ajax('https://mobilarena.hu/muvelet/hozzaferes/kapcsolodas.php"] +new.hnair.com###declareGDPR +skipol.pl#$#header { height: 10px !important; } +||committeeoutcome.com^ +psychcentral.com##aside:has([data-empty]) +siberianhealth.com##.blogSub-wrapper +wows-numbers.com#$#.modal-backdrop { display: none !important; } +nero.com###fancybox-wrap +iask.sina.com.cn##.sj_680x250 +###adsense-links +kudyznudy.cz##.sx-info-c-message +||buysellads.com^$third-party +buondua.com##.pagination + br + div[class] +||madskis.com^ +thestar.co.uk,sussexexpress.co.uk,portsmouth.co.uk,northantstelegraph.co.uk,newsletter.co.uk,falkirkherald.co.uk,miltonkeynes.co.uk##div[class*="AdContainer"] +tutorialspoint.com##.top-ad-heading +||nwmnd.com^ +##.ablock728 +##.ads_2 +||softonicads.com^ +52pk.com###baidutop +||faukeeshie.com^ +||securegate9.com^ +||fleahat.com^ +||kotanopan.com/wp-content/uploads/*/*.js +##.rightTopAdWrapper +##.advtBlock +cfake.com###content_square +##.ad220x50 +varianty.lviv.ua##.connect +||click4free.info^ +##.qb-cookielaw-bar +mini.de##.md-cookie +asciitohex.com#?#body > .box.zone > .adsbygoogle:upward(1) +digify.com###elementor-popup-modal-7782 +||sohu.com/api/labs/hotnews/c/load? +||6efgcdcjr000.fun^ +###top_ads +theregister.com##.wptl +##.block_ad303x1000_right +||trafficborder.com^$popup +##.article-aside-top-ad +||eff39833a7.d7e13aeb98.com^ +||d2e3e68fb3.com^ +kisscos.net##.video-sponsor +pornvideotop.com#%#//scriptlet("prevent-setTimeout", "location.href") +##.Post__ad +nepalpress.com##.gam-ad-position-wrap +##.cookie-policy-box +||comalonger.com^ +turbopages.org##.fixed_widget-feedback +||panel.bcnmonetize.com^ +droidinformer.org###inf_bnr_2 +||truthvexedben.com^ +||livehotty.com/landing/$popup,third-party +truck1.eu##.splitter-banner +||tubecup.net^$document +intermiles.com##.static_page_signup_form +yenicag.az###sidebar .adsense +loreley-kliniken.de,marienhaus-st-wendel-ottweiler.de,marienhausklinik-ottweiler.de,pthv.de,kkm-mainz.de###dgdsgvocookie +getdroidtips.com,journeybytes.com,thebeaverton.com,thisisanfield.com,unfinishedman.com,windowsreport.com##.ai-viewport-1 +||39236100.lotre.io^ +gotporn.com##a[href="https://www.gotporn.com/webcams"] +||calmlyilldollars.com^ +||mistrustconservation.com^ +###ctl00_CookieMessage1_upCookie +vgorode.ua#?#.inner-news > p:has(> strong > a[href^="https://t.me/"]) +##.ad-row-viewport +||apptjmp.com^$popup +mybroadband.co.za##.article-bottom-newsletter +search.yahoo.com###browserExtensionPromotion +coolsaid.com##iframe[src="http://coolsaid.com/gmifr_lei.html"] +||lightfoot.top^ +||hornspageantsincere.com^ +news.ro##.gdpr-section +||wwowww.xyz^$popup +##.frontpageAdvM +mobilarena.hu###right > div[class*=" "] > [style^="width: calc("][style*="height: calc("][onclick*="/kapcsolodas.php?"] +masterclass.com##main > div[class*="Sticky_top"] +||underwaterbirch.com^ +maomaomom.com##.textwidget > table[width="1050"] +||pubmine.com^ +titantv.com#?#.gridTable > tbody > tr:not([class]):has(> td[class][align="center"]:contains(/^sponsored$/)) +@@||ocdn.eu/ucs/static/*Piano/*/build/amd/floatingAd.js$domain=newsweek.pl +||check-tl-ver-54-1.com^ +||kastafor.com^ +mydowndown.com#?#.bs-component:-abp-has(>a[href*="97jez.com"]) +||talaropa.com^$third-party +@@||ad.doubleclick.net/ddm/clk/*http$popup +||cdnfimgs.com^ +kartaplovdiv.com#%#//scriptlet('remove-attr', 'href', 'a[href="https://kartaplovdiv.com/c5/sexdating.php"]') +###avisoCookies +pornhub.com,pornhub.org,pornhub.net###hd-rightColVideoPage iframe +||6669667.com^ +||abruptlydummy.com^ +regensburgjobs.de##.CookieInfo +bank-codes.com#%#//scriptlet('set-constant', 'ab1', 'false') +razoesparaacreditar.com###oPrivallyApp +||bd1.yidu.cc^ +my0511.com###idxtelecom +||stinkcomedian.com^ +.com/images/102.js +electronics-tutorials.ws##.home-top-ads +tinyurl.is#%#//scriptlet('adjust-setInterval', '.navbar-brand', '1000', '0.02') +||tcdypeptz.com^ +##a[href*=".xacg.info/"] +##.ad--container +||gdcytv.cn^*.gif +7itv.com,fengchedmp.com,hdwan.net##body > div[style] +||fireworkapi1.com^$domain=boldsky.com +||zugnogne.com^$popup +majorgeeks.com##.content > table.alford +||health.eonet.jp/uploads/eo2380_ +gbnews.com,buyzero.de,dailycaller.com,idownloadblog.com,malwarebytes.com,mashable.com,nakedsecurity.sophos.com,sbs.com.au###newsletter-signup +alternet.org###leaderboard-placeholder +##.nav-ad-plus-leader +jjgirls.com##a[href^="https://chaturbate.jjgirls.com/"][target="_blank"] +||crudequeenrome.com^ +muzhi.baidu.com##.leftnest +talkspace.com##.text-5 +ac-illust.com,photo-ac.com##.show-notice-cookie +@@||dagensbyggeri.dk/assets/templates/dagensbyggeri/gfx/ads.png +||d1u5ibtsigyagv.cloudfront.net^ +||xml.bcnmonetize.com^ +||cnqaaa.xyz^ +||189.bestinterestings.com^ +||2c4rrl8pe.de^ +tencentgamingbuddy.co#$#.sgpb-popup-overlay { display: none!important; } +idnes.cz###pianoreminder +caikuu.com##.photo_abv +||dfhgry.com^ +##.ad--overlayer +||kuaidiwo.cn/kdwkxmlt.jpg +@@||tickets.oebb.at^$generichide +animeskai.com,animeflv.ru#%#!function(d,e){function f(g,h){return"function"!=typeof g||-1===g.toString().indexOf(h)}d=document.addEventListener,document.addEventListener=function(){f(arguments[1],"['tagName']['toLowerCase']()&&document")&&d.apply(document,arguments)},e=window.setInterval,window.setInterval=function(){return f(arguments[0],"['overlayName'])[")?e.apply(window,arguments):void 0},AG_defineProperty("onbeforeunload",{beforeSet:function beforeSet(g){return f(g,"location.href=options.url")?g:null}})}(); +app.appvalley.vip##.notification-item +42xz.com##[onclick*="godownload"] +||pixelspivot.com^$popup +thebudgetsavvybride.com##.savvy-target +://m.*.cn/*.xmtl?$third-party +||xml.bidiology.com^$all +###ChapterView > .slide-baidu +||hexun.*/hxpage/index.html +||stickssheep.com^ +@@||sf.ezoiccdn.com/ezoimgfmt/kosmofoto.com/wp-content/uploads/2022/01/KFLogo-272x90-1.jpg$domain=kosmofoto.com +||nutaku.net/signup/$popup +||myparcels.net/images/b/ +watzatsong.com##.right-column-why-ads +shrinke.me,illink.net,owllink.net,birdurls.com###link-view > br +free-software.com.ua,duzcepostasi.com##div[id^="fancybox"] +steamanalyst.com##.tpbcontainerr +@@||eslite.com^*/ad +dhv.de##.jc-cookiemanager +/ttj?id= +demiart.ru##.sys > div[style] +wefashion.nl,wefashion.de,wefashion.be,wefashion.ch,wefashion.at,wefashion.fr,wefashion.lu##.modal-open > div.veil +smilepolitely.com##.foobar-cta +||lp-preview.net^ +knowledgehut.com##div[class^="FooterSticky__"] +it168.com##.fu1020_box +||connectionsdivide.com^ +||freighter-prod01.narvar.com^$image +bollywoodshaadis.com##.fw_ad +ladnepodatki.pl##.fixed-bottom-right > div[role="alert"] +osxdaily.com###subscribe_box +mydigit.cn##.view-hover[channelid="smzdm"] +###adv-top +||clicktrixredirects.com^$popup +web2.0calc.ru###cookiefooter +||zergnet.com/zerg.js +||downloadmobile.pro^ +tarnowska.tv#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||troopsassistedstupidity.com^$popup +###adsection +instagram.com#$?#article:has(a[href^="https://www.facebook.com/ads/"]) { height: 0 !important; overflow: hidden !important; } +lazienkaplus.pl#%#//scriptlet('remove-class', 'cookies-policy', 'body.cookies-policy') +eet-china.com#?#.new-list > ul > li:has(> div.li-row > div > h2 > a[href^="http://pubads.g.doubleclick.net/gampad/"]) +##iframe[src*=".xxmh"][src*="?u="] +##.advertisement_text +||shawljeans.com^ +techblogng.com##iframe.HB-Takeover[src="about:blank"] +||pennilesstestangrily.com^ +bloomberght.com,haberturk.com##.widget-google-news +||vitbichi.by/wp-content/uploads/*/banner_prilozhenie.jpg +vegasslotsonline.com##.game-row__play-now +||mwerilxx.top^ +||linuxbabe.com/wp-content/uploads/pum/pum-site- +||tirexo.blue/main.js? +||65209f7351.a0905c77de.com^ +||surfacescompassionblemish.com^ +||bceptemujahb.com^ +||d1hnzacu959ev8.cloudfront.net/app.min.js +image.baidu.com#?#.newfcImgli:-abp-has(.fc-ad-tip) +@@||wl.jd.com/joya.js +||xcafe.com/assets/script.js +||dominantroute.com^ +##.bg_ad +/adBlockDetector/*$script +thelingerieaddict.com#$#body > .ck_form_container { display: none !important; } +###rightAdBar +##atf-ad-slot +3d-info.pl##div[id^="think-"] +captaincoupon.de#%#//scriptlet('set-local-storage-item', 'areCookiesAccepted', 'true') +||rmwzbomjvqmjw.top^ +||zgm1.com^ +lapa.ninja##.col-sm-1 +magazineluiza.com.br##div[data-testid="mod-populardepartments"] + div[class] +||imall.cntv.cn^ +||cdn.fundraiseup.com/widget/$domain=tvrain.tv +pcgamesn.com##.sticky_rail600 +||gfdfhdh5t5453.com^$popup +||mvxz.com/boximg/ +###ctl00_ctl00_divCookiePolicyContainer +@@||techdays.ru/banners?pid= +||af9dc9.xyz^ +###cookie_alert_container +||d15jg7068qz6nm.cloudfront.net^ +dict.cc##a[href^="/?home_tab=ads"] +gglot.com###tsu-cookie-consent-popup +||xgroovy.com/*pop/| +||xibfnb.xyz^ +theorg.com##._1s1RU +||adamantsnail.com^ +||worstgoodnightrumble.com^ +##.block-dfp +h2porn.com##.cube-thumbs-holder +||xml.adflydsp.com^ +wasu.cn##.info_ads +@@||i.postimg.cc/*/banner*.png$domain=scandal-heaven.com +||farethief.com^ +whatnext.pl,whatsnext.pl##div[style^="min-height:"][style*="background-color: #"][style*="margin-bottom:"] +||cdn.opecloud.com/ope-adweb.js +xxxlutz.se#%#//scriptlet('trusted-click-element', 'button[data-purpose="cookieBar.button.accept"]') +globo.com##.banner-bottom-fixed-cpnt +||stackattacka.com^ +||3133.4puuqeh41.com^ +||variedpretenceclasped.com^ +auslandsschulwesen.de#@##cookiebanner +lanacion.com.ar#$#.sidebar__aside { background: none!important; } +||adexmedias.com^ +||camel.nonpopularopinion.com^ +||dismountthreateningoutline.com^ +wapbold.com,wapbold.net##.bhor-box +ngadget.ru###revsubscribe +||try.opera.com^$popup +||dir.bg/js_ext.php?placeid=*&affiliate_id=* +||findanonymous.com^ +/plugins/ultimate-popunder/*$~stylesheet +chip.com.tr##.top-fixed +empik.com#%#//scriptlet('set-cookie', 'cp', '1') +||cdn.mnhjk.com^ +iwate-np.co.jp#?#.news-box-article-list > li:has(span.date:contains(広告)) +||xxxwebtraffic.com^ +vk.com###system_msg +ntunhs.edu.tw,ntust.edu.tw,sjsmitaa.org#@#.module-ads +sky.com##.mast-c-sign-in-notification +/prebid5.$script +||imhentai.xxx/js/slider.js +streamonsport8.buzz##a[href*="dude.php"] +||edacityedacitystrawcrook.com^ +@@||wikihow.com/_ads/ads.js +##.ad-leaderboard-middle +?frm=*&ct=*&dit=$third-party +movavi.com##.top-popup-gdpr +yeswegays.com##.twocolumn > .r-col > .side-spot +lattmann.de#$#body { overflow: visible !important; } +||ghyxmovcyj.com^ +ebookee.com#?##secondNav > div.navbar:contains(/Email Subscribe|Feed & Bookmark/) +strefakierowcy.pl#$#.cookies-popup { display: none !important; } +||trigami.com^ +###taboola-below-article-thumbnails-photo +444.coffee##div[aria-describedby="myaabpfun12dialog"] +||ufpcdn.com^$popup +pcdock24.com###bottom_nav +msn.com##.galleryPage_eoabNativeAd_new-DS-EntryPoint1-1 +||acc6ef1b4a.39963f5717.com^ +||explodemedicine.com^ +||tlanyan.pp.ua/wp-content/uploads/meomiao.png +magazineluiza.com.br#?#div[data-testid^="mod-"]:has(> div[data-testid="adunit"]) +buyuksivas.com##.splash-popup +bf4stats.com###sidebar > .sidebox:nth-child(3) +||keydawnawe.com^ +league-funny.com##.right > .fansCard +kariyer.net,annsummers.com,3dnews.ru,sobesednik.ru##.ui-dialog +||darkreader.org/elements/backers-header.js +bolasport.com##div[class^="cls"] +foxford.ru###cc_container +||hljmdaz.com^ +zyro.com##.wp-block-cover.banner +healthfeed.co.kr,cafe.naver.com#$#body[style*="user-select: none;"] { user-select: auto !important; } +linku.to#%#//scriptlet('adjust-setInterval', 'current()', '*', '0.02') +||4lke.online^ +||eabids.com^$popup +||easou.com/online/banner/ +poisondrop.ru,tp-link.com##.bottom-popup +||so.open.163.com/v/list.htm?pid= +||xml.reachclicks.net^ +||sitemaji.com^$third-party +gceguide.com##.tringdad-main +u-car.com.tw##.privacyforsite +##.sidebar-ad +@@||moviemakeronline.com/resources/jsc/ads.js +@@||an.yandex.ru/system/context.js$domain=space.utema.ru +m.standaard.be##.gdpr-dialog +||gaofen.com/source/plugin/gaofen_ad/ +@@||chaturbate.com/*embed^$domain=sweetpornlinks.com +infortechno.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +##.overflow-ad +||freezedispense.com^ +filext.com#%#//scriptlet('trusted-replace-xhr-response', '/.*_preview_video.*/', '', '/acs') +m.ndtv.com###header_ap_id +###footer_ad_modules +businessnovinite.bg,btvplus.bg,ladyzone.bg,btvsport.bg,btvnovinite.bg#@#.cc_container +stromnetz-hamburg.de#$##cookie-bar { display: none !important; } +bitrix24.ru##.helpdesk-notification-block +||clickcash.com^ +||static.theprint.in/wp-content/uploads/*/ThePrint*banner$image +||13b3403320.com^ +hmoe12.com,bilibili.com#$#.adblock-tips { position: absolute !important; left: -3000px !important; } +businesstoday.in##iframe[name="notification-frame-b8a5475a"] +notta.ai##div[class*="styles-module--signup_popup_wrap-"] +zshort.io#$##showMe div[id][style="display:none;"] { display: block !important; } +###adSpaceHeight +||img.masoffer.net^$domain=congtruongit.com +quantamagazine.org#$#.disclosure-notification { display: none !important; } +||clean.gg^ +||gruwalom.xyz^ +douyin.com###videoSideBar iframe +||consistpromised.com^ +shinigami06.com##.lepopup-animated +focus.ua##.banner-wrap +||thoalugoodi.com^ +||0d70ad5525.ec257deba1.com^ +||p-analytics.life^ +||paleogdeedful.top^ +afkgaming.com##._2-COY +mortalshell.com#%#//scriptlet('set-cookie', '_gdpr_mortal', '1') +ray-ban.com##body > .wcs-overlay-content +scherzo.es##.sidebar > .widget_custom_html +karaoketexty.cz###sky_right_col +drphil.com##.main-newsletter-signup +||raphidewakener.com^ +pornlulu.com,pornbest.org###fullPageModal +jagranjosh.com##.BannerAds +@@||cdn.jsdelivr.net^$script,domain=movieffm.net +detroitbadboys.com##.metabet-scorestrip-watermark +qzone.qq.com###appCanvasTodayRecom +ibtimes.com###block-fusion-newsletters +speakenglishwell.ru###overlay-sidebar-wrap +cnfol.com##.wid390AdBox +@@||*optout$domain=youronlinechoices.com +bioon.com##.grid_6 +noicompriamoauto.it##.signup-wrapper +aoxx69.net#?#.row > div.col-xl-3 > span[style="background-color:red;"]:upward(1) +||gvcaffiliates.com^$popup +m.finance.yahoo.co.jp##.appNotice +||daytimeentreatyalternate.com^ +wnl.tv#%#//scriptlet('set-cookie', 'Cookie_Category_Analytics', 'false') +##.content-page-ad_wrap +adspower.net,adspower.com##footer + div.fixed.bottom-0 +startpage.com##.article-block--newsletter +mssqltips.com###ad-slot-leader +###Advertisements +vabstutorials.com,stiffgamerdown.com,televall.website,animeshouse.net,animeunity.it,droidtk.com,themeslide.com,orangespotlight.com,magdyman.com,topflix.*,sportsio.xyz,poisonous-raspberry-fields.blogspot.com,redirdx.in,tmofans.com,thememazing.com,baan-series.com,baixarfilmetorrent.net,yourupload.com,wikitechy.com,windes.com.es,freecourser.com,audioreview.m1001.coreserver.jp,portalwrc.pl,themeslide.com#%#window.addEventListener("contextmenu",function(a){a.stopPropagation()},!0); +javdatabase.com##.row:has(> div.col-md-3 > div.card > div.card-body > div.movie-cover-thumb > a[href^="https://www.fellatiojapan.com/"]) +@@||m.dbzstatic.com/assets/js/loader.js +@@||cdn.preferred.tech/cookie-consent.*.js$domain=typing.playgram.jp +motorkari.cz#@#.left-banner +||nicatethebene.info^ +hdblog.it#@#a[href^="https://www.amazon."][href*="tag="] +##.ad-wrap-transparent +||getscriptjs.com^ +159i.com,china.com.cn##.ab +||bshare.cn/bshare_view?Callback= +||luggagebuttonlocum.com^ +||looksblazeconfidentiality.com^ +||universitypermanentlyhusk.com^ +||maybejanuarycosmetics.com^ +||majorgeeks.com/mg/slide/mg-slide.js +||needleworkhearingnorm.com^ +||killingscramblego.com^ +###adad +brain.com.ua##.subscribe_newsletters +/wp-content/plugins/ioimedia-app-banner/* +||perfectmarket.com^ +a101.com.tr##.mobileAppWarning +||befirstcdn.com^$popup +kpd122.com,ssp28.pw##.index-owl-carousel +hk.yahoo.com##div[id^="my-ads"] +||cam4.com/directoryFanClubs^ +||verdirectotv.com/publi/publi728.php +@@||cdn.clarip.com^$stealth=useragent,domain=jcrew.com +##.header_ads +leggioggi.it,rollingstone.it,buhexpert8.ru###exitpopup-modal +||hrtennaarn.com^ +macrotrends.net#%#//scriptlet("abort-current-inline-script", "atob", "removeCookie") +||yeesshh.com^$popup +@@||cdnjs.cloudflare.com/ajax/libs/jquery/*/jquery.min.js$domain=ouo.press|ouo.io +twitter.com##header[role="banner"] > ._3oxnid3o._3f2NsD-H +klerk.ru##.subscribe-inside +||blinkpainmanly.com^ +||hentairules.net/gal/new-gallery-dump-small.gif +maclife.de##.blk-wrapper > article > .nextprev_wrapper + div[style="margin-top: 50px;"] +||pixfuture.net^ +a1.ro#@##onetrust-consent-sdk +||c4n.shudhdesiporn.com^ +.com*/ps/psCreat.js +hackread.com#?#.cs-sidebar__inner a.click:upward(.widget) +cathstan.org##.squat +||varietypatrice.com^ +||ebsbqexdgb.xyz^ +telepolis.pl#?#.d-none.justify-content-center:has(> .m-auto > .ad) +moneylife.in##.top_most_banner +||ourtopstories.com^ +||tujourda.net^ +||vezizey.xyz^ +subscene.com##td[class="banner-inlist"] +##.a_cn +fanatical.com##.cookie-collapsible +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws##div[data-org-tls] > div.JgC4m[class*=" "] +theinertia.com##.inertia-ad-300x270 +@@||true-gaming.net/home/wp-content/themes/TrueGaming2021/js/prebid-ads.js +||filterforge.com/images/banners/ +||plibcdn.com/templates/base_master/js/jquery.shows.min.js +amtrak.com#$?#.parsys-column > .parsys_column:not(:has(.promo-simple-image)) { width: auto !important; } +forbes.com#@#.ADTop +||yapdiscuss.com^ +deezer.com#?#.modal:has(> div.modal-wrapper > div.modal-dialog > div#modal_push_premium) +cdmediaworld.com,gametarget.net,lnkworld.com##.chk +hexlet.io##main > section[class^="container-"]:has(> div.row > div[class^="col-"] div.card > div.card-body > div[class] > a[href^="/programs/"]) +###ligatus_adv +gq.com##.consumer-marketing-unit--cm-footer +||fvpboxu.xyz^ +lis-skins.ru##.bonus-banner +||hilltopads.net^$popup +||site-bk.oss-cn-shenzhen.aliyuncs.com/img/aliyun/ +sportowefakty.wp.pl#@#body > .content ~ script[async] + div[class]:not([id]) +yts.unblocked.tube,yts.mx##.home-content > div[class*=" "]:has(> div > a[rel]) +otoprzychodnie.pl##div[style^="position: fixed;"][style*="background-color: rgba(0, 0, 0, 0.3);"] +benzinga.com,primewire.link##.banner-wrapper +||cdn.shopify.com/shopifycloud/privacy-banner/storefront-banner.js +administradores.com.br##.tulsa-campaign +v.youku.com##.advertise-layer +komiklokal.me##body ~ a[class^="c-"][target="_blank"] +||ivemjdir-g.top^ +||condolencespicturesquetracks.com^ +get-in-engineering.de#$#body { overflow: visible !important; padding-right: 0 !important; } +hangikredi.com##.hellobar +sporcle.com##.header-right > div[style="text-align: center; overflow-x: hidden;"] +||eon.com/*/js/eon-com-tracking-consent.*.js +fastalert.jp##.home-popup +||mobitorg.phonet.com.ua/public/widget/call-catcher/ +bauen-und-heimwerken.de#$#body { filter: none !important; pointer-events: all !important; } +85novel.com,digitalocean.com,ikjzd.com#@#.ad-content +uniladtech.com,gamingbible.com,ladbible.com,sportbible.com,unilad.com,tyla.com#%#//scriptlet('prevent-element-src-loading', 'script', 'adsafeprotected') +||autoimg.cn/club/v1Content/images/heycar1111.jpg +globalaffairs.ru##.dk-newsletter +||jiqeni.xyz^ +||admedo.com^$third-party +###wrapperAdsTopRight +insider-gaming.com###ig-newsletter-holder +business-standard.com##.story-content > div[style^="background: #fee8dd;"][style*="border: dashed 1px black;"] +ilmeteo.it#?##page > #header:has(> #banner-mnz-top:only-child) +||all-nationz.com/feed-all-nationz.html +yaya0506.com##iframe[style="border: 0;"][width="100%"][height="280"][src^="//www.12beststar.com/"] +||lqtiwevsan.com^ +||uhpdsplo.com^$popup +##.adpod +||uptopopunder.com^$popup +||boxlivegarden.com^$popup +||adultmoviegroup.com^ +ryukyushimpo.jp#?#.flex-col > .justify-center:has(a[href*="//play.google.com/store/apps/details"]) +###shoper-foot ~ div.consents +uusisuomi.fi##.questback +||ptsyhasifubi.buzz^ +tabletowo.pl##.entry-content > div[style="min-height: 300px;text-align: center;"] +@@||tmearn.com/js/ads*.js +||vhanime.com/js/bnanime.js +||zpcj8.online^ +booklife.com,yabeat.org###interstitial +||erling.online^$third-party +qianlima.com###float_mask +||dash.tmearn.com^ +||glideimpulseregulate.com^ +||gapcask.com^ +||redventures.io^$script,subdocument,third-party,xmlhttprequest +internetaptieka.lv#$#.cookie-notify__wrap { display: none !important; } +tekdeeps.com##.zAzfDBzdxq3 +||begracetindery.com^ +||vouchanalysistonight.com^ +medal.tv#%#//scriptlet('set-cookie', 'medal-accept-cookie', 'false') +||d33wubrfki0l68.cloudfront.net/js/*/js/ad-payment.js$domain=duellinksmeta.com +||zpgetworker11.com^ +||epu.sh^ +##.sticky-ads-content +iheartradio.ca##.page-footer +||ps2.camcaps.to^ +||wefihob.cn^ +||app.chatplus.jp^$third-party +||date4sex.pro^$document +||google-analytics.com/analytics.js$script,redirect=noopjs,important,domain=ebb.io +freesexpornhd.com##div[class^="page-conteiner"] > div.e-block +||chosenchampagnesuspended.com^ +buser.com.br#$#.popup-blackfriday { display: none !important; } +alphaporno.com##.movies-block > div[style*="text-align:center;"] +||gayadnetwork.com^$third-party +||podsolnu9hi10.com^ +khersondaily.com###socialGroups +thechainsaw.com##.gam-ad-container +charismanews.com##.nlWidgetMain2 +||klfbnklddfbkn.com^ +plarium.com##.w-notifications__noty_cookie +ravenmanga.xyz##a[href^="https://a-ads.com"] +##.AdsRectangleWrapper +@@||getpasteleaks.link/js/prebid-ads.js +femmeactuelle.fr###bt-softwall +||awepsi.com^ +||catsnbootsncats2020.com^$popup +xhspot.com,xhwide5.com,xhchannel.com,xhchannel2.com,xhtotal.com,xhtree.com,xhwide2.com,xhlease.world,xhamsterporno.mx,xhxh3.xyz,valuexh.life,xhdate.world,xhtab4.com,xhbranch5.com,galleryxh.site,xhbig.com,xhaccess.com,xhofficial.com,seexh.com,xhamster42.desi,xhvid.com,xhamster20.desi,xhwebsite2.com,xhamster18.desi,xhadult3.com,xhadult2.com,xhmoon5.com,xhwide1.com,xhamster3.com,xhtab2.com,xhamster.com,xhamster2.com,xhamster7.com,xhamster8.com,xhamster9.com,xhamster10.com,xhamster12.com,xhamster13.com,xhamster14.com,xhamster15.com,xhamster17.com,xhamster18.com,xhamster19.com,xhamster1.desi,xhamster2.desi,xhamster3.*,xhamster4.desi,xhamster20.com,xhamster22.com,xhamster23.com,xhamster25.com,xhamster26.com,xhamster27.com,openxh.com,xhamster31.com,xhamster32.com,xhamster34.com,xhamster36.com,xhamster37.com,xhamster38.com,xhamster5.desi,xhopen.com,openxh1.com,xhamster39.com,xhamster40.com,xhamster.one,xhamster.desi,stripchat.com#$#header.promo { min-height: auto !important; } +###logon-snippet-icookie +/plugins/dx-ads/*$script +##.RightTowerAd +hkcards.com###ad-slot[style="min-width: 300px; min-height: 300px;"] +##.ad-banner +sysnative.com###posts > ul > li:not([class$="old"]) +##.ad-small +||hao123img.com/res/js/track.js +||bromoneg.shop^ +travel.navitime.com##.app-presents-frame +autocentrum.pl#%#//scriptlet("set-constant", "adblockJsFile", "true") +metaratings.ru##div[class^="CookieAllowance_"] +||spitretired.com^ +teb.com.tr###cokieMain +||d2it3a9l98tmsr.cloudfront.net^ +/ad.html? +||lecdhuq.com^ +@@||cdn.privacy-mgmt.com/wrapperMessagingWithoutDetection.js$domain=faz.net +fajn-brigady.cz#%#//scriptlet('set-cookie-reload', 'new_overlay_uchazeci_open', '1') +||zhulong.com/detail/floorOneAd? +||itnijtcvjb.xyz^ +||d2jtzjb71xckmj.cloudfront.net^ +||f8260adbf8558d6.com^ +khmertimeskh.com##.sow-slider-image +sammobile.com##.g-59 +||8eef59a5.live^$document,popup +dongao.com,zgsyz.com###ad +banki.ru##section[class^="HypothecOffers"] +gvm.com.tw###colorbox +@@||bcebos.com^$script,domain=biququ.info|jingwubook.com +###cookie-law-div +||cpm20.com^ +||utatane-plts.com/images/banner/utatane-plts_pr_$domain=m-pe.tv +trancepodcasts.com##.cp-overlay +ruangmoviez.my.id,layardrama21.*,mamtamusic.in##.gmr-ontop + div[id][class*=" "] +crio.do##.header-middle +pcgamestorrents.com,igg-games.com##article > .uk-margin-medium-top[property="text"] > a[aria-label] > img +rei.com#$##emailAcqModal { display: none !important; } +zeriun.cc#%#//scriptlet('abort-on-property-write', 'ckllk') +bestxiaomiproducts.com#$?#body style:contains(::selection) { remove: true; } +||ichimaip.net^ +haianw.com###comiis_haianw01 +||blogspot.com^$domain=blogtruyen.vn +api.savemedia.website###dlbutton > span[style="color:#fff"] + div[style] +||mayhemabjure.com^ +||navigablepiercing.com^ +||ptailadsol.net^$document +||orebuthehadsta.info^ +||profitredirect.com^ +||asg.pornvids.fr^ +||clownfish.onvard.de^ +||farteniuson.com^ +nn-com.co.jp###fixed_area +ticonsiglio.com#%#//scriptlet("set-constant", "jQuery.adblock", "false") +sputnik.kz,sputnik.kg##.window-push_sng +||amulaswhitish.com^ +winterszus.pl###text-8 +||ipredictive.com^ +###optanon-popup-bg +||jyewkb.icu^ +heroku.com###heroku-cookie-banner +||wuliao.juqingba.cn^ +4anime.gg,apkmody.io,bollyflix.how,bravoporn.com,dramacool.sr,gogoanime.co.in,gogoanime.run,harimanga.com,hdmovie2.rest,himovies.to,hurawatch.cc,instamod.co,leercapitulo.com,linksly.co,mangadna.com,manhwadesu.bio,messitv.net,miraculous.to,movies-watch.com.pk,moviesmod.zip,nkiri.com,prmovies.dog,putlockers.li,sockshare.ac,ssoap2day.to,sukidesuost.info,tamilyogi.bike,waploaded.com,watchomovies.net,y-2mate.com,yomovies.team,ytmp3.cc,yts-subs.com##iframe[style*="z-index: 2147483647"] +deluxemusic.tv#@#.article_ad +||wastecaleb.com^ +||775cf6f1ae.com^ +@@||beinsports.com/wp-content/themes/bein/dist/scripts/fuckadblock.js +@@||yimg.com/*/css/ +timesofindia.indiatimes.com##.fromaroundwebrhs +||coordinatedbedroom.com^ +||beepoven.com^ +||whistlingmoderate.com^ +||deline-sunction.com^$popup +##.google-advert-sidebar +||5dmail.net/js/ +||d1on4urq8lvsb1.cloudfront.net^ +cdnstream.top,gaytry.com##div[style="position:relative;"] ~ div[style*="position:fixed;inset:0px;"][style*="background:black;opacity"] +square-enix-games.com##div[class^="container_NotificationsBanner"] +||51offer.com/mod/public/talk/ +metbuat.az##div[style="margin-top: 10px; text-align: center"] +amd.by,promondo.de#$##modal-cookie { display: none !important; } +bestproducts.com##main > div[class^="css-"]:has(> div.ad-disclaimer) +/adutil.js$script +hindawi.com##.advWrapper +||liveany.com/images/8d8d.gif +expertology.ru#%#//scriptlet('abort-on-property-write', 'document.oncopy') +ero-anime.website,jav.guru##.banner-container +debka.com##.ads_single_side +###monsterAd +liba.com##.advert-r +fotopuzzle.de#@#.cookie-policy:not(body):not(html) +||catchtheclick.com^$popup +##a[href^="https://intenseaffiliates.com/redirect/"] +###cnil_bar +gousfbulls.com##.stickybar +spankbang.com##.video-list-with-ads > div.video-item[data-id="0"] +||loafsmash.com^ +||bedsideseller.com^ +||giftedthumb.com^ +teenpornvideo.fun##.full-ave +||dfcfw.com/EMFloatFrame/ +classicporn.club##.cpc_video_hors +retroradio.hu#%#//scriptlet('set-constant', 'ado.refresh', 'noopFunc') +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=watch.nba.com +faz.net#?#.ctn-PlaceholderContent:has(> .con-Html > .mm-adbox > .mm-adbox--container > a[href="https://nl.faz.net/#machtfrage"]) +market.yandex.*##div[id="/content/footer/subscription"] +octopusenergy.co.jp##.h-full > div.text-ice > div.mt-24 > section.fixed +||go.betobet.net^$document +fpinternational.com##.privacypolicies-com---nb-interstitial-overlay +||cricketireland.ie//images/sponsors/ +rankedboost.com##.InsertTitle-Updated +||abazelfan.com^ +||www.logunews.com^ +prostotech.com##.content a[href="https://play.google.com/store/apps/details?id=com.veboro.prostotech"] +||webaslan.com/_js/consent_check.php +leicarumors.com###text-467498326 +@@||brainly.com/app/scripts/wp-banners.js +||partner.googleadservices.com^$third-party +||ikouthaupi.com^ +bookriot.com##.random-content-pro-wrapper +skyscanner.ru##a[class^="InlineBrandBanner_link"][target="_blank"] +||mediative.com^ +||cottondivorcefootprint.com^ +avclub.com,splinter.com##.htlad-middle_rectangle +||vcsjbnzmgjs.com^ +nekopoi.care##.mobileadsbottom +historyfacts.com#$#body.freeze { overflow: auto !important; } +onmeda.de##.areas-newsletter +||uldmakefeagr.info^ +||peacockshudder.com^$popup +sweetshow.com,tubepleasure.com#%#//scriptlet('trusted-set-cookie', 'acjcl', '-9999999999') +nanoreview.net##div[id^="float-sb-"] +||stileproject.com/baexo.php +##.ad-link-left +||miuo.cloud^ +||ustreamy.co/uploads/banners/your-banner-here-middle.webp +castracoin.com#$#.textads.adsbox { display: block !important; } +duplichecker.com##.container div[class] [class*=" "]:has(> span > a > span.ads-pricing) +24ur.com##.site-adcontent +@@||online.tivo.com^$elemhide,jsinject +||sierrakermit.com^ +craftserve.pl#$#.modal-backdrop { display: none !important; } +radiopaedia.org##.ad-banner-desktop-row +firefoxchina.cn##.ff-banner +||qilanxiaozhu.*/data/attachment/portal/ +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=hausbau-forum.de +haoduoyun.cc#?#.ebookRight > div.tb_cell.mb10:has(> div.listcell > div.lc_head >h2:contains(课本赞助商)) +cumlouder.com##body > div.related-sites + div[class] +5imx.com###diy_mxad04 +||jamexistence.com^ +nba.com#%#//scriptlet('trusted-replace-xhr-response', '/#EXT-X-DATERANGE:ID="AD-BREAK:[\s\S]*?(\.googlevideo\/|fwmrm\.net)[\s\S]*?#EXT-X-DISCONTINUITY/', '', '/nbalpng\.akamaized\.net\/vod-.*\/.*\/hls-.*\/.*\.m3u8/') +||adiingsinspiringt.com^ +||dianping.com/hippo.gif? +||sex3.com/ee/s/s/js/ssu +happy-living.online#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +##.adLeaderboardAdContainer +||rertessesse.xyz^ +tutorialspoint.com##.bottomgooglead +||orabsola.com^ +semprot.com#%#//scriptlet("abort-current-inline-script", "String.fromCharCode", "ahli") +gaymovievids.com,verygayboys.com##.mobile-random +@@||chathispano.com/kiwi/$stealth=referrer +||yout.pw/button/$popup +||srmsii.xyz^ +typecho.wiki#@#.downloadad +perfectmatch.tw#@#.right_ad +jpvhub.com#%#//scriptlet('set-local-storage-item', 'POPUNDER_TIME', 'true') +epravda.com.ua,odessa.online##.post__social +lotto.pl###klauzula_informacyjna_nakladka +streamingsites.com##div[style="margin-bottom: 10px; display: flex;"] +/affiliates/banner$image +||iairuo.xyz^ +gadgetsnow.com##._1edxh +||30c692a17b.e218cdc27d.com^ +||fang99.com^*/advjs/ +pasco.com#$#body { overflow: visible!important; } +huaban.com,zcool.com.cn##.ad +intimate.ee##.nasa-cookie-notice-container +mylink.*,my1ink.*,myl1nk.*,myli3k.*#%#//scriptlet('prevent-setInterval', '/0x|dBodySize/') +||fhcdbufjnjcev.com^ +apkmody.com##.above-ad-unit +upworthy.com##.upworthy_infinte_scroll_outer_wrap +allmusic.com##.cookiePolicyBox +@@||vendorlist.consensu.org/vendorlist.json$domain=cmp.cookist.it +||cac6042d62.21d9d2f09e.com^ +mit-dem-rad-zur-arbeit.de#$#.modal-backdrop { display: none !important; } +||unlesscooler.com^ +anhangueraferramentas.com.br##.Whats-btn-Float +pixiv.net##.ciUaug > section:has(> div > div.gtm-toppage-premium-close) +||cuslsl.info^ +||d15gt9gwxw5wu0.cloudfront.net^ +ccav1.com##a[href*="meidebi."] +opentuition.com###custom_html-72 +##div[data-cy="cookie-banner"] +politeka.net##.popup-box.js-popup-box +||1001freedownloads.s3.amazonaws.com/vector/thumb/83198/green_download_button.png +###contentad-commercial-1 +037-hd.com##.container > div.row a[target="_blank"] > img +playok.com###pread +laleggepertutti.it##.__lxG__double +iporntoo.com##.adbox-inner +buoyant.io##.banner-aside +brisbanetimes.com.au##._3Y-wX +bookfi.net,fakeporn.tv##noindex a[rel="nofollow"] > img +@@||nvidia.com/*/drivers/results/$stealth=referrer +||ancalfulpige.co.in^$popup +||glassdoor.com/garnish/static/js/gd-user-hardsell-overlay.bundle.js +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=media.joj.sk +webcourses.us#?#.herald-sidebar div[id^="text-"] > h4 > span:contains(/^Advertisement$/):upward(2) +##.adsense_label +3gsc.com.cn##.tipsA +futbin.com##.center-ad-res +##.eh-cookieinfo +f1livegp.me#%#//scriptlet('prevent-fetch', 'googleadservices.com') +moeclo.ldblog.jp##iframe +jamaicaobserver.com##div[id^="advetisement_"] +@@||securepubads.g.doubleclick.net/tag/js/gpt.js$domain=maharashtratimes.com +helis.com###spcookiegdpr +##.ConnatixAd +jspoo.com##.apd +||schoonnonform.com^ +mixesdb.com###area-trending.clear +||e8e6fc48d4.c2dbb597b0.com^ +mail.ru##[class*="js-subscription"] +||crossroadsubquery.com^ +gundamlog.com###top_rss +fz139.ttk.ru##.banner_zone +||kelatv.com/ad/ +blissfuldomestication.com###custom_html-22 +###adv_Reload +playvids.com##.add_href_jsclick +.org/pops.js +@@||cas.criteo.com/delivery/ajs.php^$domain=lequipe.fr +||cyan92010.com^ +||manhuascan.com^*/popads.js +||saub27i3os.com^ +||wingselastic.com^ +darknessporn.com,familyporner.com,freepublicporn.com,pisshamster.com,punishworld.com,xanimu.com##div[id^="after-boxes"] +tuolawa.pl##.d-inline-block[data-ciid] +###rm-float3 +||windingnegotiation.com^ +windy.com###plugin-consent +||asp.brightmachine.uk^ +myptt.cc#%#//scriptlet("set-constant", "adsbygoogle.loaded", "true") +||popads.media^ +||eladove.com^ +fastestvpn.com##.hello_bar +||04cb2afab7.com^ +cm.k366.com##.rightpart td[height="260"] +online2pdf.com#?#.content_box_inner > div:has(> div + div[style^="min-height:"]) +||encaseauditorycolourful.com^ +1xbet.com##.download-application +work.ua##.b-install-app +||betklefkior.com^ +||hurlcranky.com^ +moeimg.net###pc_recommend_img_frame +||yardr.net^ +##.sponsored-container-bottom +turbobit.net##.brin-button +livemaster.ru##.smartbannerapp-shadow +||nxgx.com/php/*.php +###adsenseLeft +||pardaoboccia.shop^ +allthatsinteresting.com##.post-content > .pbh_inline +||amzbtuolwp.com^ +||theinnews.com/wp-content/plugins/progressads/ +gotvach.bg##div[class$="-content"] > .gidm +innpoland.pl,mamadu.pl,dadhero.pl,natemat.pl#%#//scriptlet("prevent-eval-if", "isAdblockActive") +##.adsNetwork +netdoktor.de###newsletter-abonnieren +##.slottaboola +||porntube.com/*/pop_ex.php +life-fitness.ru#$#.arcticmodal-container { display: none!important; } +therebel.media#$#iframe.embedly-embed { max-height: 400px!important; } +||luxuryfluencylength.com^ +||misjgy.xyz^ +israelnationalnews.com##.RightClm > #divin4 +myexception.cn##.m_a +wallpaperscraft.com##div[class^="app-new_"] +goodfon.com##div[class^="wallpapers__banner"] +bikester.be##.cookieHeader +x.com,twitter.com#?#div[style^="transform"]:has(div[data-testid="inlinePrompt"] > div > a[href="/i/premium_sign_up?referring_page=timeline_prompt"]) +||0474.5clo0xmbf.com^ +whittard.co.uk###cookie-policy-dialog +||5bf177fbac.938b97e5ba.com^ +shuud.mn##.main-banner-b +otonary.net###article-bot-rss +anon-v.com,camwhorescloud.com,dirtyship.com#%#//scriptlet("abort-current-inline-script", "onload", "onclick") +tv24.co.uk##.panorama +arstechnica.com##.ars-appeal-wrapper +||saraymedya.com/sw-cmpush.js +fortune.com##.bottom-recirc > .bottom-recirc[data-endpoint^="https://"][data-endpoint*="ads"] +tmail.gg#?#.img-box:has(> a[target="_blank"]:only-child) +||getmyads.com^$popup +||claring-loccelkin.com^$all +relink.to##div[class^="ad_right"] +kissmanga.link#?#.body-wrap > .c-top-sidebar:not(:has(.widget-manga-popular-slider)) +||academyenrage.com^ +gordonua.com,glavcom.ua##.block_feeds +scamwatcher.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +teb.com.tr#%#//scriptlet('remove-class', 'ckPp', 'body') +||avazutracking.net^ +jetbrains.com###social-footer +companyofheroes.com##div[id^="privacy-policy-"] +eleminist.com##.NewsLetter +economictimes.indiatimes.com##body > .hook-section.js-common-hook +||customapi.top^ +||detectedadvancevisiting.com^$popup +||crestfallenwall.com^ +ndtv.com##.hmpage_rhs +helix-pflanzen.de###cconsent-modal.ccm--visible +||trapskating.com^ +kingbet.net#%#(function(){z=self.EventTarget.prototype.addEventListener;self.EventTarget.prototype.addEventListener=function(a,b){if(!/cut|copy|paste/.test(a.toString()))return z.apply(this,arguments)}})(); +###self-ad +sougiya.biz##.sw-Footbn +denizbank.com##.kvk_popup_main +mozinet.me#?#.container_12 > div[style*="min-height: 250px;"]:has(> .adslot_1) +##.ad.desktop-970x250 +##.widget_long_ads_widget +kanalsportowy.pl#$#.app-cmp { display: none !important; } +###component-taboola-below-article-feed +||tq.optimalscreen1.online^ +livehd7.io###tme +cnbc.com##.body-main > div[class^="jsx-"][class$="watch-live"] +||qs.planxtyroaring.com^ +iseekgirls.com##.fv-cva-time +fuqqt.com,tubesafari.com,pornkai.com#%#//scriptlet("abort-on-property-read", "ljcode") +content.techgig.com##.tg-clients-banners +pons.com###pons-ad-footer +||floodingonion.com^ +||2006.5clo0xmbf.com^ +||touzia.xyz^ +hpe.com###hpe_privacy_banner_container +##.header-cookie-content +pokebattler.com##.curse-ad +sportskeeda.com###video-player-container-- +freecoursesite.com#%#//scriptlet("prevent-setTimeout", "()=>this.display()") +||indelicatecanvas.com^ +amarujala.com##.cookie_enable_popup +###piao_div_2[style*="width:140px;"] +/ojborn.so?$script,third-party +/getMultiAdsStrategy +||baidu.com/ndcore/interface/searchTop? +geeksultd.com##.theiaStickySidebar > #text-html-widget-4 +fotopolis.pl##.cyfrowepl +##.head-ads +||pconline.com.cn/js/ad_ +mathaeser.de#%#AG_onLoad(function(){setTimeout(function(){ if(typeof acceptSystemCookies == 'function'){ acceptSystemCookies();} var el = document.querySelector("#consent"); el&&el.setAttribute("style","display: none !important;") }, 1000)}); +patient.info##.ad.widget +||becode.xiao84.com^ +classy-online.jp,thelocal.at,thelocal.ch,thelocal.de,thelocal.dk,thelocal.es,thelocal.fr,thelocal.it,thelocal.no,thelocal.se#@#.ad_container +||downzoner.xyz^ +megacatstudios.com#$#div[class^="mfp-"] { display: none !important; } +auto-swiat.pl,przegladsportowy.onet.pl,komputerswiat.pl#%#//scriptlet("set-constant", "floatingPlayer.isFloatingEnabled", "false") +4c.cn##div[id^="top_ad"] +||lvwuuehkvitwn.com^ +online2pdf.com##td:has(> .c84a1a > div.c84a4a.adbox_container) +@@||platform.twitter.com/oct.js$domain=cravetv.ca +||jbbyyryezqavb.top^ +||dongfangtai.com/2018/ +linkshrink.net#$##skip {display: block!important;} +cgi.com#@#.eu-cookie-compliance-banner:not(body):not(html) +apglinks.net,zona-games.net#%#AG_onLoad(function(){setTimeout(function(){if("object"===typeof megabux&&"[object String]"===Object.prototype.toString.call(megabux.link)){try{new URL(megabux.link);var a=!0}catch(b){a=!1}if(a)try{window.location=megabux.link}catch(b){}}},500)}); +@@||sportbikerider.us^$generichide +||raphanysteers.com^ +#%#var AG_abortOnPropertyRead=function(a,b){var c=Math.random().toString(36).substr(2,8);AG_defineProperty(a,{beforeGet:function(){b&&console.warn("AdGuard aborted property read: "+a);throw new ReferenceError(c);}});var d=window.onerror;window.onerror=function(e){if("string"===typeof e&&-1!==e.indexOf(c))return b&&console.warn("AdGuard has caught window.onerror: "+a),!0;if(d instanceof Function)return d.apply(this,arguments)}}; +infoq.com##.event__container +###Layeraa2 +unboxholics.com,krebsonsecurity.com,scotsman.com,maketecheasier.com###top-banner +designoptimal.com#?#.widget-area > aside.sidebar-widget:has(> div.textwidget:only-child ins.adsbygoogle) +ikas.com#%#//scriptlet('trusted-set-cookie', 'ikas_consent', '%7B%22necessary%22%3Atrue%2C%22functional%22%3Atrue%2C%22performance%22%3Afalse%2C%22targeting%22%3Afalse%7D') +starfiles.co#%#//scriptlet('trusted-click-element', '[style*="flex"]#download_prompt button[onclick="downloadFileB()"]') +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws#$##app-container > #pushdown > .gb_Cc.gb_g { display: none!important; } +##.center_ad +||tektosfolic.com^ +||cameraprive.com^$third-party +||kologyrtyndwean.info^ +||proverbadmiraluphill.com^ +||d30tme16wdjle5.cloudfront.net^ +||blindnessselfemployedpremature.com^ +||xml-eu-v4.goclickz.net^ +exuce.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +gobearcats.com#?#body > div:not([class]):has(> div[class^="ss-"] > button > i.sf-bell) +||rooksreused.website^ +||tm.tradetracker.net/public/styles/ttCookieDirective.css +||ytsa.net^ +warhead.su##.notice--wide +hotscope.tv#%#//scriptlet('set-cookie', 'cookieConsent', '1') +allegro.pl##.main-wrapper > div[data-box-name^="Mobile app banner for"] +imgmaze.pw##center > iframe[style^="width:100%; height:400px;"] +||sexgangsters.com/sg-banners/ +||gaoqing.la/wp-content/uploads/*GOOVIS +###contentBoxad +wedding.pl#$#body .modal--cookies.show { display: none !important; } +bustle.com#?#aside[class] > div > div[class] > div:contains(newsletter):upward(1) +manga-miz.vy1.click###header_banner +||dedicatednetworks.com^$third-party +wired.com##.content-footer__outbrain-widget +@@||ifabrik.de/typo3conf/ext/ifab_cookie_consent/Resources/Public/JavaScript/Frontend/sc-cookie.min.js +##.ad_frame +@@||googletagservices.com/tag/js/gpt.js$domain=nbcsports.com +||colamirus.com^$third-party +||frugalrevenge.com^ +zentrum-der-gesundheit.de#?#main > div > div[class*="lime"]:has(> form > button[aria-label="Jetzt anmelden"]) +||oojrefcsammcmt.com^ +bakupost.az##.news-viewer-item-content > iframe +||trenhsasolc.com^ +interest.co.nz,metasrc.com###sidebar-wrapper +braun-hamburg.com#%#//scriptlet('set-cookie', 'cookie-consent', 'true') +||moonvids.online^ +||phumpauk.com^$popup +asda.com##.cms-modules:has([data-module*="Sponsored Products"]) +wz.de#%#AG_onLoad(function(){var a=new MutationObserver(function(){var b=document.querySelector('#consentAccept');b&&(a.disconnect(),b.click())});a.observe(document,{childList:!0,subtree:!0});setTimeout(function(){a.disconnect()},1E4)}); +||sdk.*.braze.com^$third-party +pornid.name##.sidebar-holder +apfelband.de#@##cookie-banner +###advert-block +||boastwelfare.com^ +||cleanresound.com^ +livecodestream.dev,writingexplained.org##.formkit-overlay +||beap-bc.yahoo.com^ +anywhere.pl#?#.elementor-widget-container > .elementor-text-editor > p:contains(/^Reklama$/) +jedlinazdroj.eu###bs_cookie_alert_container +###top_ads0 +laptopmag.com##.nlSubscribe +||glam.com/app/ +xozilla.xxx###scrollhere +||bornanguava.click^ +||ypwlctfk.xyz^ +gayvideo.me,gaypornlove.net,pvstreams.com,evolutionofbodybuilding.net,embetronicx.com,analyticsinsight.net,firesticktricks.com##.sgpb-popup-dialog-main-div-wrapper +@@||shasso.com/MyStoreOrders/$document +digitaltrends.com#@#.text_ad +||scentbracehardship.com^ +@@||monetize-static.viralize.tv/prebid.min.$domain=automoto.it|moto.it +ninjatrader.com##.outerWrap_728 +firefox.com.cn,firefoxchina.cn##.side-mod[track-key="side_tpth"] +||abcj.dooccn.com^ +||sexy-egirls.com/vast/*.xml$xmlhttprequest,redirect=nooptext +||dropbox.com/ccpa_iframe +||sheeroop.com^ +||discussedpliant.com^ +weranda.pl##.weranda-cn-info +msn.com##cs-native-ad-card +ah.nl#@#.f-ad +||injectreunionshorter.com^ +||pwinsider.com/advertisement/ +techbriefly.com#?#aside[id^="ai_widget-"]:has(> div > script[src*="invoke.js"]) +||352131387c.1f84e33459.com^ +@@||gigya.com$domain=dailystar.co.uk +@@||flyordie.com/games/online/iframeafg*.html +kinderraeume.com#$#body { overflow: auto !important; } +||coollyadmissibleclack.com^ +||partnercash.com^$third-party +world-tt.com##.column_pin.mobile_width100 +titantv.com##div[id$="_privacyUpdate"] +||opwofty.cn^ +msn.com##div[aria-label="from our partners"] +##.ad_xrail +econs.online##.cookies-notificator +##.bmj-cookie-noticebar-content +||pgezbuz.com^ +@@||frankenpost.de/www/libs/_responsive/*/js/_final/apps/cookiebar.js +###ad_main_leader +||static.contentsrch.com^ +||iask.ca/img/*.gif +ashitano.tonarinoyj.jp##.js-onetime-modal-dialog +freshersworld.com#$#body.modal-open { overflow: auto !important; padding-right: 0 !important; } +sofy.jp##.uc-mod-article-pop-up +||hyusnisu.top^ +||tigtag.com/images/pic1/ +||projectjav.com/scripts/projectjav_newpu.js +mega-image.ro#$#body > div#__next ~ div[class*=" "] { display: none !important; } +||hexun.com/inc/popbox.aspx +##.ads_after +###ad_region3 +||mallcom.com^$third-party +###vert-ads +bachelorstudies.com##.v-snack__wrapper +ksl.com#?#.queueHeader > h3:contains(NEWSLETTER) +boxthislap.org,unknowncheats.me##img[width="300px"] +||d3vw74hiy9xqtm.cloudfront.net^ +||auto.newsler.ru/assets/js/sideroll.js +shrtfly.net#%#//scriptlet("abort-on-property-read", "open") +##.ad-text-centered +||uuuutp.com^ +carsales.com.au##.cookieConsentRoot +##.bannerAd +||mybettermb.com^ +||nawpush.com^ +||bestcontentproject.top^ +coinedition.com##.tdm-inline-image-wrap +truyenqq.com##a[target="_blank"][href*="http"]:not([href*="truyenqq.com/"]) > img +bilibili.com##.rank-list-wrap + div:not([class]) +turkishexporter.com.tr##.fixed-cookie-policy +banki24.by##.cookies_consent +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=videonuz.ensonhaber.com +###footer_ads +pinguin.gr##.emgcookie +##.sideadverts +kontrast.dk#$#body { overflow: visible !important; } +imore.com##a[href^="https://www.amazon.com/b?"] +||fpgedsewst.com^ +||reton.free-porn-videos.org^ +||eplndhtrobl.com^ +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=apkmirror.com +asianetnews.com##.site-banner +||cdn.orjfun.com^ +thehackernews.com##body > section.rockstar:has(> center > a[href="https://thehackernews.uk/wiz-demo-d"]) +###ads_top2 +||union.china.com.cn^ +||penspade.com^ +petkeen.com##.br-10 +hxcpp13.com###player-bottom-ads +||asparaguspallorspoken.com^ +agenda-loto.net##.antiaddblock +@@||raiplaysound.it/common/assets/js/cookieBanner.js +lance.com.br##.flex-col > div.flex:has(> div[id^="captacao-e-mail"][role="main"]) +nisanyansozluk.com#%#//scriptlet('trusted-set-local-storage-item', 'toastTime', '1715621677653') +cam4.de.com###removeAdWrapper +whatismyipaddress.com##.fbx-player-wrapper +||familytreedna.com/img/affiliates/ +||ctvrtrya.xyz^ +##.ad-inline-block +##.sticky-ads-container +sud.ua##.b-news-text > p > strong > em +||lockerstagger.com^ +||secureleadsforever.com^ +||neoftheownouncillo.info^ +||hapticswasher.com^ +##.adv-holder +bitminer.biz#%#//scriptlet("abort-on-property-read", "adsBlocked") +teraz-srodowisko.pl###footer-newsletter-container +krankenhaus.de,aknw.de#$#.tx-ppw-cookie { display: none!important; } +||max-adserv.com^ +mail.ru#%#//scriptlet('set-constant', 'Object.prototype.hideTgbAd', '', '', 'asResolved') +getwordly.com##.new-popup-for-getWordly + div.white-overlay +daily2soft.com##center > a[href][target="blank"][rel="nofollow"] +||55.uyybde07w.com^ +###adsense_block +||facilitatevoluntarily.com^ +||bj.flungsnibble.com^ +radiobells.com###chrome_badge +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,important,domain=lowcygier.pl +snews.pro,ichi.pro###notify-adblock +||xxxxsx.com/sw.js +crash.net##button[onclick*="_sp_.gdpr.loadPrivacyManagerModal"] +||wcoaswaxkrt.com^ +##.googleadcontainer +||barnacle.viewsource.io^ +shop.rangers.co.uk#$#html { overflow: visible!important; } +beritasatu.com##.hz_main_post_content > #nextread_layout +##.waf-ad +||pushaffiliate.net^$document +||onevenadvnow.com^ +||keepingconcerned.com^ +||tracktds.live^$document +toptoon.com#$#.document_img { pointer-events: auto !important; } +caseking.de###ckLbOverlay +##.widget_adbox +@@||adservice.google.com/adsid/integrator.js$domain=logi.im +||stimtavy.net^ +||hellogithub.com/v1/advert/ +||40209f514e.com^ +zumub.com#%#//scriptlet('prevent-setTimeout', 'popup_create_subscribtion') +mangakakalot.com##.container-chapter-reader > div +guozhivip.com##.tit > a[style="color: #f80"] +||333bbb777bbb.com^ +investing.com##.mid-page-promo-btn-wrapper +redd.it##reddit-cookie-banner +/common/ad. +herzindagi.com##.d-ads +holodilnik.ru##.alert-compliance +||mcpuwpush.com^ +cartoq.com##.sticky_ad +mojagazetka.com##div[data-testid="AdsWrapper"] +||nudgeworry.com^ +||pnuhondppw.com^ +uwakich.com##.links-navy1 +/script/suv5.js|$script +||onclickpulse.com^ +||njtbiml.xyz^ +kitchenfunwithmy3sons.com##.cp-module-widget +||a.fimoa.xyz^ +||js.manga1001.win^ +4fun.tv##.screening-banner +weszlo.com##img[src*="://static.weszlo.com/cdn-cgi/image/quality="][src*=",format=auto/"][src*="/canalpluswidzew.jpg"] +##.js-cookie-bar +loopearplugs.jp#@#.pd-cookie-banner-window +||wastedclassmatemay.com^ +||welcomememory.pro^ +||magpie.phil.dev^ +uploadmall.com#@#.Adsense +||plex4rtb.com^ +||a6dc99d1a8.com^ +toychan.blog.jp,shouginews.blog.jp,hinomoto99.com,fireflyframer.blog.jp##.message-board-outer +softonic.com##.article-next +###companionad +toloka.yandex.com.tr,oculus.com,messenger.com##div[data-cookiebanner] +@@/mobileads.$domain=naviking.localking.com.tw +messagebird.com##div[data-framer-name="First Visit"] +##.header-advertise +||irousbisayan.com^ +||d2p3vqj5z5rdwv.cloudfront.net^ +||momoshop.com.tw/league/$domain=beephone.com.tw +@@||www.google.*/search?$domain=google.ae|google.at|google.be|google.bg|google.by|google.ca|google.ch|google.cl|google.co.id|google.co.il|google.co.in|google.co.jp|google.co.ke|google.co.kr|google.co.nz|google.co.th|google.co.uk|google.co.ve|google.co.za|google.com|google.com.ar|google.com.au|google.com.br|google.com.co|google.com.ec|google.com.eg|google.com.hk|google.com.mx|google.com.my|google.com.pe|google.com.ph|google.com.pk|google.com.py|google.com.sa|google.com.sg|google.com.tr|google.com.tw|google.com.ua|google.com.uy|google.com.vn|google.cz|google.de|google.dk|google.dz|google.ee|google.es|google.fi|google.fr|google.gr|google.hr|google.hu|google.ie|google.it|google.lt|google.lv|google.nl|google.no|google.pl|google.pt|google.ro|google.rs|google.ru|google.se|google.sk +||techrrival.com/wp-content/uploads/2020/11/Microsoft-365-Banner.jpg +mangarock.com##.row > .col-12 > div[style="margin-top:0;height:90px"] +||baidu.com/tequan/adpadmin_feed/ +||b8ms7gkwq7g.crocotube.com^ +steuertipps.de###stl-newsletter +heyreliable.com##.popup-newletter +###news_top_advert +||0a22eeac91.e46ece0a18.com^ +||miltlametta.com^ +||d1u1byonn4po0b.cloudfront.net^ +||alreadyballetrenting.com^$popup +||z8g0wlq5p0f6jg3k7eh2kyd58hjeskx0w9g5eu7q3m5hyq8l0xwofj3ap2nv.me^$third-party +||flyingfish.editorslab.de^ +||powerain.biz^ +tieba.baidu.com##.client_ad_topBanner +##.adv_120 +@@||distrowatch.com/images/cpxtu/dwbanner.png +||vk923.com/img/ +||cnjxol.com/images/20191031.png +linuxtopia.org##.sidelinks > .sidelinks +||42337624e3.36c33c925f.com^ +foxaholic.com,manhwatop.com,webtoon.xyz,manhuas.net,mangarocky.com##.body-wrap > .c-bottom-sidebar +twitter.com,x.com#?#h2[role="heading"]:-abp-contains(/Promoted|Gesponsert|Promocionado|Sponsorisé|Sponsorizzato|Promowane|Promovido|Реклама|Uitgelicht|Sponsorlu|Promotert|Promoveret|Sponsrad|Mainostettu|Sponzorováno|Promovat|Ajánlott|Προωθημένο|Dipromosikan|Được quảng bá|推廣|推广|推薦|推荐|プロモーション|프로모션|ประชาสมพนธ|परचरत|বজঞপত|تشہیر شدہ|مروج|تبلیغی|מקודם/) +||fedpress.ru/themes/fp/js/jquery.fancybox.pack.js +toy-people.com###notification_alert_container +||investigationsuperbprone.com^ +deccanchronicle.com###storyBody > div[class="col-sm-12 col-xs-12"][style="margin-top:10px; margin-bottom:10px;"] +###div_advt_right +playlumi.com#$#body { overflow: auto !important; padding-right: 0 !important; } +||get-express-vpn.online^$popup +||korrelate.net^ +##.blogAd +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xmlhttprequest,domain=n-egy.best +wunderground.com##ad-wx-top-300-small +erco.com#$#div[data-overlay-item="cookie-message"] { display: none !important; } +smythstoys.com#$#html > body:not(#style_important) { overflow: visible !important; } +||quyuancn.com^$third-party +||bemedichamchan.com^ +/dygg_ +||chinaz.com/zt/hanyi/images/sanji.jpg +||forgotingolstono.com^$popup +@@||renewcanceltv.com/porpoiseant/banger.js$script,~third-party +||truantsnarestrand.com^ +||console.greenspring.com^ +2baksa.ws,2baksa.net###container ~ table[width="100%"][align="center"] +aplicaciones.ai###elementor-popup-modal-1910 +auto.ria.com##.entry-promo-app +chapmanganato.com##.body-site > div.container-chapter-reader > div[style^="text-align: center; max-width:"] +bryk.pl#$##last-chance-modal { display: none !important; } +famille-kazokusou.com##div[class^="bnr_ft_"] +quizdeveloper.com#?#.secondary > .pull-left:has(> .pull-left > span[id^="ezoic-pub-ad-placeholder-"]) +||tanceteventu.com^ +skyscrapercity.com##img[src^="http://www.skyscrapercity.com/images/ads/"] +||bdcode.youke.com^ +@@||yimg.com/rq/darla/*/g-r-min.js$domain=yahoo.com +##.Text-Advertising +steamforged.com##.c-cookie-alert +xing.com##div[data-qa="jobs-inline-ad"] +||traversefloral.com^ +spliiit.com##.chat-in-live +gamechannel.hu##.entry > .cikk_zona +lenta.ru##.b-header__russia +###ad-box-rectangle +||wacowla.com/wp-content/plugins/popover/js/ +||grova.xyz^ +myfin.by##.article__tg-container +mlbtraderumors.com###tr-rotate-ads +||techourtoapingu.com^ +rts.ch#%#//scriptlet('trusted-click-element', '#usercentrics-root >>> button[data-testid="uc-deny-all-button"]') +||yfzpxnb.xyz^ +maron.cz##.cc-banner-wrap +||eastmoney.com/analysis/ +||zupulu.com/scripts/app/app.js +@@||openspeedtest.com/adsbygoogle.js +##bottomadblock +tarisio.com#$#body.is-gdpr-active { overflow: auto !important; position: static !important; } +@@||consent.trustarc.com/iab/$domain=fortune.com +114la.com###dlAD1 +arkadium.com#?#.fresnel-container:has(> div[style] > div[class*="AdContainer"]) +##.pt-ad--container +||awwnaqax.com^ +blog.insurancegold.in,blog.cryptowidgets.net,blog.carstopia.net,blog.carstopia.net,blog.coinsvalue.net,blog.cookinguide.net,blog.freeoseocheck.com,blog.makeupguide.net##.fa-xmark +pcgamer.com##.leaderboardAdPresent +gimletmedia.com##.persistent-banner[data-banner-name="cookie"] +cloudb.me##a[href="https://cloudb.me/load.php"] +gizmodo.jp#?#.p-timeline-cardItem > article > div > ul > li.p-timeline-cardAssistSponsored:upward(4) +pembekekik.com#@#.vertical-ads +myprotein.jp##.emailReengagement +petco.com##div[data-widget-type="citrus-banner"] +kbb.com###contentFor_kbbAdsSimplifiedNativeAd +gothic-gifts.com###CCM_popup +rp5.ru,rp5.ua,rp5.by,rp5.kz,rp5.co.uk,rp5.md,~m.rp5.ru,~m.rp5.by,~m.rp5.kz,~m.rp5.co.uk,~m.rp5.md#%#//scriptlet("set-constant", "Object.prototype.cABNoCheck", "undefined") +instawank.com###snackbar +news.net##.banner-wr +@@||fastcdn.stream/*.js$domain=wstream.video +tatildekirala.com##div[class^="css-"] > button[class^="css-"] + div[class^="css-"] +||clothesgrimily.com^ +||gloriacheeseattacks.com^ +||uploadcloud.pro/js/Aab-js- +gamer.com.tw,pili.com.tw#@#.text_ads +||cmp.lemonde.fr/js/lemonde.min.js$domain=journal.lemonde.fr +pastemytxt.com,mywatchseries.cyou,poedb.tw,web1s.info,covemarkets.com,uploadboy.com,fmovies.to,bflix.bz,123movie.pw,9anime.*##.text-center > a[target="_blank"] > img +m.alibaba.com###corner-download-app-wrap +||ogvkyxx.com^ +bgr.in##.essel_logo_div +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=gauchazh.clicrbs.com.br +||eenbies.com^ +###adright2 +flyordie.com##div[style^="position: absolute; width: 180px; height: 600px;"] +redirect.dafontvn.com#%#//scriptlet("adjust-setInterval", "#countdown", "", "0.02") +||hu.searswalers.com^ +kiplinger.com##.dianomi_gallery_wrapper +datafilehost.com##body > div[style^="padding-top: 2px;position: absolute; top:1px; width: 100%; background-color: #FFFFFF;"] +hao.360.cn###left-ria-fixed +||get-express-vpns.com^$popup +||xozilla.com/sw.js +||supremeoutcome.com^$popup +||cdn-static3.com/cdn/push.min.js +freeimages.com##div[class^="istock-block"] +nejlevnejsi-barvy-laky.cz###Box1002 +shop.rangers.co.uk#$#body { overflow: visible!important; } +||click-eu-v4.exclkplat.com^ +portail.free.fr##.inscriptionmobilelien +ontools.net,writedroid.eu.org,doibihar.org,freemagazines.top,forexlap.com,torkitty.com,torrentkitty.se,torrentkitty.vip,torrentkitty.tv###fixedbanner +gamespot.com#@##onetrust-consent-sdk +xfree.com##.aside-banner +/im_jerky?vlmi=$domain=redgifs.com +sourceforge.net##.projects > li.nel[data-cid] +learn-cpp.org##[href^="http://www.spoj.com/"] +||laleggepertutti.it/*/pwaconsent.js +||overcomecheck.com^ +nike.com.br##div[data-testid="banner-cookies-terms"] +gitpod.io##div[data-analytics*="cookie"] +aznews.az##.fixed_iframe +@@/images/ads/advert.gif$domain=im9.eu +@@||google-analytics.com/analytics.js$domain=orbitum.com +tnaflix.com##.improveADS +##.ad--scroll +@@||cdn.reverso.net/*/static/js/advertising.js^ +||2022welcome.com^ +pagina12.com.ar###stickyBarCloseBtnContainer +my0511.com##table[bordercolor="#C0C0C0"][border="1"] +||sandmakingsilver.info^ +||864feb57ruary.com^ +brainly.com,brainly.com.br,brainly.co.id,brainly.in,brainly.ph,brainly.pl,brainly.lat,brainly.in,brainly.ro,eodev.com,znanija.com##.brn-ads-box +:8888/zhu/pc_ +uploadbaz.me#%#//scriptlet("adjust-setTimeout", "seconds", "", "0.02") +msn.com##div[data-aop="stripe.deals_stripe"] +||pseeckotees.com^ +||cdn.o333o.com/vast-im.js +||google.com/pagead/conversion_async.js +pornwhite.com#%#window.open = function() {}; +gaosan.com##.float-qrcode +###acceptCookieMeg +kla.tv##.cookie_warn_box +##.ad-adSense +||poco.cn/v1_1/rank/get_floating_layer_ad +fiveguys.co.uk#@##cookieModal +wccftech.com##.bg-square-mobile +hikakaku.com#%#//scriptlet('prevent-addEventListener', 'popstate', 'addEventProcessor') +@@||onetrust.com/consent/*/otSDKStub.js$domain=uw.co.uk +e-pity.pl##.AdvertBanner +||static.javhd.com/sb/720_100_javhd.jpg +theatlantic.com###nonMeteredNudge +||6f472074c3.6a0d38e347.com^ +bayequest.com#?#.elementor-section:-abp-contains(Advertisement) +avtb01.com##.ads-player +redv.co##div[data-reactroot] > div > article + footer + div +||sndkorea.co.kr^$third-party +||cdoqjxlnegnhm.com^ +||cams.enjoy.be^ +arcadewank.com##a[href^="http://hits.epochstats.com/hits.php"] +||plntxgh.com^ +@@||cookies.onetrust.mgr.consensu.org^$domain=tvn24.pl +l2db.info##body > a[onclick^="captureOutboundLink"][rel="noopener"] +riumar-family-resort.de#$#.bottom-banner-overlay { display: none !important; } +||thefappeningcelebs.com/icloud9.html +eufh.de,hfh-fernstudium.de,cinestar.de##.mmcm-container +vmg.pl###_rodo +||tzaho.com^ +rumble.com##.a-break +##.adsbyvli +||x81zw.co/js/dsnmd. +||pooptoom.net^ +karelia.news,zapravdu.org,myecotest.com##.pp-cookies-notice +tiktokio.com#?#section:has(> div.section-content div[id^="image_"] > a[href^="https://play.google.com/"]) +2345.com##.act-market +##a[href^="http"][onclick^="setCookie"][style^="width:100%;height:100"] +||nsfwzone.xyz/js/jquery/*/jquery-*.min.js?v= +||a.hefim.site^ +||highercldfrev.com^$popup +||rotarb.bid^ +circleid.com##.sponsoredTopicCard +||tubeoffline.com/vpnimg/ +honeysanime.com#$##header-line-2 { margin-top: -60px !important; } +||designtaxi.com/js/dt-seo.js +forum.xda-developers.com#$#body.twig-body > header[role="banner"] { top: 0!important; } +acfun.cn###appguideBox +rynekzdrowia.pl##.abc +||qads.io^ +@@||xbox-store-checker.com/assets/js/*ads*.js +##.sgAd +@@||traffic.omny.fm/*/clips/$stealth,domain=iheart.com +||huiji-fs.oss-cn-qingdao.aliyuncs.com/huijiad/ +##.tower_ad +||ctm-media.com^ +playallvideos.com,pron.co##.rmedia +/about:blank.*/$popup,domain=bitporno.com|iceporn.com|katestube.com|videowood.tv|xtapes.to +||azjmp.com^ +||centent.slreamplay.cc^$all +dcclothesline.com###right-rail-signup +###midadspace +zhihu.com##.MobileAppHeader-downloadLink +jobsncareers.org,weraveyou.com,vermangasporno.com##a[href^="https://bit.ly"] +thecollector.com##div[class^="collector-adthrive-"] +animeland.tv#?#.sidebar_right li:has(> center > h3:contains(/Animeland( Premium)? Ads/)) +||gutobtdagruw.com^ +hypeauditor.com##footer > .popup +||7m.com.cn/b1/live_b +tokyo-calendar.jp#?#.sub-contents > div.sidebar-panel:has(> div > img[alt="東京カレンダーアプリ"]) + div.app-dl-buttons +_eu_cookie_ +u.pcloud.link##.hidden-under.appear +jumpmatome2ch.biz##.rss03 +gcorelabs.com##.confirmed_cookie +||scrollservice.com^ +||ac35e1ff43.com^ +10news.com#?#.ob-widget-items-container > li.ob-dynamic-rec-container:has(> a[onmousedown^="this.href='https://paid.outbrain.com/network/redir?"][target="_blank"]) +m.facebook.com#$#.touch a[href*="story.php"] { position: relative !important; } +adsatoshi.com,tech.dutchycorp.space,gelbooru.com,flagandcross.com#$#.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links { display: block !important; } +||cctv.com/Library/a2.js +##.ad-slot__content +||echopixelwave.net^ +gaystream.pw##.a-block +||xxxbannerswap.com^ +||ptewarin.net^ +||pachegaimax.net^ +||ogsdgcgtf.com^ +mmacore.tv###tlbrd +||arizonapuzzle.com^ +||qkjjuhs.com^ +||traneranium.com^$third-party +||hotlinkie.com^*index.php$third-party +ichinuke.com##.w-beforeRelated +25xz.com##div[style*="1002px;"] +mma-core.com###crec +||ziprecruiter.com/jobs-widget/$third-party +saavn.com#%#!function(a,b){b=new MutationObserver(function(){a.classList.contains('idle')&&a.classList.remove('idle')}),b.observe(a,{attributes:!0,attributeFilter:['class']})}(document.documentElement); +||somsoargous.net^ +eprice.com.tw##.ad-970x250-g +securityweek.com###block-block-3 +mypillow.com#@#[href^="http://mypillow.com/"] > img +||ptongouh.net^$popup +voicy.jp#$#html { position: static !important; overflow: auto !important; } +thesport.pl##.home-info-baner-newsletter +||jsyefc.com^ +jizzbunker.com##.panel.partner-site +ipalibrary.me#$#ins.adsbygoogle[data-ad-slot] { display: block !important; height: 1px !important; } +jasonsavard.com,rawstory.com,zik.ua###mc_embed_signup_scroll +||cluster.awmserve.com/incstage/license.*.js$third-party +||cpbl-elta.cdn.hinet.net/web/images/ad_ +||b2fda60d3a.28e096686b.com^ +###ad_from_bottom +motorauthority.com##.sq-block +reverbnation.com###download_song_step1_modal +chicago.suntimes.com##.Page-above +mysanantonio.com#$#header > nav#siteNav[class^="site-nav menu-slide fixed"] { top: 0!important; } +||lrepacks.net/templates/biz-ideas/new_year_motnyay/script.js +qwant.com###root > div.home__snippet__extension +||17dm.com/s/common/js/*AD.js +||guxedsuba.com^ +myfreesoft.ru#?##rightcolumn > div.widget:has(> div[class] form[method="post"] > button[type="submit"]) +||ezblockerdownload.com^$document +cancan.ro#$#body > .qc-cmp-showing { display:none!important; } +||sponsors.weedweek.com^ +sm.cn##.ec-goods-list +##.topadbox +||cdn2.picyield.com^ +uaclips.com,kzclip.com,ru-clip.com,ruclip.com###morev +||tb.53kf.com/code/$script +pornhub.com,pornhub.org,pornhub.net###abAlert +bdsmstreak.com##.onvideo +-460x68. +||auesk.cfd^ +centrumriviera.pl##.cookie-law-bar +||sbvtrht.com^ +||sailfish.youracademycommunity.com^ +ratioform.it##.master_layout_data_privacy_wrapper_it +it165.net##.advyello +techpp.com###brxe-wtwlmm +@@||seo-fast.ru/js/adv.js +@@||c.speedtest.net/flash/speedtest-*.swf +economist.com##.inhouse__subscription-ribbon +||periodicprodigal.com^ +warscrap.io##.main-menu-overlay > .main-menu-bottom:empty +||d1rsh847opos9y.cloudfront.net^ +||medicalcandid.com^ +global.app.mi.com##div[class^="cookie-banner"] +||itxueyuan.com/advPicture/ +||adtarget.market^$third-party +new.lewd.ninja##.stargate +blog.livedoor.jp#$##blog-body-outer > #left-t { margin-top: 0 !important; } +hosteurope.de#$?#body { overflow: auto !important; } +##.standard-ad-container +||frontcognizance.com^ +electrical-engineering-portal.com##.reklama-text +||smartlymaybe.com^ +||mgcash.com^ +qq.com##[dt-params*="ad_creative_"] +handelsangebote.de,marktjagd.de##.wrapper-label-newsletter +||enoneahbut.org^ +/banner-ads-rotator/*$script,stylesheet +swatchseries.to#?#.block-left-home > .block-left-home-inside[style]:has(>a[href="/westworld-watch.html"][rel="nofollow"] > img) +savefrom.net##.sf-apk-promo +##.ad-program-list +##.headadcontainer +baidu.com##.search-aside-adWrap +||gwbnsh.net.cn/hd/unicom/ad.html +||avn.com/server/ +purposegames.com###ccsn +w3schools.com###lowerfeatureshowcaselink +||benoopto.com^ +everydayporn.co,bussyhunter.com##div[style^="position: absolute; inset: 0px;"] +tsa-algerie.com##.template-footer__cookies +fosspost.org,portalvirtualreality.ru,pingvin.pro,bonobono.com,curbsideclassic.com,wpgutenberg.top,3dmodelshare.org,turkishfoodchef.com,itechua.com,blowxtube.com,orhanbhr.com,testosterontr.com,criptomonedaseico.com,downloadsachmienphi.com,fimico.de,manhuaplus.com,canyoublockit.com,freeallcourse.com,congressoemfoco.uol.com.br,dogalvadi.com,kompukter.ru,paragezegeni.com,gatevidyalay.com,corgit.xyz,freefincal.com,dsogaming.com,bordoklavyeli.net,newonce.net,gpcoder.com,androidexplained.com,borodavsem.ru,czechavfree.com,karaokes.com.ar,kulturalnemedia.pl,magazeta.com,mur.tv,o365info.com,proswift.ru,sovetolog.com,tehnobzor.ru,thelongdark.ru,thewindowsclub.thewindowsclubco.netdna-cdn.com,xiaomitech.net#%#//scriptlet("abort-on-property-read", "anOptions") +finanztip.de##.nl-box-intext +cordis.europa.eu##app-cookies-consent +divoch.cz##iframe[src^="https://affil.invia.cz/direct/core/tool_dynamic-banner/"] +@@/ad_banner/*$domain=donnaart.com.tw +m.kooora.com#$#html { margin-top: 0 !important; } +cablemonkey.co.uk##.cookie_popup_overlay +xozilla.xxx##div[style="height: 250px !important; overflow: hidden;"] +honor.ru##.cookie_notices +||causoque.xyz^ +||waitedprowess.com^ +setn.com##.e_ad +happy-porn.com##div[class^="on-player-wrap"] +canyoublockit.com##a[href="ad.com"] +owlcation.com,mtonews.com##.m-rev-content +joyn.at#%#//scriptlet('trusted-set-local-storage-item', 'uc_settings', '{"controllerId":"1","id":"1","language":"de","version":"1"}') +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="20%"] > a[target="_blank"] +##.adinner +hackerbot.net###madiv3 +jawcloud.co##.loloba +indiamart.com#?##Below_Related_Section > iframe[src^="https://www.google.com/afs/ads"]:upward(1) +||herdintwillelitt.com^ +bmel.de#$#body > div[class^="mfp-"] { display: none !important; } +bottisoku.blog.2nt.com##div[style^="width:1200px;height:280px"] +@@||journalistenwatch.com/wp-content/plugins/advanced-ads/public/assets/js/advanced.js +xxxporn.me##iframe[src^="/myvids/rek/"] +###video-side-adv +|http://$script,third-party,xmlhttprequest,domain=bc.vc +||4956.4puuqeh41.com^ +diemer.de#?#section[role="dialog"]:has(> aside[aria-label$="zum Newsletter"]) +redocn.com###yc_adv_1_2 +theurbanlist.com##.LeaderboardAd +||c4tracking01.com^$popup +||rvbiocn.cn^ +||dansheshi.com^ +@@||dlkoo.com^$generichide +@@||googleads.g.doubleclick.net/pagead/images/abg$domain=lolalytics.com +lolchess.gg##.ap_top +farminguk.com#$#.advert-word { position: absolute !important; left: -3000px !important; } +/ben/mgnat.html$domain=powvideo.net|pomvideo.cc|pouvideo.cc|steampiay.cc +###js-infos-cookies +||ungatedsynch.com^ +cryptofans.news,claimcrypto.cc,ad-doge.com,cryptomininggame.com,club,getdogecoins.com,dutchycorp.space,cointalk.club,100count.net,faucetcrypto.com,freebitcoin.win##ins[class^="bmadblock-"] +##.wrapper--cookies-disclaimer +flickr.com##div[class^="view sub-photo-right-view"] > div.photo-charm-exif-scrappy-view + div +.cyou/*_*_u*js?$script,third-party +||hentaicdn.com/cdn/v2.assets/js/exc +community.simtropolis.com#%#//scriptlet('trusted-set-cookie', 'ips4_bacalltoactionpopup', '$now$') +||jinxpn.xyz^ +###blkAds5 +##.index_ad_a5 +@@||youporn.com/embed/$subdocument +||earinglestpeoples.info^ +||img11.biyan8.com^ +baidu.com##.opening-season-dialog +fatherly.com##.in-article-ad +relic.com##.GdprCookieConsent-ConsentContainerOverlay +morrisons.com##.fops-item--externalPlaceholder +vg247.com#%#AG_onLoad(function() { window.yafaIt = function() {}; }); +slidesgo.com##div[id^="article_ads"] +hdfcbank.com#@#.adLink +businessnovinite.bg,btvplus.bg,ladyzone.bg,btvsport.bg,btvnovinite.bg#@#.cc_banner +||ptoudsid.com^ +||rzyosrlajku.com^ +||sailsuit.com^ +||qatttuluhog.com^ +json.cn##.tip[target="_blank"] +theregister.com##.ad-falcon +||xxqmtod.icu^ +flyblog.cc##.pixnavbar__top-bar__main-sites +##.displayAds +videogamer.com###block-aside-ad-unit +imgadult.com#%#(function(){Object.defineProperty(window, 'ExoLoader', { get: function() { return; } }); var c=document.addEventListener;document.addEventListener=function(a,b,d,e){"getexoloader"!=a&&-1==b.toString().indexOf('loader')&&c(a,b,d,e)}.bind(document);})(); +chaos2ch.com#?#.article-title-outer-h:contains(ヘッドライン) +tophentaicomics.com##.sidebar > div.widget_text.sidebar-wrapper +||arterybasin.com^ +timesascent.com#?#.animate-pulse > div[class^="w-[3"].bg-gray-100:has(> svg:only-child) +h178.com###banner div.panel:has(> div.panel-body > div.text-center > a[href="https://j-baseball.club/"]) +@@||api.adinplay.com/libs/aiptag/assets/adsbygoogle.js +###bottomAd300 +##.advertising-middle-i +||godpvqnszo.com^ +ask4movie.co#%#//scriptlet("json-prune", "rot_url pop_type") +link-to.net#%#AG_onLoad(function(){if(window.location.href.match(/https?:\/\/link-to\.net\/\d+\//)){var a=document.body.textContent.match(/window\.location\.href = \("([\s\S]*?)"\);/);if(a&&a[1])location=a[1];}}); +###sideBarAd +meczyki.pl##.page-wrapper > .container > .box > a[target="_blank"] > img +||shrtfly.com^$third-party +||differpurifymustard.com^ +###dfp-middle1 +||rtb-apac-v4.voisetech.com^ +my.hidrive.com#$#.consent-overlay { display: none !important; } +||dsp-eu.exe.bid^$third-party +4kporn.xxx,babesandstars.com,cam-video.xxx,crazyporn.xxx,cumlouder.com,gosexy.mobi,hoes.tube,hog.tv,javcl.com,javseen.tv,love4porn.com,marawaresearch.com,mobilepornmovies.com,mypornstarbook.net,pichunter.com,thisav.com##.ads +ranker.com##.nativeAdSlot_nativeAdContainer__NzSO_ +@@||securepubads.g.doubleclick.net/tag/js/gpt.js$domain=mope.io +zlibrary.to##.fixed-ads-container +bowenislandundercurrent.com,coastreporter.net,delta-optimist.com,richmond-news.com,squamishchief.com,tricitynews.com##.ga-ext +||tignuget.net^ +||quickielatepolitician.com^ +.com/logo/logo.js +##.samBannerUnit +igg-games.com##.uk-margin-medium-top > div[style^="display:"]:has(> a[href^="/offernf?offer="]) +||369bgrec.top^ +issuu.com##[aria-label="Advert"] +||kmkthnyd.com^ +eldiario.es##.adblock-banner +@@||yunjiema.top/static/ad/ads.js$domain=yunjiema.top +18board.com,18board.net,18p2p.com,18p2p.tv##.altbg2 > td[width="50%"] +||xitongku.cc^ +||2481april2024.com^ +chbeyond.cn#?#a:-abp-has(> .xcybk-adfg) +@@||adm.fwmrm.net^$domain=revision3.com +###GlobalCookieBanner +||nickeleavesdropping.com^ +###banner_cnil +||grazingmarrywomanhood.com^$popup +24fm.ps,datingscammer.info,kayifamily.net,news365.co.za,thedefensepost.com,xboxera.com##.stream-item +jpvhub.com##iframe[src^="https://syndication.realsrv.com/"] +||thursdayoceanexasperation.com^ +||swift.avenue.so^ +dropout.tv##.gdpr-cookies-banner__announcement-wrapper +metro.hu#@#.cookie-disclaimer:not(body) +winboard.org#$#.p-pageWrapper { filter: none!important; } +||r.99waiyu.com^ +||sidesukbeing.org^ +pictoa.com###d-zone-1 +##.small-ads +||lebinaphy.com^ +||effectivecpmcontent.com^ +||sigheemibod.xyz^ +||5278.cc/js/check.js +/xupload.js$domain=noxx.to +||inflameemanent.cam^ +@@||id.zaloapp.com^$stealth +||pundr.manrec.cc^ +newyx.net,yxbao.com##.gs +rallye-magazin.de###inj_nl_form +india.com###menu-secondary > li.housing +@@||odnoklassniki.ru/get$stealth +gameforge.com##.outer-overlay-container +tribune.net.ph###sw-wrapper +||skimwhiskersmakeup.com^ +metager.org##a[href^="https://metager.org"][href*="/partner/r?"] +||anime-suba.com/Anime-Suba/Admin/imgAnadvertisement/ +blog.logrocket.com##.code-block-49 +||nangelsaidthe.info^ +##.bigsponsor +###ads-footer +##.ads728_90 +||ad.apl302.me^ +nationthailand.com##.light-box-ads +||duba.com/baidu +##.topLeaderboardAd +bequiet.com,my5.tv,hearthhead.com,kabeleins.de,prosieben.de,prosiebenmaxx.de,ran.de,sat1.de,sixx.de,the-voice-of-germany.de##.cookie-banner +@@||player.vimeo.com/video^$stealth +||2c84016452.4d658ab856.com^ +.ru/proxy_*.php?init_form=$script +||impactify.media^ +tiktok.com##tiktok-cookie-banner +eba.gov.tr##.go-app +||monumentcountless.com^ +||graveljav128.fun^ +globalsecurity.org#$##interContainer { display: none !important; } +###inlineAd +||creative.sphdigital.com^ +##.print-adslot +||dwithmefeyauknal.info^ +nagarlyricshub.blogspot.com###antiAdBlock +shrinkme.*#%#//scriptlet('prevent-window-open') +||jsontdsexit.com^ +2345.com##.top_news +||phoawhap.net^ +||11.uyybde07w.com^ +wdwnt.com##.wp-block-image a[href="https://vacationeer.com"] +shironeko-guild.blog.jp##.js-modal +@@||animeflv.com/efire.php^ +||asdasdad.net^ +||vidzi.tv/dl.png +||mv.aomg5bzv7.com^ +||swelltomatoesguess.com^ +6park.com##a[href*="geekbuying."] +||assets.zendesk.com/embeddable_framework/main.js$domain=zarplata.ru +popcorners.com#$#html { overflow: visible!important; } +pantagraph.com###tncms-region-article_side_middle +ask.lecturenotes.in##nav[aria-label*="mailbox"] + div[class] +bilibili.com##.container > div.feed-card:not(:has(> div > *)) +||tabloidwept.com^ +###adv_IntropageOvl +beermoneyforum.com##.p-body > div.p-body-inner ~a[class="samItem samBackgroundItem"][rel="nofollow"] +rawstory.com#@#.full-ad +||xpics.me/everyone. +sub2unlock.com,linkgenie.me#%#AG_onLoad(function(){const a=document.querySelector("a.getlink");if(a)try{const a=document.querySelectorAll("script");let b;[...a].some(a=>{if(a.innerText.includes("a[id=\"link\"]"))return b=a.innerText.match(/\('a\[id="link"\]'\)\.attr\('href', '([\s\S]*?)'\)/)[1],!0}),b&&b.startsWith("http")&&location.assign(b)}catch(a){}}); +##div[align="center"] > a[href^="/url/"] > img[src*=".alicdn.com"] +||coogumak.com^ +||mingonnigh.com^ +@@||netportal.hdfcbank.com^$stealth=referrer +51zxw.net###video div[class^="adpauseclose"] +||sp.desmoinesregister.com^ +||hfptbf.cn^ +adbeat.com#$#.modal-backdrop { display: none !important; } +gaishishukatsu.com###noLoginFixedBanner +##.postad +/cookie_consent/* +baseball-reference.com##.adblock > .adblock.primis +hostinger.ru#$#.popup-modal { display: none!important; } +||sketchflutter.com^ +||soloboys.tv/media/meninos/*.xml +blog.trakt.tv##body > div[id="root"] ~ script +div:not([class]):not([id]) > div[class*=" "] +###LayoutBottomAdBox +macheforum.com,cybertruckownersclub.com,tdpri.com,xbunker.nu,broncosportforum.com,jeepgladiatorforum.com,titsintops.com,nudostar.com,satelliteguys.us,forums.macrumors.com,androidrepublic.org##.samCodeUnit +###divCookie +transip.nl#$#html { overflow: visible !important; } +open24.ee#@#.cookie_bar +thepaper.cn##div[class^="index_commonsider_"] > div > div[class^="scale_connent__"] +origo.hu##.os-content > .os-spar-holder +##.house-ad-unit +||indexhu.adocean.pl/*ad.json$xmlhttprequest,redirect=nooptext,domain=embed.indavideo.hu +mp3juice.info#%#//scriptlet("prevent-window-open") +@@||westerndigital-privacy.my.onetrust.com^$domain=westerndigital.com +moemax.de#%#//scriptlet('prevent-addEventListener', 'jentis.consent.engine.show-bar', 'jentis.consent') +wallstreet-online.de#$#.modal-open { overflow: visible!important; } +||bullyingmusetransaction.com^ +||ocdn.eu/dziennik/infor/adquestoConfig/adquestoConfig_v*.js +diets.ru##.left-newsletter +||republer.com^$third-party +hanime1.me##div[style*="width: 310px; height: 282px;"] +##.alice-root-header-ads__ad--top +quiksilver.co.uk#@##cookie-popup +||zaxid.net/assets/lib/pushSubscription.js +###team_ad +||sloppyegotistical.com^ +||googie-anaiytics.com^ +||6b856ee58e.com^ +traktorpool.pl,baupool.com.pl##.billboard +4frontcarsales.co.uk###cookiepopup-horiz +##.block-advertising +/pages/ads +novelroom.net#%#//scriptlet("abort-current-inline-script", "Node.prototype.insertBefore", ".parentNode.insertBefore(") +###ad-north +ebok.vectra.pl##.login__custom-bg +breitbart.com##.amp-embed-taboola +sportpari.by##.cms-modules > div.page__item:has(a[href="https://sportpari.by/application/android"]) +@@/script/advert.js$domain=sunbtc.space|weatherx.co.in +advancedrenamer.com,androidrepublic.org,anonymousemail.me,apkmirror.com,cdromance.com,demos.krajee.com,epicbundle.com,korail.pe.kr,nextbigtrade.com,phcorner.net,pixiz.com,skmedix.pl,spoilertv.com,teemo.gg,willyoupressthebutton.com#@#ins.adsbygoogle[data-ad-slot] +metv.com##.privacy-banner-wrapper +@@||video*.xhcdn.com/key=$stealth +||trk3000.com^$popup +||propadsviews.com^$popup +||szmty.cn^ +||ofeetles.pro^$popup +dzyannica.by##.field-name-field-kanal +mydrivers.com###a_showhotnews_list_dia +||track.kinetiksoft.com^$popup +||5e23859408.7868d5c036.com^ +||lanopoon.net^ +||picfox.org/fro*.js| +antiwar.com##.sidebar > section[id^="text-"]:has(> div.textwidget > p.small > a[href="https://www.antiwar.com/advertise/"]) +||oranegfodnd.com^ +||decidedlyenjoyableannihilation.com^ +||tuna.ajaymantri.com^ +||accordinglyair.com^ +shiftdelete.net##body > efilli-layout-dynamic +davidwalsh.name##[href="https://requestmetrics.com/"] +sportdeutschland.tv#%#//scriptlet('set-constant', '__tcfapi', 'noopFunc') +||oungimuk.net^ +warnung.bund.de##.apphint +||hizliresimyukle.com/images/2018/02/13/banner-1.jpg +||szreismz.world^ +foxnxx.com##div[style^="height:100px;max-width:300px;"] +||budgetportrait.com^ +videonette.com###konumuz a[href^="https://www.facebook.com"] +krankenhaus-frankenberg.de,deutsche-stammzellspenderdatei.de,wieland.com##.ncoi---behind +||directdexchange.com^ +techcrunch.com##.newsletter-signup-block +||ashameoctaviansinner.com^ +||ppcnt.us^$popup +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=livemint.com +numberempire.com##.perm_ad +##.adstextpad +||mjk-r.net/common/sample/full01/img/bnr_ +||dl.fatimacapos.com^ +@@||skmedix.pl/*/*.js$~third-party +##.cookiestrip +timesofisrael.com##.crm-bottom-popup +apnnews.com##.bottomAd2 +||panda.moritz-petersen.de^ +||sogou.com/athena/ +ifeng.com##a[href^="http://ids.deliver.ifeng.com/"] +youla.ru#$?##app > div:not([class]) > div[tabindex]:has(> div[data-test-component="Modal"] main div[data-test-component="VasModal"] span:contains(Продайте свой товар быстрее)) { display: none !important; } +youla.ru#?##app > div > div[class]:has(> div[class] > span[data-test-component="OnboardingTooltip"]) +##.mod_advert +health.tvbs.com.tw##.h-full > div.flex-wrap > div.max-w-full > div.px-5.lg\:hidden:has(> div > div.flex.justify-center) +||gd.ct10000.com^*/push/$popup,third-party +love-stoorey210.net#%#//scriptlet("abort-current-inline-script", "document.createElement", "adblock") +republicworld.com##.pad3010.txtcenter +||paiwena.xyz^ +store.line.me##div[data-widget-id="RedirectModalWindow"] +eitb.eus##.publicidad_robapaginas +||mylust.com/092- +###center-ad +mb4.ru###cookiesAlarm +/aff_ad?$popup +##.full_ad_row +hackhw.com,ithome.com###hd_float +||jsf.cnlinfo.net^ +||ssh.*.com^*!$script,third-party +healthline.com##div[class="css-xvi0o9"] +||api.leadiacloud.com^$third-party +||incentivefray.com^ +||4367.5clo0xmbf.com^ +##.adLoader +capital.gr##body #top72890Banner +dyhjw.com##.nn_link +albelli.de#$#.newsletter-popup-modal { overflow: visible!important; } +||bossdescendentrefer.com^ +hsreplay.net#$#.site-modal { display: none !important; } +@@||duplichecker.com^$generichide +spankbang.mov,spankbang.party,spankbang.com#%#//scriptlet('set-cookie', 'pg_interstitial_v5', '1') +tandem.net,dailymail.co.uk,sevenbank.co.jp###smartBanner +||ghoffice.com/bbs/js/float.js +resolver.co.uk###resolver-subscription-popup +||g6tgashb.fun^ +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=lolalytics.com +dokumen.pub,ebin.pub##.box-cookie-policy +valuewalk.com#$#.mfp-bg { display: none !important; } +you.com##div[data-eventname="user_click_in_non_app"] +||ijhxe.com^ +||rkatamonju.info^$popup +privacy.wunderweib.de,dieharke.de#%#//scriptlet('trusted-click-element', 'button[title="Einwilligen und weiter"]') +163disk.com##.gg_990_65 +||blrpbt.xyz^ +mic.com##aside > div > div[class]:has(> div form input[type="email"]) +||betotodilea.com^ +||capablecows.com^ +||pensionerbegins.com^ +gotoshop.ua#?#div[class^="col-"] > div.text-center:has(> a.telegram-link) +||3a2e.site^$document,popup +pressherald.com#$#.pum-theme-5184894 { display: none !important; } +pixiv.net##.premium-lead-t-footer +||stuffintolerableillicit.com^ +huya.com##.j_posterItem[href^="http"]:not([href*=".huya."]) +||chikiporn.com/sqkqzwrecy/ +##.mod-cookiepolicy +||fmhyysk.com^ +shooshtime.com##.wrap > ul > li > a:not([href*="shooshtime"]) +nhanhoa.com##.shake_image_promotion +||nozzorli.com^ +||pulpybizarre.com^ +||tspops.com^ +web.ultra-soccer.jp###kindle-side-banner +@@||slimjet.com/translate.php^$document +||vuirssd.icu^ +myevreview.com###ad_main_bottom +yeptube.com#%#//scriptlet('abort-on-property-read', 'initBetter') +##.adband +||deziloaghop.com^ +cdn.cinema-24.net##.advice_inf > div[style="text-align: center;"] > br + span[style="color: #fff;"] +##.ad-flex +||ebiotrade.com/newsf/js/news_top_banner.js +vidplay.*,mcloud.*,vidstream.*##body > #player-wrapper > div:not([class], [id]) > div[class][style]:only-child +hakanbaysal.com#@#div[id^="crt-"][style] +wonderhowto.com#%#//scriptlet('trusted-click-element', '#consentContainer a[href="/consent-granted/"]') +chrohat.com#$#body { overflow: visible !important; } +||yiren34.com/js/ +||stripchat.com/api/external/ +||uhrmzgp.com^ +frag-einen-anwalt.de,buecher.de,visitberlin.de,buecher-sale.de###klaro +##div[data-ad-targeting] +extramovies.*##a[href="/dlbutton.php"] +||paxsfiss.com^ +||yunzuowen.com^$third-party +||carfulsranquel.com^ +||viciousphenomenon.com^ +||akm-img-a-in.tosshub.com/sites/test/ipl/2022/index.html$domain=indiatoday.in +##.page > .wp-none1 +||caltat.com^$third-party +nipponsteel.com,novaposhtaglobal.ua,scania.com,tera.cz,yunusonline.com,tuitam.com.pl,cccmh.co.jp,resecurity.com,nspk.ru,eirc.spb.ru,petslike.ua##.cookie +##.bl300_ad +net.hr###sliding_wrapper +1337x.is,1337x.to##.no-top-radius > .clearfix > ul[class*=" "] > li > a[href^="/st-rd-"] +@@||schwab.com/scripts/appdynamic/adrum-ext.$script,~third-party +fix4dll.com##.page__block.file__download +x-mol.com###rightAllJournal +||hexun.com*/hx_news/hx_news_finalpage.js +||gcvcdashb2.fun^ +||anceenablesas.info^ +||forworksyconus.com^ +web.vstat.info##.blockscr > div.install +g2a.com##div[data-test-id="cookie-modal"] +esputnik.com##.webPushSubscriptionPreview--component +##.ad185x100 +||loveaholics.com^$popup +||amazonaws.com/sftemp/sf_v*/html/r*.html$domain=tumblr.com +lyrics.com###sele-container +||pcgames.com.cn*/index.js +||kidskidnaps.shop^ +###ukCookiePopup +||instructiveengine.pro^ +thewrap.com#$#.wk-site-overlay { display: none!important; } +mrw.co.uk##.adv-banner-top +||inminuner.com^ +||alphaporno.com/ap-script.js +||protoawe.com^ +##.ad_primary +googleads.g.doubleclick.net#@#div[id^="ad_position_"] +||premium4kflix.top^ +regenzi.site,hegra.cam,migration.cam,reviewpalace.net,techplanet.cam,techland.live,gameplanet.cam,topgames.cam,techsoul.cam,gamehub.cam,gameland.click,gamestation.cam,gamezone.cam,gamesera.online,free-games.cam,top-games.live,gulftech.live,reviewhub.vip,reviewtech.me,pcreview.me##body > div[class^="content"][class*="-block"] +||tutphiarcox.com^ +||gobletauxiliary.com^ +slideshare.net###scribd-ad-exit-modal +miastodzieci.pl##.md_ad +iogames.onl##.Advc +/proxy_top_banner_js.php +||tor.aomg5bzv7.com^ +##.topRightAd +###body_ad +||ajjkmoyjlrmb.top^ +||vingartistictaste.com^ +@@||olegon.ru/pr/*.js +gendai.media##.section_sbsc +||mediacandy.ai^$third-party +||moviekhhd.biz/images/DownloadAds +canberratimes.com.au,examiner.com.au,theland.com.au,whoscored.com###billboard-container +flaticon.com#$#li[id^="bn-icon-list"] { position: absolute !important; left: -3000px !important; } +||components2.gazzettaobjects.it/rcs_cpmt$domain=~video.gazzetta.it +nairametrics.com##.jeg_sticky_sidebar +iplaysoft.com###section_postbanner +###ctrlHeader_divCookieText +m.megabox.co.kr#$##banner_layer { display: none!important; } +||configchain.com^ +fiba.basketball###social-promo-flyin +@@||webgains.com^$domain=bradsdeals.com|coupons.com|dealigg.com|dealnews.com|goodsearch.com|groupon.com|hotukdeals.com|moneysavingexpert.com|offers.com|retailmenot.com|slickdeals.net +||iiauu.cn/777/ +downsub.com#%#//scriptlet("abort-current-inline-script", "atob", "window.TextDecoder") +qastack.com.de#$##cookies-consent { display: none !important; } +icbc.com.cn###kv-admain > div[id$="_1900_380"] +||vsthouse.ru/adregain-anti.js +vikatan.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||lancdn.com/tmp3/GG_Notice.png +leechall.download#$##adBanner { display: block!important; position: absolute!important; left: -3000px!important; height: 100px !important; } +protranslate.net###pushModal ~ .modal-backdrop +@@||read.amazon.*/ads-prebid.js +||primecurves.com/sponsors/ +||estimatedrick.com^ +fzmovies.*#%#//scriptlet("prevent-window-open") +clickhole.com,lifehacker.com,splinternews.com,avclub.com,deadspin.com,gizmodo.com,jalopnik.com,jezebel.com,kotaku.com,qz.com,theinventory.com,theonion.com,theroot.com,thetakeout.com##.connatix-main-container +medindia.net##.ads-advlabel +winnetnews.com##.adswrapper +||veaiyl.icu^ +||envybox.io^$third-party +@@||googletagmanager.com/gtm.js$domain=falkirkherald.co.uk +actoys.net##.p_top_ad +###hottopics-advert +/blockadblock-$script,redirect=prevent-fab-3.2.0 +mp4upload.com###lay +@@||gelbooru.com/script/try.js +||iu.ziramsochreae.com^ +||onefuq.xyz^ +wcofun.org##div[style="margin-bottom:30px"] div[style^="float:right;"]:not([class]) +zalando.pl,vtm.be,schlaukopf.de#$#html { margin-top: 0!important; } +||co5457chu.com^ +||worldwidemailer.com^ +savefrom.net###modal-container > div.popup-content +||paiwhisep.com^ +||cendantofth.org^ +||netnaija.com/s/$script +mxplayer.in#@#[id^="div-gpt-ad"] +giznext.com##.breadcrumb-ads +/alljs/allwzwfoot.js +||vossulekuk.com^ +kocpc.com.tw##.kocpc_bot_ad +||fireworkraycompared.com^ +migros.ch##.mui-js-cookie-banner +flash.pt##.registerPush +xda-developers.com##.honor-spon-banner +ossan-deai.net,smart-iphone.com##.bfb_textBtnTextBtn +timesofindia.indiatimes.com#?#div[data-mod="sidebar"] > div:not([class]):has(> div[class] button:contains(Subscribe)) +spiegel.de##a[href^="/newsletter/"] +blove.jp##.app-store-link +||luvaihoo.com^ +||bizoniatump.click^ +||chiglees.com^$popup +||cdnu.porndoe.com/static/pop/slide-in/*.mp4 +diariodenavarra.es###aviso-cookie +||puitaexb.com^ +douploads.net##a[href^="https://href.li/?"] +||guan.domainnamesanity.com^ +km.com##.downloadApp +@@||ads.viralize.tv/player/$domain=quotidiano.net +felomena.com##.subscribe-conteiner +timesofindia.com,indiatimes.com#?#div:has(> div[data-type="in_view"] > div.ctn-workaround-div) +||autoimg.cn/club/v1Content/images/heycar +auto.hindustantimes.com##.bottomSticky +praca.by#$#body { overflow: auto !important; padding-right: 0 !important; } +||xml.bidiology.com^ +porndroids.com##.video-container > div.wrapper > div.js-player ~ meta[itemprop] + ul[class] +tarnow.net.pl##app-cookie-msg +##.ad.gallery +pogoda.wp.pl#?#.grid-container > div[class^="grid-"] > div[class*=" "]:matches-css(background-image: /^url\(data:image/png;base64,iVBOR/):has(> div:only-child:empty) +||visoadroursu.com^ +##.theAdvert +||lewlanderpurgan.com^ +||netherinertia.life^ +||blabbasket.com^ +pomponik.pl##.box.ad +||psichoafouts.xyz^ +nairametrics.com##.jeg_ad +buzzfeed.com#?#div[class^="content__"] > div[class^="container__"]:has(> h2:contains(Newsletter)) +uni-goettingen.de##.legal_footer +groentenenfruitwebshop.be#@##cookie-law-info-bar +||pinkleo.pro^ +##.ad_holder +/^https?:\/\/.*\.eporner\.com\/[0-9a-f]{10,}\/$/$script,domain=eporner.com +loadout.tf#$?#.loadout-application-top > div[style]:has(> div[style] > div[data-i18n="#advertisement"]) { position: absolute !important; left: -3000px !important; } +thisismoney.co.uk##.mpu_puff_wrapper +@@||adpop.me^$domain=adpop.me +fileriver.net##.wlm-container +||xolen.xyz^ +slideserve.com##div[style="height:250px;width:100%"] +||bodelen.com/apu.php?$redirect=nooptext,important +zorbasmedia.com##.hidden-slider-overflow > .banner +/img/91/*_600_ +pinknews.co.uk##.pn-single-post-wrapper__newsletter-signup +||muchooltoarsie.net^ +||indoleads.com^$third-party +||qhcmspgkoaixup.com^ +mix.dj###welcome +simkl.com##cookies +realme.com##.r-cookie-footer ~ div.mask-untouch +||wgchrrammzv.com^ +aol.com#$#.banner-active { margin-top: 0 !important; } +||4p68.com^ +###cookie_accept +163.com##.tie-ad-bar +9s102.xyz###main > .container-fluid.mb-3 > .row > .col-sm .alert +||mislaer.com^ +sportrebel.pl,tw.m.aipsurveys.com#$#body { overflow: auto !important; } +##.widget_html_snippet_ad_widget +||record.rizk.com^ +515fa.com##.gg_ad01 +bachlong.vn###fb-root +/flyad.js$script +ipsaya.com##.IP-ads +youivr.com##.header-widget-region +||tegleebs.com^$popup +thursdayboots.com#$#body { overflow: auto !important; padding-right: 0 !important; } +buhgalter.com.ua##.new_subscribe +||adserver.pandora.com^ +day.az##.ad-240x400 +://banner.$third-party +androidpolice.com##.w-pencil-banner +##.top-ad-horizontal +yourdictionary.com#$#body > #ydHeaderContainer[style="display: block; top: 100px;"] { top: 0!important; } +||adw.heraldm.com^ +chunyuyisheng.com##.ui-grid + .fixed-layer +zweitausendeins.de,meyer-gartenbedarf.de#%#//scriptlet('set-cookie', 'amcookie_allowed', '1') +krosno112.pl#?#.container > .t3-spotlight > .col-lg-12:has(> .module > .module-inner > .module-ct > .bannergroup) +flip.ro#$#body.modal-open { overflow-y: auto !important; padding-right: 0 !important; } +||chpadblock.com^$~image +egybist.online,n-egy.best,egybist.site,egy-best.site#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +##.ad-tag__wrapper +emerson.com##div[class$="global-cookie-notification"] +||getvideoz.click^$popup +investmentwatchblog.com###custom_html-22 +###rh_tower_ad +@@||kinescope.io/embed/$stealth +##.middleAdMid +###ad1[onclick="window.open(this.url)"] +||vm.swellyprostoa.com^ +@@||xes.pl/sign-in.html$stealth +||playbuzz.com/player/$script,third-party +weather.com.cn###ytc +||158.69.120.31/assets/qq-sidebar.gif +@@||game735.com^$generichide +||rtbfradnow.com^ +||servh.net^ +picfox.org##a[href^="http://syndication.exoclick.com/splash.php"] +pkw.gov.pl#$##rodo_wiadomosc { display: none !important; } +||service.hotstar.com^*/midroll +proagro.com.ua##table[style="border:1px solid #d0d0d0;"] +msds.open.ac.uk###i-cookies-bar +sonichits.com##.lyrics > div > center > iframe[src^="/tf.php?"] +||entlypleasantt.info^ +mattermost.com##.module-gdpr-acceptance +||ad.doubleclick.net^$~object-subrequest,third-party +##.optanon-show-settings +celebitchy.com#?##sidebar > .hotposts:contains(Advertisements) +##.ads_home +||a3yqjsrczwwp.com^ +interia.pl##body .ad-rectangle:not(#style_important) +marianne.net###modal-newsletter +||lashahib.net^$popup +circa.com##.Page-ad +1069boys.net,gayvidsclub.com#%#//scriptlet('prevent-window-open') +||currenttime.tv/a/signup-sidebar-widget/ +###topbar-ad +dailymotion.com##div[class^="VideoQueue__adWatchingRight"] +||troubledcontradiction.com^ +opengapps.org##div.mdl-snackbar[aria-live] +||cnahoscfk.xyz^ +||ydss.cn/test.www.jdpay.com +yxbao.com###gs_down +||olopruy.com^ +||ecoulsou.xyz^ +||jetordinarilysouvenirs.com^$popup +||trenhdg.com^$third-party +subs4series.com#%#//scriptlet("adjust-setInterval", "makingdifferenttimer", "50", "0.02") +china.com.cn###gggg +###redirect-ad-modal +animezone.pl#$#.myTestAd { display: block!important; height: 1px!important; } +bellroy.com##.NewsletterSignupFooter +autohaus24.de#$#.cookie-banner { display: none !important; } +||adser.io^ +inoreader.com###article_below_dialog_wrapper.inno_dialog_overflow +||4wank.com/bump/ +apklinker.com###gadvheader +||revenuevids.com^ +javlove.xyz#%#//scriptlet('prevent-window-open') +||aphid.nihilnegativum.com^ +||bravo-dog.com^$popup +||guozh.net/wp-content/plugins/eazy-ad-unblocker/ +||adsterra.com^$third-party +##.ad300x250-2 +||ads01.com^$third-party +reverso.net###vdasection +npr.org##.ad-config +btmulu.com#?#.list-view > article.item:has(> div > a[href*="?"][target="_blank"]:not([href*="/hash/"]) > h4 > span.label-danger) +ai.meta.com##div[class*=" _"] > div[class*=" _"]:has(> div[style] a[href$="/subscribe/"]) +fsiblog2.com#?#.elementor-widget-container:has(> h5:contains(Indian girls - advertisement)) +daemon-hentai.com###secondary > div.widget:last-child +||allowflannelmob.com^ +||nowlooking.net^ +fool.com###articles-top +drawnames.com.sg,drawnames.de,drawnames.co.uk,drawnames.com,lootjestrekken.nl###cookie-backdrop +||poi3d.space^ +||ads.cc^$third-party +||iglegoarous.net^ +##.leaderboard-ad +||support-widget.nakanohito.jp^$domain=jre-travel.com +||baloneyunraked.com^ +techgeek.digital#%#//scriptlet("prevent-window-open") +thepointsguy.com##.showBb +derivative-calculator.net##.support-me +@@||staticxx.facebook.com/connect/xd_arbiter/*.js?version=$domain=animeflv.net +||mesh.if.iqiyi.com/portal/lw/search/$xmlhttprequest,removeparam=adExt +sber.ru##div[class^="Cookies_cookie-warning_"] +||cjndvoglik.xyz^ +lasprovincias.es##.voc-animated-modal-bottom.voc-animated-modal-bottom--bg-onplus +notube.re##.modal-plus +thegazette.com###site-sticky-footer +##.oio-link-sidebar +fashionbiznes.pl##.cmpgn_adslot.slot_art_half > * +##.avert--leaderboard +goshennews.com##.tncms-region > div.tncms-block:has(> div.panel > div[style] > a[href="http://newspaperads.goshennews.com"]) +##.advertHeadline +mindtecstore.com##.footersupport +swiftuploads.com#%#//scriptlet("remove-attr", "onclick", "button[onclick*='window.open(']") +@@||daziba.cn/Images/share.css +nosteamgames.ro#%#//scriptlet('abort-current-inline-script', 'jQuery', 'AdBlock') +ceicdata.com###hs-eu-cookie-confirmation-inner +||go2cdn.org/brand/$third-party +nikkansports.com#$#.tp-backdrop { display: none !important; } +leba24.info##.code-block +color-hex.com##.margin10 +||trade46-q.com^ +vaillant.be#%#//scriptlet("set-constant", "Object.prototype.cookiewarning", "noopFunc") +||optnx.com^$document +123movies.*##.row-btns-special > a[target="_blank"] +pixhost.to#$#body div#js { display: none !important; } +career.levtech.jp##.js-fixedGuideCta +||sultrycartonedward.com^ +||oxygenpermissionenviable.com^ +||79dc3bce9d.com^ +||gulliblecamp.com^ +1377x.to##a[href^="/anonymous-download/?"][target="_blank"][id] +###mastAdvert +||c196c337d9.ade6b8430d.com^ +nudiejeans.com##div[aria-label="Cookie bar"] +||howhow.cl^ +oglobo.globo.com#$#html { overflow: visible !important; touch-action: auto !important; } +soluxtec.de#@#.cookie-wrapper +||www.novanewsburst.com^ +doodle.com###d-cookiesWarning +||pkk1.zuimeiniwo.com^ +hao123.com##.tvtip +smartpress.by##.list-event > a[href="https://t.me/smartpress"] +||chl7rysobc3ol6xla.com^ +||girlsfuck-tube.com/js/aobj.js +diudemy.com#%#//scriptlet('adjust-setInterval', '_0x', '*', '0.02') +cg-method.com,30kaiteki.com,makotoichikawa.net,voiceloves.com,tabering.net,happy-otalife.com,cheese-cake.net###body_wrap + div[id][class*=" "] +ncp.az##.modal-bg.open +||pwuxnr.cn^ +gamesradar.com##div[style^="position: relative; box-sizing: border-box; height: auto;"][style*="text-align: center; display: block; transform: none; contain: layout; width: 300px;"] +psdfreebies.com#$#.onp-locker-call { display: block!important; } +##.postbit-ad +postimees.ee#@#.dfp_ad +mgts.ru##.pop_up_through +##.widget_ui_asb +||40407.com/plus/rpad/ +||focus.de/src/js/spmsg*.js +miaoshangmanhua.com##.cy_menuright +bitdefender.ru##.m365-popup +||kt51.com/images/kt51.gif +||a776647af1.4b526a61a7.com^ +?wppaszoneid= +hellobank.fr###nextoutils_gestionCookies +||ailtumty.net^ +@@||wdr.ivwbox.de/cgi-bin/ivw/CP/$domain=wdr.de +sms24.me,sms24.info#%#//scriptlet('remove-class', 'preloader', '.preloader') +razpisanie.bdz.bg#$#.modal-backdrop:not(.modal-backdrop + .modal-backdrop) { display: none !important; } +renault.ru###sherlockMain +||probersnobles.com^ +katestube.com#?#.video-control:has(> span.text_adv) +sutas.market##.footer-fixed-cookie-container +gulte.com##.awt_side_sticky +etransport.pl#$#body > .dimmer.modals { position: absolute !important; left: -3000px !important; } +||prudentfailingcomplicate.com^ +brandwiki.ru##.content > aside.block:has(> div#subscribe) +||linkpicture.com^$third-party +||testamenttakeoutkill.com^ +soulgen.net##.header-wrapper +||itadapi.ithome.com.tw^ +||adexprts.com^ +||2839f789ab.f092680893.com^ +||pixlr.com/fad/ +fotogena.de#@##onetrust-consent-sdk +/wp-content/plugins/best-ads-block-detector/* +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,xmlhttprequest,redirect=googlesyndication-adsbygoogle,domain=cellmapper.net +||checkluvesite.site^$document +newbalance.com.sa##.ait-newsletter-popup +herne.de###cookie_hinweis_box +quora.com##.q-box > div.qu-overflow--hidden[class*="Banner___StyledFlex-"] +||typicalteeth.com^ +wikimediafoundation.org##.wp-block-group__inner-container > div.double-heading + div.is-layout-flex form.mailchimp-subscribe__form +##div#xinxi +mediaryazan.ru##.social_block +tv.puresoul.live##a[href="https://nbabite.app/"] +||sueddeutsche.de/assets/js/szpagelayout-sourcepoint +||yunenly.com^ +schwaebische.de#$##privacy-overlay { display: none !important; } +||ortwaukthwaeals.com^ +klook.com#$#.klk-notification { display: none !important; } +princetonreview.com#%#//scriptlet('prevent-setTimeout', 'advice-popup') +greatandhra.com##.sortable-item_top_add123 +u.gg#$##af-click > #af-header.clickable.af-header { height: 0!important; } +24tv.ua##div[id^="telegramBanner"] +techrepublic.com###leader-plus-top +yesky.com##div[class^="ad7"] +msn.com##cs-native-ad-card-24 +extremetube.com#?##video-box > div[style^="float: right; right: 16px; position: relative;"] +##.towerAdLeft +||sw.cowtpvi.com^ +||huo720.com/back/ad_ +##.ad-gpt-breaker +kpn.com,telfort.nl###KPN_cookie +###googleAdBox +sakuravrjav.com###widget_advertising-2 +||c.28rv.com^ +ifeng.com##div[class^="dbox"] +cyberpedia.su#%#//scriptlet('set-constant', 'adsbygoogle.loaded', 'true') +radiozet.pl###onnetwork--html:empty +m.censor.net##.block-social-link +||lyconery-readset.com^$popup +||zirof.com/submit.html +||parakeet.quotetweet.com^ +||otherofherlittle.info^$popup +||asajojgerewebnew.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.order_repost_wrap +@@assets/dist//bts2$xmlhttprequest,stealth=referrer,domain=previbes.online +||nestledmph.com^ +||cdn.24net.cz/resources/js/cmp.js$domain=mobilenet.cz +sevenforums.com##li[id^="yui-gen"] +##.adsbx728x90 +###incontentAd3 +||ripencompatiblefreezing.com^ +##.advert_foot +||onegreen.net/MyFile/ +||backetkidlike.com^ +##.california-ad +||mainadv.com^ +||gg.0598yu.com^ +##.advertisement_top +||xneq6axpxqxhi25w.dorimnews.com^ +goshow.tv###ac-player +/cookie-check.js +1ps.ru##.mailing-sticky +reifenleader.de,tyreleader.co.uk,tyreleader.ie,neumaticoslider.es,reifenleader.ch,centralepneus.ch,centralepneus.be,bandenleader.be,centralepneus.lu,reifenleader.at,bandenleader.nl,daekleader.dk,pneuslider.pt,1001renkaat.com,gumelider.com.hr,elastikaleader.gr,pneumaticileader.it,oponylider.pl,liderpnevmatik.si,padangulyderis.lt,maxigumi.hu,pneuleader.sk,riepulideris.lv,rehviliider.ee,anvelopelider.ro,dackleader.se,pneuleader.cz,centralepneus.fr##div[data-rgpd-version-value] +anirem.org##.app-hidden +||cc.silktide.com^$third-party +||fvckeip.com^ +theinertia.com##.inertia-ad-300x600 +tripsonabbeyroad.com##.e-con-inner:has(tp-cascoon) +imagecolorpicker.com#@#div[id^="ezoic-pub-ad-"] +promiflash.de,leedsunited.news,amateurphotographer.com,gpfans.com,btc-echo.de,geo.fr,scinexx.de,popbuzz.com,smoothradio.com,thetimes.co.uk,businessgreen.com,telepolis.de,bnr.nl,iltapulu.fi,wowtv.de,newsnow.co.uk,np-coburg.de,pcworld.pl,business-punk.com,voici.fr,the-sun.com,thesun.ie,capital.fr,ladbible.com,hitc.com,dualshockers.com,is.fi,7sur7.be,vtm.be,welt.de,gamingbible.co.uk,unilad.co.uk,stern.de,programme-tv.net,infoworld.com,networkworld.com,urbia.de,intouch.wunderweib.de,bravo.de,berliner-zeitung.de,maennersache.de,rheinpfalz.de,independent.co.uk,berliner-kurier.de,paz-online.de,ln-online.de,sportbuzzer.de,op-marburg.de,ad.nl,cz.de,apotheken-umschau.de,liebenswert-magazin.de,hln.be,sn-online.de,gala.de,schoener-wohnen.de,cosmopolitan.de,stylebook.de,familie.de,kino.de,stuttgarter-nachrichten.de,cyberport.de,motorsport-magazin.com,kochbar.de,tvmovie.de,shz.de,bz-berlin.de,rblive.dewelt.de,desired.de,sportbuzzer.de,fitbook.de,wunderweib.de,hitc.com,haz.de,rnd.de,faz.net,chip.de,preis.de,giga.de,motorcyclenews.com,finanzen.net,vorname.com,techbook.de,lvz.de,sueddeutsche.de,gutefrage.net,shieldsgazette.com,spieletipps.de,ekstrabladet.dk,focus.de,demorgen.be,volkskrant.nl,trouw.nl,parool.nl,techadvisor.co.uk,forum.notebookreview.com,computerworld.com,skysports.com,tag24.de,cosmopolitan.de,mein-schoener-garten.de#$?#.sp-message-open body { overflow: auto !important; position: static !important; margin-top: 0 !important; } +18pornvideos.net##.on-player-wrap +baidu.com##td[align="left"] > div[id="con-ar"] > div.result-op[tpl="right-wz"] +baumer.com##.toast-top-right +globetrotter.de##.slideup-nl +philharmonia.co.uk###privacy_message +powergame.gr,nnchaber.com,mynet.com,milligazete.com.tr,yeniakit.com.tr,yenicaggazetesi.com,turkuazgazetesi.net,seskocaeli.com,kocaelibarisgazetesi.com,kocaelikoz.com,enkocaeli.com,bfm.ru,evrensel.net,parkiet.com##a[href^="https://news.google.com/"][target="_blank"] +||inorseph.xyz^ +@@||weithenn.org^$generichide +##.teaserAd +||nooglaug.net^ +||steeplesaturday.com^ +fairygodboss.com##.component-Login-LoginWall +##.cookiewall:not(body):not(html) +||fountaingreat.com^ +@@||indiansgetfucked.com$generichide +/cookiePolicyEN. +x2twitter.com,savetik.co##.section-app-download +x1337x.ws##a[href^="/streamredirect.php"] +manwa.fun###detail > div:has(> div.ad-area-close) +elleair.jp##.tf-cookiePolicyModal +/wp-content/plugins/eazy-ad-unblocker/* +||8503.5clo0xmbf.com^ +||d2elslrg1qbcem.cloudfront.net^ +ted.com##aside[class^="css-"] > div[class^="pt-6"] > div > div.hidden +soaphub.com##.sh-sh_belowpost +@@||ads.microsoft.com^$generichide +||daly2024.com^ +||veluredcipo.click^ +gekko-computer.de#$#div[data-feature="Web.Core.Feature.PrivacyCategory.Dialog"] { display: none!important; } +||arenigcools.shop^ +cire.pl#?#div[class^="sc-"]:has(> div:first-child:contains(/^(SPONSORZY PORTALU|PARTNERZY PORTALU)$/) + div:last-child > a[href][target="_blank"] > img) +hvg.hu##.leaderboard-1a +||onads.com^ +||jwalf.com^ +||easysemblyjusti.info^ +||mycamlover.com^ +||sexyepc.com^ +||wazctigribhy.com^ +||nourishmentrespective.com^ +businessinsider.com##.homepageNewsletter +@@||117.60.146.16:8089/images/ +||90e78be4ad.f250b37f9e.com^ +||jleague.jp/img/skyscraper/ +||u.riju.com/click.php +||c72w6.com^ +||loneextreme.pro^ +||ezhefg9gbhgh10.com^$popup +###adv_300 +news-724.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||cngold.org/cngold_float +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,domain=keralatelecom.info,important +||gesvfvfhhb6.fun^ +mobilegamer.biz###popmake-16757 +###contextual-ads +##.subAdBannerHeader +@@||cdn13.com/*.mp4?$domain=xhamster.com +afitness.ru#%#//scriptlet("prevent-setTimeout", "hhModal", "5000") +||devotionhesitatemarmalade.com^ +rephrase.info#?#div[style] > div.text-center:has(> div#txt-sidebar) +cleananddelicious.com,javcc.com,analogictips.com,1000projects.org,hostdime.com,whatobuy.in,blog.alexa.com###text-6 +||weibo.com/ajax/feed/getTipsAd? +||observativus.com^ +bazaar-online.gr#$#body { overflow: auto !important; } +shein.com#$#.sui-modal { display: none !important; } +##.banner-asd__title +||r.dlandroid.com/wp-content/uploads/*/telegram.png +##.video-item-ads +/spc.php?$script +||pausingroyale.com^ +##.bhgg +slickdeals.net##.rightRailBannerSection +||libertatea.ro/consent/cmpui-popup.js +||noupooth.com^ +@@||player.ex.co/player/$domain=thestreet.com +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,important,domain=vectorizer.io +||script.hentaicdn.com/cdn/*assets/js/Feinee +bits.media#?#.article-page > div:has(> p > strong > a[href^="https://t.me/"]) +##head[prefix~="medium-com:"] ~ body .js-openInAppButton +instagram.com#@?#article[class] > div[class]:-abp-has(span:-abp-contains(/Anzeige|Gesponsert|Sponsored|Geborg|Sponzorováno|Sponsoreret|Χορηγούμενη|Publicidad|Sponsoroitu|Sponsorisé|Bersponsor|Sponsorizzato|広告|광고|Ditaja|Sponset|Gesponsord|Sponsorowane|Patrocinado|Реклама|Sponsrad|ได้รับการสนับสนุน|May Sponsor|Sponsorlu|赞助内容|贊助|প্রযোজিত|પ્રાયોજિત|स्पॉन्सर्ड|Sponzorirano|ಪ್ರಾಯೋಜಿತ|സ്‌പോൺസർ ചെയ്‌തത്|पुरस्‍कृत|प्रायोजित|ਪ੍ਰਾਯੋਜਿਤ|මුදල් ගෙවා ප්‍රචාරය කරන ලදි|Sponzorované|விளம்பரதாரர்கள்|స్పాన్సర్ చేసింది|Được tài trợ|Спонсорирано|Commandité|Sponsorizat|Спонзорисано/)) +redtube.com,redtube.net###eu_cookie_disclaimer +knowyourmeme.com##.combo-wrapper +||sw.wpu.sh/script/main.js$domain=hclips.com|erkiss.live +giga.de,chatgptdemo.info,chat.chatgptdemo.net,mega4upload.com,rarefivem.com,baby-calendar.jp##a[href^="https://play.google.com/store/apps"] +||halibut.codehooks.io^ +||vidmoly.me/machine*.php +thesimsresource.com#?#.crtv-bottom-wrapper:has(> .tsr-ad) +quizlet.com###UniversalUpsellTarget +geeksforgeeks.org#%#//scriptlet('prevent-setTimeout', '.login-modal-btn:eq(0)') +##.dfp-ad-region-1 +||booseed.com^ +wantgoo.com#@#.shareBtns +fotodovana.com#%#//scriptlet("prevent-window-open") +||sexyfuckgames.com/includes/*.php +||mediaforge.com^ +studee.com##.toast-notification--fixed +||meadowlark.psynapse.no^ +go.bicolink.net#?#.box-main > div.box:has(> center > iframe[src*="/ads-bicolink.html"]) +pbtube.co#%#//scriptlet("prevent-window-open") +designhill.com##.bottom_popup_container +||consternationmysticalstuff.com^ +@@||sextb.net^$generichide +||mp3bars.com^ +exportfromnigeria.info##[src^="http://storage2.proboards.com/"] +||echeegoastuk.net^ +@@||npr.org/sponsorship/targeting/$other,xmlhttprequest,domain=npr.org +18-comicfrieren.xyz,18comic.org,18comic.vip##a[href*="//"]:not([href*="comic."]) > img +###advert_container +redirect.dafontvn.com#$#body { overflow: auto !important; } +rusplt.ru#$?#.post__widgetPopup__bigBlock:has(> div) { display: none!important; } +###personalization_ads +hotcleaner.com##.page > div.chc72 > div.spl72.cWp +||szjjzs.com/js/fe +reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##a[href^="https://PornGameFree.fun"] +@@||content.viralize.tv/display/$stealth,domain=automoto.it|moto.it +geeksforgeeks.org##div[style^="position:absolute;top:1px;left:1px;font-family:Verdana,Geneva"] +discours.io##.donate-container +usg.edu###gdpr-cookie-notification +||367p.com^$popup +||q1gel.icu^ +||webjx.com/zanzhushang/ +||bbccf12.xyz^ +5pillarsuk.com##.td-ss-main-sidebar img[width="300"] +##.advert-mini +||supuv3.com^$third-party +/zpp/zpp3.js +@@||adnews.me^$domain=adnews.me +||totogetica.com^ +@@||hbopenbid.pubmatic.com/translator?source=prebid-client$xmlhttprequest,domain=aternos.org +||tigtag.com/styles/phpcms/js/tigtag/ads.js +robot-forum.com#?##quickModForm > .windowbg2:has(> .post_wrapper > h4.member-r:contains(Advertisement)) +dropgalaxy.com#@#iframe[data-aa] +##.ads-widget-content-wrap +feng.com##.ad-aside +kreskowki.tv#$#.adsbox.textads.banner-ads { display: block !important; } +stardima.com##input[onclick^="parent.open("] +kikar.co.il#%#//scriptlet('trusted-prune-inbound-object', 'Object.entries', '*', '970x60') +##.ad-left +###banner_ad_bottom +##.puff-advertorials +adacomi.com###adblock_guide_mask +||lcxxwxo.com^ +compete.playstation.com###cookie-monster-header +lightnovelpub.fan,lightnovelpub.vip,lightnovelpub.com,lightnovelspot.com,webnovelpub.com##.comment-list > div[class]:has(> *:is([data-stpd], [id^="gpt_slot_"])) +travelrussia.ru#%#//scriptlet('remove-class', 'topBar', 'body') +##.ad_custombanner +||4044.5clo0xmbf.com^ +telekomunikace.cz##.Flagrow-Ads-under-header +||lfstmedia.com^ +||myunion1.qm120.com^ +||leadshurriedlysoak.com^$popup +hij.com.pl#?##mvp-home-body > .clearfix + article > h1:contains(/^Reklama$/) +||pornvideotop.com/ads300x250.php +##.Adv468 +taxidrivermovie.com##a[href*="/category/"] +##.adsWidget +mail.yahoo.com#$#.pc.panescroll #theAd { top: 0px !important; } +abw.by#$#.cookie-modal { display: none !important; } +##.ad_wrapper_970x90 +orgyxxxhub.com###invideo_2 +@@||ask.qcloudimg.com^$stealth,domain=cloud.tencent.com +##a[href^="https://l.tapdb.net/"] +market.correos.es#@#.cookie-message:not(html):not(body) +uvnc.com#?#.category-desc > .red ~ center:has(.adsbygoogle) +||revcontent.com^ +tvtv.ca,tvtv.us#$#.css-3vwr5v { height: 2400px !important; } +||stawhoph.com^$popup +||improperadvantages.com^ +##.page-header_ad +silver.org.cn##.zl_login +serverprofis.de#$#body.cli-barmodal-open { overflow: visible !important; } +||az708531.vo.msecnd.net^$third-party +sweethentai.com#?##picture > center:has(> b:contains(Recommended Hentai games)) +###IFrameAd1 +manoramaonline.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +alternativeto.net#?#div[data-testid="alternative-list"] > ol > li:has(span[class^="AppListItem_sponsored__"]) +||lucentfreer.com^ +upread.ru###kuk +dailyweb.pl##.user-widgets > section#text-22 +thebrighterside.news#?#div[data-id="rich-content-viewer"] > div > div[id^="viewer-"]:has(iframe[src*="usrfiles.com"]) +##.ad-mrect +###floatAd-right +chfi.com,1067rock.ca,921citi.ca,q92timmins.com,q92sudbury.com,star959.ca,977rock.ca,979rock.ca,chez106.com,chymfm.com,country1011.com,country1043.com,country1067.com,country1071.com,country1073.ca,country600.com,country933.com,country935.ca,easy1013.ca,jack1023.com,jack929.com,jack969.com,jack969.ca,krock1057.ca,sonic1029.com,sonicradio.ca,starfm.com,kiss1023.ca,kiss925.com,kissnorthbay.com,kissottawa.com,kissottawa.com,kisssudbury.com,kisstimmins.com,kiss917.com#%#//scriptlet('set-constant', '_detected', 'false') +##a[data-url^="https://vulpix.bet/?ref="] +##.app-ad-container-desktop +poszkole.pl,rynekzdrowia.pl,horecatrends.pl,portalspozywczy.pl#$#.rodo { display: none !important; } +xing.com#$#div[class*="cookie-consent-CookieConsent-"] { display: none!important; } +||stampsmindlessscrap.com^ +||sape.ru^$third-party +i-kolobrzeg.pl#%#//scriptlet('set-cookie-reload', 'cookieConsent', 'accepted') +||menacing-awareness.pro^ +||vodconcepts.com^*/banners/ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,xmlhttprequest,redirect=googlesyndication-adsbygoogle,important,domain=alfred.camera +||parrecleftne.xyz^ +latimes.com##.trb_gptAd +box-core.net,mma-core.com##.rsky +tyran.io###middle-wrap #left_box_div[style^="display:inline-block;"] +txxx.*#?#.video-content > div:first-child > div[class]:has(> div > a[href="#"]) +104.com.tw###aidma_128 +||2510porn.com/banner/ +@@||hentaivideo.tv/ads.js +minimodel.jp#$#.smart_app_banner_area + header.nav { margin-top: 0 !important; } +ctinews.com##.video-pip__slot +##.ad_type_dfp +||2.haoxue360.com^ +||batery.win/promo/*/?affijet-click=*popunder$popup +||oraporn.com^ +coral.ru##.cookieAgreement +##.adsMPU +@@||cdn.bannersnack.com/banners/$~third-party,image,subdocument +||frogator.com^ +||planarian.614deals.com^ +||totadblock.com^$popup +reneelab.jp###text-123 +maxcheaters.com#$#html[style="overflow: hidden;"] { overflow: auto!important; } +coop-land.ru##article > div[class="center m10"] +@@||piano.io/xbuilder/experience/$stealth,domain=lvz.de +dnevnik.hr#%#//scriptlet('remove-class', 'jw-flag-floating', '.main-media-holder > div.video-player > div.jwplayer') +||gousouse.com^ +###my_gd_a +||pneumoniaelderlysceptical.com^ +||d1zoi2q7y0e4d.cloudfront.net^ +netdoktor.de##.ndcustom_ml-teaser_mylife +||pursuitgrasp.com^ +pastemagazine.com##body > div.screen:empty +||kvstithy.top^ +rediff.com##div[id^="div_subscribe_in"] +cpomagazine.com#?#body div[class]:has(> div[class^="cpoma-articles-inline-"]) +###mobile-adhesion +||myseries.co/images/banners/ +forum.iphone.cz##[src^="http://forum.iphone.cz/julek/west-coast-2.jpg"] +povarenok.ru##form.dayrecipes_p +10mtv.jp##.popup-area +/pixel/purst? +||0722fc.com/index/index.php?/ajax/get_adv/ +||cthulhu.cash^ +horoscope.com,plymouthherald.co.uk,mirror.co.uk##.top-slot +modrinth.com##.normal-page__content [href^="https://billing.apexminecrafthosting.com/"] > img +/cookie-manager.min.js +miloserdov.org,playstore.pw###custom_html-11 +dailykos.com##.ad_right_rail +||layerloop.com^ +factmonster.com###tyche_trendi_parent_container +brudirect.com##.index-banner +multipolster.de#%#//scriptlet('set-cookie', 'mnd-cookie-accepted-wwwmultipolsterde1', '1') +tele2.nl,t-mobile.nl#$#body[class] { overflow: auto !important; } +||lenov.ru/engine/modules/light_chat/ +playno1.com###m12 +||pastemagazine.com/wp-content/themes/pastemagazine/js/ads-gam-a9-ow.js +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_$domain=m.haberler.com +##div#ad_id +outlookindia.com###_snup-rtdx-ldgr1 +||anatomyabdicatenettle.com^ +3czol.com##div[class^="ban_"] +kishoralo.com##div[class*="ad-wrapper"] +freesexpornhd.com##div[class^="page-conteiner"] > div[class^="content-title-"] +||shorthandsixpencemap.com^ +startspiele.de###eucc +||agitatechampionship.com^ +||tyranbrashore.com^$popup +##.ad-120x60 +filecrypt.cc##.filItheadbIockgueue3 +dnsleak.com##.outer__benefits +wandoujia.com##.qr-box +||mysagagame.com^$popup +mmorpg.com##.gvconblock .newsItem > .news_newspost + div[align="center"] > .head +/prixa.*\.net\/media\/[0-9A-Za-z-_]*.(gif|jpg)/$domain=ratopati.com +avito.ru##div[class^="apps-banner-"] +tempsmss.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||bitball.b-cdn.net/video/*.mp4$media,redirect=noopmp4-1s,domain=185.145.131.204 +ansa.it##.news-detail > .box-news > a[href*="&utm_source=banner"][rel] > img +||pyrroylceriums.com^ +###adwidget1 +centrifuge.io###gatsby-focus-wrapper > main + div[role="alert"][class^="sc-"] +apollo.pl##.thulium-chat-wrapper +||analyticsinsight.b-cdn.net/wp-content/uploads/*-300W-x-250H +###cookiesjsr +||trusting-offer.com^ +||baiducom.bj.bcebos.com^ +thetakeout-com.cdn.ampproject.org#?#article > div[class]:has(> div[class] > p[class]:contains(Advertisement)) +apunkasoftware.net,apunkagames.com,thefileslocker.net##center > a[rel="noreferrer noopener"] +hexun.com###hexunCouplet01 +saashub.com##.sponsored +||ftte.xyz^$popup +laidhub.com###main-nav > div.main-nav-inner-col > ul.main-nav-list > li.menu-el > a:not([href^="https://www.laidhub.com/"]) +||geobanner.adultfriendfinder.com^ +||adkfilter.mybestclick.net^ +###cookie-window:not(body):not(html) +||strainemergency.com^ +||arabicpostboy.shop^ +||alicdn.com/mtb/lib-smartbanner- +gameapps.hk##.pc-header-video > a[class^="top-ad-"] + .youtube-container +##.ad-iframe +||lody24.com^$popup +||quiz.tryinteract.com^$domain=birdwatchinghq.com +analyticsindiamag.com##[data-id="07dec40"] +://s3.amazonaws.com/*?trkch=*&visitor_id=*-aff0-*&client=*&u=$redirect=nooptext,important +||shop.investors.com/images/promotional/shop/*/index.html$subdocument,domain=investors.com +kingphim.net#%#//scriptlet("abort-on-property-read", "popunder") +||d1hnmxbg6rp2o6.cloudfront.net^ +||jwpcdn.com/player/plugins/googima/ +||grtyj.com^ +bulletin.cebpubservice.com##div[class^="mian_list_"] > .PublicAddress[style^="border:"] +||ssdtop.com/wp-content/uploads/mfhwupknesdi/*.js +coingecko.com##.sponsored-v2 +||adsession.com^$third-party +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws###rso > div.sh-sr__shop-result-group[data-hveid] +||kimagure-kijyo.com/js/kimagure_ +@@||b.scorecardresearch.com/b$domain=cravetv.ca +greaterkashmir.com##.m-subscribe-widget +||heroinalerttactical.com^ +/getStartPageAds +xm.com#$#body { overflow: visible!important; } +m.timesofindia.com##.newsletter_overlay +||ogaewcqgj.com^ +3boys2girls.com###displayadbu3 +@@||sssbozh.com^$generichide +||informationpenetrateconsidering.com^ +||rtb-uswest.audience.media^ +techplay.jp#$##v-event-recommend-modal { display: none!important; } +hiroburo.com##div[style="margin:0px;padding:0px;line-height:1.3;width:780px;"] +@@||cdn.sssam.com/static/js/*.js +||freewebfonts.org^$third-party +@@||snigelweb.com/*.js$script,domain=client.falixnodes.net +meetup.com##.z-modal.items-center > div[role="dialog"][draggable="false"][style="opacity: 1; transform: none; user-select: none; touch-action: pan-x;"] +verfassungsschutz.de#@##cookiebanner +totalav.com##.kondo-free-download-exit-modal +computerbild.de###newsletter-teaser-widget +gmanetwork.com##.mrect +@@||adserving.unibet.com^$domain=sportlemon.me +laleggepertutti.it##div[style*="background-color: #efbb1b;"][style*="padding: 10px;"][style*="color: #000;"] +honeygain.com###root > div[style="overflow-x:hidden"] + button +trendblog.euronics.de##.trendblog-subscription-card +||contradictshaftfixedly.com^ +tamindir.com##.ebulten-scroll +||aizhan.com/imagesa/ +moneycontrol.com##.ads-320-50 +||chouti.com/js/tingyun-rum.js +||j.diangon.com^ +||zyfnbl.xyz^ +||spicedisobey.com^ +vidmoly.to###mg_vd +||neropolicycreat.com^ +zbporn.com,zbporn.tv##.view-aside-block +readyplayer.me##main > .fixed.bottom-0.p-4.transition-opacity +||saryprocedentw.info^ +||cdn3.cartoonporn.to^ +telasa.jp##.recommend-banner +||pmegulnunf.com^ +||new-pressroom.com^$all +arabseed.*##a[href^="https://bit.ly/"] > img +||onclicktop.com^$third-party +kizi.cm#?#div[class*="game"] > .sidebanner:has(> .main-game > .title-special > div > center > h2:contains(Advertisement)) +packhelp.*,zapakuj.to###cookie-consent-mountpoint +||tbxyuwctmt.com^ +livescience.com##.right-rail > div[class^="subscribe"] +||take-grandincome.life^ +||nster.net^$third-party +dealmoon.com#?#body > .dm-right-float:has(p:contains(/APP|App/)) +||bolssc.com^ +||sullageprofre.com^ +||dokseptaufa.com^ +||d2bkkt3kqfmyo0.cloudfront.net^ +||di2y21.top/jian/jiansshu.js +||a.evrae.xyz^ +www.wp.pl##.relative > :is(div[class^="sc"], .wp-bg-transparent) > div[class^="sc"]:has(> img[src^="https://v.wpimg.pl/"][alt]:first-child + img[src^="https://v.wpimg.pl/"][alt] + div[class^="sc-"]:last-child) +||mttpsy6666.cc^ +soundofhope.org##.itb_ads +||raosmeac.net^$popup +||recipientmuseumdismissed.com^ +##.adv-leaderboard +abema.tv##.com-vod-MobileVODScreen__view-in-app-overlay +ankama.com##.ak-cookies-banner +filarybiznesu.pl##span > div[style*="min-height:"][style*="overflow: hidden;"]:has(> div[id*="_slot_"]) +||xingcdn.com/crate/ad- +@@||tangsanbooks.com^$generichide +||5vbs96dea.com^$popup +nookgaming.com##.ko_fi_widget +/?oo=1&aab=1|$script,third-party,xmlhttprequest,redirect=noopjs +||sleptbereave.com^ +||playwrightsovietcommentary.com^ +teb.com.tr#$#.navbar-header { margin-top: 0!important; } +cnet.com##.c-adDisplay_container +fmoviesto.cc#%#//scriptlet("abort-on-property-read", "Object.prototype.initBrowserSession") +@@||ad.admitad.com/goto/$domain=atavi.com +||myteamdev.com^ +d000d.com,d0000d.com,do0od.com,ds2play.com,doods.pro,dooood.com,dood.sh,dood.li,dood.yt,dood.re,dood.wf,dood.la,dood.pm,dood.so,dood.to,dood.watch,dood.ws#%#//scriptlet("json-prune", "*", "rot_url") +||collectcdn.com/launcher.js$domain=dila.ua +||5vdd.com/360 +||86124673.xyz^$document,popup +||shardycacalia.shop^ +yopmail.com,yopmail.fr,yopmail.net##.pindexhautctn +vezod.com##av-adv-slot +||riotousunspeakablestreet.com^$popup +||ced-ns.sascdn.com/diff/templates/js/overslide/sas-overslide-*.js$script,redirect=noopjs,domain=shinden.pl,important +||levityprogramming.com^ +||ijhweandthepe.info^ +||depirsmandk5.com^$popup +||tradetooth.com^ +@@.ru/premiumtv/*.php*$subdocument,xmlhttprequest,stealth=referrer +##.content_ads +lowcygier.pl##.browser-plugin-info +jetbrains.com###legal-user-acceptance-plugins +||hyjqgpu.top^ +gamecopyworld.com,gamecopyworld.eu##[href^="https://www.kinguin.net/"] +||columnistcandour.com^ +to8to.com##.quoted-outside +||nlyte.aomg5bzv7.com^ +go.chatwork.com##.floating-banner +ganganonline.com##.gn_top_foot_app +##.adv300-250-2 +watson.ch#$##adBlockerDetection { display: block !important; } +||2pc6q54ga.de^ +thepage.ua##.channel__connect-btn +##.adv_336_280 +portal.librus.pl#?#.article-list .row > .article__container:has(> .article__link > .article__image-container > .article__content-inner > .article__sponsored) +insidemarketing.it###informativaPrivacy +||gmxysb.icu^ +||eynol.xyz^ +yiyouliao.com##.yyl-weiruan-ads-swiper +||akamaihd.net^$media,domain=discoveryplus.* +wap.baidu.com##.tab_news +||adsfac.us^ +gledajcrtace.xyz###header-wrap-reklama +baby.ru##.zen-promo +iresearchnet.com##a[href*="/order.html?pid="] > img[src*="/banner"] +||rplhearvc.com^ +||report.seznamzpravy.cz^ +listoffreeware.com##.bannerimg +@@||sadeemapk.com^$generichide +||152media.cloud^ +||2101.l5eamr17d.com^ +androidpit.it,androidpit.com.br##.bannerSidebar +||holidaycoconutconsciousness.com^ +channel4.com###all4gn-adBlock-notification +||psoansumt.net^ +heavyfetish.com##.hf-header-banner +groupon.*###gdpr-bottom-banner +||worthylighteravert.com^ +upworthy.com###upworthyFreeStarVideoAdContainer +aoxx69.net##.touch_icon_ball +tmz.com##.sidebar-widget iframe +vgolos.com.ua###likesplash +##.adHome300x250 +sydsvenskan.se##.ad--mobile +digitaltrends.com##body .dtads-location +||smartadserver.com^ +@@/openads.js$domain=cnvids.com|cimanow.cc +comparic.pl##.container16 +||jnlldyq.com^ +||freeadultcomix.com^$badfilter +daisomall.co.kr##.header_top +||dtylhedgelnham.com^ +||plsrcmp.com^$popup +proprofs.com##.new_ad_wrapper_all +||juznlx.xyz^ +||chouthep.net^$popup +befestigungsfuchs.de,jawoll.de,cafe-royal.com,campingplus.de,bikebox-shop.de,mline.com,blumixx.de,roesle.com,moses-verlag.de,radonline.de,arctic.de#$#body.modal-open { overflow: visible !important; padding-right: 0 !important; } +||yhzjidgc.xyz^ +||kqhi97lf.de^ +||downloadtube.net/*itube +marinetraffic.com##div.hidden-print +cracked.io##[href^="https://vshield.com/"] +washingtonpost.com###fusion-app > div:not([class]):not([id]) > div.bb[style^="padding-left:"][style*="min-height:"] +||xcum.com/_a_xb/ +insidemarketing.it#%#//scriptlet("set-constant", "adblock", "false") +##.dom-content--eu-banner +thesimsresource.com#%#window.sessionStorage.loadedAds = 3; +test.de##.marketing-teaser +||txzqw.me/tupian/ +setlist.fm##.prmtnTop +@@||mapquest.com^$generichide +basenotes.net##.advertblock +||images.tcdn.com.br/files/*/js/newsletter-popup.js +porntube.com##.row > div[class^="col-"]:has(> iframe[title="check this links"]) +flightglobal.com,thriftyfun.com##.adp +goool7.ws,sportbarchik88.com,channels247.net,sport7.biz,sporting77.com,barsportbar.com,sportbar.biz##.tg-button +@@||olhonaviagem.com^$stealth +businessinsider.com,insider.com##.inline-newsletter-form +||elephant-ads.com^$popup +||reecasoabaiz.net^ +franzen.de#%#//scriptlet('set-cookie', 'cookieDeclined', '1') +wsj.com#?##root > div div[class^="WSJTheme--padding"]:has(> div[class^="WSJTheme--adWrapper"]) +||coldflownews.com^$popup +##img[width="460"][height="60"] +@@||thebookee.net^$generichide +androidauthority.com#$#div[data-spotim-slot-size="300x250"] { position: absolute!important; left: -3000px!important; } +||sexy-egirls.com/vast/ +||a.bynix.xyz^ +movies123-online.me#?#body > div[class]:has(> div[id] > div[id] > a[href$="/premium-membership"]) +##.side_col_ad_wrap +||thofteert.com^ +||outlayomnipresentdream.com^ +||differentevidence.com^ +msn.com##.articlebody > .floatleft > iframe[src^="https://widgets.informars.com/"][src*="/mortgage/widgets/MiniMortgageTable.aspx?"] +||noowoochuveb.net^ +simply-hentai.com##.superbanner +||zlgame.top^ +||suozmtcc.com^ +||embedstreams.me/partytown/ +||unskilledexamples.com^ +marktechpost.com##aside.widget > div[data-id="13"] +xtapes.to##.menu-item-42861 +||tforms.fcc-online.pl/public/widget.js +###adsplace4 +||thimblehaltedbounce.com^ +sgcarmart.com##.leadbadv +yenimeram.com.tr#$##myModalSplash { display: none !important; } +##.box_layout_ad +apkmirror.com##.listWidget > .promotedApp +##.preventAcceptance +||aintydevelelastic.com^ +||aulrains.com^ +absurd.blogo.jp##.headlinerss +||date.cursorinfo.co.il^ +||lowtyroguer.com^ +@@||static.quantcast.mgr.consensu.org/*/cmpui-banner.js$domain=cnews.fr +williams-sonoma.com#%#//scriptlet('set-cookie', 'ad_sess_ws_email', 'true') +/adserver.$~stylesheet,~xmlhttprequest +vansky.com##.scol-banner +goodfon.com##.wallpapers__banner240 +||rbsr0.icu^ +fireload.com#?#aside > .justify-center:has(> .adsbygoogle) +||977878.xyz^$document,popup +karaoke-lyrics.net#@##ad_leader +news18.com##body .bell_wrpapper:not(#style_important) +##.adunit-container +xoilac23.net##body .footer-banner:not(#style_important) +||plainwarrant.com^ +||gloumoonees.net^ +fakings.com###undervideo +||remixshop.com/bg/site/ajaxCheckCookiePolicy +manmanw.net##.tlads +player.fm#$#html.has-top-promo.legal-disclaimer body { padding-top: 4em !important; } +best-solarmovie.pro##main + script + div[class^="_"] > div > style + div[id^="_"] +##.MiddleAd +||invitesugar.com^ +||mrskin.com/affiliateframe/ +online2pdf.com##.adboxcontainer +||mydirtyhobby.com^$third-party,domain=~my-dirty-hobby.com|~mydirtyhobby.de +g2a.co##.modal--agreements__curtain +@@||cdn.cookielaw.org^$domain=rp-online.de +||altcoin.care^ +/myvids/mltbn/*$script,subdocument +twitter.com,x.com##div[data-testid="trend"]:has(path[d$="10H8.996V8h7v7z"]) +jetsetter.com###subscription-gate +imgprime.com#%#AG_onLoad(function() {setTimeout(function() { if(linkid) { document.location.href = linkid;};}, 300); }); +@@/fingerprintjs2.min.js$domain=imooc.com +||bdm.ye-su.cn^ +@@||media.trafficjunky.net/flash/js/swfobject.js$domain=keezmovies.com +m.economictimes.com,www-crictracker-com.cdn.ampproject.org###downloadApp +||tabletpcreview.com/wp-content/plugins/wpfront-notification-bar/ +app.handelsblatt.com#$#.show-appinstall-banner #hb-app-header { top: 0px!important; } +bbs.it168.com##.daoh2 + .bor8 +strictlylimitedgames.com,afp.com,aqua-fun.com,onlinetutorials.org,vawoo.co.uk,sabanciuniv.edu,uamodna.com,oggusto.com,beardandblade.com.au,theenglishshavingcompany.com,mebders.com,cactusvpn.com,kaplunoff.com#$#.mfp-wrap { display: none !important; } +||jgqaainj.buzz^ +||piouspoemgoodnight.com^ +||ad.wrtn.ai^ +||cdn.netcatx.com/bid^ +||ettoday.net/style/mobileweb2014/js/smartbanner/jquery.smartbanner. +||miniaturecomfortable.com^ +||risausso.com^ +gamechannel.hu##.post-bottom > span[style*="height:30px;"] +||wellgroomedbat.com^ +pocketnow.com##div[class^="a__sc"][style="z-index: 2147483647;"] +||justjared.com/tools.js +shootz.io###readyDiv #col1 > div[style^="width:300; height: 330;"] > div[style="width:300; height: 250; background-color: #000"] +||ishikawa.steeelm.online^ +||tltmjevd.xyz^ +##.news-ad-square-a +||computer.aomg5bzv7.com^ +@@||hgtv.ca^$generichide +###header-ad-holder +postimees.ee#$#.cookie-paywall { display: none !important; } +||allegationcolanderprinter.com^ +tempr.email##.awrapper +||iprima.cz/*/*tagid=*&keywords=$domain=iprima.cz +||hildrenastheyc.info^ +||101m3.com^ +share-your-photo.com#@##cookie-consent +/the_top$domain=28188.com|28188.net +##.BlockAd +letsgodigital.org,letsgomobile.org##.partners-bar +boldsky.com#$#header { margin-bottom: 65px!important; } +||spicytucker.shop^ +###ad_unit +hqdoor.com##.index_ad2 +openbankingbrasil.org.br#$#.modal-privacidade ~ .modal-backdrop { display: none!important; } +||blackandwhite-temporary.com^ +||guandads.com^$third-party +||huntershoemaker.com^ +9ht.com,pc0359.cn,pc6.com##.downnow +walmart.com###vh-app-container +||ad.responsad1.space^ +||asricewaterho.com^ +||x.castanet.net^ +novostroy.*##div[class^="Cookie_wrapper"] +||gdpr.laxd.com^ +##.future-cookie-bar +/poppy^$script,domain=pornq.com|see.xxx +##.bottom-ads-wrapper +||winporn.*/templates/base_master/js/jquery.shows2.min.js +||thargookroge.net^ +||mp4upload.com/vjs/iframe2ad.html +/appnei-huodong.oss- +actronics-gmbh.de#$##cookie-modal { display: none !important; } +yellowbridge.com#$?##pgSkyM { remove: true; } +||headstonerinse.com^ +||hideip.me/src/img/rekl/ +onlyseries.net#%#//scriptlet("remove-attr", "href", "a[href]#clickfakeplayer") +||fnbauniukvi.com^ +walterfootball.com###wf_brow_box +||arosepageant.com^ +palestinechronicle.com##.widget_media_image > a[href^="https://www.amazon.com/"] +@@||urbanmilwaukee.com/wp-content/themes/*/js/prebid-ads.js +101.ru##a[href="/ads_disable"] +bleepingcomputer.com#$#.bc_right_sidebar { min-height: unset !important; } +app.link.co##.is-breakpoint-widescreen[data-overlay-container="true"] > div.when-direction-column-reverse > div.is-breakpoint-widescreen +kijomatomelog.com##span[style="font-weight: bold;"] ~ a[href^="http://matomeantena.com/feed/"] ~ a[href][target="_blank"] +||psomsoorsa.com^$document +goal.ge##.web-promotion +boxthislap.org,ticgn.com,wtf1.co.uk##.td-footer-wrapper +||29apfjmg2.de^ +##.ad-right3 +||disposalsirbloodless.com^ +||d1b240xv9h0q8y.cloudfront.net^ +||0uvt8b.cn^ +informer.com##.aaa0 +##.ad_bottom_leaderboard +baidu.com###j-ad-side +||esauphultough.net^ +||it.hokerlywaffies.com^ +###div-insticator-ad-4 +danas.hr#?#.BaseLayout_content div[class^="css-"]:has(> div[style] > div[class^="css-"] > div.SlotContainer_container a[href^="https://voyo.rtl.hr/sadrzaj/superstar?"]) +||charltonmedia.com^$third-party +veryfiles.com##.creation-container > a[href][target="_blank"].btn-success +||adaround.net^ +slovaknet.sk###leftbar +||buffetreboundfoul.com^ +@@||static.adsafeprotected.com/vans-adapter-google-ima.js$domain=wsj.com +@@||cookie-cdn.cookiepro.com/scripttemplates/*/$domain=app.nlziet.nl +escortnews.eu,topescort.com##.fBanners +||ojrq.net^ +||naughtyblog.org/wp-content/images/k2s/ +||pornalin.com/skd +blisseyhusband.in#@#.ad_unit +##.pp_ad_code_adtxt +tvn24.pl##iframe.__ipPerunElement +lobpreissuche.de,zsl-bw.de,gelsenkirchen.de,sgs-cqe.de,km-bw.de,heinrich-braun-klinikum.de,kzvn.de,pleissental-klinik.de,bsw.de,contabo.de,avs.de,skybet.de###cookiehinweis +||qxzlmzt.xyz^ +swoodoo.com##.Common-Privacy-AjaxHeaderCookiesMessage +||4q87v.icu^ +@@/adslider/*$domain=firstbank.com.tw +@@||litv.tv/ads/ads.js +csaladinet.hu###CookieAcceptLayer +myviptuto.com#$##levelmaxblock { display: none!important; } +hdpornlove.net##body > #im +||enx5.online^ +||ad-delivery.net/px.gif?$image,redirect=1x1-transparent.gif,domain=explorecams.com,important +siemens-home.bsh-group.com#%#//scriptlet('remove-class', 'pinned', 'body.pinned.cookielaw-blur-background') +||howtodeleteonline.com/assets/images/ads/ +metro.co.uk##.trending-post-strip +##a[href*="/mobads.php?"] +/rightad. +##.advertising-fixed +/wp-content/plugins/useful-banner-manager/* +||wxhiojortldjyegtkx.bid^$popup +||syringeitch.com^ +||allmediadesk.com^$third-party +enwi-hz.de#@##cookieBar +mumsnet.com#?#aside[class*="col-span-4"] > .my-20 > .relative:has(> div[id^="mn-mpu-"]) +||pushsar.com^$third-party +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,important,domain=randomlists.com +##.adTag-top +/adjs.php$script +thehindubusinessline.com#$#.tp-backdrop { display: none!important; } +||bd.czxuexi.com^ +||8542.4puuqeh41.com^ +##.advertFullBanner +||jaychu.top^ +@@||bc.vc/fly/ads.js +bilyoner.com#%#//scriptlet('set-local-storage-item', 'desktop/acceptAdvertisementCookies', 'false') +notion.site,notion.so#%#//scriptlet('set-cookie', 'notion_cookie_consent', '0') +pdfdrive.com###alert-form +fastpeoplesearch.com##.ad-widget-container +zeroupload.com#%#//scriptlet('abort-current-inline-script', 'EventTarget.prototype.addEventListener', '/nextFunction|google_ad_client|adsbygoogle\.js/') +@@||nitroflare.com/view/$xmlhttprequest +||advertnetworks.com^ +@@||opensubtitles.org/gfx/banners_campaigns/2x2.gif| +##.ad--large +||fentent.stre4mplay.one^ +||kosik.cz/vue/*/CookieBarModal. +moneyvox.fr#%#//scriptlet('remove-cookie', 'mvx_consult') +i.factor.ua#$#body.access { overflow: auto !important; position: static !important; } +###removeadlink +||right.com.cn/forum/static/image/common/logo +||housemaiddevolution.com^ +##[data-name="adaptiveConstructorAd"] +||baidu.com/ndview/interface/hx/ +essentiallysports.com##div[style="text-align:center"] > p[class*="jsx-"][style^="margin:0"] +client.googiehost.com##center > p > strong +||atcelebitor.com^ +@@||youmaker.com/js/prebid.js$domain=epochtimes.com +dvdsreleasedates.com##div[style*="width:728px;height:90px;"] +||blobsurnameincessant.com^ +up-4ever.net,helpnetsecurity.com,javstream.co,files.im,readsnk.com,tokyoghoulre.com,demonslayermanga.com,thelittleslush.com,famousinternetgirls.com,fake-it.ws,sexasia.net,groundedtechs.com,up-load.one,lowendbox.com##img[width="300"][height="250"] +rule34porn.net,mangoporn.net##a[href="https://theporndude.com"] +||0bcb1fbd02.e9d13e3e01.com^ +@@||aax-us-east.amazon-adsystem.com/x/getad?src=$domain=pipeflare.io +gearspace.com###container__DesktopForumdisplayHalfway +@@||qiantucdn.com^$stealth,domain=58pic.com +||gdxxb.com^$third-party +||cobwebcomprehension.com^ +technofaq.org##.widget_rssiconwidget +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=sivadictionaries.com +szxx.com.cn###A0 +||condescendingcertainly.com^ +@@||yimg.com/ss/rapid-3.*.js$domain=hk.yahoo.com|tw.yahoo.com +delmagyar.hu##a[href^="https://frappeguide.hu/?utm_source="][href$="&utm_campaign=promo"] +duzcetv.com##.wpicon +thurrott.com##.thurrott-content-from-editor > div[data-thurrott-section="inline-form"] +||qquhzi4f3.com^ +watchcartoononline.bz###info > div.BorderColorChangeElement +||raogjkrgjtrml.xyz^ +trauer.gn-online.de###gncookiebanner +##.googleads +||tuneshave.com^$popup +@@||ads.kbmax.com^$domain=adspipe.com +||loolausufouw.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.l_post + div[class]:not(.l_post) +footybite.cc###kis +npr.org#%#//scriptlet('abort-on-stack-trace', 'Math.max', '/applyFix[\s\S]*?modalOpened[\s\S]*?cdn\.piano\.io/') +##.wp-block-tpd-block-tpd-ads +opendemocracy.net##.donate__sticky-banner +||hoanaijo.com^ +smicro.eu##.kookiecheck +go.tvn24.pl##.rodo-notice +||adsolut.in^ +||cntv.cn/hezuo/ +||sealthatleak.com^$popup +reclaimthenet.org##.elementor-form-fields-wrapper +wedding.mynavi.jp##.headerBannerCampaign +||understandassure.com^ +fireweatheravalanche.org#?#body > section:has(> div.container > div.row #mc-embedded-subscribe-form) +make.com##div[class*="CookieBanner_"] +jagex.com##.c-cookie-consent +||contextweb.com^ +||b903c2.xyz^$document,popup +nova.cz#%#//scriptlet('prevent-fetch', 'ads-twitter.com') +dwrfslsqpdfqfwy.net#%#(function(){var a;Object.defineProperty(window,"initLbjs",{get:function(){return a},set:function(c){a=function(a,b){b.AdPop=!1;return c(a,b)}}})})(); +||0438336acf.0a74314cd1.com^ +||38fbsbhhg0702m.shop^ +computer-live.com###qLoverlay +||go.coralsands.xyz^ +##.html5-ad-progress-list +###ads1_box +||rapidhits.net^$popup +||xlifcbyihnhvmcy.xyz^ +||deviantart.com/*/?realEstateId= +@@||ujinbi.com/UpLoadFile/guanggao/ +||helmetregent.com^ +reviewjournal.com,embarcadero.com##.signup-box +||ignorespurana.com^ +loldk.com###meizi_ad +||cdn.contentsitesrv.com/js/push/$third-party +/popup-domination/*$~stylesheet +gadgets.ndtv.com##.__agifstk +/js/adb.js$domain=instload.com|twitload.com +@@||192.168.*/advertising_$stylesheet +stoneacre.co.uk#?#div[data-fetch-key="1"] ~ div:has(div[data-cy="cookie-bar"]) +||sheshaft.com/js/script.js^ +wsj.com##.e1cojiod1 +||viistroy.com^ +||vm8lm1vp.xyz^ +interest.co.nz#%#//scriptlet('prevent-element-src-loading', 'script', 'fastlane.rubiconproject.com') +intelligenceonline.com#$#body.modal-open { overflow: auto !important; } +subito.it##div[class^="AppWidget_download-box-wrapper"] +||d3hyoy1d16gfg0.cloudfront.net^ +captainaltcoin.com,dailyboulder.com,freedesignresources.net,ripplecoinnews.com,utahgunexchange.com,webkinznewz.ganzworld.com##.widget_text +||fuimg.com^$domain=678cn.com|cfzhushou.com +||mvujvxc.com^ +###advertRightTopPosition +||nandweandthe.org^ +||anonyviet.com/wp-content/uploads/2018/05/lmintArtboard-1.svg +##.adRemove +inn.co.il###taboola-mid-main-column-thumbnails +##.fullBleedAd +expedia.co.jp#%#//scriptlet('trusted-set-cookie-reload', 'NavActions', 'acctWasOpened') +||ys2000.cdn.bcebos.com^ +/service/ad/* +##.ad-pub +||4739.4puuqeh41.com^ +||d35fnytsc51gnr.cloudfront.net^ +||zlinkb.com^$popup +||gulfimply.com^ +@@||v.fwmrm.net/ad/p/1?$domain=cdn.watch.aetnd.com +walkingclub.org.uk#@#.ad_div +||forbidcrenels.com^ +giantfreakinrobot.com##.pw-med-rect-atf-container +@@||deref-gmx.net/mail/client/*/dereferrer/?redirectUrl=$stealth +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=bowfile.com +askdifference.com#%#//scriptlet("abort-on-property-read", "adbd") +##.dg-gpt-ad-container +space.com##.jwplayer__wrapper +###adwidget-5 +@@||sonichits.com^$generichide +filemail.com###mobile-go-to-app +beinsports.com##.bng-bg-mainGrayLight > div > div[class$="bng-w-\[100%\] bng-min-h-\[300px\]"] +@@||play.tv3.ee/static/scripts/adroot/facebook.net/fbevents.js +mistressdestiny.com##table[width="775"] +||bdp.cn^$third-party +clover.fm##div[style*="width:975px; height:90px;"] +||cloudfront.net/?rwlrd=$redirect=noopframe,domain=bowfile.com +||steamtraffic.com^$third-party +investsocial.com###classic_style_link > #quotes-inf +byjus.com##.bcFloat +/adintrs/* +||dxsjcz.cn^ +||suddslife.com^ +/cookiesPopup. +||dustywave.com^ +||dead-put.com^ +jetbrains.com##.slideup-banner +||mamamia.vintageporno.stream^ +##.adscontentcenter +litres.ru##.discount_banner +||helpfulduty.pro^ +qq.com##.g-qzp-bottom +nextgenupdate.com#$##ad-block { position: absolute!important; left: -3000px!important; } +moviekhhd.biz##a[alt^="Subscribe"] +3movs.com###related_videos_overlay > div.centered[style] +artefakt.pl,sunrisesystem.pl,grupatense.pl,semahead.agency,widzialni.pl###gdprCapeBanner +||salt.aomg5bzv7.com^ +hedgefollow.com##[data-dee_type^="large_banner"] +elearningindustry.com##a[href^="https://elearningindustry.com/newsletter-signup?"] > img +news.baidu.com##.recommend-mask +reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion#@#.googleAd +lcpdfr.com#%#//scriptlet("abort-current-inline-script", "_lcpdfr", "renderedAnnoyance") +jornaldenegocios.pt###notificacao +||imgbox.com/images/tpd.png +mts.by##.main-slider__item[style*="/content/app"] +##.adHeadlineSummary +givewater.com#$#.pum-overlay[data-popmake*="-install"] { display: none !important; } +levi.com.br##div[class$="-x-consentLgpd"] +chronicle.com#%#//scriptlet('set-attr', 'chron-head#chron-head-data:not([data-slc-name])', 'data-slc-name', 'true') +||walla.co.il/p.php +||188.42.84.160^ +xxx-sex.fun###fluid-onpause_spot > *:not([class="fluid-play"]) +pik.bg##div[class^="banners"] +||nkbpft.xyz^ +||zs.varicalpraiser.com^ +chargepoint.com#@#.cookie-consent +||eliss-vas.com^ +||discordapp.com/widget?id=$domain=hentaiz.org|animeru.tv +||eurse.com^ +btnull.org,gyg.la,gyg.si,gying.in,gying.net,gying.org,gying.si###ly +@@||storage.googleapis.com/ni-assets/assets/snippets/cookie-consent.*.min.js$domain=native-instruments.com +thefastingmethod.com#?#.fusion-row section.widget:has(> div.textwidget > form.mc4wp-form) +###ad-large-header +##.hp_ad_300 +porngames.games###bio_ep +189.cn#@#.share-panel +||cricfree.sc/banner.png +###cookieAgreementContent +||c0090982ac.a8c4a6083a.com^ +||eccie.net/provider_ads/ +apnews.com##form[class^="headerForm"] +amazon.com#@#.a-link-normal[href*="&adId="] +||securepubads.g.doubleclick.net/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=bloomberg.com,important +||3517ff54c9.8a67b58b74.com^ +||gay4porn.com/player/html.php?aid= +@@||gk.sina.cn/v1/gkmatch? +||api.tinypass.com^$domain=dallasnews.com +seznamzpravy.cz##div[data-e2e="ogm-branding"] > div:has(> div > div > div[data-e2e="mol-advert"]) +||m.aty.sohu.com^ +||mindedcarious.com^ +@@||cdn.bootcdn.net^$script,domain=38kanshu.net|tianz.la +@@||eesc.europa.eu/sites/all/modules/contrib/eu_cookie_compliance/js/jquery.cookie-*.min.js +/house-ads/*$image +||butterfly.dharsh.dev^ +cocokara-next.com##.shopping +boingboing.net##.boing-leaderboard-below-menu +||c41d7608cb.cf1335386a.com^ +##.add_300x250 +bleepingcomputer.com##.cz-toa-wrapp +horriblesubs.info#?##secondary > div.well:has(> div.showpage-sponsor) +||numbersinsufficientone.com^ +||onlineuserprotector.com^ +thefappening.wiki,naughtyblog.org##div[class^="promo-"] +qiita.com#%#//scriptlet('set-local-storage-item', 'next_optin_check_time', 'false') +||daiboit.com^ +djmag.com,healthyplace.com##.block-ad-block +@@||lshstream.xyz/hls/$xmlhttprequest +||exoprsdds.com^ +||formatstock.com^ +deepfakeporn.net##.notice +@@||oddee.com/w_files/scripts/adblock.js +||landandfloor.com^ +##.ad-mobile--sticky +###dsk-banner-ad-b +aftvnews.com###text-16:nth-child(2) +||clownfish.wrestlingiq.com^ +blog.xuite.net###privacyDeclare +||qoredi.com^ +rspro.xyz#@#.c-ads +digitalo.de#$#.is-reveal-open { overflow: visible !important; } +||overlivedub.com^ +raceoflifegame.com,donguralesko.pl,poradnikogrodniczy.pl###cookiesEU-box +blue.vanmarcke.com#@##cookieModal +digitalsynopsis.com#$##ad_bait.ad_slot { display: block !important; } +||revfusion.net^ +codetiburon.com#$#body { overflow: visible!important; padding-right: 0!important; } +rosbalt.ru##div.fixed:has(> div > a[href="/pages/privacy_policy"]) +erogazoo.net##a[href^="https://newmofu.doorblog.jp/"] +||terttalkinhitin.pro^ +pbs.org#$#body.modal-open { overflow: visible !important; padding-right: 0 !important; } +###right_bg_ad +||musicstreetjournal.com/banner/ +tinyview.com##.open-app-container +mydigit.cn##.txtMes +||gg.warmanmamelon.com^ +||17c87b4081.2615bff79f.com^ +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.top_toutu_admarks + .tbui_slideshow_list +##.square-sponsorship +||flippantguilt.com^ +||mhdlll.com^ +||guineapig.espressive.com^ +era.be#@#.eu-cookie-compliance-banner:not(body):not(html) +boundhub.com##.tab7le +/adriver.$~script,domain=~adriver.co +||cnyw.net/autoloader.js +krone.at#$##krn-privacy-center { display: none!important; } +||mostlyparabledejected.com^ +dukechronicle.com##.flytead +##.widget_ep_rotating_ad_widget +||ads.ad3d.icu^ +superpixel.com##.spui-subscribe-footer-modal +||aisy19.com/dm/ +||7anfpatlo8lwmb.com^ +esslinger-zeitung.de##.nfy-searea > .rf-servicebox-html_content +###main_rec_ad +hbm.com#$#body.modal-open { overflow: auto !important; padding-right: 0 !important; } +||anguishworst.com^ +||mpgh.net/images/mini_offur.png +||a.yamcha.xyz^ +@@||st.pussyspace.com/style/03/img/navbg.hover.png| +||oqddkgixmqhovv.xyz^ +yuumi-sokuhou.com##aside div[id^="custom_html-"] +||vvehvch.com^ +drykorn.com,schwalbe.com#$#body { overflow: auto !important; padding-right: 0 !important; } +||bannery.hledejceny.cz^$third-party +@@||api.usercentrics.eu/settings^$domain=studycheck.de +msn.com###conditionalbanner +||themespixel.net/banners/ +@@||megaup.net^$generichide +@@||indianrailways.info/js/adblocker.js +||namecheap.com/graphics/linkus/ +penangpropertytalk.com###text-31 +hrw.org##.donation-block__content +||lockerdomecdn.com^ +||f5zv2.icu^ +||adsfac.eu^ +||api.vuukle.com/api/v*/getModal?domain= +moviequotedb.com,multimediaxis.de##.altamira-gdpr-cookie-consent +||v1.19purify.com^ +uplod.cc##.fmore +||interclics.com^$popup +##.dfp-ad-hideempty +||dolefulitaly.com^ +||jpcctez.icu^ +||footstepnoneappetite.com^ +pornsos.com##.a-box +befirst.info##.p-cookies +||tarvardsusyseinpou.info^ +||inpage-push.net^ +||zlinkv.com^$popup +||herringgloomilytennis.com^ +adlpu.com#%#(function(){var c=document.addEventListener;document.addEventListener=function(a,b,d,e){"click"!=a&&-1==b.toString().indexOf('trigerred')&&c(a,b,d,e)}.bind(document);})(); +||berlipurplin.com^ +||moilizoi.com^$popup +linkvertise.download#@##headerTopAd +||kickassanimes.info/a_im/ +||adrsp.net^$third-party +elektroda.pl#?#.col-md-8 div > form[action^="https://www.tme.eu/pl/katalog/"]:upward(1) +cargames.com,puzzlegame.com,yiv.com#%#//scriptlet('set-constant', 'adConfig', 'noopFunc') +||alkosalvb.filasofighit.com^ +gruener-punkt.de#$##cookie-modal { display: none!important; } +||aboveredirect.top^$popup +||eu5qwt3o.beauty^$popup +||offerreality.com^$third-party +||isabellahopepancake.com^ +##.margin0-ads +bing.com#%#!function(){const e={apply:(e,l,t)=>{const o=t[0];return o?.includes(".b_ad,")?t[0]="#b_results":o?.includes(".b_restorableLink")&&(t[0]=".b_algo"),Reflect.apply(e,l,t)}};window.Element.prototype.querySelectorAll=new Proxy(window.Element.prototype.querySelectorAll,e)}(); +||chesscrowd.com^ +||expressproducer.com^ +||pixelmuse.store^ +av01.tv#?#div[style] > iframe[src^="https://kgua0o66bcw8.com/"]:upward(1) +ads.nipr.ac.jp#@##ads-header +4gamers.com.tw##.home-carousel-container +adjaranet.com##.hedgehog-overlay-gg +###lscookiesMax +digilibraries.com#%#//scriptlet("set-constant", "detect", "undefined") +jobsite.co.uk##div[data-testid="appBanner"] +||eetognauy.net^ +##.miniad +awesomeopensource.com##div[class^="carbon-projects-page-native-ad"] +##img[src*=".sinaimg."][style="width:150px;height:300px"] +windowsnoticias.com###special-sidebar-template +beianbeian.com##div[style="height: 62px;margin-bottom: 20px;"] + .layui-table +||desertedbreath.com^ +@@||cmp.inmobi.com/choice/*/choice.js$domain=ilgiornale.it +t-hsn.com#@#.ad-top +antyweb.pl##.container[style="min-height:300px;"] +elektroda.pl#?#.the-content > div[class]:has(> div > a[href][target="_blank"][onclick*="'Patron', 'Click Button'"]) +deutschlandkurier.de#$#.sgpb-popup-overlay { display: none !important; } +||xfdmihlzrmks.com^ +cc.com#@#.plainAd +ekstrabladet.dk,otto.haribo.com,flughafen-zuerich.ch,stock3.com#%#//scriptlet('trusted-click-element', 'button#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll') +###yahoo_ads +tennisuptodate.com##.raw-html-component:has(div[id^="snack_"]) +||blehcourt.com^$document +||carbonads.com^ +||ilivestream.com/pu/*/pu.js +##.ads-google +lovescout24.de###i-cookie-cnil +||cidianwang.com/css/tj. +||smqzj.com/seo.js +upornia.com##.jw-title-secondary > div.jw-reset +tportal.hr,autozeitung.de,wunderweib.de##.newsletterSubscription +||syndication.whibd.com^ +@@||cloudfront.net/wp-content/uploads/products/*-300x600.$image,domain=mecox.wpengine.com +||ambeapres.shop^ +###wrapperAdsTopLeft +||6416.l5eamr17d.com^ +girlsofdesire.org##a[href^="http://refer.ccbill.com/"] +yesweekly.com##.block-newsletter-signup +||interestingengineering.com/partial/connatix_desktop.html +thehindubusinessline.com##.socialLindiv +kompas.com#%#//scriptlet('set-cookie', 'cbapps_close', '1') +||terabigyellowmotha.info^ +@@||dsharer.com/-ads-banner.js +dexscreener.com##.custom-97cj9d +##.sponsor-right +taihainet.com##.top-info +||vikuhiaor.com^ +||skijumping.pl/content/images/banner/ +techilife.com###sidebar > #text-4 +||426b5ba3f1.c5cdfd1601.com^ +www.kinopoisk.ru##a[href="https://hd.kinopoisk.ru/?source=kinopoisk_head_button"] +||droppingforests.com^ +maklerinmuenster.de,garten-bienen.at###privacyCtrl +||mishandlemole.com^ +goo.ne.jp##.topBanner +||bets.to^$popup +||b6d8052764.13e72f87ba.com^ +||contagionwashingreduction.com^ +||ckl.fbmedia-ckl.com^$all +||pornfapr.com/frloadr.js +||aivoonsa.xyz^ +sprzedajemy.pl##.desktopLayTopPremiumWrp +@@||forrest.adverticum.net/inapp/user^$domain=embed.indavideo.hu +topfiveforex.com###wcfloatDiv +blog.insurancegold.in,blog.cryptowidgets.net#%#function preventError(d){window.addEventListener("error",function(a){if(a.srcElement&&a.srcElement.src){const b=new RegExp(d);b.test(a.srcElement.src)&&(a.srcElement.onerror=function(){})}},!0)}preventError("^."); +ibaotu.com##.bg-feedback +@@||aka-cdn.adtechus.com/dt/common/DAC.js$domain=casabrutus.com +stilord.*#%#//scriptlet('set-cookie', 'plenty-shop-cookie', '0') +mtb-news.de##.mtbn-newsletter-bar +book.dmm.co.jp#?#main > div:has(> a[href="https://www.dmm.co.jp/pr/premium/welcome/"]) +vknsorgula.net#%#//scriptlet("abort-current-inline-script", "document.createElement", "adsbygoogle.js") +||alicdn.com/img/ibank/*_1980598585. +zus.pl#$#body[class*="overflow"] { overflow: auto !important; } +||zoukankan.com^$csp=script-src 'self' * 'unsafe-eval' +2345.com###J_tip_stopXP +||whitepark9.com^ +karvitt.com#@#ins.adsbygoogle[data-ad-client] +||routes.name^$document +##.cookieDisclaimerContainer +||dogt.xyz^ +##.ad_type_adsense +||newsgrabber.me^$third-party +icube.ru#@#.top-banners +/1unibet.png +||ads.betweendigital.com^ +##.ad_160_600 +office.com##.m-alert.f-information +||reflexcolin.com^ +nowscore.com###toperText +mail.ru##.ph-project-promo-container +@@||embedstreams.me^$stealth=referrer,subdocument +||notifpushnext.net^$popup +###wgtAd +||eeptoabs.com^ +verdi-eiendom.no###cookieModal ~ .reveal-modal-bg +tvfindr.com#%#//scriptlet('trusted-click-element', '#c-p-bn', '', '300') +1plus1.ua#$#.has-shown-cookie > header { top: 0 !important; } +oxygenu.xyz#%#//scriptlet("abort-on-property-read", "detect_adblock") +laposte.net###privacy-overlay +bankbazaar.com##[height="80"] +emea.flow.microsoft.com###cookie-banner-auth-container +blesk.cz##div[class^="stickyContentBottom_"] +dea.digar.ee###deacookienotificationbarcontainer +###popup-webpage-cookie +id.ytmp3.plus###ba +||quintessential-telephone.pro^ +filmcomment.com#%#//scriptlet('trusted-set-cookie', 'fc_global_ad', 'true') +m.foodingredientsfirst.com##div[id^="CookiePolicy"] +light-it.net##lt-popup-wrapper +linuxandubuntu.com##.YouTubePopUp-Wrap +247wallst.com,cubdomain.com##.hello-bar +###adSenseBox +purexbox.com##.insert +||laughablelizards.com^ +kinoseans.pl#%#//scriptlet("set-constant", "count", "0") +notino.*###exponea-cookie-compliance +||31daa5lnq.de^ +||1028images.com^ +airvpn.org###air_cookielaw_container +##.sponsBox +||fliedridgin.com^ +linkedin.com#?#div.feed-shared-update-v2:-abp-has(span.update-components-actor__description:-abp-contains(/Anzeige|Sponsored|Promoted|Dipromosikan|Propagováno|Promoveret|Gesponsert|Promocionado|促銷內容|Post sponsorisé|프로모션|Post sponsorizzato|广告|プロモーション|Treść promowana|Patrocinado|Promovat|Продвигается|Marknadsfört|Nai-promote|ได้รับการโปรโมท|Öne çıkarılan içerik|Gepromoot|الترويج/)) +webshort.in#%#//scriptlet("prevent-window-open") +kcby.com##div[class^="index-module_premium_"] +||sukedrevenued.org^ +||lugajxy.com^ +decrypt.co#$#body { overflow: auto !important; } +||yomiuri.co.jp/assets/images/footer-subscribe/ +||iuc1.space^ +laptrinhx.com#@#.post-ads +||kami-ch.com/blogparts/ +ici.tou.tv#%#//scriptlet('set-cookie', 'toutv_cookies_usage_production', '1') +gamer.com.tw##.b-list_ad +||da.daji.com^ +chacuo.net###mailtooltipss +@@||cdn*.esimg.jp/resize/*/image/nativead/ +hexieshe.cn##a[href^="http://zd.zhiketong.cn/"] +@@||cdn.ex.co/player/$domain=reviewjournal.com +||sconvtrk.com^ +||huanqiucdn.cn/huanqiu/js/www/common/detected_block. +||imgshare.info^$badfilter +||raheglin.xyz^ +exabytetv.info###deadblocker_dialog +||adtaily.pl^ +||equanimitypresentimentelectronics.com^ +@@.com/embed2.php?player=$stealth=referrer +##.adunit_300x250 +||lemur.a-and-a-trucking.com^ +||settledapproximatesuit.com^ +vumoo.cc#%#//scriptlet("remove-attr", "href", "a[href]#clickfakeplayer") +cinespot.net##.ad-image +:18443/*/*-*-*.html$subdocument,third-party +||zoaptaup.com^ +@@||reels2watch.com/hls/$stealth +economictimes.indiatimes.com##.btmSec +euroinvision.ru###fancybox-overlay +pallabmobile.in,woowebtools.com,wooseotools.com##div[style^="position: fixed; width: 100vw;"][style$="z-index: 999999;"] +kokaihop.se##.ads-wrapper-main +||iqilu.com/getZone.php +||osdmuxzag.com^ +forsal.pl##.videoScroll +runningnews.gr#%#//scriptlet("remove-attr", "onselectstart", "[onselectstart]") +sinefy3.com##.btn-watch-together.app +||kaitakavixen.shop^ +sports.sina.com.cn##a[href^="http://sports.sina.com.cn/download/"] > img +maritimeherald.com###right-side-top > aside#text-17 +||convellparcels.click^ +||mncvjhg.com^ +||marawaresearch.com/js/wosevu.js +afisha.bigmir.net##.b-disclaimer +||porntrack.com^$third-party +/serveads.php$script +.prebid-bundle. +webmd.com###ContentPane40 +##.cl-ad-billboard +rakuten-bank.co.jp##.jack-contents +||flogpointythirteen.com^ +member.livedoor.com###loginAdwall +||broadboundary.com^ +||gaimoupy.net^ +windowschimp.com#$#.tl-states-root { display: none !important; } +npr.org###callout-end-of-story-mount-piano-wrap +blog.icook.tw##span[class^="style_adUnit"] +guides.wp-bullet.com##[style="height: 288px;"] +zazoom.it###zazoom_it_970x90_desktop_leaderboard +||optimatic.com^ +||somethingprecursorfairfax.com^ +||2oic9fn1zvq3bzng.uyybde07w.com^ +luxuretv.com##.erogame +kempinski.com###cookie-confirmation +/pornrabbit.com\/[a-z0-9]{1,2}.php/$domain=pornrabbit.com +baseconnect.in#$#.modalBanner__overlay { display: none!important; } +psycom.net###modalpop +hmoeh.com##div[class] > div[class]:has(> a[href] > img[src^="https://ad."]) +||gruponn.com^ +||betxerneastor.club^ +##.u-cookies-consent +@@||ipip.net/ping.php? +youxi.baidu.com###coupletBanner +united-internet.de##body.dp--cookie-consent .page-overlay:not(#style_important) +auto.ru#$#div[role="button"][class="Backdrop"] { display: none!important; } +za.gl,za.uy#%#//scriptlet("adjust-setInterval", "timeCount", "*", "0.2") +||static.zongheng.com^*/logger.min.js +||byvue.com^$popup +/993dy_new//gg123/* +||anywlan.com/link/*.gif +||ifengimg.com/mappa/ +chrome-stats.com##.chrome-stats_com_billboard +blog.livedoor.jp###main-column > div.kiziue +freeview.com.au#$##adsModal { display: none!important; } +movies4u.*#%#//scriptlet('abort-on-property-write', 'app_advert') +ev-database.org##.adslot_detail2 +aktualne.cz###kulublu-mulu +diskpart.com###promo-rightbox-mini-ub +||workedqtam.com^ +||code.bizdirlib.com^ +_gpt_ads. +advil.com##.gigyaform-wrapper +###ad-unit-right-middle-300-250 +cnet.com###video-rectangle +moslenta.ru##.content a[href="https://t.me/moslentaru"] +||obsidiancutter.top^$popup +||psergete.com^ +###block_ad2 +||dormouse.consentkit.com^ +||wemtagoowhoohiz.net^ +electronicsandyou.com#?#.sidebar-content > div.widget > div.textwidget ins.adsbygoogle:upward(div.widget) +||admsapi.businessweekly.com.tw^ +munichmag.de##div[x-data="cookieConsent()"] +news.sky.com##.mpu-1 +theoceancleanup.com#@#.js-cookie-bar +kts.weszlo.com#%#//scriptlet('set-cookie', 'cookiesActive', 'false') +##.js-cookie-container +##.commercial-unit-mobile-bottom +||florenfile.com/images/Florenfile-729x90.gif +degum.de###cookiemanager +glasswire.com##.buy-banner +gamesystemrequirements.com##.act_eng +@@||aetv.com^$generichide +bleedingcool.com,heatmap.news,jamaicaobserver.com###bottom_leaderboard +hufeisenkrater.de#@##cookieNotice +||anglezinccompassionate.com^ +||xhbshv.xyz^ +||iy8yhpmgrcpwkcvh.pro^ +theportugalnews.com##.ppp-banner +gustoblog.it#%#//scriptlet('set-constant', 'adBlockRunning', 'false') +||sixsigmatraffic.com^$third-party +||topichawaii.com^ +mobilesyrup.com##.sidebarSponsoredAd +||sina.com.cn/other/src/sfc_app_sidebar.js +||bfhueh.top^ +thegazette.com##.newsletter_sign_up_page_breaker +||veryt111.fun^ +nicotv.me##.clearfix-ads +||webfanclub.com^ +||dofap.com/banners/ +dlford.io#%#(function() { try { if ('undefined' != typeof localStorage) { localStorage.setItem('closedPrivacyNotice', 'true') } } catch (ex) {} })(); +egon-w-kreutzer.de#%#//scriptlet('trusted-click-element', 'a[style="order: 1;"]') +||chazidian.com/Statics/images/ad_ +imobiliare.ro#$##modalCookies { display:none!important; } +outofmemory.cn##.tgBar +||falsefeet.com^ +kocpc.com.tw##.feedly-link +sexxx.cc###under_playerBanner +citybuzz.pl#?#.g1-collection-items > .g1-collection-item:has(> .g1-newsletter) +||d1mcwmzol446xa.cloudfront.net^ +||tophostingapp.com/abdetectorpro.script.js +_ad_banner. +||subscriberbeetlejackal.com^ +##.adsninja-ad-zone +/template/bingfeng/statics/js/pingbi.js +||adshort.space^ +###gnt_atomsnc +||endorsementgrasshopper.com^ +||clik.pw/bomb.png$popup +inoreader.com#%#//scriptlet('set-cookie', 'promo_sidebar_dismissed', '1') +##.adBoxBorder +dlkoo.cc##ins[id^="tanxssp-outer-conmm_"] +benesse.jp###inter +ok.xxx,pornhat.com##.before-player +||bio-equip.com/uploadimages/peiqing.gif +||uwavoptig.com^ +aol.com#@#.adwrap +||outstantewq.info^ +||cvgrszkg.xyz^ +||noticiasdatv.uol.com.br/static/js/ntv-policy-alert.min.js +torontovka.com##tor-subscribe-btn +wowway.net###sc_home_news_banner +vipleague.tv#@#.adSense +mymma.pl##[class$="idebar"] #custom_html-3 +tukif.com##.vjs-producer +subscity.ru#?#.undernavbar-container:has(> div:contains(Подписывайтесь на нас)) +||hcqumrjbx.xyz^ +||snlpclc.com^ +olympics.com#$#.tk-header.headroom[data-adv="true"] { top: 0 !important; } +##.cookienotice-bar +zive.cz##aside > .sidebar-content:has(> div[class^="ad-position--"]) +123.sogou.com,daohang.qq.com,hao.qq.com##.guess +gergerhaber.net#@#ins.adsbygoogle[data-ad-client] +nikonrumors.com###index-top > ul.xoxo +||instadp.com/images/*-ad.png +victorpest.com###gdpr-announcement +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=antena3.ro +jemako.com###acb-wrapper +||nothycantyo.com^ +playnation.de#$#.e3_refresh_button { position: absolute!important; left: -3000px!important; } +||jucysh.com^ +jpost.com##.sign-up-wrapjpost.com +##.coinzilla-ad +:538/attachment/js/ +###ad-new +socialblade.com##.sidebar-container > div.sidebar-module[style="height: 250px;"] +##.advert-placeholder +@@||video.javhdporn.net^$stealth +iqiyi.com##div[style^="z-index: 4200; position: absolute; left:"] +.com/?aff=$popup,third-party +yachtsmen.eu#?#.et_pb_extra_column_sidebar > .yacht-widget:has(> .widgettitle:contains(Reklama)) +bkill.com##body > a:first-child +||opticalwornshampoo.com^ +||pa5ka.com^ +osuskins.net#?#.vad-container:upward(div.skin-container) +||fa77756437.com^ +gopro.com##.gpn-email-capture-lightbox-overlay +||dcfnihzg81pa.com^ +archeologia.com.pl#$#div[class^="modal-cacsp"] { display: none!important; } +newsmaker.md###custom_html-15 +windowslite.net#$#body { overflow: auto !important; } +analyticsinsight.net#?#.article-list > div.item > div.banner:upward(1) +olke.az#$#.wrapper { top: 0!important; } +thegay.com#?#.footer-margin > .content > .box:has(> .bottom-adv__link-wrapper) +||877f80dfaa.com^ +offidocs.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +###bfad6 +##.advert-sky +||polityimpetussensible.com^ +||cooljony.com^$popup +||fer2oxheou4nd.com^ +||eslisorchenet.click^ +vodafone.de#$##dip-consent { display: none !important; } +op.gg##.e17e77tq8 +thelocal.ch#?#body > div > .section:has( > div[class]:contains(Sponsored)) +||turnhub.net^ +@@||c.yandexcdn.com/js/adv/advert3.js$domain=yandexcdn.com +||hexun.com/2017-11-07/191534592.jpg +antiguanewsroom.com##div[id^="antig-"] +||xboxone-hq.com/images/banners/ +@@||jd.com/adclick?$~third-party +luminam.ro##.unibody.Head-TopLine +||sitethree.com^$third-party +||doompuncturedearest.com^ +ft.com##pg-slot +nichegamer.com#$?#.custom-html-widget > div[style^="position: fixed; bottom:"]:has(iframe[src^="https://www.youtube.com/embed/"]) { remove: true; } +auto.ru##.ListingPromoSubscription-module__container +||rallantynethebra.com^$popup +||switchadhub.com^$third-party +||iceppsn.com/templates/base_master/js/jquery.shows.min.js +serverssh.net,webcreator-journal.com,filesus.com,tools.halpas.com#%#//scriptlet("prevent-setTimeout", "/offsetParent[\s\S]*?defaultView\.getComputedStyle[\s\S]*?currentStyle\.display\)=='none'/") +freepik.com##.adobe-detail +||torguard.net/blog/wp-content/uploads/2019/10/PrivateMail-Neon-300x250.gif +##.agree-cookie-wrap +||optmnstr.com^$third-party +interia.pl##.main-sidebar a[href][target="_blank"][onclick*="&creation="] +javuncensored.watch,javcensored.net,javbake.com##.itemads +||idswinpole.casa^ +||yhmeinv.com/mh/ +thehouseofportable.com##a[href^="https://billing.purevpn.com/aff.php?"] +forbes.ru#?#article[id^="article"] > footer > div[class] > div[class] > div[class] > a[target="_blank"]:contains(Подписаться):upward(3) +||8q88n.icu^ +||dq06u9lt5akr2.cloudfront.net^ +||0579.cn/SHow/Showplacenew.aspx +||nexage.com^$third-party +thefederalist.com#$#.pum-overlay[data-popmake*='"slug":"sign-up-for-federalist-community-account"'] { display: none !important; } +###ppcAdverts +lyricsmode.com##.header-band-cont +||mobdel2.com^ +||googletagservices.com/tag/$domain=flightradar24.com +||globalinfo.az/export/ +swiatkoni.pl##.blockaa-title +||vicious-instruction.pro^ +nolvus.net,theshoregame.com##.nk-cookie-alert +adgardvpn-help.info,adguard-vpn.info,adguard-dns.io,adguard-vpn.net,adguard-vpn.com,adguard.info,adguard.app,adguard.com##.annoyance +mathgames.com##.main-banner-adContainer +mtstandard.com,lacrossetribune.com##.lee-featured-subscription +###cookie_banner_container +dl-android.com##a[href][target="_blank"].xs-btn-dl +tousatu-ch.net##.video-container +china.cn##.bottom_recommend_box +lycamobile.co.uk##.subscribe-news-letter-full-width +worthplaying.com,psu.com,waytoomany.games,operationrainfall.com,cogconnected.com#$?##disqus_recommendations > iframe[src*="://disqus.com/recommendations/"] { width: 100% !important; } +##.a-sponsor +||serpentreplica.com^ +similarweb.com#?#.single-section__content > p:has(> span[style] a[href="https://www.similarweb.com/corp/research/contact-us/"]) +||optimizesrv.com^$popup +newagebd.net##.homeSlideRightSecTwo +||df-training-consulting.ck.page^$domain=dariusforoux.com +##.card-ads +m.alpha.facebook.com,touch.alpha.facebook.com,mtouch.alpha.facebook.com,x.alpha.facebook.com,iphone.alpha.facebook.com,touch.facebook.com,mtouch.facebook.com,x.facebook.com,iphone.facebook.com,m.beta.facebook.com,touch.beta.facebook.com,mtouch.beta.facebook.com,x.beta.facebook.com,iphone.beta.facebook.com,touch.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,mtouch.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,x.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,iphone.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,touch.beta.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,m.facebook.com,m.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,b-m.facebook.com,b-m.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,mobile.facebook.com,mobile.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion#@##m_newsfeed_stream article[data-ft*="\"ei\":\""] +ddbelchatow.pl,portalplock.pl,kutno.net.pl,tulodz.pl,portalplock.pl##.flex-column > .h-100 > div a[target="_blank"] > img[src^="https://storage.googleapis.com/"] +||052db.website^ +dl.gamecopyworld.com#?#body > center > .t2 > tbody > tr:has(> td > .lb#lb) +indiatimes.com##.site-header__getapp +||slutsounds.com/wp-content/uploads/*/nawtycam$image +naekranie.pl##body #screening-mobile-container +mail.yahoo.com#$#a[data-test-id^="pencil-ad"] { position: absolute!important; left: -3000px!important; } +withnews.jp##.l-sp-wrap > center > a[href*="?ref="] +komchadluek.net###section-thaileague +##.ad-external +||ad-vortex.com^ +||tracker-sav.space^ +@@||ephoto360.com/js/blockadblock.js +veved.ru##.donating-top +meteocentrum.cz###adform_leaderboard +||reclod.com^ +||whalems.com^ +itoim.mn##.banner +newonce.sport,newonce.net###piano-main-bottom +playstationtrophies.org,xboxachievements.com###vnt-lb-a +##.cc-blockingScreen +###ad-header-right +2chmatometaaaa.jp###rssfeed_custom1 +##.cookie-law-container +##.adSpot-mrec +amomama.fr#?#div[data-io-article-url] > p:has(> i > strong > a[href^="https://news.google.com/publications/"]) +||purseneighbourlyseal.com^ +@@||filecrypt.co/js/blockmefuckingadblock.js +academia.edu#$#body { overflow: auto!important; } +||eaqlos.xyz^ +||instantnewzz.com^ +boldsky.com##.content_right > div[style^="min-height:"][style*="250px;"][style*="-bottom: 10px;"] +msn.com##div[class^="galleryPage_bannerAd"] +||img.coomer.party/cnudify1.gif +##.cookieMaster +japannews.yomiuri.co.jp##.pr_custom2 +ship24.com##div[style^="max-height:"].flex.justify-center.h-24.w-full.mt-3 +laptopmag.com#%#//scriptlet("abort-on-property-write", "_sp_") +yggtorrent.nz,yggtorrent.si##.ad-alert-wrapper +||clickfilter.co^$popup +pornhub.com,pornhub.org,pornhub.net##.ad_title + div +:12443/*/*-*-*.$script,third-party +###adslot-top-rectangle +emusic.com##div[ui-view="gdprToast"] +||fn.dowagerbeurre.com^ +tubsexer.*##.header_link > a[href="https://tubsexer.com/link/limited-1-offer-or-exclusive-1-deal/"] +pagesix.com,nypost.com##.nyp-sitewide-notice +pogoda.com#$#body { position: unset !important; } +alrincon.com#$#body { background: none !important; } +denofgeek.com##.block-taboola +||king3rsc7ol9e3ge.com^$popup +||click-v4.plarimoexocli.com^ +@@||ads.viralize.tv/player/$domain=automoto.it|moto.it +icij.org##.home-banner-newsletter +uteka.ru##._advertising +@@||book.com.tw/image/getImage?$domain=books.com.tw +review-hub.co.uk#$#a[href^="http://shrsl.com/"] { font-weight: 100!important; border-bottom: none!important; pointer-events: none!important; } +##aside[data-role="gdpr-cookie-container"] +||mp3pro.xyz^ +||anadignity.com^ +romfordrecorder.co.uk##.send-us-your-news-cta +formiche.net##.wrapallwowpopup +manwa.fun#%#//scriptlet("prevent-setTimeout", "/alert\('请关闭.*Chrome/") +||fastennonsenseworm.com^ +##.advert-bottom +||octonewjs.com^ +privateproperty.co.za##.listingResultPremiumCampaign +vidmoly.me,vidmoly.net,vidmoly.to#%#//scriptlet('set-constant', 'adsbygoogle', 'emptyObj') +idnes.cz##.art-full > #text-out-box + div:not([class]):not([id]) > .r-head +sector.sk#$#body.bodymain { background-image: none!important; } +gamedeveloper.com#?#div[data-module="newsletter-signup-promo"] +getmailbird.com###mb-footer-lawmsg +ntvtelugu.com##.bottom-sticky-ad +@@||adobe.io^$domain=adobe.com,stealth=3p-auth +hentaiprn.com###block-27 +##.connatix-holder +||delivery.playallvideos.com^ +superlife.ca##.sidebar-ad-zone +@@||youchien.net/ad/*/ad/img/$~third-party +||ctv.by/images/yanews.jpg +@@||googleads.g.doubleclick.net/pagead/id$xmlhttprequest,domain=sanoybonito.club +||n0h56.site^ +cuarteldelmetal.com##.BtnNewsGoogleWeb +||postcardhazard.com^ +/wp-content/plugins/chimpmatepro/* +steamworkshopdownloader.io##.alert-secondary +||bestqikan.com/static/js/swt.js +||tobaltoyon.com^ +||actionbutton.co^$third-party +eastmoney.com###search > .ads +wsj.com##.webui-newsletter-inset +autodna.ru##.privacy_policy-info +||scaredcomfort.com^ +###player-bottom-ads +@@||display.apester.com/interactions/$xmlhttprequest,domain=sport24.ru +##.display-ad +fx168.com##div[adisload] +ifeng.com##div[id^="couplet3_"] +||gameviet.mobi/wp-content/*/*banner +nordot.app##.js-page__gdpr +||nan0cns.com^$popup +||cc.sexverhalen-gratis.com^ +###ad_medium_rectangle +nuvexus.com,stream-together.org##.top-banner +##.wcfAdLocation +||swinehalurgy.com^ +forex-gold.net#@#.header-mnm +04647.club#%#//scriptlet('prevent-fetch', 'doubleclick.net') +||cdn.shdsp.net/ad +||via.batch.com^$third-party +||buffethypothesis.com^ +sina.cn##.xc_da +wwdjapan.com###mailsubscriber-registration +||static.fundraiseup.com$domain=gijn.org +55haitao.com##.global-dialog +fondsprofessionell.de###cookieauth +motorfinity.uk,culturewhisper.com,wiseadvice-it.ru,aajtak.in##.subscribe-banner +wolframalpha.com##main > div[class] div[class] > a[href*="://www.wolframalpha.com/"][href*="/?adref="][target="_blank"] +brazzers.com##.cta-floater +3dexperience.3ds.com,duunitori.fi,l-a.no,deptagency.com,soshace.com##.gdpr-modal +###ads_right_top +||doomail.org^ +||spankcdn.net/*/pht*/pht*.js^ +basketball-reference.com##.stathead_event +niemanlab.org##.simple-emailsignupbox +||bargainintake.com^ +||choruslockdownbumpy.com^ +||faithfullywringfriendship.com^ +origo.hu##a[href*="adverticum.net"] +rule34.paheal.net#$#.tnc_bg { display: none !important; } +$cookie=__adblocker,domain=slate.com|thehindubusinessline.com +ficbook.net#$#body { overflow: visible !important; padding-right: 0 !important; } +ciokorea.com##.newsletter-large +goal.com#?#div[class^="modal_"]:has(> div[class^="modal_"] > div[class^="store-button"]) +2dway.com##a[href="https://www.2dway.com/5244/"] +brogle.de#$#.ilightbox-holder { display: none !important; } +xbooru.com,xxxymovies.com###smb +||splittingpick.com^ +elearningindustry.com##.optin-cta +boylov.xyz,boylove.cc,boyloves.fun##div[data-type="1"] +||static.javur.com/libs/pu.js +||4iazoa.xyz^ +||stat.house365.com^ +024.by##.sidebar__scroll +@@||api.adinplay.com/libs/aiptag/pub/$domain=geotastic.net +ifeng.com###CA_left +sina.com.cn##.cj_app_left +@@||npr.org/sponsorship/targeting/$~third-party,xmlhttprequest +##.okookie +##.player + .sponsor +||gplinks.in/sw.js +||momijoy.ru^ +elektroda.pl##a[href="https://www.micros.com.pl/"] > img +||pregchan.com/randomBanner.js +||livedoor.jp/goldennews/js/$subdocument +money.cnn.com###notice_banner +||func.tw/image/func2.png +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,important,domain=videostar.pl|o2.pl|dobreprogramy.pl|polygamia.pl|genialne.pl|pysznosci.pl|benchmark.pl|wp.pl|jastrzabpost.pl +vox.com##[data-concert="leaderboard_top_tablet_desktop"] +hindustantimes.com##.storyAd +forum.iphone.cz###rightcolumn > .in > h3:first-child +||wigsynthesis.com^$popup +##.ad-sky +yay.space##.AnonymousCallListPopup +kompas.com##.root > div.dark-fixed +azuremagazine.com##.flyout--non-subscriber +||my.neogallery.xyz^ +vcomic.net##.adpia_banner +||hiaxj.com/dbxf/ +byjus.com#?#.sidebar > div.bgc-white:has(> div.relatedlinks-widget > div.widget-content > a[target="_blank"] > img) +||d2h85i07ehs6ej.cloudfront.net^ +allo.ua##.bg-fade +##.advert--placeholder +xconvert.com##.mobile-prompt +###ads-block +||uprimp.com^ +###adv-3 +pornstreams.eu###menu-menu > li > a[target="_blank"] +sexu.com##.footerBanners +offcn.com###offcn_yx +||hentaihere.com/arkNVB/ +vimm.net###headerAdContainerInline +||imgdawgknuttz.com/*.php +||grandmotherunit.com^ +boards.4chan.org,b2bhint.com##.adl +insidertracking.com##.inktheme-cookies +||beijing.buzhi5.com^ +||inwardinjustice.com^ +||suncorp.com.au/content/suncorp/website/*/home/banking/notifications/data-policy/*/notification.notify.json +||empafnyfiexpectt.info^ +gieldarolna.pl##.sda-banner +||bestblackhatforum.com/images/my_compas/ +games-guides.com##.sidebar > .inner > div[id^="custom_html-"] > .textwidget > div[style="min-height:250px"] +###ad-slot +###sideBar-ads +||view-flix.com^ +||components2.rcsobjects.it/rcs_anti-adblocker-verticali/ +mylocation.org#%#//scriptlet('trusted-replace-node-text', 'td', '', '(change)', '') +ifeng.com##div[class^="index_topBox_"] +7654.com##div[class^="sidebarimg"] +||boostcdn.net^ +coffeecup.com###coffeecup_ads +||mobilesyrup.com/RgPSN0siEWzj.js +||537d86931e.dfd55780d6.com^ +||xkbbjtfp.xyz^ +@@||zdbb.net/edaa^$domain=youronlinechoices.com +lubimyczytac.pl#%#//scriptlet('prevent-addEventListener', 'DOMContentLoaded', 'adsContainer') +||etougais.net^ +_120x600. +###left-ad-1 +404media.co##.ad-fixed__wrapper +citymagazine.si##.block-wrap-native > .tipi-row-inner-style:has(> .tipi-row-inner-box > .zeen-da-wrap > .block-html-content > ._iprom_inStream > .iAdserver) +4tube.com###ad_player +||viioxx.com^ +richitt.com,berich8.com,luisgdato.com,techyrick.com,freshersgold.com###main-container + div[id][class*=" "] +||pushout.ru^$third-party +teepr.com##div[class^="mid-post-ad-"] +||chicken.tjsoler.dev^ +paulandshark.com#$#.newsletter-widget { display: none!important; } +acp.pt#@#.cookies-wrapper +proewildfire.cn##.comiis_nav ~ a +||gamesims.ru^ +||xinyi.com/Public/config/Couplet/Index39.js +timesofindia.indiatimes.com##.toinewsletternudge +thedailybeast.com##.Cheat__top-ad +epicentrk.ua##.footer__blue +||cc72fceb4f.com^ +nagarlyricshub.blogspot.com#%#//scriptlet("abort-current-inline-script", "EventTarget.prototype.addEventListener", "adsbygoogle.js") +marketplace.zoom.us#@#.oas-container +puretoons.me##.notificvpn +||whispermeeting.com^ +||manconsider.com^$popup +##[href="https://jdrucker.com/gold"] > img +technologyreview.com##div[class^="headerTemplate__leaderboardRow-"] +||toboads.com^ +daidata.goraggio.com##.contentsBnr +##.sh-page-notice +||sohu.com/i/?pvid=$popup +##.mvp-flex-ad +rezervesdalas24.lv#@#.cookies-popup +||friendshipconcerning.com^ +chrysler-club.net#$##obalovydiv { display: block!important; } +||tvpqnh.xyz^ +mks.space#$#.adsbygoogle { height: 0!important; } +truevirtualworld.com##.card-cookie +||itchhandwritingimpetuous.com^ +||cat.beunitedinchrist.com^ +arkadium.com#%#//scriptlet('set-cookie', 'ark_adfree', 'true') +||porn5k.me/inc/nb.php +researchgate.net##.lite-page__footer-native-app +||pleasingrest.pro^ +@@.online^$xmlhttprequest,stealth=referrer,domain=playru.net +||ckmbig.xyz^ +||wake-up-neo.com/bnet/ +##.nav-ads +##.headerAds250 +beppegrillo.it##div[id^="spazio_google_ads"] +hitz955.teroradio.com###surveryModal +||adop.co^$popup +artsy.net##.IITnS +phimmoizz.org##div[id^="catfish"] +@@||cdnjs.cloudflare.com/ajax/libs/blockadblock/3.2.1/blockadblock.js +@@/smarttag.js$~third-party,domain=rte.ie +||ofhypnoer.com^ +||203.195.121.119^$popup +you.com#?#ul[data-testid="web-results"] > li[data-testid]:has(> div[class^="sc-"] div[class^="sc-"] > div[class^="sc-"] + span:contains(Ad)) +||d1f7vr2umogk27.cloudfront.net^ +||qq.com/static/web/websites/newsplugin/ssp_ad_ +||world-claim.org^ +||teksishe.net^$popup +###topAds2 +||otter.jetting.no^ +zhihu.com##.Sticky > .Card[data-za-detail-view-path-module="ContentList"] +mobzik.ru#?#.asd > div.dl-capt:has(> h2:contains(Подпишись)) +goo.ne.jp#$#.chrome-extension-banner { display: none!important; } +||whyl-laz-i-264.site^ +||cyber-guard.me^$popup +bradford.de###mageplaza-betterpopup-block +||mbjrkm2.com^$document +||sp.companychouan.com^ +###blogger_cookie_notice +||servicegetbook.net^ +/img/91/*_600. +||pushatomic.com^ +||celeb-trends-gossip.com^$popup +@@||izlemac*.net/*-player-*.html$stealth +elephanttube.world,pornid.xxx##.rsidebar-spots-holder +||abcnewspro.com^ +##.ad-table +badjojo.com###rightcol +/wp-content/plugins/consent-magic-pro/* +shm.com.cn##.w1000.surround +nitroflare-porn.com#?#.box > h3:contains(NitroFlare) +||protizer.ru^$third-party +22pixx.xyz,imagevenue.com###overlayBg +||trackspeeder.com^ +||grairdou.com^ +mlive.com,gamerant.com,koamnewsnow.com,gfinityesports.com,dualshockers.com,insider-gaming.com,pocketnow.com,howtogeek.com,ktvz.com,247sports.com,movieweb.com,givemesport.com,xda-developers.com,collider.com,pocket-lint.com,hotcars.com,topspeed.com,thegamer.com,makeuseof.com,screenrant.com,androidpolice.com,cbr.com,brobible.com#%#//scriptlet('prevent-element-src-loading', 'script', '/succeedscene\.com|ads\.load\.js/') +people.com#@##onetrust-consent-sdk +@@||cocomanga.com/js/ad_/$image +posthaus.com.br#?##root > div[class]:has(> div > div > [class] > a[href="/cp/politica-de-privacidade"]) +##.ad_table +||auforau.com^ +||ver-pelis.net^$third-party +greatergood.berkeley.edu###donation-fixed-bottom +##.LayoutPromotionAdsNew +||winbestprizess.info^ +zoom.earth##.instagram +coinunited.io##.mobiel-video +_StickyAd. +foxtube.com##a[href^="https://webcams.muyzorras.com"] +nnmclub.to#?#td[width="80%"] > table[class="pline"]:has(> tbody > tr > td.pcatHead > h2 > a[href^="viewtopic.php?t=1368414"]) + br +##.list-ads +||eht116.com^ +##.ads_title +digitimes.com##.square-ad +newsweekjapan.jp###magazine-bnr +||fnjoomqa.icu^ +||yywz123.com/file/A*.js +phoenixliteos.com###wb_element_instance12 +||boastfive.com^ +tuwan.com##div[style="width: 360px;margin-top:10px;"] +##a[href*="kdocs.cn"] > img[src*="sstv."] +affpaying.com#?##sidebar ul.flex:has(> li.flex > a[target="_blank"][rel="nofollow"] > img[style="width:125px;height:125px;"]) +||www.iamgujarat.com/Igtah +###original_taboola +/img/bbsad/* +dns-shop.ru###top-banner +###adcode +##.header_leaderboard_ad +ghacks.net##a[data-wpel-link="external"][href*="offer"] +||invol.co^ +||naiglipu.xyz^ +fly-phone.ru##main > section[class="widget"] +##.ad-top-container +||xstt5.com/skin/v3/js/dibu.js +wo2viral.com#$##lienet { display: block !important; } +hihihaha1.xyz,playhydrax.com,hydrax.net,filmespi.online,playembedapi.site,streamsb.online,rufiguta.com,abysscdn.com,player-cdn.com,kmo.to,nazarickol.com,redirect-ads.com##body > #player ~ div[style^="position: fixed; inset:"][style*="z-index:"] +comparic.pl#?#.tdc-content-wrap > div[id^="tdi_"] > div.vc_row > div.vc_column > div.wpb_wrapper > div.wpb_text_column > div.wpb_wrapper > div[class] > center > a[href="https://j2t.com/pl/"]:upward(div[id^="tdi_"]) +@@||img4399.com/static/huodong/daily/fpv2.js +cwtvembeds.com,camwhoreshd.com##body > div[style^="position: fixed; background-color:"][style*="width: 380px; z-index:"]:not([class]):not([id]) +hometheaterreview.com#?#div[id^="homet-"]:has(> .in-content-flex:only-child > div[id^="adn-"]) +||imgbox.com/ae/$domain=matureworld.ws +##.message-modal-cookie +raialyoum.com##a[href="http://www.oxbridge-apartments.com/"] > img +||cdnware.io^ +remont-aud.net#%#//scriptlet("set-constant", "ab", "false") +pornpics.com,pornpics.de##.sponsor-type-4 +##.add300top +games.dailymail.co.uk##div[class^="RightRail__displayAdRight_"] +watchcartoononline.bz##.adkiss +@@||webmotors.com.br/tabela-fipe/ad/adUnits.js +baidu.com##.ec_ad +||negotiatetime.com^ +imagetotext.info#@##top_ad +||esescvyjtqoda.xyz^ +||172.255.6.217^ +royalroadl.com#?#.portlet-body > h6.bold:contains(Advertisement) +fsharetv.co##.rice +||reluctancefleck.com^ +dubznetwork.com#$?##vidorev_post_extensions-2 > .widget-item-wrap:has(> div > p:contains(Please consider to turn off your adblock or whitelist)) { visibility: hidden !important; } +||gg.caixin.com^ +||pop5sjhspear.com^ +reddxxx.com#?#[role="gridcell"]:-abp-contains(/^AD$/) +cbs12.com,wjla.com,wpde.com##[class^="NewAd-"] +wifi4games.com#%#//scriptlet("prevent-window-open", "/include/redirect.php") +newzviz.com#%#//scriptlet('adjust-setInterval', '(time)', '*', '0.001') +bravotube.net##a[href^="/cs/"] +||jump-path1.com^$popup +||tumblebirds.com^ +||xml-eu-v4.webmedrtb.com^ +gurubanks.com##.lwp-modal_wrap +aajtak.in#$#.darkmode-coachmark { display: none !important; } +albumoftheyear.org##.fullWidth div.albumBlock ~ div[style^="padding:"] +||adgrx.com^$third-party +/Php/Home/kakaxiaikakaxi.php +freepremiumcourse.com#%#//scriptlet("abort-current-inline-script", "document.createElement", "adsbygoogle.js") +||tjxjpqa.com^ +||stat.cnmo.com^ +speedtest.net##.pure-u-custom-ad-rectangle +@@||whatsapp.com^$generichide,badfilter +||mshago.com^ +||cdn.keajs.com^ +ar15.com##.stickers +timvision.it#$#.pub_300x250.pub_300x250m.adBanner { display: block !important; } +||media.mediadirectory.net/js/code.min.js +simplicity.in##.sc-desc-detail-page > p + div[style] > a[target="_blank"] > img +hdstockimages.com#%#//scriptlet('abort-current-inline-script', 'jQuery', 'adblocker-popup') +holod.media#?#.sectiontwone__cta:has(.donate-inline) +##a[href^="https://www.infowarsstore.com/"] > img +/^https?:\/\/([0-9a-z\-]+\.)?(9anime|animeland|animenova|animeplus|animetoon|animewow|gamestorrent|goodanime|gogoanime|igg-games|kimcartoon|mangapanda|mangareader|memecenter|readcomiconline|toonget|toonova|watchcartoononline)\.[a-z]{2,4}\/(?!([Ss]cripts|[Uu]ploads|[Ii]mages|assets|combined|content|cover|img|static|thumbs|wp-content|wp-includes))(.*)/$image,other,script,~third-party,xmlhttprequest,badfilter +lionsroar.com##.our-newsletter +impiego24.it#%#//scriptlet("abort-current-inline-script", "$", "skinUrlDestinazione") +portal.librus.pl##.widget-portal > div[class]:not(.row) > div[class] > div[class]:only-child div > picture > source[media][srcset^="https://portal.librus.pl/images/base/"] + img[src^="https://portal.librus.pl/images/base/"] +||joiningwon.com^ +||bigbasketshop.com^$popup +||splungedhobie.click^$popup +journal.sovcombank.ru#?#article > div[class^="sc-"] > div:not([class]):has(div:contains(Факт дня)) +news18.com##.sideTop +163.com##.top-gg-area +aimina.com###agree_cookie +||meineserver.com^$third-party +##.widget_wp_insert_ad_widget +||doomedlimpmantle.com^ +passionategeekz.com,generazionebio.com,arcadepunks.com,dtbps3games.com,bestsimsmods.com,chromeready.com#%#//scriptlet('set-constant', 'penci_adlbock', 'undefined') +omni.se#$#.header-banner--regular[style^="--banner-offset"] { --banner-offset: 0 !important; } +image-line.com#$#.cookie-banner-wrapper { display: none !important; } +amcplus.com#@#.text-ad-links +||gplansforourcom.com^ +##.videoad-base +||offersuperhub.com/landing/$popup,third-party +deadwalk.io#$#.squareAdContainer { visibility: hidden!important; } +prachatai.com##.adsbypct +wasserburg24.de,rosenheim24.de,ovb-online.de,mangfall24.de,chiemgau24.de,fr.de,innsalzach24.de,bgland24.de#$##id-wf-abo { display: none!important; } +###advt +redirect-ads.com##a[href][target="_blank"][onclick*="remove()"] +eurogamer.it##.advert +/sm/getcode?apiKey= +||games-direct.skynetworkcdn.com^$subdocument,third-party +||grt02.com^ +###adHolder +kleiner-kalender.de###ActionMessage +||a3.hotpornfile.org^ +rapidgatorporn.net##.full-block > center > [href][target="_blank"] > img +bethesda.net#?#visor-alert > div > div > div:last-child:has(> a[href$="/cookie-policy"]) +feebee.com.tw###ad_bottom_module +||serve.bdsmstreak.com^ +||czyoxhxufpm.com^ +||catch.tube/images/pro/converter/converter.png +interactive.libsyn.com#@#iframe[width="100%"][height="90"] +memes.tw##.nice-box +@@||support.google.com^$domain=support.google.com +||900bets10.com^$popup +||dalysv.com^$popup +thecellguide.com##.thece-in-content-ad +wrestling-online.com###mvp-wallpaper > a[href="http://w-o.it/woiosfree"] +##.adv_main_right_down +||hostave3.net/hvw/banners/ +coinmooner.com##div[class^="HeaderMooners_"] +freelancer.com##.PostProjectBanner +##.squaread +baby.ru##a[href^="https://t.me/babyrutelegram?"] +101soundboards.com,android.com.pl#$#body > div:not([class], [id]) > #AdHeader { display: block !important; } +xxx888porn.com#$##main { display: block !important; } +||zxtuqpiu.skin^ +harpersbazaar.com.ua,cosmo.com.ua###magazine_popup +/gg_t.php +relmz.io###relmz-io_300x250 +||w00tmedia.net^$third-party +miastodzieci.pl##.widget_shwd .weleda +alamelsyarat.net#@#.adscenter +mail.com#@##onetrust-consent-sdk +zarahome.com##itx-newsletter-advice > .nl-advice-container +electropapa.com#$#.modal-open { overflow: auto !important; } +||jrtqaliyucgpaes.com^ +||tomog.pro^$all +||woublie.top^ +||linkstorm.net^$third-party +togetter.com###fixed_social_header > .download_header +@@||doodcdn.co^$domain=dood.la|dood.pm|dood.to|dood.ws +###footeradsbox +||gloufteglouw.com^ +moneytimes.com.br#$#.header-spacer { height: 58px !important; } +||jetx.info^ +##.banner_728_90 +||94itv.net/f/ +||rook.behmann.at^ +||creative.leojmp.com^$third-party +-cookiePolicy. +hc360.com##.baidutuiguang +komoot.de##.css-t7ztk8 +###cookiespolicymessage +acfun.cn###prompt-box +playzone.cz#%#//scriptlet('abort-on-stack-trace', 'Element.prototype.appendChild', 'loadAab') +fengniao.com###ad-head +##.Ad--Align +||l2topzone.com/SdihusDsa/ +.com/?pu=$script,third-party +bigpicture.ru##.sticky-bar +||conquestdrawers.com^ +@@||ads.roblox.com/v1/sponsored-pages$xmlhttprequest,domain=roblox.com +||enquete.aomg5bzv7.com^ +/tm.cookie.js +shein.com#$#body .c-vue-coupon { display: none !important; } +||cluep.com^$third-party +||loudlongerfolk.com^ +||taucaphoful.net^ +b2bhint.com##.ad-long +msn.com#$##entry-point-hp-wc-header { top: 0px !important; } +||dashingsweater.com^ +explorethearchive.com,rtl.hu##.newsletter-modal +###wp > .V-videoFloat +||db033pq6bj64g.cloudfront.net^ +digitalangel.ru,goyabu.to,icanw.org,animesgames.net,animesdigital.org,pornpros.com,1ps.ru,meusanimes.net,mangatube.site,animesonlinegames.com,elektrotresen.de,pharmacosmetica.ru,2whois.ru,vendedores.mercadolivre.com.br###disclaimer +###com_cookie_policy +internetpatika.hu##.tygh-top-cookies +@@||bsp.needrom.com/advert*.js +||eaglestats.com^ +irishtimes.com##.slideFromLeft > a[data-evt-category="/digital-subscriptions"] +||7a75c56234.d03804f2c8.com^ +csid.ro#%#//scriptlet("abort-on-property-read", "__yget_ad_list") +securitylab.ru##.telegram-block +bigleaguepolitics.com,flagandcross.com#%#//scriptlet("abort-on-property-read", "adtoniq") +economictimes.indiatimes.com##.vidWidget[style*="position: fixed;"] +cyberdaily.au##.b-article-wrapper__right__wrapper > div.b-module:has(> div[id^="mm-"]) +||finanvideos.com^$popup +||d1t38ngzzazukx.cloudfront.net^ +##.wide_ads +||gfsdloocn.com^ +||0597ok.com/ilike/597/ +file-up.org#%#//scriptlet("prevent-window-open") +||platypus.cmp.is^ +||s-gr.cdngr.pl/assets/gratka/v*/css/pages/promoButton.css +materials4me.com##.newsletter--container +||0c550a5031.d9db994995.com^ +kuwo.cn##.tuiguang +peeplink.in###thin_border > article > div > h5 + a[rel*="external"] +||zcaijing.com/images/ +##.sticky-footer-ad-container +||ibqmey.xyz^ +##.mpuArea +milli.az##.ad-text_line +##div[id^="st"][style^="z-index: 999999999;"] +||zdrowastrona.pl/images/banners/wez750x100.gif +||traymute.com^ +/lenovo/pc/top.js +||marmoset.rocketlog.app^ +||c90ada5508.b234e11bb6.com^ +aucview.com##.alertModal +searchenginejournal.com##.sss_slo.sej-bbb-section +||researchingdestroy.com^ +||spicygirlshere.life^$popup +grid.id###outbrain-container +sozosblog.com###load-featured-content +hupu.com##.m-app-info +benchmarkreviews.com#$#html > body { background-image: none!important; } +thehindubusinessline.com##.Subscribe +tver.jp#%#//scriptlet('trusted-click-element', '.ReactModal__Overlay button[class*="terms-modal_done__"]') +cabonline.com,laba.media,intersport.ua##div[class^="CookieMessage_"] +setphone.ru##.holler-box +@@||cryptofuns.ru^$generichide +||dt4ever.com^ +||lastnewsbd.com/proposed.gif +urbanlegends.hu#$##fl-main-content { padding-top: 1px!important; } +filmix.ac#?##player pjsdiv[style^="position: absolute;"] > pjsdiv[style^="position: absolute;"]:has(> pjsdiv:contains(AdBlock)) +douyu.com##a[href*=".miaozhen.com"] +.com/0gg/gg*.js +@@||reddit.app.link^$stealth=useragent +news24.com##.article-subs-footer +dnb.no#$#body { overflow: auto !important; } +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=tubitv.com +daily-stop.com##.category-banners +flashbang.sh,trashbytes.net##.mt-5.mx-auto +concardis.com,visa.com.tr,astrazeneca.com###CookieReportsBanner +||mnfse.cn^ +xxxonxxx.com,pornhat.*##.player-bn +defencediscountservice.co.uk#$#.blocker { display: none!important; } +cnn.co.jp#$#body[class] { overflow: auto !important; } +tele2.ru#$##downloadMobileAppOfferDialog { display: none!important; } +##.header-advert +extramovies.cc##a[href="http://amzn.to/2wNC0W0"] +flippingbook.com##.S-GDPR-Banner +kupbilecik.pl#@#.cookie-container +trekstor.de###cookieNoticeBox +redtube.com,redtube.net,pornhub.com,pornhub.org,pornhub.net###main-container > .abovePlayer +||lgmi.com/tjyf200x207.asp +bus-location.jp#$#object[name="AD"] { display: none !important; } +||adamatic.co^$third-party +##.adVl +||fregtrsatnt.com^ +banggood.com##.top_mt.datacube_banner +ac-illust.com##.belt-banner +||gtimg.com/sports/qingyang/ +novelfull.com#%#//scriptlet('abort-on-property-read', 'yeac') +||welcomingvigour.com^ +matzoo.pl#%#//scriptlet("prevent-setTimeout", "adblock") +||bissonprevoid.website^ +##.dc-half-banner +||track.sexbule.one^ +steamstats.cn##.v-application--wrap > div[data-v-9b601bd8]:not([class]) +egmnow.com##.egm-cookie-flyout +04647.club##div[class*="bannerBox"] +cgdyx.com##.zib-slider +pgatour.com##.css-1t41kwh +||phulaque.com^ +||alicdn.com/imgextra/i3/1731999033/TB2lAJufnlYBeNjSszcXXbwhFXa_ +xbdeals.net#@#a[href^="https://click.linksynergy.com/"] +||jobsonationsing.com^ +||xn--xhq326apqhcx0d.cn^ +rouman5.com##.fixed-bottom +||netinsight.co.kr^$third-party +||cdn.ftwpcn.com^ +qa.opensooq.com##.adSearch +fanart.tv###generic > .container > .inset_box + .container +###widget_advertisement +skyscanner.com.br#$##email-capture-trigger { display: none !important; } +||gluttonydressed.com^ +||a.spankbang.com^$redirect=nooptext +pornfun.com##.spots-aside +||impservice*.yodao.com^ +fabletics.de,justfab.de##.cookienav +||vzigttqgqx.com^ +||ali213.net/news/kx/ali213-kx-data.js +al.com,oregonlive.com,nj.com##.main-wrapper > #belowToprail +swarajyamag.com#?#div[style^="position:"] > div[class] > div[class^="_"]:has(> form[name] > input[name="email"]) +||wavedfrailentice.com^ +||lianmeng.la/cde/recommend.js +||probuilds.net/js/pgfr/loader.min.js +rightrasta.com,neo-blood.co.jp#$#.unselectable { -webkit-touch-callout: default !important; -webkit-user-select: auto !important;-moz-user-select: text !important; -ms-user-select: text !important; user-select: auto !important; -webkit-tap-highlight-color: black !important; } +##.adunit-lazy +w3resource.com#?#article > div.mdl-grid:has(> div[id^="bottom_ad"]) +||a.obrom.xyz^ +karaoketexty.cz##.ad_notice1 +||yo.senagegrasper.com^ +||vvprcztaw.com^ +/privacy/cookie-consent-dialogue/js/cookie-consent-dialogue.js$domain=kreis-guetersloh.de|moerfelden-walldorf.de|azv-rme.de +nu.nl##div[id^="block"][data-context*="van groot nieuws"] +||asidefeetsergeant.com^$popup +##.ad-content-rectangle +||abbao.cn^*adblock +sploop.io###game-right-main +||2yjw.com/statics/js/jquery.min. +||dosagebreakfast.com^ +streamsport.*##div[style^="position:absolute;right:50px;top:50px;"] > button[id] +||www.k45ki53dq.com^ +interia.pl##a[href][target="_blank"][onclick*="&creation="] > img[onload*="onDetected"] +howtowriteabookthatsells.com,venndy.com,productivebreak.com,tastesoflizzyt.com,perfect-english-grammar.com##.seva-overlay +||fenacheaverage.com^ +###adLeaderboard +##.widgetAds +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws###stUuGf > div[role="dialog"][jsname="XKSfm"] +meczyki.pl##.background-custom[style*="width:"][style*="height:"][style*="background-image:"] +||signalsuedejolly.com^ +||highperformancecpmnetwork.com^ +||girlstaste.life^$popup +||filter.q32167.com^ +||xcum.com/*/s/s/adhs.php? +##.polaris__ad +imgcreator.zmo.ai#%#//scriptlet('set-local-storage-item', 'dontShow', 'true') +blog.livedoor.jp##.headlinerss +###adBody01 +||afcpatrk.com^$popup +stockstar.com##.ss-ad-icon2 +regione.emilia-romagna.it,1-apo.de,coupons.de,msn.com###cc-banner +@@||cdn.privacy-mgmt.com^$domain=manager-magazin.de +torrentino.me##div[class^="banner-"] +||trustedcpmrevenue.com^ +ultrafarma.com.br###modal-lgpd +campify.jp##.cv-fixed +jockantv.com###Dialog1 +asurascans.com#?#.theiaStickySidebar > div.section:has(> div.releases:contains(Advertisement)) +||s.orbsrv.com^ +||phoawhoax.com^ +||mrskincash.com^$third-party +||streameventzone.com^ +blic.rs##body .banner +titantv.com##div[style^="height:265px;"] +||hellporno.com/adman_ai/s/s/im.php +poisonous-raspberry-fields.blogspot.com#%#//scriptlet("remove-attr", "onmousedown|onselectstart|ondragstart", "body") +||buxfznnf.xyz^ +||eoveukrnme.info^ +||qhimg.com/ssl/20212c7594890e1c.js +scaler.com##div[class^="exit-intent_modal_main_container"] +||cst.cstwpush.com^ +##.adspot_728x90 +@@||tutlehd.xyz^$subdocument,stealth +theprint.in##div.post_contribute +||sailfish.the-psychedelicatessen.com^ +_720x90_ +##.full-width-ads +rateyourmusic.com##.section_reviews > .page_section > div[style="padding-top:1em;padding-bottom:1em;text-align:center;margin:0 auto;min-height:90px"] +##.ad-spacing +||bitonclick.com^$third-party +greenmatters.com#?#aside:has(> div:only-child > div[style]:first-child + div[class]:last-child > div[data-is-ad="true"]) +bluesnews.com##.leaderboard-gutter +||madadsmedia.com^ +||worthathousandwords.com^$third-party +##.side__ad-box +||boovoogie.net^ +||iotgateway.aomg5bzv7.com^ +hollywoodreporter.com#@##onetrust-consent-sdk +||whoawoansoo.com^$popup +||lgmi.com/left_right_ +scoop.co.nz###div-gpt-ad-1493962836337-6 +kbb.com###kbbAdsMedRec2 +||wqjzajr.com^ +heimkino.org,pfannen.org##.orakelAdvice +manufactum.ch###stickyBannerWrapper +javfinder.sh#@##preroll +falconx.io##.cookie-parent +||widgets.contentfleet.com/newsletter/ +mp.cz#%#//scriptlet('set-cookie', 'cookiesConsent_consents', 'true') +##.ad-sky-right +bollywoodshaadis.com##.artcl_ad_dsk +||zeriun.cc/assets/js/pk.js +@@||sohu.com/upload/static/share/share_play.html +entrepreneur.com##.sky +jackjones.com,veromoda.com##.overlay-backdrop +||duluoweiyu.com^ +3dmodelshare.org#$#.homeadv { width: 0px !important; } +||princessdazzlepeacefully.com^ +amazon.de##div[data-p13n-asin-metadata*="adId"] +ua-football.com##.policy-mes +||bayshorline.com^ +@@||sourcepoint.mgr.consensu.org/consent^$domain=manager-magazin.de +###topad-wrap +||generousfilming.com^ +||iqbroker.com/land/$popup +yourstory.com,gardenersworld.com#$?#body > div.tp-modal:has(> div.tp-iframe-wrapper > iframe[id^="offer_"]) { display: none !important; } +||aogk88.asia^ +||heavyplayground.com^ +##a[href^="https://italarizege.xyz/"] +||xmaswrite.com^ +sibnet.ru##.rtday2020__root +##[class][onclick^="window.location.href"][onclick*=".bcebos."] +##.ps-ad +||partion-ricism.xyz^ +yamiisoku.com##iframe[data-src^="https://blogroll.livedoor.net/"] +||content-cdn.y2mate.com/themes/js/pa.js +filecrypt.cc,filecrypt.co##.hghspd + * +||hilltopads.com^$popup +@@||vidembed.cc/encrypt-ajax.php?id= +dhbr.diamond.jp##.m-banner-subscribe +incredibox.com###box-abp +money.it#@#.cky-consent-container +||mailboxmeeting.com^ +||jarsools.xyz^ +/bottomad/* +outofbit.it##.ct-code-block +grannymommy.com##.banner-on-player +##.cookiesBgCls +||score-feed.com^$popup +iodonna.it#%#//scriptlet('prevent-element-src-loading', 'script', 'imasdk.googleapis.com/js/sdkloader/ima3.js') +||usurv.com^ +twitch.tv##div[data-test-selector="channel_panel_test_selector"] > a[href^="http://bit.ly/"] +||clerkrevokesmiling.com^ +@@||wuxiaworld.com^$csp=script-src 'self' * 'unsafe-inline' +||t.police1.com^ +@@||ya.ru/user-id?$subdocument,stealth=referrer +chicagotribune.com##.met-footer-toast +||pilsarde.net^ +||news-fadubi.com^ +sydneytoday.com##.mygad +thephoblographer.com##.vuukle-ad-banner-right + div[style] +irishtimes.com###webpush-custom-prompt +dubznetwork.com##div[class^="clpr-emre"] +||paymentsweb.org^ +||getalltraffic.com^$popup +||maimacips.com^ +cryptorank.io##.dPbBGP +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xmlhttprequest,redirect=googlesyndication-adsbygoogle,important,domain=mazmorra.io +ufacitynews.ru#$#html { overflow: visible !important; } +||majesticsecondary.com^ +bombbar.ru##.wrap_info_cookie +emag.pl##.widget-cookies +||14202444.xyz^$document,popup +flotrack.org##.lazy-leaderboard-container +||vidbob.com/player*/vast.js +||brandclik.com^ +lubimyczytac.pl##body > .js-footer-fixed +1314gl.com##a[href*=".apkpackagesys.com/"] +||herebybrotherinlawlibrarian.com^ +||vigorouslyflamboyant.com^ +###bottom-ad-container +lolalytics.com##.w-\[336px\] +||mailer.i.bizml.ru^ +monitorulsv.ro##div[class^="add_"] +||ykujch.icu^ +antyweb.pl##.banner +analyticsindiamag.com##[href^="https://business.louisville.edu/"] +||bensonshowd.com^ +##.house-ad +sbkaise.in#%#//scriptlet("adjust-setInterval", "updatePercentage", "100", "0.02") +##.adver +||servedby.mannixmarketing.com^ +xhamster.com##.yxd-jdcam-thumb +cureco.jp##object[width="640"][height="480"] +setn.com###FBAnchor +target.com#?#div[data-test="@web/site-top-of-funnel/ProductCardWrapper"]:-abp-contains(sponsored) +/cookie_acceptance_ +selenagomez.com#%#//scriptlet('set-session-storage-item', 'umggr-newsletter-first-load', 'true') +faz.net##.opinarywidget +||phultems.net^ +||ajs.statelinear.com^ +xmtrading.com##.main-photo +##.cookiesMessage +mein.eon-energie.at#$#body { overflow: auto !important; } +rarefilmm.com###simple-banner +##.vpnad +pornrabbit.com##.txt-a-onpage +:701/gd_xueersi/$popup +||shop.kicker.de^ +superplanshet.ru#?##gkContent div.box div[id="marketWidget"]:upward(div.box) +programmingoneonone.com###Image2 +||r.foxgay.com/*/js/ftl.js +##.ad--placeholder +||mothandhad.info^ +gamesindustry.biz,newscientist.com,usgamer.net##.leaderboard-container +wcoanimesub.tv##div[style="float:right; width:420px; height:250px"] +||retdaz.fun^$all +||0gw7e6s3wrao9y3q.pro^ +##.lb-item-ad +||oadaiptu.com^ +##.adsonar-after +bodysize.org,porngo.com,heavy-r.com,y2mate.com,niceporn.xxx,0gomovies.com,igg-games.com#$?#iframe[srcdoc*="XMLHttpRequest"] { remove: true; } +##.admodule +autoevolution.com##article > div.mge_1:has(b + div > a[href^="https://news.google.com/publications/"]) +||bandicoot.sigerr.org^ +pornbimbo.com,anon-v.com##div[class^="list-"] > .margin-fix > .place +||zeusadx.com^ +martha-maria.de##mama-cookie-banner +trinixy.ru##.b-notification-push +###advertblock +||dandyglow.com^ +exelab.ru##div[id^="bnr"] +codestudyblog.com###divshow3 +##.ad-mr-article +##.cookie-notice-dialog +||sinaimg.cn^$domain=t66y.com +ign.com#$#.zad.top { min-height: 1px !important; } +##.Ad_C +181fm.com###ovgdpr +neomouv.com#$#body { overflow: auto !important; position: static !important; } +||chrisrespectivelynostrils.com^$popup +@@||evowars.io/ads.js +||portentbarge.com^ +imgtornado.com##body > div[style="text-align:center;font-family:Tahoma;"] +||keywordsconnect.com^ +||asparaguspopcorn.com^ +##.lastAdHolder +||av6k.com/templets/default/%E5%A4%A7%E5%93%A5/ad.js +loudwire.com#$#.fixed-full-width #site-menu-wrapper .logo { height: auto !important; top: 0px !important;} +cambay.tv##.fp-logo +||ym-a.cc^ +onlinebarcodereader.com##.fadein-wrap +goduke.com##div[aria-label="Ad Blocker Detected"] +sklep-narzedzia.pl##.configMessages +||buyvisblog.com^$popup +search.entireweb.com##div[id^="web-result-ad-"] +||partner.e-conomic.com^ +snacknation.com##div[data-advadsredirect] +16rd.com##.c1c2_b1b2_adbx +getyarn.io##.pb1p +##.adv300x60 +thehackernews.com##.blog-posts > .body-post:has(> a[target="_blank"]) +fandomwire.com##header > div[style^="min-height:"][style$="display: inline-block; text-align: center;"] +||girlsofdesire.org/flr2.js +sports.ru##.news-item__sources +||workandmoney.com/assets/di_ads.*.js +doubledodgers.com,nuggetroyale.io##.mainMenuAdBox +gamefront.com#%#//scriptlet('adjust-setTimeout', 'window.location.href', '10000', '0.02') +yiv.com##.game_top_ad +itsfuck.com,stilltube.com#%#//scriptlet("remove-attr", "onclick", ".previewhd > a") +@@||images-*.ssl-images-amazon.com/images/*/advertising^$domain=amazon.de|amazon.com|amazon.fr|amazon.it|amazon.es|amazon.co.jp|amazon.co.uk|amazon.ca +kinderleicht.berlin#@##cookie-law-info-bar +||emumuendaku.info^$popup +kliuki.bg###container > div[style="float:left;"] > div[style] +jp.investing.com#?#.flex-col > div.flex:has(> div.flex-1 > div > nav > ul[data-test="footer-mobile-links"]) +##.advBottomHome +wallgif.com###ad_modal +ferra.ru##iframe[src^="https://ferra.media.eagleplatform.com/index/player?"] +@@||solarmoviez.ru^$csp=script-src 'self' * 'unsafe-inline' +||cdn-library.su/plusonet/lib/$domain=~pluso.net +||bugstractorbring.com^ +||upzekroman.com^ +gamesk.pro##.prows +plannedparenthood.org#$##year-end-donations { display: none !important; } +||lwonclbench.com^$popup +pretoriafm.co.za##div[id^="preto-"] +videomega.co###click_me +drudgereport.com##div[id^="dr_dae_consent"] +||koocoofy.com^ +##.TextAd +||18788fdb24.com^ +###ad_5 +##.ad-position-1 +##[href^="https://track.aftrk1.com/"] +nbcsports.com##bsp-reverse-scroll-ad +shemaletubevideos.com##.buttonsale +mspmag.com#?##sticky-wrapper > div > .mp-html > #sticky-ad:upward(1) +askdifference.com#?#.section > .text-center > div:contains(/^ADVERTISEMENT$/):upward(2) +@@/default/public/assets/publicidad.js$domain=1bit.space|1bitspace.com +ptsecurity.com##.sidebar-item:has(> form[class] > div.subscribe-form__title) +gdpi.hitbullseye.com##.header_add +||timoggownduj.com^ +||eic.org.cn/api/Popup? +||gridline.cn^ +||getitfree.cn/wp-content/plugins/adunblocker/*.js +||mqsnce.xyz^ +blocksite.co###elementor-popup-modal-1372 +sunexpress.com##.cookie-identification +||nudeteenwhore.com/oeufrb/ +nrc.nl#$#body { overflow: auto !important; } +||tmztcfp.com^ +||www.azadliq.az/ozaramizdibanner.jpg +techydino.net#%#//scriptlet("prevent-window-open") +||striperoused.com^ +m.dict.cc##div[id^="adslot_"] +mobile.po.co,mobile.mi.com##.agree-tokens-modal +bestflix.pl##.sticky-widget +rslinks.org###block-block-58 +###medrec_top_ad +gitee.com##.fixed-notice-messages +||rtb-useast.crowdegic.com^ +||milrauki.com^ +@@||adidasoriginals-lookbook.com.tw/js/adtracking.js +||baywednesday.com^ +||forthdestiny.com^ +||phocmogo.com^ +||5930107e7f.e890f5e345.com^ +||joereisp.xyz^ +||mivibsegnuhaub.xyz^ +theartnewspaper.com##.justify-center.flex.w-full +||prfwhite.com^$document +kentonline.co.uk##.LeaderBack +##.on_player_ads +qianzhan.com##.kfonline2 +freemcserver.net#%#AG_onLoad(function() { for (var key in window) { if (key.indexOf('shoveItWhereTheSunDosentShine') == 0) { window[key] = []; } }; }); +##.nca-cookiesaccept-line +theav.xyz,69xx.one,theporn.cc#$##alert_windows { display: none !important; } +vc.ru##[air-module="module.special_stories"] +||babysittingrainyoffend.com^ +##.advads-close-button +ifeng.com##.pic950 +||genieedmp.com^ +igeekphone.com##.moove-gdpr-align-center +verdragonball.online,verboruto.net,vernaruto.tv#%#//scriptlet('prevent-addEventListener', '/contextmenu|copy|cut|selectstart|dragstart|keydown/', '/stopPropagation|preventDefault|0x/') +||youruntie.com^ +||oatmealstickyflax.com^ +manofmany.com##.mom-gpt__inner +||cdne-static.yjcontentdelivery.com/app/1/js/puWeb^$script +westkentuckystar.com##.adsCategory +||utilizeimplore.com^ +###topAd728x90 +||javgg.me/wp-content/plugins/1shortlink/js/shorten.js +bing.com###bnp_rich_div +hunkemoller.de##.js-cookie_hint +@@||kincho.co.jp/cm/img/bnr_ad_$image,~third-party +##.ad-widgets +||datingtoday.top^ +wutheringwaves.kurogames.com,budownictwo.org,insales.ru,hdsex2.com,hdsex.org,clubpremier.com,inpower.com.br,rivegauche.ru,mkcafehoreca.pl,netcredit.pl##.cookies-modal +visao.sapo.pt##.webPushSolicitation +smartpropertyinvestment.com.au###mailchimpSubscribeForm +##.panel-cookies +tech.hindustantimes.com##.sponsoredBox +fapality.com##.nativeaside +##.sticky-side-ad +||jaubumashiphi.net^ +||sightsskinnyintensive.com^ +sakurajav.com##[id^="widget_advertising-"] +news.abplive.com###cookieViewApp +||lesenjiaoyu.xyz^ +gap.eu##.promo-drawer-container +||sbplay.one/js/*/*.min.js?*=* +||xpicj8.cc^ +money.163.com#$#.finance_header_gg { display: none !important; } +||89d9c155c8.a8bd627b41.com^ +www.youtube.com#%#(()=>{window.JSON.parse=new Proxy(JSON.parse,{apply(r,e,t){const n=Reflect.apply(r,e,t);if(!location.pathname.startsWith("/shorts/"))return n;const a=n?.entries;return a&&Array.isArray(a)&&(n.entries=n.entries.filter((r=>{if(!r?.command?.reelWatchEndpoint?.adClientParams?.isAd)return r}))),n}});})(); +lolalytics.com##div[class^="AdsGutter_"] +ilm.pri.ee##.adsense +texasobserver.org##.fund-cta +||nereu-gdr.com^$popup +bosnainfo.ba##.notificationBell +home.ss.ge##main div#listing-search-subscribe +sortiraparis.com,bicycling.com,runnersworld.com,womenshealthmag.com###newsletter-block +telegrafi.com##.leaderboard +||updatephone.club^$popup +||tgccct.icu^ +www.o2.pl#?##root > div > div[class^="sc-"] > div[class*=" "] > img[src^="https://v.wpimg.pl/"]:first-child + img[src^="https://v.wpimg.pl/"]:last-child:upward(1) +||31ad26b5ea.30d0b97ffa.com^ +||strewdirtinessnestle.com^$popup +/banner.php$domain=~research.hchs.hc.edu.tw +idownloadblog.com#@#.header-ad +##.right-ad2 +||172.255.6.199^$popup +||39.net/PictureLib/A/f76/20160825/org_749281.png +||inpagepush.com^$popup +bravotube.net###umyep +||vdzna.com^ +@@||swatchseries.to/templates/default/js/advertising.js +youku.com#$?#.newswiper_big_swiper_container > div.swiper-container-horizontal > div.swiper-wrapper > div.swiper-slide:has(> a[data-href]:not([data-href^="https://v.youku.com/"]):not([data-scm])) { remove: true; } +||mafiaillegal.com^ +||submarinefortressacceptable.com^ +||p5kzev.com^ +||treehusbanddistraction.com^ +porntry.com##.center-spot +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=toyoheadquarters.com +eprice.com.tw###popup-ad-overlay +detmold.de###cookieChecker +careerkarma.com###fast-track-modal-window +utilitymagazine.com.au,linoxide.com###text-36 +so.com##.spread +modern.az##.middle_rek1_divs +||bigappboi.com^ +@@||adrinolinks.in^$stealth +@@||posttrack.com^$xmlhttprequest,~third-party +delfi.lt###ads-bottom-bar-container +dhgate.com#?#div[spm-c="bottomb"].j-foot-login:contains(first-hand offers) +businessinsider.*##.article-ad-container +##.header-ad-frame +-ad-458x80. +||camwhores.video/t6e6d2454fa5.js +companyofheroes.com###cookies-settings +||mwkusgotlzu.com^ +djxmaza.in##.box-main > div.box + div.box > *:not(center):not(script) +map.baidu.com##.damoce-search-item +||spankbang.com/official/serve_ +e-consystems.com,ilksesgazetesi.com###fvpp-blackout +/push/js/rmf-push.js$domain=rmfmaxx.pl|rmf.fm +||kdmjvnk.com^ +/^(?!.*(fastlycdn.com|doodcdn.co|intensedebate.com|vixcloud.co|cdn.plyr.io|authkong.com|rsc.cdn77.org|linkvertise.com|fastly.net|statically.io|sharecast.ws|b-cdn.net|bunnycdn.ru|bootstrapcdn.com|cdn.ampproject.org|cloudflare.com|cdn.staticfile.org|disqus.com|disquscdn.com|dmca.com|ebacdn.com|facebook.net|fastlylb.net|fbcdn.net|fluidplayer.com|fontawesome.com|github.io|google.com|googleapis.com|googletagmanager.com|gstatic.com|jquery.com|jsdelivr.net|jwpcdn.com|jwplatform.com|polyfill.io|recaptcha.net|shrink.pe|twitter.com|ulogin.ru|unpkg.com|userapi.com|vidazoo.com|(\/\/|\.)vk\.com|yandex.|yastatic.net|ytimg.com|zencdn.net|player|youtube.com|cackle.me|googleoptimize.com|vuukle.com|chatango.com|twimg.com|google-analytics.com|hcaptcha.com|raincaptcha.com|media-imdb.com|blogger.com|hwcdn.net|instagram.com|wp.com|imgsmail.ru|cloudflare.net|(\/\/|\.)x\.com)).*$/$third-party,script,_____,domain=manshuxs.com|yemancomic.com|qimiaoxiaoshuo.com|gaofuwu.org|nxpaaq.com|dengbi2.com|92hm.top|634.tv|myhaitang.cc|ckplayer.vip +businessinsider.in##.h-\[300px\] +##.newad +||pathlinex.com^$third-party +||sombes.com^ +||topicimg.1234567.com.cn/product/2021/1/11/b914f8b6-fb61-4c85-834f-863b67c13a45.gif$domain=fund.eastmoney.com +||ccm19.de^$third-party +@@||consentmanager.mgr.consensu.org/delivery/consent.php +estadao.com.br##div[class^="box-urgente"][class$="-fixed"] +mimarkt.pl,idream.pl###garua_cookie_consent_popup +||whereres.com^ +@@||about.smartnews.com/ja/wp-content/assets/img/advertisers/ad_$~third-party +##a[href^="http://www.adultempire.com/unlimited/promo?"][href*="&partner_id="] +###smart_push_smio_overlay +fantia.jp##.fanclub-btns > div.popup-bar.is-clone +||jacksonduct.com^ +ndtv.com##.add_dxt-non +||xn--2ss830adjbqy7h.xn--fiqs8s^ +||mangoads.net^$third-party +###adspace +||vg.piaroanjust.com^ +the-crossword-solver.com##.mta +moviezone.cz##.ad +signupgenius.com#%#//scriptlet("set-constant", "sugabuAdsLoaded", "true") +geometrydash.io##.RowAdv +coinunited.io##.subscrible-news-box +||bdstatic.com/tb/zt/tengfei/gzdialog.jpg +chromeactions.com##div[may] +tripmydream.com##.mediaTelegram +gettinenglish.com#%#//scriptlet('set-cookie', 'cp_id_85057', 'true') +###kfpopupDiv +parliamentlive.tv#$##cookies { display:none!important; } +tabs.ultimate-guitar.com##button + div[style]:has(> div > a[href^="https://www.ultimate-guitar.com/pro?"]) +thehouseofportable.com#$##htp { display: none !important; } +blockchain-council.org###elementor-popup-modal-65787 +##.ainsyndication +##.ad-container-leaderboard +spiegel.de###spPlus_banner +||cam4.com/?$popup +mind.ua##.block_archive +sporcle.com##div[style^="text-align: center;"] > div[style*="height: 110px; min-width: 300px;"] +||shahr-kyd.com^ +filman.cc#%#(function(){var c=window.setTimeout;window.setTimeout=function(f,g){return g===1e3&&/#kam-ban-player/.test(f.toString())&&(g*=0.01),c.apply(this,arguments)}.bind(window)})(); +||etcodes.com^ +@@||trade.aliexpress.com$stealth +##.sitesponsor +millionacres.com###cont-milli_mid_article_pitch +socialpress.pl##article > .image-wraper + div[style^="width: 300px; height: auto;"] +||bureautrickle.com^ +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=t13.cl +||zndvfrl.xyz^ +shineads.in#$##brave_popup_54194 { display: none !important; } +||dl37p9e5e1vn0.cloudfront.net^ +||brodownloads.site^ +princessetamtam.com#$#.ui-widget-overlay { display: none !important; } +freecoursesonline.me#%#//scriptlet("adjust-setInterval", "/timeLeft|wpsafe-/", "*", "0.02") +||eumarkdepot.com^$popup +||frequentbarrenparenting.com^ +xn--72cf9bd9fk5a.com##.ad_cen +||clckysudks.com^ +||dishesha.net^ +miniwebtool.com###contain300-1 +||qvxtzi.xyz^ +###main-advert +full-count.jp##.s-entry-ads +||tvyb03.com/template/mytheme/statics/js/layer/ +crackshash.com#%#//scriptlet("abort-current-inline-script", "document.getElementsByClassName", "wp-ad") +||caomaotongji.com^ +||believableboy.com^ +webmd.com##.ad-no-css +@@||elections.ap.org/widgets/$stealth +||encourageidea.com^ +##div[id*="MarketGid"] +||labourattention.com^ +||static.fstsrv11.com^ +ithome.com##.rm-modal1-bg +###first_ad +||dependentwent.com^ +amkstation.com,issitedownrightnow.com##.ad +winscreener.live#@#.ad-block +||feuageepitoke.com^$popup +||toojeestoone.net^ +###inline-story-ad +tokyoweekender.com##.anymind-ad-banner +holzconnection.de#$#body { overflow: visible!important; } +okpeliz.com,jazbaat.in,3dzip.org,cgtips.org,audiotools.blog,unofficialtwrp.com,drivers.plus,gplastra.co,tempestfansub.com,mangaflame.org,pcgameszone.com,trigonevo.com,amanguides.com,sportshub.to,djqunjab.in,xerifetech.com,thepresetsroom.com,apkdelisi.net,ezaudiobookforsoul.com,qcscertification.com,plc4me.com,shortix.co,learnmany.in,3dmodelshare.org,highkeyfinance.com,firmwarex.net,vietnoiket.com,daotranslate.us,blackwot.ru,asiaon.top,snlookup.com,filmisub.cc,chindohot.site,javindo.eu.org,mixrootmods.com,kisahdunia.com,mhdworldtv.com,idlixofficials.com,magicgameworld.com,gamedrive.org,apkdrill.com,daotranslate.com,loaninsurehub.com,techacode.com,azmath.info,downfile.site,sonixgvn.net,tuxnews.it,pinsystem.co.uk,blessedhornbill.com,filmefarsi.com,luciferdonghua.in,cctvwiki.com,xadulto.com,7xm.xyz,mockuphunts.com,jadukit.com,tech5s.co,livehd7.io,emptycode.in,porninblack.com,tkbsen.in,teksnologi.com,shineads.in,app.trangchu.news,idlixplus.*,tavernadequadrinhos.com.br,knightnoscanlation.com,uiiumovie.*,plc247.com,thecustomrom.com,nulleb.com,step-tech.pl,reset-scans.*,arponag.xyz,kuponigo.com,gplastra.com,bethaniebu.com,coursesghar.com,souq-design.com#%#//scriptlet('abort-on-stack-trace', 'document.getElementsByTagName', 'adsBlocked') +##.lite-page-ad +||bdfjw.cn^ +##.pgevoke-fp-bodyad2 +||empiremoney.com^ +###cookieMgn +||admissibleconductfray.com^ +||xml.fstsrv2.com^ +||adsupplyads.com^$popup +sutterhealth.org,phonecopy.com###cookieAgreement +futura-sciences.com###article-anchor-article-main-content ~ div[class]:has(a[href^="https://news.google.com/publications/"]) +kurumachannel.com##iframe[src*="-Rss.html"] +||crazygolfdeals.com.au/widget$subdocument +||2477april2024.com^$popup +ah-me.com###ad_banner +||53e91a4877.com^ +||7683.ogrt80r65.com^ +baike.baidu.com##.BK-before-content-wrapper > div > a[target="_blank"][data-num][onclick^="page.Mixedor.mixedOpen("] +al-monitor.com##.region--after-content +###ads-1 +||leopard.understandit.se^ +||mcfstats.com^$popup +wgospodarce.pl##.double-rectangles +rcnradio.com##.field--name-call-action-google-news +/svr/*.aspx?placeid=$third-party +||jsdelivr.net/gh/te89899/ +tousatu.xyz##.textwidget > div[style]:has(> div[style] > div[id^="blz_rss"]) +tampermonkey.net##td[style^="vertical"].werl +###topad +andro-news.com##img[title="telegram__banner.png"] +@@||myvi.ru/player/$stealth +||kvsvug.xyz^ +||lasosignament.com^ +sina.com.cn##.adF +@@||sbdeloriranch.cfd/io/*.mp4$stealth=referrer +tomsguide.com##.rightcol-ads +||mugpothop.com^ +@@||cdn.onesignal.com/sdks/OneSignalSDK.js$domain=warhead.su +###adchoicesBtn +timeslive.co.za,sowetanlive.co.za###gdpr-overlay +bcvc.ink#%#//scriptlet('adjust-setInterval', 'bcvcCountDown', '*', '0.001') +@@||gdr-online.com/adv/ads.js +||cpro.baidu.com^ +||2687.79j68qav2.com^ +||manqian.cn/784a6e27-be5b-4442-86e5-9f4adb51894d? +||embassykeg.com^ +###adbnr +###advert-display +adpushup.com##.news-popup +||filter.themediaad.com^ +||lucrinearraign.com^ +||akbw.de/fileadmin/templates/dist/fc_cookie_config.js +||nsmpydfe.net^ +||timcityinfirmary.com^ +||fresh8.co^ +||extractdissolve.com^$popup +gayfuror.com##.menu > li > a[target="_blank"] +||99meiju.tv/js/tj.js +||gtbdhr.com^$document +blog.moneysmart.sg#%#//scriptlet('prevent-addEventListener', 'scroll', 'function') +##.kakao_ad_area +||libero.it/public/*/js/adv.min.js +||daughtersarbourbarrel.com^ +dexerto.*##div[data-placeholder="ad"] +||statsforads.com^ +||sportcoaching.co.nz/wp-content/uploads/*/*/Miivita_top-*-*-*-px.jpg +dailyhive.com###cookies-module +pcsoft.com.cn##.shuang11 +||smartclip.net^$third-party,domain=~toggo.de +viagogo.*#%#//scriptlet('trusted-set-local-storage-item', 'cookie_preferences', '{"hasSelectedPreferences":true,"preferences":{"advertising":false,"analytics":false,"preferences":false}}') +jagongoding.com#$##modal-fb { display: none !important; } +||fapstered.com^ +huffingtonpost.co.uk##.mod-follow +pcstore.com.tw##.bestshop_ad +###cookie-lightbox +||tickleorganizer.com^ +bing.com##body.notif_top > header#b_header #bnp_ttc_div +fulltrannytube.com#$#.header-open-cookie { top: 0!important; } +@@||blueconic.net/capitolbroadcasting.js$script,domain=wral.com +@@||tvid.in/api/mediainfo/*.json?$stealth=referrer +pagesix.com##.inline-module--newsletter +||25obpfr.de^ +||omoonsih.net^ +coveteur.com##.promo-placeholder +comparic.pl#?#.td-post-content > p:has(a[href^="https://www.purple-trading.com/"]) +||philosophicalurgegreece.com^ +||japantaxi.jp/assets/images/*/bnr-go +||exgirl.net/wp-content/themes/retrotube/assets/img/banners/ +||adsafeprotected.com/vans-adapter-google-ima.js$script,redirect=noopjs,domain=sportbible.com +nova.rs##.banner-promotion +||a.antiadxxxspy.com^ +||szmkr.cn^ +hikakaku.com#$#html { position: static !important; width: auto !important; top: auto !important; overflow: auto !important; } +||theaircurrent.com/wp-content/themes/slate/print.css +booking.com##.appacq-banner-rating +@@||criteo.com/delivery/ajs.php?zoneid=$script,domain=gaus.ee +omnicoreagency.com###text-59 +thehackernews.com##body > [class]:has(> center a[href][target="_blank"]) +||hirdairge.com^ +bossip.com##.fsb-toggle +_yad_jsonp_ +||avecmessougnauy.net^ +||9129666tp.com^$domain=9xav.cc +||1k2l3m4n5o.com^ +api-sdk.navitime.co.jp##.dialog +lewento.de,bier.de##.wt-cli-cookie-bar-container +||headirtlseivi.org^$popup +taxscan.in##div[class*="taxsc-ad-"] +aftonbladet.se#$#body.abMegaAd { overflow: visible!important; } +||3a12751332.cc72fceb4f.com^ +cnn.com##.ad-slot-dynamic +icq.com##.ca_wrap +swatch.com#$#div[data-widget="explicitCookieModal"] { display: none!important; } +||laithepacinko.click^ +||ezjav.com/p.js +ibtimes.co.uk##figure.fullVideo > div.relative.stuck +###ad-header-3 +||azskk.com^ +globalinfo.az##a[target="_blank"][href] > img[alt$="-reklam"] +##.PostAdvertisementBeforePost +||paussidsipage.com^ +bmwklub.cz##.topBanners +visalist.io#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||petasusawber.com^ +@@||ads.adthrive.com/builds/core/*/prebid.min.js$domain=mediaite.com +filmweb.pl#@#[class$="-ads"] +nakedbabes.club,hotbabeswanted.com##.deskbanner +||aspencore.com/syndication/v3/partnered-content/ +##div[id^="adv-"].adv +@@||tpc.googlesyndication.com/simgad/$xmlhttprequest,domain=soranews24.com +##.bps-advertisement +##.articleHeaderAd +||qqtn.com/js/*0.js +||gxjajt.com^ +||hinoidlingas.com^ +##.after_comments_ads +protarif.info##.banner_subscription +health2sync.com##.awac-wrapper +khaosod.co.th##.udfollow +||keyrun.cn^$third-party +||pta.wcm.pl^ +connectgas.ru##div[class^="cookieAgreement_"] +||augustjadespun.com^ +||microad.net^ +mirvracha.ru#$#[class*="LayoutGuest_blur__"]::before { display: none !important; } +||prezna.com^$third-party +||ba.tipitspart.com^ +##.banner-300x600 +@@||svapo.it/dev/adblock.js +###video_advert_top +mitti.se##.cookie-disclaimer-notice +tr.link#%#//scriptlet('remove-attr', 'data-ppcnt_ads|onclick', '#main[onclick*="__cfRLUnblockHandlers"]') +@@||gvt1.com/videoplayback/id/*/source/gfp_video_ads/*/file.mp4$domain=rx.iscdn.net +tportal.hr#$#.gpElementAdvertising { display: none !important; } +yoho.games##div[class^="ads-area-"] +izi.travel##.app_message +||electnext.com^ +marketscreener.com##.hPubRight2 +||8381.5clo0xmbf.com^ +##.product-ads +###ad-medium +bitfun.co###slideIn +/sobt_adv.js +||ecoimages.xyz/furs/mortgage.php +coingape.com##.dfd +||interesteddeterminedeurope.com^$popup +banggood.com###jsUseCookieTips +||o333o.com^$popup +sfchronicle.com##.scrl-block > .scrl-block-inner:has(.ad-module--ad--16cf1) +duckduckgo.com##li[class][data-layout="creditcards"] div[data-testid="creditcards-carousel-module"].bing +darkcapture.app##div[style^="width:300px;"][style*="height:100px;"] +||muipe.xyz^ +##[href^="https://www.hostg.xyz/"] > img +||unkinpigsty.com^ +itsfoss.com##.c-content > div.kg-card:has(> a[href^="https://www.raspberrypi.com/"]) +||nineteenthdipper.com^ +99kubo.tv##div[style="width:970px; height:250px;"] +gomunime.online##div[style*="text-align: center;"] > a[href^="https://bit.ly/"] > img +||affiliates.thrixxx.com^ +sojson.com##._right_ad +||31862bf36c.008dd84707.com^ +@@||9bis.net/advert.js +||ufile.cc/crod.js +||tuckedtucked.com^ +||duz64ud8y8urc.cloudfront.net^ +cdn.ampproject.org##body > amp-user-notification +interfax.com.ua,starhit.ru##.subscribe-us +toddpartneranimal.com,kimberlyonlocal.com,richardstorehalf.com,zacharycollectionmight.com,thomasalthoughhear.com,susanhavekeep.com,mbs.jp,lorimuchbenefit.com,ntv.co.jp,evelynthankregion.com,jessicaglassauthor.com,lisatrialidea.com,bethshouldercan.com,donaldlineelse.com,josephseveralconcern.com,alleneconomicmatter.com,robertplacespace.com,heatherdiscussionwhen.com,jasminetesttry.com,erikcoldperson.com,roberteachfinal.com,loriwithinfamily.com,rebeccaneverbase.com,brucevotewithin.com,sethniceletter.com,michaelapplysome.com,cindyeyefinal.com,nikkatsu.com,shannonpersonalcost.com,graceaddresscommunity.com,jasonresponsemeasure.com,ryanagoinvolve.com,jamesstartstudent.com,brookethoughi.com,vincentincludesuccessful.com,sharonwhiledemocratic.com,jayservicestuff.com,sandrataxeight.com,markstyleall.com,d0000d.com,morganoperationface.com,johntryopen.com,do0od.com,edwardarriveoften.com,paulkitchendark.com,stevenimaginelittle.com,ds2play.com,doods.pro,dooood.com,dood.yt,dood.re,dood.wf,dood.la,dood.pm,dood.so,dood.to,dood.watch,dood.ws,guiasaude.info,gaz.com.br,relevantmagazine.com,camcaps.*,fakazaduo.com,gimy.app,ruyashoujo.com,nhk.or.jp,mangabtt.com,careet.net,contents.premium.naver.com,r114.com,app.kartra.com,box-manga.com,leouve.com.br,comico.jp,tappytoon.com,toonnbook.nate.com,tapas.io,kakaowebtoon.com,lapandilladelarejilla.es,lezhinus.com,lezhin.com,grafolio.naver.com,webtoon.kakao.com,page.kakao.com#%#//scriptlet('prevent-addEventListener', 'contextmenu') +/responsive/ad_$subdocument +krsystem.pl##body > #cook +psy.su#$#.popups { display: none !important; } +@@/mangakakalot/*$stealth,image,domain=mangakakalot.com +||stripfitting.com^ +||dating2cloud.org^ +sm.cn###sc + .article.ali_row +||toolslib.net/assets/custom/img/4d5/mb_square_buy.jpg +-sticky-ad- +m.qidian.com##.app_download_blank_show +drozdogan.com##.toast-modal +||atraichuor.com^ +||he7ll.com^ +livehindustan.com##.stry-slderbtm +||lehtymns.com^ +herexxx.com###video-interlacing +||app.livechatoo.com^$third-party +ubestgames.com,mixfreegames.com##.walk_video_rightad +voka.tv#%#//scriptlet('set-local-storage-item', 'ALLOW_COOKIES', 'false') +gamblejoe.com##.c-area +||tradeexpert.net^$third-party +||d3q33rbmdkxzj.cloudfront.net^ +||washingtoninformer.com/wp-content/uploads/*/WEB-AD-728-X-90-1.png +nu.nl#@##onetrust-consent-sdk +thelocal.fr##.hp-new > div.hp-new__block:has(> div[data-hasbanner] > div.hp-new__article > div.tl-ad-container) +||xml.readywind.media^ +klimareporter.de###bottom-right +###adcontainer_ad_content_top +||kashi-mo.com/media/wp-content/themes/kashimo/img/kashimo_wimax/220625_ +forum.na-svyazi.ru##a[href="http://forum.na-svyazi.ru/zakaz.php"] +###ads_superior +||irregularstripes.com^ +||install.searchfrit.com^$third-party +facciabuco.com##.bannerpost +/TWCCookies/* +xhamster.com##.yld-mdcam-thumb +##.Video-Ad +###tid_cookieWarning +||a1tb.com/300x250ntv +mcfucker.com##.videoBlock > .cnt > .vcnt > .c2p +@@||iubenda.mgr.consensu.org/bridge/*$domain=video.repubblica.it +||datingstyle.top^$popup +||adsxyz.com^ +_advertisment.$~xmlhttprequest +primamedia.ru##.news_subscribe_form +||brogetcode1s.com^ +||962.net/show/all_$script +technologyreview.com###__next > .stickystrap +||push-sdk.net^ +.com/java/xia1.js +##.h11-ad-top +icrypto.media##div[data-rtadcontent] +espinof.com###dailymotion-pip-large-viewport +sportcoaching.co.nz##div[style] > a[href="https://www.miivita.com/"] > img +blog.treasurie.com##div[class$=".sideform"] +foxweather.com,foxsports.com#%#//scriptlet('json-prune', 'ads') +auto-data.net###outer > div[style*=" 3px 35px;"]:not([id]) +hao.360.cn##.festival_snatch +androidpolice.com##.w-affiliate +themuse.com#$#.mfe-modal { display: none !important; } +||paulastroid.com^$document +xhamster.com##.player-add-overlay +drtuber.com,iceporn.com,nuvid.com,proporn.com,viptube.com,winporn.com##.drt-spot-box +kat.sx,videoszoofiliahd.com,nopeporn.com,rarbg.to,tpbairproxy.in,piratebaai.click,proxyproxyproxy.nl,gameofbay.org,tpbunblocked.org,unblocktpb.com,piratebays.co.uk,thepiratebay.uk.net,piratebaai.club,proxyspotting.in,unblockedbay.info,kickass.cd,eztv.unblocked.sh,porn00.org,altadefinizione01.zone,tamilrockers.tw,rarbgmirror.org,vidzi.tv#%#!function(b,c){function a(a,b){return typeof a!=='function'?!0:a.toString().indexOf(b)===-1}b=document.addEventListener,document.addEventListener=function(){a(arguments[1],'inXP(e.target')&&b.apply(document,arguments)},c=window.setInterval,window.setInterval=function(){return a(arguments[0],'cookies.ppu_main')?c.apply(window,arguments):void 0},AG_defineProperty('onbeforeunload',{beforeSet:function(b){return a(b,'location.href=options.url')?b:null}})}(); +||configs.forgecdn.net/adfallback.js +stadtfeste-in-deutschland.de###cono +kininaru-geinou-m.blog.jp##.rss-blogroll + br +||pierisrapgae.com^ +||datingtorrid.top^$popup +||teasernet.ru^$third-party +###premiumAdTop +eshop.idsbk.sk##.modal-confirm +||ads$domain=d3ward.github.io +||trafforsrv.com^ +activistpost.com##.post-ad +dl4all.biz#?##dle-content > div[style^="padding:20px;"] > center:has(> div[style="text-align:center;"] > a[rel="noopener external noreferrer"] > img) +qyun.vip##.tp_advertising +||scoreland.*/tranny.jpg +codenong.com###sidebar aside[id^="text-"] +||v3cars.com/load-ads.php +||dmym.aixyy.com^ +||qcvbtrtlmjdhvxe.xyz^ +||fjzimaoqu.cn^$third-party +slidelizard.com###cookie-info-dialog +earthsky.org##.recent-posts > a[target="_blank"] > img +@@||figma.com^$generichide +||compassionatebarrowpine.com^ +||asg.myvideos.club/api/spots/ +apps.npr.org##.has-sponsorship +zone.msn.com###Superblip +forums.redflagdeals.com##.insurance_banner +||inhabitantsherry.com^ +||my.shymilftube.com^ +||metesmaculae.com^ +||uads.cc^ +player.theplatform.com#%#(()=>{window.XMLHttpRequest.prototype.open=new Proxy(window.XMLHttpRequest.prototype.open,{apply:async(a,b,c)=>{const d=c[1];return"string"!=typeof d||0===d.length?Reflect.apply(a,b,c):(d.match(/manifest\..*\.theplatform\.com\/.*\/.*\.m3u8\?.*|manifest\..*\.theplatform\.com\/.*\/*\.meta.*/)&&b.addEventListener("readystatechange",function(){if(4===b.readyState){const a=b.response;Object.defineProperty(b,"response",{writable:!0}),Object.defineProperty(b,"responseText",{writable:!0});const c=a.replaceAll(/#EXTINF:.*\n.*tvessaiprod\.nbcuni\.com\/video\/[\s\S]*?#EXT-X-DISCONTINUITY|#EXT-X-VMAP-AD-BREAK[\s\S]*?#EXT-X-ENDLIST/g,"");b.response=c,b.responseText=c}}),Reflect.apply(a,b,c))}})})(); +mobile01.com#$#body { overflow: visible!important; } +###ad-header-1 +||sunpma.com/other/logo/ +webbrowsertools.com###euconsent +##.ad728_wrap +||d1i3h541wbnrfi.cloudfront.net^ +||incompatibleconfederatepsychological.com^ +androidcentral.com###mbn_common_footer +||0544.cosmicnewspulse.com^ +storm.mg###floating_btns_wrapper +###adpos2 +@@||hotmediahub.com^$generichide +||3cb9b57efc.com^ +bloggif.com###home > div[style*="width:370px;"][style*="height:280px;"] +fidelity.de#$#.ensModalBackdrop { display: none !important; position: absolute !important; left: -3000px !important; } +||win5.aomg5bzv7.com^ +||viiddai.com^ +###gad300x250 +fxempire.com##span[style="user-select:none"] +||dfpstitial.com^ +ebatpro.fr#%#//scriptlet('set-cookie', 'cookie_necessity', '1') +amateri.cz###menu > div.box:nth-child(3) +||nookwiser.com^ +dtnext.in,pornwhite.com,androidappsgame.com,txxx.com##div[class^="adv-"] +cadlinecommunity.co.uk###sidebar_advert +||clixtrac.com^$third-party +||usmall.ru/_nuxt/773f367.modern.js +||inlugiar.com^ +blog.aming.info#$#body { visibility: visible !important; } +/tardisrocinante/austin.js$script +7060.la##.tuiguang +||a1bw2cup.top^ +scripcheck.great-site.net,e-player-stream.app,shineads.org,whats-on-netflix.com,justpaste.top,broflix.club,megafire.net,seriesperu.com,jeniusplay.com,tutorialsplanet.net,filegajah.com,nulleb.com,androjungle.com,daotranslate.com,azoranov.com,fapdrop.com,francescopelliccia.it,portalizpro.com,karanpc.com,jenismac.com,ipamod.com,taodung.com,voircartoon.com,comedyshow.to,brasilsimulatormods.com,hlspanel.xyz,unofficialtwrp.com,magesypro.pro,magesy.blog,adslink.pw,jpopsingles.eu,downloadlyir.com,pinsystem.co.uk#%#//scriptlet('abort-on-stack-trace', 'document.createElement', 'adsBlocked') +domaintyper.com,thecatholictravelguide.com##a[href^="https://www.kqzyfj.com/"] +ticariarac.vw.com.tr##.kvkk-an-appointment-bar +inzynieria.com##.karta-art-qs +51zhishang.com###kyzb_layer +||d9b5gfwt6p05u.cloudfront.net^ +osxdaily.com##a[href^="https://www.amazon.com/ref"] +hindustantimes.com##.noAdLabel +userscloud.com#%#//scriptlet("remove-attr", "onclick", "#btn_download") +||proeroclips.pro^ +/^https:\/\/zz\d{4}bb\d{4}\.com/$third-party,image +##.sponsor_line +medindia.net#?#.aside > section:has(> div.section__body > p.twitter-link) +bynogame.com##.cookie_agreements +meionorte.com##.form-consent +octalsoftware.com##.blog_sidebar > form + div.widget +dafontfree.io##div[data-ai-tracking] a[target] +bestcrazygames.com##.ads160600 +###cookie_alert +osuskins.net##.vad-container +billiongraves.com##.DoubleClickAdWrapper +portal-polski.pl##.entry-content > figure[id^="attachment_"][style^="width:"] +||c.bigcomics.bid^ +##.adSeven +##.adResult +~www.wp.pl,~poczta.wp.pl,wp.pl#?##app > div > table > tbody > tr:nth-child(2) > td > span > div:has(> div[class] > div[class] > a[href="http://onas.wp.pl/poufnosc.html"]) +travelmarketreport.com##.DestinationsRightAdSlide +||hardaque.xyz^ +allegro.pl#$#div[data-prototype-id="allegro.gdpr.consents"] { display: none !important; } +ivcelarstvi.cz##.shadow.w-100.bg-white.p-3 +||buythetool.co^ +pokemonbbs.com###rss_pc +##.top_adspace +photopoint.ee#$#.fancybox-wrap { display: none !important; } +cnitpm.com##.erweima +||seseporn.com/photo/*.gif +kuow.org##.cta_download +p.sokai.jp###consent_overlay +##.ad--top-slot +##._table_ad_div_wide +||tidyllama.com^ +club.autodoc.*##.gdpr-panel +||70d4a0bb45.e82ae52eec.com^ +||onifdlak.top^ +wickedsick.tv#%#//scriptlet("abort-current-inline-script", "spot", "api/direct") +###jsid-ad-container-post_above_comment +||swarfamlikar.com^ +/stui_ads/xyz456e/* +||kanoodle.com^ +||sinref.ru/avtomobili/antiblock.js +||9557.5clo0xmbf.com^ +||loyeesihighlyreco.info^$popup +||reportlog.dftoutiao.com^ +||cao0002.com/vip/js/ +||privilegest.com^ +vrn.de###vrn-cookie +||jycrjkuspyv.fun^ +||chabadokor.com^$all +tokopedia.com##div[aria-label="unf-overlay"] +bookwalker.jp##.p-app-bnr +##.anzeige_banner +bebakpost.com##.tdi_29 +roxtube.com##.advus +##.advertBlock +vegetology.com##div[data-name="comp-banner"] +/yryy/css/venmy.js +mamazone.pl,wylecz.to#$#body { overflow: visible !important; } +||unknowncrate.com^ +||bjwj2y.com/JS/LsJS.aspx +sivadictionaries.com#$#.adsbygoogle { height: 1px !important; } +||frfetchme.com^ +tubewolf.com#?#.main > h2:contains(/You may also like|Suggested for you/) +||micghiga2n7ahjnnsar0fbor.com^ +||s0-greate.net^ +ablesci.com#?#.able-container-body-right > .fly-panel:has(> div > img[src*="-alipay-autumn-hongbao.png"]) +ecanta.com.tr##.kvkpolicy +proengineer.internous.co.jp#?##MAIN_TXT_AREA > div:has(> div.textwidget > a[href="https://proengineer.internous.co.jp/free_member/"]) +||217hs.com/js/jquery.js +||ruiwen.com/sp/ +petenkoiratarvike.com,intergastro.de#$#body { overflow: auto !important; } +###right-ad-col +||ptrfc.com^$third-party +||xvzfyra.xyz^ +||motor-cdn.prensaiberica.es/widget?$domain=informacion.es +mangaworld.cc#?#.container > div.row > div.col-sm-12 > div.row:has(> div.col-md-12 > div.ads) +||adclickbyte.com^$document +||proinfinity.fun/wp-banners.js +||lsjazn.xyz^ +||beltarklate.live^$document +ur-files.com##.blockdowright > center > a[href] > img +||dalysv.com^ +klsescreener.com#%#//scriptlet('abort-current-inline-script', 'document.getElementById', '/adsbygoogle|adblock/') +||embowerdatto.com^ +le.com##.Banner +deviantart.com#?#div[data-hook="deviation_meta"] ~ div[class] > a[href="https://www.deviantart.com/core-membership"]:upward(1) +petsmart.com##.app-callout +fxempire.com##.dKBfBG +||befirstcdn.com^ +/adrecover-new.js$script +@@||contacts.google.com^$generichide +@@||bdimg.com/advert/js/advert.js$domain=music.baidu.com +newcartestdrive.com###static-asset-placeholder-3 +##.ad_300x600 +||adtrgt.com^ +###docbody > div.eu-cookie-panel +##a[href^="http://trk.globwo.online/"] +macrumors.com##.sidebarblock2 +live-tv-channels.org#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +anjuke.com###xajk_down_new +||affinity.net^$popup +carmag.co.za###sidebar-primary +||redefine.hit.stat24.com^ +||casejav11.fun^ +pradjadj.com#%#//scriptlet("set-constant", "google_jobrunner", "noopFunc") +@@||generatorlinkpremium.com/ads/advertisement.php +||afftrk.online^ +||c.amazon-adsystem.com/bao-csm/aps-comm/aps_csm.js$script,redirect=noopjs,important,domain=aternos.org +||districtm.io^ +||disable-adverts.com^ +38.242.194.12##footer > script + div[id][class*=" "] +||push.bvsrv.com^ +livehindustan.com##.nletter-cont +||media-412.com^$popup +filepuma.com##.screenshots_ads +maxisciences.com,foxnews.com##.promo-newsletter +sukebelog.blogterest.net,ettina.blogterest.net###content > div.row > div.col-md-3 +||csgofastx.com/?clickid=$popup,domain=hltv.org +||mouse.anthony-noel.com^ +###qrcodeDownloadBar +||filerio.in/sw.js +||hadronid.net^ +@@||dozenofelites.com^$elemhide +##.adBoxFooter +##a[href^="http://www.friendlyduck.com/AF_"] +instacart.com##li[data-testid="compact-item-list-header"] +fitline.com##section[class^="CookiesGDPR_initial"] +||q88z1s3.com^ +||qqtn.com/skin/know/ +-banner-ad_ +kankan.com###modal-adv +||darghinruskin.com^ +forums.anandtech.com,forums.androidcentral.com,forums.pcgamer.com,forums.space.com,forums.tomsguide.com,forums.tomshardware.com,forums.whathifi.com###rightcol_top +||drivewayperrydrought.com^ +germs.io#?##menuCenter > div.card:has(> div.row div#germs-io_300x250) +||inflectionhaughtyconcluded.com^ +cyol.net##.AD960_90 +###footer_ad_holder +##.contentAds +||opportunitygrandchildrenbadge.com^ +||amazing-dating.com^$popup +@@||mahimeta.com/networks/ad_code.php$domain=biggboss13.io +||m.kukudm.com/mg/show1.js +mtrend.cn###topictabs1 +so.com##.js-left-rec-busi +###cookiePop +||mtoor.com^$third-party +||distractiontradingamass.com^ +||wolf.samarasousa.com^ +###ad336x280 +1password.com##div > main + div.fixed.bottom-0.block +###inline-story-ad2 +bilibili.com#$#.bili-video-card:has(.bili-video-card__info--creative-ad) > .bili-video-card__skeleton { visibility: visible !important; } +tulengua.es###Main_Content_divLabelAbuso +digital-photography-school.com##.pb-ads +extremetech.com,ign.com##.privacy-content +cargames.com,puzzlegame.com,yiv.com#%#//scriptlet('set-constant', 'adBreak', 'noopFunc') +||estaterenderwalking.com^ +||revulsiondeportvague.com^ +||thinpaltrydistrust.com^ +||woefifty.com^ +inwepo.co##div[id^="oa-"] +maisonbible.fr###cookie-consent ~ div.modal-backdrop +macapp.org.cn##.web_notice +##.full_width_ad +||bittads.com^$third-party +||dissipatecombinedcolon.com^ +||gocye.com^$third-party +||ca.findyourpussy.net^ +laprensagrafica.com,debate.com.mx,geekmi.news##.suscribe +duowan.com##.lolboxapps-qrcode +/ad/postbid_handler1.$script +||liqwid.net^$third-party +anoneko.com,dmhy.org,ye1213.com##div[id$="_ad"] > a:first-child > img +||kgdvs9ov3l2aasw4nuts.com^ +boxerdergisi.com.tr###MobileNewsLetterFormContainer +||4dex.io^ +||lweriol.top^ +||tp.sgcn.com^ +otowejherowo.pl##.code-block +comohoy.com##section[style="margin-bottom:100px;"] +news.xiaomi-miui.gr##aside div.widget:has(> div[class^="google_responsive_"]) +||heefothust.net^$popup +/ad_360_$domain=somanhua.com +||donescaffold.com^ +||mlstx.cn^ +||ninetyninesec.com^$popup +akbmatomeatoz.ldblog.jp##div[style$="height:350px;width:630px;"] +military.china.com##.slide_doubleimg > .baiBox +twidouga.net##iframe[src="adjuicy.html"] +||vecohgmpl.info^ +ma-shops.de###gdprInfo +aptekadlarodziny.pl##.global-cookie +yanmaga.jp###xCVTopPr +||toonujoops.net^$popup +###mktg_Cookie_Wrap +||dybxezbel1g44.cloudfront.net^ +buhonline.ru#$?#.react-responsive-modal-root:has(div[class^="subscribeBlock"]) { display: none!important; } +||xvfyubhqjp.xyz^ +@@||yimg.jp/combo?*/ad/ +hitbdsm.com##a[href^="https://go.rabbitsreviews.com/"] +drony.gov.pl##dtm-ui-cookies-popup +||knfhxszj.xyz^ +||dreams.aomg5bzv7.com^ +@@||downloads.descendant.me^$generichide +||ashturfchap.com^ +m.facebook.com#$#div[data-type] { -moz-user-select: text !important; -webkit-user-select: text !important; } +||vpnlist.to^ +imgur.com#$#.Gallery-EngagementBarContainer > div.Transformation-wrapper { display: none !important; } +walmart.com###hf-feedback-bubble-fixed-link +||adserwer.xwords.pl^ +||overcrowdsillyturret.com^ +linkdecode.com#%#AG_onLoad(function(){var a=document.querySelector('body > .adsbygoogle[style^="float:"] > a[href]#popup');if(a)try{location=a.href}catch(b){}}); +misshajp.com##.cookie_check_Area +firefoxchina.cn,taoyitu.com##.float-banner +@@||scontent-*.cdninstagram.com^$stealth,domain=bella.tw +ruten.com.tw###rt-top-ad +||sh0w-me-how.com^ +||fefoasoa.xyz^ +wallstreetcn.com##.open-in-app +||conceivedtowards.com^ +||ts.getherelf.com^ +ilvruan.com###text-14 +||yskicm.xyz^ +||msg.ettoday.net^ +omnitalk.com##tr[bgcolor="ffffc8"] +rhumbarlv.com##.banlink +low-ya.com##.v--modal-overlay +markandgraham.com#$#body { overflow: auto !important; } +shethepeople.tv###SIGNUP_PAGE +@@||sdk.privacy-center.org/*.js$domain=gamestar.de +||unpackthousandmineral.com^ +ameblo.jp#?##app aside[class^="_"]:has(> a[href^="https://auth.user.ameba.jp/signup"]) +||aeefpine.com^ +stelux.online,gooltok.com,loiz.store,glo-n.online,jolk.online,minipet.online,spidergame.online,pedalpower.online,offeergames.online,sealat.com,msic.site,fx4ever.com,businessnews-nigeria.com,day4news.com,net4you.xyz,maos4alaw.online#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +wagwalking.com#?#section > div[class]:has(> figure a[href="https://wagwalking.com/wag-health"]) +||intentiq.com^$third-party +||ygshu.com/js/h +shinbhu.net##div[class^="publift-widget-"][style] +support.mts.ru##div[class^="snackbars-"] +||tmnsstf.com^ +||lyislol.top^ +||adrocket.com^$third-party +@@||sw-i.de/typo3conf/ext/epl_site/Resources/Public/js/lib/cookieconsent.js +realpornclip.com#%#//scriptlet('prevent-window-open') +||dsp.lenovo.com.cn^*&clientType=api| +le.com##.broadcast-adv +||stikinemammoth.shop^ +||www.y2sysv81v.com^ +alligator.io##.article-side > .sticky-side > div > a[href][rel="sponsored"] > img +livescore.com###header-ads-holder +opoyi.com##.hLYYlN +||smartdating.top^ +||molecularhouseholdadmiral.com^ +nycpokemap.com,londonpogomap.com,vanpokemap.com,sgpokemap.com,sydneypogomap.com###overlay +||zpgjz.com/cdn/new1/4.gif +fuckit.cc,camhub.cc,camhub.world#@#.ads-iframe +||pagead2.googlesyndication.com/pagead/show_ads.js$script,redirect=noopjs,domain=herokuapp.com +||yyetss.com/static/modal.js +fx678.com##div[class^="hc_ad_"] +myfxbook.com###adPopUpContainer +||montpellierhandball.com/scripts/fancybox/minified__fancybox.js +||dn0qt3r0xannq.cloudfront.net^ +sexub.com###cframe +||anhuinews.com/include/ +##.new_ad_left +||21270a5ec2.a48d53647a.com^ +||3h3.com/js/homepage.js +inverness-courier.co.uk,johnogroat-journal.co.uk##.DMPU +||distrowatch.com/wban +moviehd2022.com##.banner-center2 +standard.co.uk###taboola-right-rail +tvn24.pl##.video-player > .videoPlayer.player-initialized .vjs-switching .vjs-loading-spinner +||shuakongbao.com/resource/images/banner/ +||aunstollarinets.com^ +||ossnidorinoom.com^ +ndtv.com###ad100 +||online.*/promoredirect?key= +streamonsports.cc,streamonsport.info##.chatango +dutafilm.*##iframe[data-glx][style*="z-index"] +news.gamebase.com.tw,richards.com.br##.cookieAgree +flightradar24.com##.important-banner--cookies +analyticsindiamag.com##section[data-element_type="section"] > div.elementor-container > div.elementor-column + div.elementor-column > div.elementor-widget-wrap > div[data-widget_type="image.default"]:has(> div.elementor-widget-container > a[href^="https://rb.gy/"]) +||arabs.pornarabi.net^ +skokinarciarskie.pl##body > div[style^="width: 750px; height: 200px;"] +||rouonixon.com^ +||messsomehow.com^ +||adv.consulcesi.it^ +||sex-chat.me^ +kidona.rakuten.co.jp,hoken.rakuten.co.jp,rakuten-insurance.co.jp##.mnoBnrArea +||captickc.com^ +peugeot.com.tr,peugeot.cz,peugeot.es,peugeot.fr,peugeot.hu,peugeot.pl,peugeot.se,peugeot.sk,citroen.com,citroen.com.tr,citroen.cz,citroen.es,citroen.fr,citroen.hu,citroen.pl,citroen.se,citroen.sk###_psaihm_overlay +||adenc.co.kr^$third-party +||fbfrbt.xyz^ +rateyourmusic.com#?##user_list > tbody > tr[class] + tr:not([class]):has(> td > div[style] > div[id^="div-gpt-ad"]) +masrawy.com##.monsterDiv +@@||yandex.ru/ads/system/context.js$domain=investing.com +##.section-adv +czzy01.com#?#.swiper-wrapper > div.swiper-slide:has(> a[href^="https://"]) +hbr.org##div[data-testid="ad-container"] +##.header-ad-banner +||ostjpig.cn^ +healthrangerstore.com##._form-wrapper +bithub.pl##div[data-adid] > a[target="_blank"] > img +||loc.cli2020.com^ +businessnamegenerator.com##div[class*="domainify"] +habr.com##.tm-stories-block +sportland.com#$#.CookiePopup-DivWrapper { display: none !important; } +||go.hangzhou.com.cn^ +||isdspeed.qq.com^ +||anguishlonesome.com^ +elektrotanya.com#%#//scriptlet('set-constant', 'canRunAds', 'true') +##.GoogleDfpAd-container +yardbarker.com##.yb-card-leaderboard +||ringplayground.com^ +||heeteefu.com^ +/images/segucrwj*.jpg +blog.livedoor.jp##.rsstoptop +||36e2c762e2.6a59fa5129.com^ +u7u9.com##.xw-right-ad +point2homes.com,propertyshark.com##div[style^="min-height: 360px;"] +##.site-ads +@@||cloud-*.onionflix.$stealth +###sponsorship-area-wrapper +18avtube.com,mm-cg.com###partner +||iptv444.com/ad- +||f1617d6a6a.com^ +filmweb.pl#@#.ws__wrapper +||0224.4puuqeh41.com^ +/dm78ad/* +@@||gsurl.be/advertisement.js +riotpixels.com#$#body .bottom-bar { top:0 !important; } +||allotnegate.com^ +||qokira.uno^ +||seynatcreative.com^ +en8848.com.cn##.list_adv +ipornia.com#$?#.cj-foot { remove: true; } +||sentenceinformedveil.com^ +||6589.cosmicnewspulse.com^ +/asset/js/gglms. +anime-list16.site###najva-popup +ggdoc.com.cn#@#.addiv +citroen-club.cz#%#//scriptlet('abort-on-property-read', 'gaFailedToLoad') +||obukhiv.info/site/assets/pwpc/pwpc-*.js +99tianji.com###banner_gg +anupama.net#?#.text-html:has(> div.widget-top > h4:contains(/Sponsored|Advertisement/)) +theproxy.lol,unblock-it.com,uproxy2.biz##.nrd-general-d-box +junodownload.com,juno.co.uk###juno-cookie-consent +ali213.net##.head-left +food.ru##div[class^="cookieNotice"] +||hyphenatedion.com^ +||porngames.games/js/bioep.custom.js +@@||webkul.com/joomaddon//plugins/system/adblockerdetect^ +||goldtraders.or.th/*/advertisement.gif +###large-bottom-leaderboard-ad +||bestcripto.xyz/assets/images/banners/ +promotion.aliexpress.ru###policyContainer +nhk.or.jp###stickyBanner +@@||desirecourse.net/wp-content/*/themes/jannah/assets/js/advertisement-*.js +||nostrilquarryprecursor.com^ +||gloriousboileldest.com^ +zorbasmedia.com##.banner-middle > a:not([href^="https://zorbasmedia.com/"]) +||ourteeko.com^ +sex8.cc##.gd-list +@@||o.auspost.com.au.ssl.d2.sc.omtrdc.net +canadacomputers.com,kinoafisha.ua##.privacy-modal +xatakamovil.com#?#.sticky-sidebar-container > div.related-alts-container:has(> div.aside-box > form.js-subscription) +||7325.79j68qav2.com^ +sohu.com##a[href*="_Click_Flow_recommend_"] +take5andstayalive.com###popmake-19647 +theguardian.com#$#.signin-gate__first-paragraph-container { display: none !important; } +pikabu.ru##.email-block +||ecpms.net^ +delta.com###ensModalWrapper +||dig.chouti.com/advert +###adv_wallpaper2 +||scint-x.com/js/ +1prime.ru##.article-aggr +||rtb-1.jizzberry.com^ +xiaohutuwb.com##.ceo_ads +##.single-mpu +lovegreen.net##.related_services_banner_mail +macupdate.com##.mu_cookie +myoplay.club#%#//scriptlet("set-constant", "__poupup_active", "true") +||raresummer.com^ +||mxtoolbox.com/Public/Lookup.aspx/GetNextInlineAd +rtl.de#?#div[class]:has( > .placeholder + div[class] > .opinary-widget-embed) +||dberthformttete.com^ +bankvacency.com###orquidea-slideup +eett.gr#@##cliSettingsPopup +||goreoid.com^ +eepw.com.cn###startvideo +lookmovie.fyi,lookmovie2.la,lookmovie2.too##.notifyjs-corner +igram.world#%#//scriptlet('prevent-window-open') +||eznoz.xyz^ +market.yandex.*##div[data-apiary-widget-name="@marketfront/CreativeBanner"] +||ifriends.net^$subdocument,third-party +porngifs2u.com##section[class*="elementor-hidden-"] +||usepanda.com^$third-party +crea.bunshun.jp##.mail-magazine +||esyliew.top^ +itbricksoft.com,bolavip.com,gorky.media##.subs-block +||numbertrck.com^$document +uflash.tv#%#//scriptlet('set-constant', 'popBlocked', 'falseFunc') +obc.co.jp##.leadinModal-theme-bottom-right-corner +desimartini.com##.stay_connected +tech.qq.com##.kjad2 +||d27pxpvfn42pgj.cloudfront.net^ +jpost.com##.right-side-banner +edureka.co##div[class^="myMock-interview-banner-"] +||wantedbabes.com/images/wantedbabes.com/p2_parent.js +techspot.com##.es3s +||misfields.com^ +||ads.sexier.com^$popup +@@||sktorrent.net^$generichide +jitashe.org##.bc_side_250 +||trck.wargaming.net^ +siasat.com##.stream-item-widget +||in.mashable.com/*/zad.js +sundryfiles.com#%#//scriptlet("set-constant", "document.hidden", "false") +||zprelandings.com^ +street-beat.ru,notino.pl##.exponea-subscription-dialog +fulltime-predict.com#$#.modal-backdrop { display: none !important; } +cavolump.com##div[class^="pickup"] +||viensvoircesite.com^$third-party +sportowefakty.wp.pl##aside > .rail > div[class]:has(> div[class]:only-child) +.com/Public/js/duileft.js +##.divReklama +schullv.de#%#//scriptlet('set-local-storage-item', 'cookiesAccepted', 'true') +vkspeed5.com##.overlay_main +md5hashing.net##.primary-container > .pp-footer +.ashx?AdID= +||premiumredir.ru^ +||weirddistribution.pro^ +||qvikar.com^ +kbb.com##div#kbbAdsMedRec +bsh-group.com#@##cookie-layer +||changeable1x.xyz^ +##.ad-block-300 +||gibadvpara.com^ +15min.lt#?#.item:has(> a[href*="//bit.ly"][target="_blank"] > img) +witcherhour.com#$#.publicite.text-ad.adsbox { display: block !important; } +||gibizosutchoakr.net^ +||dzliege.com^ +mangaraw.org,theync.com,senmanga.com##.banner-block +lrytas.lt##.LGalleryMain__popup +overclock.net##.sponsor-btns +gregorypacks.com#$#body { overflow: auto !important; } +||eroasmr.com/preroll_*.xml +juzaphoto.com#?#.s_main_div_flex > div.s_bluebox:contains(cookies) +anadibank.com#$##sliding-popup { display: none !important; } +forbes.com##.ju_Con[data-title="Daily%20Dozen"] +||pressablecdn.com/wp-content/uploads/Site-Skin_update.gif$domain=bikebiz.com +oremanga.net##.header-ads-section +crewbase.net,crewus.net,shinbhu.net,shinchu.net,thumb8.net,thumb9.net,uniqueten.net##.d +||qqmhh.com^ +||imageshtorm.com/s*.js| +||pacificprocurator.com^ +||bombaytimes.com/bbtrue/ +kan-therm.com#$#html { overflow: auto !important; position: unset !important; } +||mzpecui.icu^ +||u0054.com^ +||foregroundhelpingcommissioner.com^ +raftaar.in##div[id^="ads-"] +||mvpqrydt.xyz^ +jobfinder.lu#%#//scriptlet('set-cookie', 'enableAnalytics', 'false') +||hadmiredinde.info^ +||glav-dostavka.ru/js/n-smartbanner.min.js +portsmouth.co.uk,northantstelegraph.co.uk###hero-pixels + div[class]:has(> a[href="http://www.shotstv.com"]) +reuters.com##div[data-variant-id="workspace-banner"] +tribunnews.com###adspop +worldhistory.org#%#//scriptlet('remove-node-text', 'script', 'adShield') +||detectivespreferably.com^ +buy.tinypass.com##.plus-banner[external-event-trackingvars*="Banner-"][external-event-trackingvars*="-sticky" i] +||sexjav.tv/ad_provider/ad_provider.js +celeb.gate.cc#%#//scriptlet("abort-on-property-read", "dataPopUnder") +||d1sytkg9v37f5q.cloudfront.net^ +komplett.dk,komplett.no,komplett.se,komplettbedrift.no,komplettforetag.se,newegg.com#@#.product-ad +||mifirm.net/assets/img/micloud.gif +almashhad.com##div[class^="Cookie_consent_"] +lekarnalemon.cz#%#//scriptlet('trusted-set-cookie-reload', 'cookiesSettings', '%7B%22necessary%22%3Atrue%7D') +||youdguide.com^ +||42a5d530ec972d8994.com^ +forum.hr##.advertisement_postbit_legacy +@@||onetag-sys.com/prebid-request$domain=linkneverdie.net +||djxpnuo.xyz^ +lincolnshireworld.com,nationalworld.com##.helper__AdContainer-sc-12ggaoi-0 +/cookies_acceptance. +remote.12dt.com##table[style^="width:768px;height:90px;"] +kufar.by###__next > div > footer ~ div[class^="styles_wrapper__"] +##.metabet-adtile +||cdn.srxy.xyz^ +club386.com#$#body { background-image: none !important; } +##.adContainer1 +||bastarduponupon.com^ +cuteasiangirl.net,matureclub.com##.video-item--adv +ryd.one##.xy-consent +||brtsumthree.com^ +dropbox.com##div[class="top-notification-bar-container lightyellow"] +##a[href*=".xxmh"][href*="?u="] +hetmanrecovery.com##._header-banner +aaieba.livedoor.biz##.left-container +freeiptvplayer.net##.iptv_ads +gorod24.online##.mob-download +||bnlbecm.xyz^ +g-mens.net,matacoco.com,tsurimatome.com,kokopyon.net,girlsvip-matome.com,valorantchannel.net,saikyo-jump.com,absurd.blogo.jp,daretoku-eromanga.info,hattatu-matome.ldblog.jp##div[class^="rss"] +web.de,gmx.net,gmx.at,gmx.ch,gmx.com#@#.ezo_ad +linegee.net##body > div[style^="position:fixed; bottom:0; width:100%;"] +hentai2w.com##.aff-content-col +novosti-n.org##div[class*="_indent-clear"][style^="background-color"] +||bristlemarinade.com^ +###bf-cookie-notice +montredo.com###cookie-settings-alert +##.adsMvCarousel +thebell.io##.arena-banner +||vdggsd013.com^ +truyenqq.net###left-banner +horriblesubs.info##.rls-sponsor +###googleAD3 +brose.com###bbcdBanner +||dmeukeuktyoue.info^$popup +123.sogou.com,web.sogou.com##.dropBox_list > li > a > span[style="color:red"] +symbolab.com#@#.googleAdsense +||rewardsaffiliates.com^ +funnygames.biz,funnygames.org,funnygames.nl,funnygames.eu,funnygames.ch,funnygames.pl,funnygames.com.br,funnygames.com.tr,funnygames.com.co,funnygames.it,funnygames.ph,funnygames.fi,funnygames.gr,funnygames.ro,misjuegos.com,funnygames.kr,funnygames.jp,funnygames.se,funnygames.be,funnygames.fr###katon-slot +retroplace.com#$##retroplaceCookies { display: none !important; } +||hicpm10.com^$popup +jenprace.cz#$##cookie-bar-outer { display: none !important; } +itest.5ch.net##div[itemscope="itemscope"] > p[style]:has(> a[href="//uplift.5ch.net"]) +asp.wroc.pl##.cookie_info_asp +ipvm.com##.desktop-promo +prepostseo.com##.pull-right > .text-center[style*="min-height: 280px;"] +@@||rm.sina.com.cn/minisite/*/css/art_normal.css$domain=client.sina.cn +ilvruan.com##a[href^="http"]:not([href*="ilvruan"]) > img +||maghoutwell.com^ +soranews24.com##amp-ad-exit + div[class*="-banner"] +##.tower_ad_desktop +||7tor.download/Banners/ +codechef.com###gdpr-cookie-notif +germany.travel#$#html > body.consent-overlay { overflow: auto !important; } +##.wp.a_f +hindustantimes.com##div[class*="adsheight"] +@@||loucasporcabelos.com.br^$stealth +wstream.video#%#//scriptlet('remove-attr', 'style', 'div[id][style="display: none;"]') +||glassdoor.com/app/static/js/dist/gd-user-hardsell-overlay.bundle.js +||zoologicalviolatechoke.com^ +stickypassword.com#$#body { overflow: visible!important; } +quackr.io##.table > tbody > tr[_ngcontent-serverapp-c10]:has(> td[_ngcontent-serverapp-c10] > div[data-fuse]) +||s7tu.com/images/*.gif +||edjjpgf.xyz^ +###cookieDisclaimer +||dancefordamazed.com^ +||rarejob.com/cms/wp-content/themes/awaken/js/fix-banner.js +||phaiksul.net^ +rjno1.com#$#body #aswift_1:not(#style_important) { display: block !important; } +newpct1.com##div[style*="width:300px;height:250px;"] +forum.qrz.ru##.adblock_open-sidebar +||ggxcoez.com^ +##.vf-promo-gtag +##.home-ad-links +petapixel.com##.video-aspect-wrapper +||hackp.com/im/ +nex-software.com##h4:has(a[href$="/reimage"]) +canuckaudiomart.com##div[id^="replacement-position-"] +writingexplained.org##.atlanta-lightbox +korsanedebiyat.com#$#body.collapsible-active::before { display: none !important; } +||oyen3zmvd.com^ +gtainside.com#?#.container > .col-sm-6:has(> .box_grey.ad) +pcinvasion.com#?#.sticky-sidebar-wrapper:has(> #sticky-sidebar > .sticky-sidebar__inner > div[data-freestar-ad]) +lojistiknews.com,yenimuhalefet.com###yanilgi +##.adsense-336 +lovepanky.com##.single-subscribe +jytechs.in,miuiflash.com,djxmaza.in,thecubexguide.com#%#//scriptlet('prevent-addEventListener', 'DOMContentLoaded', 'antiAdBlockerHandler') +||login.convertise.io^ +abo24.de#@##cookie-consent-wrapper +agenda.brussels,visit.brussels##body > .js-confirm +nakedsecurity.sophos.com##.sophos-inline-ad +toronto.citynews.ca##.big-box-ad +tomshardware.co.uk,tomshardware.com##.social-promote-box +##.moads-top-banner +||st.work.ua/js/app-banner- +###dsk-box-ad-f +perplexity.ai#%#//scriptlet('set-session-storage-item', 'signUpBannerDismissed', 'false') +mp3-convert.org#%#//scriptlet('prevent-window-open') +xhopen.com,xhspot.com,xhwide5.com,xhchannel.com,xhchannel2.com,xhtotal.com,xhtree.com,xhwide2.com,xhlease.world,xhamsterporno.mx,xhxh3.xyz,valuexh.life,xhdate.world,xhtab4.com,xhbranch5.com,galleryxh.site,xhbig.com,racexh.site,xhaccess.com,xhofficial.com,seexh.com,xhamster42.desi,xhvid.com,xhtab2.com,xhamster20.desi,xhamster19.desi,xhwebsite2.com,xhamster18.desi,xhadult3.com,xhadult2.com,xhmoon5.com,xhwide1.com,xhplanet2.com,megaxh.com,xhamster16.*,hamsterix.*,xhamster13.*,xhamster18.*,xhamster19.*,xhamster11.*,xhamster5.*,xhamster10.*,xhamster4.*,xhamster3.*,xhamster2.*,xhamster.*#%#//scriptlet('trusted-set-cookie', 'cookie_accept', '%7B%22e%22%3A1%2C%22n%22%3A1%2C%22tp%22%3A1%7D') +wowroms.com#?##sandBox-wrapper > .ulromlist > li.element:has(> .row-container > li > .adsbygoogle) +.com/js/customscript.js|$domain=wankoz.com|sleazyneasy.com +techspot.com,mos-holidays.ru,igate.com.ua,harpersbazaar.com.ua,incrussia.ru##.subs +linguisticsociety.org##.component-3 +yodesiserial.su##.stream-item-above-post-content > div[style^="background-image:url("] +mrpcgamer.co#%#//scriptlet("prevent-addEventListener", "", "/ADBLOCK_TRAFFIC_CONFIGURATION|NEW_TAB_FOCUS/") +farmaciasunipreco.com.br##.wd-data-usage-confirm +||pnperf.com^ +liveabout.com#@##onetrust-consent-sdk +sindoi.com##div[class^="sougo-rss"] +||ttoc8ok.com^ +###message-cookie +||d4eqyxjqusvjj.cloudfront.net^ +vk.com#$#div[data-ad][data-ad-cls] { display: block !important; } +@@||static.yieldmo.com/ym.adv.min.js$domain=okdebrid.com +||xml-v4.safesearchguard.com^ +||tr-usual.com^$popup +qqxiazai.com##.bt_abtn2 +digimanie.cz,svetmobilne.cz,relaxuj.cz,svethardware.cz#%#//scriptlet('set-constant', 'isAdblock', 'false') +||gifttopsurvey.top^ +||abruptlyretortedbat.com^ +photographyreview.com##.bottom-leaderboard +napiprojekt.pl#%#(function(){location.pathname.startsWith("/napisy-")&&AG_onLoad(function(){setTimeout(function(){var a=document.createElement("iframe");document.body.appendChild(a);a.src="/napisy-4684-Shrek-(2001)";a.sandbox="";a.style.cssText="position: absolute; left: -3000px;";setTimeout(function(){a&&a.remove()},5E3)},500)})})(); +afzhan.com##.topRightAdv +markandgraham.com#$##join-email-campaign { display: none !important; } +@@||zxc.nyaa-tan.my.id/js/-ads-banner.js$domain=kusonime.com +||*.com/|$third-party,domain=youtubepro.app +###adFlashDiv +financemagnates.com##.banner__outer-wrapper +||rbrmhz.xyz^ +donnaglamour.it#%#//scriptlet("set-constant", "adBlockRunning", "false") +||destinysfavored.xyz^ +###banner-lg-ad +69xx.one,69xx487.xyz,8mav.cc,av411.xyz,cable2055.cc,theav.xyz,thep178.com,theporn.cc,weav.xyz#?#[class]:-abp-has(>a>.q-responsive) +||indigestionmarried.com^ +||doczj.com/js/common.js +||temperacaimans.com^ +||ox.first-law.com^ +birds.cornell.edu###global-cta +brainklinik.ru###topPhonex +pesc.ru##.deal-cookie +ggjav.com,ggjav.tv###pc_instant +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,important,domain=arkadium.com +##.bnr_ad +||knowledgepretend.com^ +||d1voskqidohxxs.cloudfront.net^ +pherotruth.com##.footerad +@@||hotpornfile.org/wp-admin/admin-ajax.php$domain=hotpornfile.org +touchgal.org##a[href*=".sailing.ink"] +###blogad-wrapper +xnotx.com###sidebar > div.box:first-child +||byscy.cn^$third-party +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video-js.min.css$domain=ulifestyle.com.hk +||5dmail.net/image/ad_ +eduonix.com###coockieGDPR +mercola.com##a[href*="?cads"] > img +walmart.ca,walmart.com##[data-testid="carousel-ad"] +##.box-adsense +||f19bcc893b.com^ +dlsharefile.com#%#//scriptlet("adjust-setInterval", "#Download-Card", "", "0.02") +||separatesilver.com^ +xn--bafg-7qa.de#@#.cookiebanner:not(body) +sonixgvn.net#%#//scriptlet('trusted-create-element', 'body', 'div', 'id="kCBERyZsGSmi"') +##.adslot-inline-wide +||myhaitang.cc/assets/public/*.js +parenting.pl##.article__container--gallery > .content-aside +||vaultwrite.com^ +||gowspow.com^ +||guppy.ironmic.fm^ +@@||sourcepoint.mgr.consensu.org/consent/*/gdpr-status$domain=mopo.de +tubepornup.com##.video_right +||thereforem.com/sw.js +test.de##.newsletter-registration-form +g3-outlet.de#$#.borlabs-position-fix { overflow: visible !important; } +kbjfree.com#%#//scriptlet('prevent-fetch', '/cloudflareinsights\.com\/beacon\.min\.js|ccmiocw\.com|doubleclick\.net|tapioni\.com|wpadmngr\.com|wyhifdpatl\.com|wbilvnmool\.com|cloudfront\.net\/\?|\/scripts\/popad\.js/') +||cacafly.net^ +maxthon.cn###festival-skin-link +filecr.com#@#.text-ad +girlswalker.com##.gw-footer-banner-app-wrap +allthatsinteresting.com##.__b-popup1__ +plex.tv#%#//scriptlet('prevent-fetch', 'plex.tv/api/v2/ads/vendors', 'emptyStr') +||hitcpm.com^$popup +freeworker.*,electrobike.fi#$#body._has-modal { overflow: auto !important; } +||guardiandigitalcomparison.co.uk^ +zeichenfabrik.at##.informational-banner[data-role="cookie-notice"] +||ocoumsetoul.com^ +politico.com##div[class^="sign-up-"] +file.bospedia.com#%#//scriptlet("adjust-setInterval", "Link", "550", "0.02") +m.foodingredientsfirst.com#$#.ui-widget-overlay { display: none !important; } +wallpaperaccess.com#%#//scriptlet('prevent-addEventListener', 'mousedown') +ourmidland.com,michigansthumb.com,myjournalcourier.com##article > div[data-eid]:has(> img[src^="https://cdn-channels-pixel.ex.co/"]) +###partner-ad +||tangrenjie.tv/gg/$image +haval.ru,devart.com,breezometer.com##.popup-wrapper +pics4you.net##a[href="http://nngirls.party/"] +hoteldesigns.net##.n2-ss-slider +iciba.com##.footer_baidu +||a.zuowenku.net^ +||poacauceecoz.com^ +||buythetool.co^$popup +trendyol.com##.head-custom-banner +###cookieAlertWrapper +||vitrifywarman.click^ +marktechpost.com##.mysticky-welcomebar-fixed +@@||kqzyfj.com^$domain=bradsdeals.com|coupons.com|dealigg.com|dealnews.com|goodsearch.com|groupon.com|hotukdeals.com|moneysavingexpert.com|offers.com|retailmenot.com|slickdeals.net +/public/ad/*$image +mrs.living.jp###floating-max +##.ad--300 +tion.ru##.gform-bg-wrapper +@@||cdn.yamibuy.net^$stealth +joemonster.org###bigSkyAd +||wefoonsaidoo.com^ +||iyfnz.com^$popup +##.cn-advertising +||essentialshookmight.com^ +ebaumsworld.com,greedyfinance.com##.divider +laroche-posay.pl##.obj_onglets_fix .facebook +hh010.com##.a_hong_h +skin.ru##.subscribe-down +.com/java/zuoxia.js +porntrex.com##.show.exclusive-link +||tingchina.com/js/760 +getrelax.club##.loaded-popup-wrapper +##.adv_300_top +||vs3.com^$popup +.com/*=3&*,0|$script,third-party +timesofindia.com##div[class^="ATF_container_"] +##.connatix-hodler +techtarget.com###download-offer +##.ad-leaderbody +sslmentor.com#$#body.modal-open { overflow: auto !important; } +reveal-sound.com###rs_cookie_declaration +init.engineer##.alert-dismissible +||gratituderefused.com^ +||giraffe.talktalent.com^ +aeroespacial.sener###cookies_yb +||doublepimp.com^ +bing.com#@?##b_results > li :-abp-has(span:-abp-contains(Ad)) +###top-sponsor-ad +@@||cdn.jsdelivr.net/npm/cookieconsent*/build/cookieconsent.min.js$domain=enterpriseminilease.ch +getabstract.com##.notifybar--note +mtvema.com,mtv.co.uk,mtv.de,mtv.it#%#//scriptlet('prevent-fetch', 'imasdk.googleapis.com') +crank-in.net#?#.mb-0:has(> div[id^="_popIn_"]) +worldsoccertalk.com##[id*="primis_"] +||zagtertda.com^ +||5227.k3718qw08.com^ +clickorlando.com#%#//scriptlet('trusted-click-element', 'button.osano-cm-save') +edrawsoft.cn###bottom-banner-activity-md +marketwatch.com##.imonaid_context +||app.zrotary.com^ +mail.ru#?#.pulse-lenta div[class*="_"] > div > div[class*=" "]:has(> div[class] > a[href^="https://pulse.mail.ru/"][target="_blank"] > div[class] span[class]:contains(Промо)) +###ad_mrec2 +||iprefer.com.tw^$third-party +javhd.run##.loading-ad +||banzou.name/qq/qq2.js +||misarea.com^ +play.rtl.hr,rtlmost.hu#%#//scriptlet('json-prune', 'applaunch.data.player.features.ad.enabled applaunch.data.player.features.ad.dai.enabled', 'appName') +reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##.EUCookieNotice +@@||chipverify.com/*/js/prebid-ads.js +hd-trailers.net##.header-win +egamersworld.com##.match_wrap > span > a.primary-btn +/?&subid=*&pid=$redirect=nooptext,important +||cesebtp.com^ +||fourteenthcongratulate.com^ +troypoint.com,vladan.fr###wpfront-notification-bar-spacer +chillx.top#%#//scriptlet("set-constant", "S_Popup", "2") +|about:blank#$popup,domain=22pixx.xyz|adblockstrtape.link|bitporno.com|cdnqq.net|clipconverter.cc|dailyuploads.net|dood.la|dood.so|dood.to|dood.video|dood.watch|dood.ws|doodcdn.com|flashx.net|gospeljingle.com|hqq.tv|imagetwist.com|mixdrop.bz|mixdrop.sx|mp4upload.com|onlystream.tv|playtube.ws|popads.net|powvideo.net|powvldeo.cc|putlocker.style|run-syndicate.com|soap2day.tf|spcdn.cc|strcloud.link|streamani.net|streamsb.net|streamtape.cc|streamtape.com|streamtape.site|strtape.cloud|strtape.tech|strtapeadblock.club|strtapeadblock.me|strtpe.link|supervideo.cc|tapecontent.net|turboimagehost.com|upstream.to|uptostream.com|uptostream.eu|uptostream.fr|uptostream.link|userload.co|vev.red|vevo.io|vidcloud.co|videobin.co|videowood.tv|vidoza.net|voe.sx|vortez.net|vshare.eu|watchserieshd.tv +||c632b21431.e3103b0963.com^ +||zhangqifeng12.top^ +lunafon.ru###us_fixed_contact_button +||advtrkone.com^ +fleshed.com##body > div[id^="flim_"] +||cms-assets.nodecraft.com/*/2023-summer-ad-$domain=steamid.net +hipertextual.com##.mrf-newsletter +||s.zlink1.com^ +@@||bitfun.co^$generichide +eisamay.com##style[type="text/css"] + div[class]:not([id]):not([style]):not([class*=" "]) +myguidecyprus.com##div[class^="mdAd"] +ultimate-guitar.com##button + div[class]:has(> a[href^="https://www.ultimate-guitar.com/pro/"]) +knowledgehut.com##div[class^="slug___StyledDiv"] > div.my-6 + div.bg-white +kateich.net###headline_rss +||gg.gsdlcn.com^ +||aliyuncs.com/wjy99re/ +zus.pl###main-cookie-dialog +||wwsercher.biz^$third-party +xxxhentai.net##.gallery-list > div[itemprop='associatedMedia'].paid-mix +||googletagmanager.com/ns.html?id=GTM-$script,redirect-rule=noopjs +bioinhindi.in###NR-Ads +/fsjghgwyegh_f.js +offidocs.com##[id^="ja-container-prev"] +now.us,now.gg#%#//scriptlet('prevent-element-src-loading', 'script', '/\/prebid-load\.js|fundingchoicesmessages\.google\.com/') +ilmeteo.it#$##banner-mnz-topleft { height: 100px !important; } +appledaily.com###div-GDPR-message +||4497.4puuqeh41.com^ +latercera.com##.brookings-c-canvas +strato.de,strato.nl#$#body.agreecookie--active .container-fluid.sticky-pos[style="top: 50px;"] { top: 0!important; } +###ad_160x600 +###module-ads-01 +||almareepom.com^ +||e46271be93.com^ +||bwinpartypartners.com^$third-party +tecnologia.libero.it###iol_player_container.vjs-floater-parent +cablevisionhd.com,telegratishd.com##.site-access-popup +/gaypornium.com\/[0-9]{1,2}.gif/$domain=gaypornium.com +tinypic.com##.ad_banner +zdnet.com#@#.sponsoredItem +ufreegames.com##.spo +freikirche-hamm.de#@#.cc-floating +techmaniachd.pl###sidebar-right-1 > #HTML10 +sexmummy.com##td[width="330"] table[width="320"][height="100%"] +||kelleybbook.tt.omtrdc.net/m2/kelleybbook/mbox/ajax?mboxHost= +thenation.com##.inline-cta-1 +ewdn.com##div[data-title^="Subscription Form - Popup"] +-120x600_ +||ojuhjcmhemvs.com^ +game8.vn##.col-sm-9 > .box_text_qc +softonic.com###cookie-policies +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com#?#div[id$="_canvas"] +###adPlacement_8 +##.displayAdCode +player.glomex.com#%#//scriptlet('set-constant', 'Object.prototype._getSalesHouseConfigurations', 'noopFunc') +sunderlandecho.com###first-sticky-group +||scarabresearch.com^ +warcrimes.gov.ua##.modal-app +||bob110.cosmicnewspulse.com^ +||chubun.com/images/banners/ +##.cookie-policy-statement +||pauptoolari.com^ +###cookie_bar_top +||widget.golfscape.com^ +||facilityearlyimminent.com^ +||costivecohorts.top^ +haushalts.guru,mockupworld.co,annabelle.ch##.cookieNotice--isVisible +||adskeeper.co.uk^$document +@@||hdwall.us/js/adsbygoogle.js +consumerreports.org###newsLetterPopup +@@||google-analytics.com/plugins/ua/linkid.js$domain=support.amd.com +crackwatcher.com##[style="background:none !important;"]:has([href^="https://www.kinguin.net"]) +||atida.fr/*/gdprCookieManager.*.min.js +oggitreviso.it##body .test-adblock-overlay:not(#style_important) +||gazeeniggard.top^ +###adsbox-left +/gpt_ads-public.js$script +itsfoss.com##.sidebar #text-11 .wp-coupons +@@/^https:\/\/[a-z]\.pussyspace\.(?:com|net)\/(?:yip?|xvs)\/videos\/20\d{4}\/\d{2}\/\d{9}\/(?:original|thumbs_\d{2})\/\d{0,2}(?:\(m=e[0-9A-Za-z]{5,7}(?:aaaa)?\)\(mh=[-_0-9A-Za-z]{16}\))?\d{0,2}\.jpg$/$image,~third-party,domain=pussyspace.com|pussyspace.net +||4wnet.com^ +||luxuriouscomplicatedsink.com^ +modpda.com##.message_warn +instructables.com##.promo-side +briian.com##.sidebar-widget-area > #custom_html-6 +sxrom.com##.tmk +||tq.optimalscreen2.online^ +bombaytimes.com#%#window.canRun = true; +putlockerstoworld.com##a[href^="https://deloplen.com/"] +||soft.mumayi.net/js/ +disk.yandex.by,disk.yandex.com,disk.yandex.com.tr,disk.yandex.fr,disk.yandex.kz,disk.yandex.ru,yadi.sk#$#html { overflow: auto !important; padding-right: 0 !important; } +mangarock.com###taboola-below-article-thumbnails-last-page-vertical +||justservingfiles.net^ +||obeus.com^ +@@||g.doubleclick.net/gampad/ads$xmlhttprequest,domain=bloomberg.com|chromatographyonline.com|formularywatch.com|journaldequebec.com|managedhealthcareexecutive.com|medicaleconomics.com|physicianspractice.com +||kvksis.com^$third-party +zdg.md##.send-new-block +.com/ads?$popup +speakerdeck.com##.carbon-container +@@||fonts.shopifycdn.com/roboto/roboto_*.woff$stealth,domain=shopify.com +studyis.xyz#$##wpsafe-link { display: block !important; } +##.ad-bottomline +##.ad-banner-static +||flowwiththetide.xyz^ +||engine.gettopple.com^ +||static-rtb2.ak.bonanza.com^ +||googleadservices.com/pagead/conversion.js$script,redirect=noopjs,domain=ncsoft.jp,important +||tpx.tesseradigital.com^ +blog.goo.ne.jp##.navbar__link--bottom +||recordedthereby.com^ +vidmoly.me,vidmoly.net,vidmoly.to#%#//scriptlet('prevent-addEventListener', 'DOMContentLoaded', '/_0x|adsBlocked/') +-160x600- +cinereporters.com#?#.story-mainnews > .row > .col-md-6 > .colombiaonesuccess > div[class]:has(> div[id] > div > a[href] > div > p:matches-css(before, content: /^Ad$/)) +||dashedclownstubble.com^ +afly.pro,ustream.to##.popup +nytimes.com,nytimesn7cgmftshazwhfgzm37qxb44r64ytbb2dj3x62d2lljsciiyd.onion#?##app > #site-content > div[class] > div[class^="css-"] > div[class^="css-"][class*=" "]:has( div[class^="css-"][class*=" "] > .ad) +###top_span_ad +@@||stabila.com/*bundles/marketingsuite/css/cookie-bar.css +##.adops +.vip/html/zbxx.js +@@||native-english.ru/i/ads/ads.js +||creative.stripchat.com^ +fortress.com.hk,youdao.com#@#.share-icon +||anewgallondevious.com^ +||feignthat.com^ +style.yahoo.com##.player > div.vp-docked +||fstsrv8.com^ +pairs.lv#$##page_top[style="top: 64px;"] { top: 0 !important; } +@@||sdk.privacy-center.org^$domain=lequipe.fr +liveradio.fm###ads-info +||creative.live.javdock.com^ +m.alpha.facebook.com,touch.alpha.facebook.com,mtouch.alpha.facebook.com,x.alpha.facebook.com,iphone.alpha.facebook.com,touch.facebook.com,mtouch.facebook.com,x.facebook.com,iphone.facebook.com,m.beta.facebook.com,touch.beta.facebook.com,mtouch.beta.facebook.com,x.beta.facebook.com,iphone.beta.facebook.com,touch.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,mtouch.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,x.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,iphone.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,touch.beta.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,m.facebook.com,m.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,b-m.facebook.com,b-m.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion,mobile.facebook.com,mobile.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##article[data-sigil*="AdStory"] +###ad-leadboard1 +||kite.devin.website^ +||ali213.net^*/promotion/ +imgbox.com##div[id^="aad-header-"] +vebma.com,pinloker.com,sekilastekno.com#%#//scriptlet('prevent-window-open', '/\.(com|net)\/4\/|teraboxapp|momerybox/') +lions-matome.com,sutekinakijo.com##.plugin-memo:has(> div.side > script[src$="/blogroll.js"]) +flipkart.com#%#//scriptlet('set-session-storage-item', 'HPLWClosedPerSessionCount', '1') +@@||googletagservices.com/tag/js/gpt.js$domain=cars.ksl.com +||bevelerimps.com^ +@@||impresa.italia.it/itlg/app/bower_components/angular-cookie-law/angular-cookie-law.js +||patriotnationpress.com// +||9king888.cc^ +@@||publisher.adservice.com^$document +compoundsemiconductor.net##.mega-bar +||bdstatic.com/tb/mobile/sglobal/img/bannerLogo_ +sina.com.cn###ad_tl_01 +cnet.com##div[section="homepage-email-promo"] +||khrtac.xiangha.com^ +weihemenye.com#$##player_ad_div { display: none!important; } +||blendedbird.com^ +epochtimes.jp##.home_wall +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=up-4ever.com +eleminist.com#$##popup-smart-root-44121 { display: none !important; } +wolframalpha.com#?#div[animations]:has(> a[href][target="_blank"] > img) +facenews.ua###pblock +mgnetu.com##.banner-container .box-success > h4 +##.delayed-module.alert-cookie.alert +||doblazikena.com^ +||buddyguests.com^ +###googleadleft +satoya-boshu.net##.bnrSide01 +gu-global.com###smbn_app +###right_advertising +##.ad_block +torrentgalaxy.unblockninja.com###stopad +whatleaks.com##aside[class="col-l clr"] > div.banner +vtimes.io##.article__fa-disclaimer +||flocdn.com/*/ads-coordinator/ +lametrofitness.net#%#//scriptlet('prevent-window-open') +||ali213.net/zt/twtk/images/tzxf.png +||8594.5clo0xmbf.com^ +viewporn.tv###col2RightContainer +###agree_cookies +dailymusicroll.com##.epic_ad_elements +m.kenh14.vn##a[href="https://kenh14.vn/download-app.htm"] > img +/img/ad_ +||denariibrocked.com^ +||lassampy.com^$popup +gsmarena.com##div[style="margin-left: -10px; margin-top: 30px; height: 145px;"] +||luyarvx.icu^ +||2473april2024.com^ +rosbalt.ru##.rkngov +##.ad_hf +||propu.sh^ +||haokan5.com/js/haokanjs/playa +streamingcommunity.*#%#//scriptlet('prevent-xhr', '/\.\w+\/$/') +xfantazy.com##div[id^="bannerId_"] +buzzorange.com##.ad_small_m +3movs.com##.nav > li.cams +freevaluator.com###alertify-cover +||imathematica.org^ +||raialyoum.com/images/adenglish.jpg +||tern.xebel.co^ +benchmark.pl###content > div:has(> style + div) +@@||btgigs.info/index.php$generichide +||d2jgp81mjwggyr.cloudfront.net^ +||memorizeneck.com^ +citrus.ua#$#body { overflow: visible !important; } +163.com##.u-index-ad +||kneeansweras.com^ +||adultgamestop.com/files/*.gif +sadeempc.com##center > div[style="text-align:center;"] > img +forum.devicebar.com#?#.row > div.alert-info a[href^="https://device.is/"]:upward(div.alert-info) +||anteater.webitize.com^ +||telegramspun.com^ +||hgpdoa.cn^ +###ads-middle +###layer_cookie +##.banner_300x600 +##.ad-bar-header +||ribsaiji.com^ +weather.goo.ne.jp##.announcearea_info.cx +||cnkang.com/showcodejsonp? +||inpagepush.com^ +||4475.5clo0xmbf.com^ +gamersky.com##.downLoadGame-2 + .dl_url +||gostoamt.com^ +7-eleven.com##section[class^="CCPABanner_ccpa-banner"] +||fgadsqdma.top^ +##.ad-small-2 +techinferno.com,boyfriendtv.com##a[rel="sponsored"] +yovizag.com##.jeg_column:has(> .jeg_wrapper > .jeg_ad) +careersatcouncil.com.au##body > div[style^="width: 100vw; height: 100vh;"][style$="z-index: 99999;"] +bankier.pl##.widgetNewsletter +||staggeredquelldressed.com^ +||dblks.net^$third-party +||static.me-talk.ru^$third-party +||nedamericantpas.info^ +||server2.aomg5bzv7.com^ +nativeplanet.com##span[class^="oiad-txt"] +game3rb.com#%#//scriptlet("abort-current-inline-script", "loadScript", ")]['innerHTML'") +indiatimes.com#?#div[id^="c_articlelist_stories"] > ul > li:has(> div.ad-widget) +||tzfdc.com.cn/userfiles/flash/ +games.latimes.com#%#//scriptlet("set-constant", "Adv_ab", "false") +jingyan.baidu.com##.task-panel-entrance +##.van_taboola +##.pubexchange_module +||d3i28n8laz9lyd.cloudfront.net^ +###speeds_ads +||elefacts.de/js/cookie-consent-*.js +root-nation.com##.widget_easysocialbuttons +2gis.ru##._pzh6x0:has(> div > div[style*="d-assets.2gis.ru/images/daf4560904bc6dc14f90.png"]) +sogi.com.tw##div[class="row my-2 ad-slot-970"] +sms-receive.net#%#//scriptlet('abort-current-inline-script', '$', 'AdBlock') +smallseotools.com#%#//scriptlet('prevent-fetch', '/firebase-messaging.js') +||mj-king.net/img/BannerAdvertisement/ +ultimate-guitar.com##.ug-ad-300 +gainl.ink#@##adclose +||soupevents.com^ +speedtest.cn##.speedtest-recommend +meijutt.tv##.a960_index +520cc.me#%#(function(){var b=window.setTimeout;window.setTimeout=function(a,c){if(!/myaaqqbpfun12\(\)/.test(a.toString()))return b(a,c)};})(); +||thedefiant.io/_next/image?url=*-300x250. +###ads-under-rotator +91porna.com##div[class^="col"] div.filters:has(a.checkNum) +##.advert-leaderboard +imdb.com##div[class^="pro_title_link"] +||credotrigona.com^ +||alicdn.com/img/ibank/*_1591187313. +212.32.226.234###floatcenter +freetutorialonline.com,bestcouponhunter.com,courseforfree.net,analogictips.com,mangadeep.com###text-9 +||bigneptunesept.com^ +||crsope.com^ +||ikengoti.com^ +portalwrc.pl##.gAds-content +musicbusinessworldwide.com##body .mb-advert +leparisien.fr##.newsletter-border +vesti.kz##.button-install +partifabrik.com##.emailbox +@@||cdn.apple-cloudkit.com^$domain=apple.com,stealth=referrer +||eravprvvqqc.xyz^ +gamersky.com##div[id^="adscontainer_b"] +||cdn-server.cc^ +yiyouliao.com##.yyl-ads-swiper +urbandictionary.com##a[href^="https://ads.urbandictionary.com"] +||wm.szdushi.com.cn^ +||xml.flyerblaze.com^ +||siewca.topagrar.pl^ +||androidtvchannels-pa.googleapis.com^ +tommy.com#$#.privacy_policy_offset { padding-top: 0!important; } +||mabolmvcuo.com^ +jambase.com##.jb-homev3-sense-sidebar-wrap +##.not-an-ad-header +laleggepertutti.it##div[class="text-center"][style="min-height:250px"] +||100ksw.com/inc/doc- +reclaimthenet.org#?#.ezoic-ad +||echidna.hellotomorrow.agency^ +||antlion.codivores.com^ +/adsame. +tvp.info##.mini-player-container .vstream__small.move +||misusefreeze.com^ +###adwidget +pocketgamer.com##.item +##.Zi_ad_a_H +apkpure.*#?##iframe_download + .slide-wrap > .bd > .tempWrap > ul[style^="width: 1656px;"] > li[style*="float: left; width: 828px;"]:has(> a[href^="https://yaksgames.com/?utm_source"]) +ilrestodelcarlino.it,quotidiano.net,lanazione.it,ilgiorno.it,iltelegrafolivorno.it#%#//scriptlet('trusted-click-element', '#pubtech-cmp #pt-close') +||ledhatbet.com^ +||lureillegimateillegimate.com^ +searchenginejournal.com#$?##sej-popup-wrapper:has(> div) { display: none!important; } +||lunse.ajscdn.com^ +||best4fuck.com^$popup +evium.de,u-bordeaux.fr,flyingblue.fr,ppk.pzu.pl#$#html { overflow: auto !important; position: static !important; } +||ver.gratis^$~image,domain=fulltv.com.ar|fulltv.tv|fulltv.com.mx +/wp-content/plugins/swiftninjapro-inspect-element-console-blocker/assets/* +||xxxthhd.com/wp-content/uploads/banner +ahhhhfs.com###ri_home_slider_widget-2 +##.article-ad-bottom +||xml-eu.audienceye.com^ +dpqp.jp###dpcustomtextwidget-48 +watchpro.com#$#.module_id_1[data-type="popup"] { display: none!important; } +ebates.ca#@#.google-ads +minorasu.basf.co.jp###questionnaire +fx110.com##.down_Hx +||qescaen.com^ +##.ad_250250 +||4832.79j68qav2.com^ +||0d076be0f4.com^ +@@||ad.doubleclick.net/clk;$urlblock +||lrvalstybe.lt/storage/*/Arvikta_baneris.gif +||chaghets.net^ +rt.com##.telegram_visual +nikopolnews.net##.callback2 +||wendellyu.com/banner/ +||gratificationopenlyseeds.com^ +||f3f202565b.com^ +||pornoheat.com^ +telsat.az#$##myModalhello { display: none!important; } +/vast.js$domain=noodlemagazine.com|mat6tube.com +eurogamer.es,eurogamer.de#@##onetrust-consent-sdk +coolgenerator.com##.right-side > div.searchbox:has(> div[id^="adngin-"]) +newrepublic.com##.ad-container-house +##.ad-manager-placeholder +lattmann.de#$#.widget--cookiebar { display: none !important; } +||soukoope.com^ +vladan.fr##a[href^="https://www.vladan.fr/go"] > img +clinicaleducation.org,animationmagazine.net###cm-popup-overlay +##.adv250 +||powvideo.net/bun/$important +bestcash2020.com#@#.banner-728x90 +plnkr.co##.ag-grid-banner +hepuwang.com##a[href^="http://ad."] +###welcome_ad +||imgur.com^$domain=series4you.com|series-d.com +||gullible-hope.com^ +mangovideo.pw##.fp-ui > div[style^="position: absolute; overflow: hidden;"] > a[href][target="_blank"] > img +forbes.com.au##.bz-viewability-container +||nanouwho.com^$popup +fieldandstream.com,popphoto.com,futurism.com#?#.tadm_ad_unit +##.mod_admodule +1x.com###welcometo1x +pconline.com.cn##.fixLeftQRcode +gesundheitsfrage.net,gutefrage.net,finanzfrage.net#$#.is-short::after { background:none!important; } +episodesex.org###rsslist +ghxi.com#%#//scriptlet('prevent-setTimeout', 'wpcom_ad_wrap') +medizinfuchs.de##.NewsletterInlineContent +||profitablegate.com^ +||jsdelivr.net/gh/sex169hub/ +frdic.com,godic.net##a[onclick*="/ads/"] +||handfulsobcollections.com^ +||sdkl.info^ +||walla.co.il/js/walla.js +bloomberg.com##.native-content-footer +||minutemediaservices.com^$third-party +jdpower.com##.jdpAd-placeholder +||travel.mediaalpha.com/js/serve.js +||i3535.com^$third-party +autoteiledirekt.de#$#body { overflow: auto !important; } +||jwhdgt.icu^ +||dssdfsf.cn^ +europaplus.ru#@#img[width="240px"][height="400px"] +||bapa215.top^ +||qp.durantconvey.com^ +||cdn.opencmp.net^$third-party +||hentai-gamer.com/pics/ +||quebecormedia.com/*/lib/cheezwhiz/*index.js +||optiads.org^$third-party +||amidoxypochard.com^ +||educedsteeped.com^ +||otisephie.com^ +twitch.tv##a[href^="https://ya.cc/"] +||xcypgd.icu^ +camgirlbay.net,camwhores.video,camwhores.tv,cambabe.me##.hola_top_element +hc360.com###newAppBox1 +##.followit--follow-form-container +bloomberglinea.com,bloomberglinea.com.br###piano-newsletter-container +##.adx-wrapper +worldhistory.org##.pubexchange_module +||bnr.sys.lv^ +||ouloansu.com^ +taboolanews.com#@#.trc_rbox .syndicatedItem +||correctchaos.com^ +xxxtube1.com##.reklama-footer +@@||cbsistatic.com/scripts/NativeAdManager.js^$domain=cbsnews.com +||rentalrebuild.com^ +||linkbux.com/track?$popup +###topadcell +kollelbudget.com###text-82 +@@||sdk.privacy-center.org^$script,domain=movilzona.es +golinuxcloud.com##div[id^="golin-"] +##.js-cookie-policy-header +sukebelog.blogterest.net,ettina.blogterest.net##.cp_list +@@||rule34hentai.net^$generichide +94itv.app##a[href="https://leo535.com/"] +prothomalo.com##div[class*="_ads_"] +blic.rs##.brand_right +contentkingapp.com##div[data-testid="action-sidebar-box"] +||mcfstats.com^$document +princesshighway.com.au,uniqlo.com##.subscribe-popup-overlay +hackstore.net,activationkeys.co,bicfic.com,boxcracked.com,androidride.com,chserialkey.com,cracksmod.com,creativefabrica.com,downloadmockup.com,f4freesoftware.com,freeappstorepc.com,fullpcsoftz.com,hentairon.net,latestcracked.com,megawarez.org,procrackerz.org,profullcrack.com,psdfreebies.com,serialkeypro.com,shehrozpc.com,warezcrack.net,workingkeys.org#$#.onp-sl-social-locker { display: none !important; } +house.porn##body > div[style^="position:fixed;right:0;top:0;overflow:hidden;"] +||offendergrapefruitillegally.com^ +||ex8.lostporntube.com^ +fx678.com#@##ad_8 +||alienaterepellent.com^ +blognone.com###above_comments +gamesradar.com,tomsguide.com,tomshardware.com,whathifi.com##.vid-present +cryptlife.com##div[style^="float:none;"] > font[color="#D3D3D3"] > center +||mopiwhoisqui.com^ +courrierinternational.com##.banner-abo +###stop_ad3 +||yrincelewasgiw.info^ +||vaitotoo.net^ +||samvinva.info^ +||olelive.com/v1/pub/index/anchor/check/pc/e? +vxxx.com##.ttapdaaoaotttt +jav68.net#$##wrapfabtest { height: 1px !important; } +||nurewsawaninc.info^$popup +||snagbaudhulas.com^ +##.clsy-c-advsection +###adxMiddle +||ozbkfuhpuolf.com^ +businessinsider.in##.ad-brdr-top +lolalytics.com##div[class^="Rect_rect__"] +@@||filemoon.sx/js/dnsads.js +serialkeypro.com##a[href^="http://maltaian.info"] +irishradiolive.com,myonlineradio.at,myonlineradio.de,myonlineradio.hu,myonlineradio.nl,myonlineradio.sk,myradioendirect.fr,myradioenvivo.ar,myradioenvivo.mx,myradioonline.cl,myradioonline.es,myradioonline.it,myradioonline.pl,myradioonline.ro,ukradiolive.com#$#.cover-slider-cont { display: block !important; } +newegg.com##.sponsored-brands +deeplearning.ai###top-announcement +##.MiddleAdContainer +issuu.com##section[aria-label="Advert"] +tokion.jp##.tkn-cookie-accept__area +||widget.webica.pro^$third-party +nordbayern.de#@#amp-consent +actions.5ka.ru,weareplaystation.fr,shop.fruitbedrijfheijnen.nl,roistat.com,spb-neo.ru,hs-sonpo.co.jp,pomosch.app,petroneonline.com,npc.by,comotto.docomo.ne.jp,kuki.pl,finbo.pl,gutscheine.n-tv.de,talos.com,svitroslyn.ua,abb.com,global.abb,weddingpark.net,honor.com,centr-hirurgii-spb.ru,choiceqr.com,cumhuriyet.com.tr,pracowniapozarzadowa.pl,myfin.by,buildtoconnect.com,lebensmittelverband.de,muztorg.ru,iwate-u.ac.jp,bus.sovavto.ru,trustedrevie.ws,garantibbva.com.tr,omu.ac.jp,rgs.ru,moskvich-auto.ru,shatura.com,thunderobot.su,software.charliemonroe.net,sms-activate.org,sukcespopoznansku.pl,stokrotka.pl,granline.net,cadelta.ru,bonprix.ee,bonprix.lv,app.firstbase.io,bcci.tv,iplt20.com,bathroommountain.co.uk,hyundai-autopole.ru,portalpacjenta.luxmed.pl,onlinesim.io,apteka911.ua,bill.nevalink.net,yasamhastaneleri.com,rvbar.ru,ginverter.com,hmi-basen.dk,zuhalmuzik.com,aeternathegame.com,profile.ru,g-ca.fr,silverstonetek.com,vitkovicetours.pl,m-1gp.com,arisdiamond.com,fs.com,novyny.live,sixt.com.tr,abdullahkigili.com,onlinesim.ru,kawasaki.it,mts.by,mpr-shop.ru,parafgenc.com.tr,megamallbucuresti.ro,mangaplaza.com,filescan.io,obligacjeskarbowe.pl,pc.domains,ask.fm,girlstyle.com,oggusto.com,tatuzinho.com.br,ringoo.ua,paraf.com.tr,pagefly.io,pdfreaderpro.com,35mm.online,edu-sense.com,yamibuy.com,nbb-netzgesellschaft.de,darkflash.com,rostec.ru,megatop.by,almi-dostavka.by,objective-see.org,mytu.co,gingerweb.jp,teenmegaworld.net,amersport.ru,r-stahl.com,pilsnerurquell.com,thatskygame.com,opendata.mkrf.ru,pos.gosuslugi.ru,anybus.com,worldskillspoland.org.pl,unternehmensbericht.boehringer-ingelheim.de,bolshoibelarus.by,h2.live,shop.huawei.ru,xn--80ahmohdapg.xn--80asehdb,don24.ru,ddos-guard.net,telegramic.org,klick.ee,urbanlifehk.com,asko-home.ru,agroportal.ua,hihonor.com,virtualexpodubai.com,meduniwien.ac.at,boosteroid.com,monosnap.com,translate.com,elamed.com,occrp.org,revitonica.ru,edukatico.org,bankbsu.ch,rbi.ru,gazetasp.com.br,sbtnews.com.br,ambassador-manufaktura.ru,findeks.com,sddhelp.ru,antoninilab.it,spiegel.de,lra-aoe.de,unicreditgroup.eu,koreanair.com,euroairport.com,ninateka.pl,humboldt-foundation.de,7mind.de,ufsp-coronavirus.ch,foph-coronavirus.ch,ofsp-coronavirus.ch,bag-coronavirus.ch,fertstertdialog.com,3djake.de,zettains.ru,iport.ru,prowin.net,slewo.com,ages.at,blackshoes.com.br,adlershof.de,heckenpflanzen-heijnen.de,pinarprotein.com,intexty.com,galatawindenerji.com,coubassistant.com,pro-palliativ.ru,drega.de,fischer.group,fischertechnik.de,fischer.de,mclaren.com,key-test.ru,uhren4you.de,cat.com,stammzellen-verstehen.de,saga.hamburg,kroati.de,ilvi.com,wome.com.tr,ytddownloader.com,tw-calc.net,tmasgff.de,kinnarps.de,teyit.org,otuzbeslik.com,mydramalist.com,lostmechanics.com,ecco-verde.com,kktcell.com,vodafone.ua,dsm.com,tdlorien.ru,smart-gadget.ru,elawin.com,dalmatinskiportal.hr,samocat.net,bayragidevral.com,the-village.ru,roxroyal.com,model-kartei.de,sinpas.com.tr,takeda.com,sepas.com.tr,gamertech.hu,bevachip.hu,gamecitycorner.hu,gamecity.hu,nudo.com.tr,erisun.com.tr,erislergida.com.tr,miluni.com.tr,gelbe-liste.de,magdeburger.com.tr,zrzutka.pl,kioskla.co,pyur.com,why-tech.it,ilike.pet,hhv.de,maxcamping.de,mariin.ru,hiya.com,wall-art.de,wifire.tv,hyundai.ru,bb.lv,scotchwhisky.com,reisebank.de,rtl.de,computacenter.com,reyden-x.com,persil.de,modhoster.de,bug.hr,kigili.com,buddhism.ru,natwest.com,crowdfinder.be,snob.ru,stib-mivb.be,englishhome.com,commuterclub.co.uk,colliers.com,novmak.com,gugik.gov.pl,eibach.de,oreopeople.com,eishockeynews.de,nature.com,1mobil.hu,tvpaprika.ro,tvpaprika.cz,tvpaprika.hu,minimaxtv.rs,minimaxcz.tv,minimaxro.tv,minimaxtv.si,minimax.hu,docmorris.de,leroymerlin.pl,malavida.com,prodir.com,joautok.hu,redditinc.com,oogfonds.nl,soft32.com,buffalo.de,donaukurier.de,le1hebdo.fr,turbo-c.soft32.com,juridischloket.nl,statusbrew.com,zumnorde.de,rbs.co.uk,okayfreedom.com,statarea.com,werkenbijbdo.nl##body .cookie +thepostmillennial.com##div[aria-labelledby="modalLabel"][aria-modal="true"] +baidu.com###ad_xbox_1 +||defas.site^$popup +anihatsu.com##.rss-blogroll-header +||variedsubduedplaice.com^ +baidu.com##.container:has( > .bottom-section > .item_voice_room[data-yysid]) +##.ad_partner +||oruxdwhatijun.info^ +||livescore.az/images/banners +||videosection.com/adv-agent.php +oploverz.*###overplay +bq.ru##.footer-cookies-alert +###sponsor_header +||cherrytv.media^$third-party +||gaoqing.la/wp-content/uploads/*/kaiboer.gif +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=line.me +||hotdivines.com^$popup +||xaxoro.com^ +npr.org#$#.tp-modal:has(> div.tp-iframe-wrapper) { display: none !important; } +||detectivesbaseballovertake.com^ +tech.bloggertheme.xyz#$##pop-button { display: block !important; } +mobilanyheter.net##a[href="https://www.iphonecasinon.com/"] +refurbed.ie#$#body.overflow-hidden { overflow: auto !important; } +||iovia-pmj.com^ +##.leftrighttopad +olx.com.pk##.react-swipeable-view-container:has([href*="http://onelink.to"]) +fomo.id#?#div.block > div > div > div.relative > div.cursor-pointer:has(> div.border > div > div.items-start p.text-primary-gray:contains(Sponsored)) +@@||bf.sbdm.cc^$stealth +webflow.com##main > div[style^="position:fixed;left:"][style*="z-index:"] +||trkrdel.com^ +napkin.one##.privacy-pop-up-wrapper +||cbdm.weathercn.com^ +kisalt.xyz#%#//scriptlet("set-constant", "count", "0") +||yourfreshposts.com^$popup +||zihditozlogf.com^ +||thesimsresource.com/js/ad-loader.js +ithome.com###hd_float1 +24rodopi.com,rodopi24.blogspot.com###HTML14 +/common/ads? +||xml.rtbnext.com^ +###taboola-mobile-article-thumbnails +sketchup.cgtips.org,3dzip.org,jpopsingles.eu,superpsx.com#%#//scriptlet('trusted-suppress-native-method', 'DOMTokenList.prototype.add', '"-style-"') +/^https:\/\/[a-z]{2,5}\.[a-z]{10,14}\.com\/[a-zA-Z0-9]{10,16}\/[a-zA-Z]{5,6}$/$script,third-party,match-case,domain=lookmovie.foundation +||xml-v4.barcelona-backlinks.es^ +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=syok.my +@@||cdn.privacy-mgmt.com^$domain=si.com +||jupabwmocgqxeo.com^ +washingtonpost.com#$##qa-modal-body { display: none !important; } +||demolishforbidhonorable.com^ +itheima.com##.nav1 +##.page-advert +nextchessmove.com##.h-\[112px\].flex.justify-center +avbebe.com###wrapper > div[align="center"] +##[data-role="tile-ads-module"] +||clbjmp.com^$popup +##.footer-ad +###video-in-player-ad +##.bottomAdBlock +s0urce.io###window-msg2 +||appraisalaffable.com^ +###AdMiddle +nesninja.com#?#.game_sm:has(> .game_inner > .game_box > .game_iframe_block > script) +vinstartheme.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +forums.watchuseek.com##.store-promo +||moistcargo.com^ +/527ldy.oss- +||unforgivableado.com^ +||adultasianporn.com/puty3s/ +||beakobjectcaliber.com^ +||securenetguardian.top^ +macperformanceguide.com##.placementTL +##.adTile +eol.cn###big-ad-img +114la.com,ylmf.com###imgArr +@@||messenger.com/groupcall/$stealth=webrtc +whentai.com###modalegames +revolve.com#$##ntf_dialog_all { display: none !important; } +##.ads-callback +||dianassb.com^ +teroradio.com###leaderboard +catcut.net#%#AG_onLoad(function(){if(typeof go_url=="string"&&/https?:\/\/catcut\.net\/[\S]*?\.php\?&a=/.test(go_url)){var a=(new URL(go_url)).searchParams.get("a");try{window.location=atob(a)}catch(b){}}}); +###leftforumad +watch.plex.tv##.shaka-ad-markers +###colAd +badassdownloader.com#%#//scriptlet('set-constant', 'bscheck.adblocker', 'noopFunc') +play.anghami.com##anghami-ads +m.standaard.be##.dialog-backdrop +darkleia.com##iframe[src^="//poweredby.jads.co/"] +||gribseep.net^ +gsminfo.com.ua,on.od.ua#$#.footer_wrapper { padding-bottom: 0px !important; } +/game/aplus/pptv/* +karaoke-lyrics.net##.ad_large_square +||cam-lolita.net^$third-party +dattr.com##div#a[style^="float: right;"] +pastedownload.com##.ad +/triadshow.asp$script,subdocument +infourok.ru##.tg-chatbot-popup +telerama.fr##.overlay-popin +gekkan-fukugyou.jp##.FixedWidget__fixed_widget +techtalk.gfi.com##.ulp-window-container +@@/home/ads/*$domain=esunbank.com.tw +||lnk8j7.com^$popup +pornhub.com,pornhub.org,pornhub.net#@#[style] > div > iframe[width]:first-child +xbgame.net#@#.google-ads +horoskop.wp.pl##.reklama +||bt.whopstriglot.com^ +##.leaderboard-ad-placeholder +||haochi123.com/J_Box/Inc_ +@@||seselah.com^$generichide +||astscolipedeor.com^ +||click.freepopnews.skin^ +22pixx.xyz#%#//scriptlet('remove-attr', 'href', '#continuetoimage > a:not([href*="22pixx.xyz"])') +australianfrequentflyer.com.au##div[class="cp-slidein-body cp-optin "] +||sina.cn^*/impress? +##.ad-slot-300-250 +@@||vidcache.net:*/*/*.mp4$stealth +thewire.in##div[id^="ATD_"] +||servedby.livingmagonline.com^ +||kq272lw4c.com^ +||withenvisagehurt.com^ +||uugtv.com/x/app/videoSpread? +cyberlink.com###gdpr_note +dzwww.com##div[style="margin:0;padding:0;width:620px;height:345px;overflow:hidden;background-color:#fff;"] +@@||js.wpadmngr.com/static/adManager.js$domain=luscious.net +9gag.com###jsid-ad-container-page_adhesion +emovies.si,teamoney.site,nossoprato.online,lookmovie2.to,hdtodayz.to#$?#html > iframe[style*="position:"] { remove: true; } +||shadeapologies.com^ +-ads/assets/$script,domain=~web-ads.org +pornhd.com###stickyZone +##.tower-ads-container +tornosnews.gr###content > div[style*="margin:"] +oventrop.com#%#//scriptlet("abort-current-inline-script", "$", "ConsentModalControl_divModal") +||phoenixliteos.com/gallery_gen/0b56e3d97ab2d305e30f9175a74078d2.png +||ayyjenjqlrbya.top^ +##.paddingBotAd +kontomierz.pl#%#//scriptlet('set-cookie', 'statics', 'false') +islambook.com###page-loader + div.panel-danger +/template/zsy_badian/dddytt-gg/* +gadgets360.com##._ad +||pagejunky.com^ +rmnt.ru##a[href="https://zen.yandex.ru/rmnt"] +||wr.rugosehoarish.com^ +||hbid.ams3.cdn.digitaloceanspaces.com^ +anquan.org##.gj_download +13tv.co.il#%#//scriptlet('prevent-fetch', 'www3.doubleclick.net') +dyhjw.com##.AppEntranceBox +hd.crichd-player.top,cdn.crichdplays.ru###floated +3dsiso.com#@##ad_global_above_footer +##.chat-top-ad +||d18t35yyry2k49.cloudfront.net^ +smt.docomo.ne.jp###Topics_Cts > li.nws_vList_item:not(.grid_item) > .nws_base_largeimg_list +goonlinetools.com##.grid + div.ml-4 + a[href][target="_blank"] +||cashmylinks.com^ +##.ads__listing +luckydice.net,coinsearns.com#%#//scriptlet("abort-on-property-read", "disableButtonTimer") +||nservantasrela.info^ +##.umuCookieMain +@@||climatempo.com.br/climatempo/climatempo/js/vendor/detectadblock/ +cloudways.com###cookies-bot +||d31s5xi4eq6l6p.cloudfront.net^ +facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion#?##ssrb_top_nav_end + div[class] > div[class] > div[class] > div[class] > div[class] > div[class] > div[class] > div[class] > div[class]:has(> div[class] > div[class] > div[class] > div[class] > div[class] > div[class] > div > div[class] > div[aria-label="People you may know"]) +||steeheghe.com^ +||lootexhausted.com^ +||sdhfbvd.com^ +||darvorn.com^ +@@||8maple.ru/comic.jpg$domain=video.bilibili.to +ringoo.ua###bwc-wrap +trashbox.ru###div_rec_topic_after +yclients.com##.gdpr-policy +sejuku.net###break_banner +@@||bapi.adsafeprotected.com/dbapi?ias_callback=__IntegralAS_$domain=entrepreneur.com +||iseekgirls.com/*/rotate.php +reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##.mod-survey-intro +||fuckedbyme.com^$third-party +mohammedkhc.com#@#ins.adsbygoogle[data-ad-client] +8264.com##.advSection__wrapper +climate-data.org###stay-banner +beermoneyforum.com##.notices--block +||tb58.net/plugin.php?id=tb58_ +||chatterboxtardy.com^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=shares.enetres.net +navitime.co.jp###footer-app-dl-frame +qqyy.com##.ind_ad +/plugins/prebidjs/*$script +~laifeng.youku.com,youku.com##a[href^="http://cps.laifeng.com/"] + .bg + img +##.player-ads +||douhooke.net^ +###content-cookies +||bronzeinside.com^ +mail.bg##.branding_content_link +||xbokepfb.co/andreaz.js +limetor.com##a[href^="https://affiliate.rusvpn.com/"] +guidaservizi.fascicolo-sanitario.it###cookie_guidaservizi +yourtv.com.au##body span.channel-icon__ad-buffer +sklep-internet.pl#%#//scriptlet('trusted-set-cookie', 'cookies_message_bar_hidden', 'true') +areanapoli.it###ob-related +express.co.uk##amp-img[alt="Royal newsletter"] +rajsayt.xyz#$#div[id^="wpsafe-wait"] { display: none !important; } +alpinecorporate.com#%#//scriptlet('adjust-setInterval', 'counter', '*', '0.001') +oneesports.gg#$##onePassportOverlay { display: none !important; } +##.spons-link +item.rakuten.co.jp##.exT_sdtext > label[for="modal"] +go4schools.com###i_a +jokersplayer.xyz##.snackbar.bottom +gaymovievids.com,me-gay.com,ts-tube.net,verygayboys.com##.random-td +||cryorganichash.com^$popup +##.footer-advertising +##.right_outside_ads +||singaporemotherhood.com/overlay/script.js +||celebjihad.com/celeb-jihad/pu_ +||litvp.com^ +@@/play.php?$stealth,domain=netlivetv.xyz +||purp.sukaporn.com^ +channel5.com##div[aria-label="Company Logo"] +mypatriotsupply.com#@#[href^="https://mypatriotsupply.com/"] > img +gizchina.gr##div[style="clear:both; margin-top:0em; margin-bottom:1em;"] > a +||ventrequmus.com^ +duolingo.com#?##root > div > div > span > div > div > div:has(> div > span > span > a[href="/privacy"]) +qiwi.com##div[class^="cookies-self"] +##.gallery-ad-holder +||bonzai.ad^ +||mcm.justbaat.org/widgets/$domain=gamingdeputy.com +##div[id*="ScriptRootN"] +2345.com###right > div:first-child +||d200108c6x0w2v.cloudfront.net^ +yamal-media.ru,galaxystore.samsung.com,start.ru,betway.com,amie.so,m.soundcloud.com##div[class^="CookieBanner_"] +creditcardgenerator.com#@##adWrap +tirendo.de##.quick-newsletter-container +hackster.io###hello-world +onlineradiobox.com##.banner--header +pawastreams.*,123movies.*###fcnbox +##.lates-adlabel +trend.az##.adv-wrapper-horizontal +litcharts.com#$#body.modal-open { overflow: auto !important; } +search.goo.ne.jp##.ocnBoard +||51la.net^$third-party +||adnxs.com^ +##.c-ad +||provenshoutmidst.com^$popup +saostar.vn#?#.cache-path > div[class]:has(> div.flexbox > div > div[id^="dablewidget_"]) +staticice.com.au##a[href^="http://prf.hn/click/"] +||ui.aomg5bzv7.com^ +||numbertrck.com^ +||jzeapwlruols.com^ +ubackup.com##.promo-big +||queersodadults.com^ +berlinerfestspiele.de#%#//scriptlet('set-constant', 'cookieConsentConfig', 'emptyObj') +##.adblock-popup +||cp-jobmacha-servicemacha-widgets.*.aliyuncs.com/chinapress-jobads-prod.js +##.ad-companion +livestreamz.net##.lives-before-content +phoenixnewtimes.com##div[data-component-id="AirLeaderboardMediumRectanglesComboInlineContent"] +junat.net###junatnet-campaign-ad +||pharmcash.com^ +hero-news.com##.first-article div[style^="height:250px; width:700px;"] +@@||muzlan.top/ads/banner.png +@@||streamiptvonline.com/streams^$popup +||rtb-uswest.keenkale.com^ +gearnews.com##.fnetbr-pbb-container +anarchy-stream.com,freckledine.net,viwlivehdplay.ru,playertv.net,tirexo.ink,dlhd.*,mega4upload.com,liveon.sx,seehdgames.xyz,dl-protect.link,extreme-down.moe,up-4ever.net,futemax.app,footybite.to,unbiasedsenseevent.com,seegames.xyz,anroll.net,vipleague.*,1l1l.to,livesport24.net,legendei.net,coolcast2.com,techclips.net,markkystreams.com,sportcast.life,sports-stream.*,cricplay2.xyz,olacast.live,tennisstreams.me,daddylivehd.*,sportsonline.*,footyhunter3.xyz,720pstream.me,socceronline.me,daddylive.*,oxtorrent.fi,f1livegp.me,mrpcgamer.co,atomixhq.*,vipboxtv.*,1337x.*,filmi123.club,vipbox.*,wigistream.to,watchseries.*,1stream.top,allinonedownloadzz.site,game3rb.com,lordchannel.com,uwatchfree.*,yts.*,1337x.unblockit.*,strikeout.*,eztv.re,liveonscore.tv#%#//scriptlet('abort-current-inline-script', 'atob', 'aclib.runPop') +leopoldina.org###js-cookie-hint +electron1ca.ru##.open__callme +hentaipig.com#%#//scriptlet('remove-node-text', 'script', 'detectAdBlock') +||bankingkind.com^ +||ayads.co^ +urlvoid.com##small:nth-child(2) +##img[title^="advertisement"] +zhihu.com,vprok.ru,raysigorta.com.tr,m.sportmaster.ru,i2symbol.com#$#body { overflow: visible!important; } +china.ahk.de##.b-header__banner +||mobile.sina.cn/public/files/image/620x300_ +@@||horriblesubs.info/static/hs.js +gibson.com#%#//scriptlet('trusted-click-element', '#cookieModal.show button#essentialCookies') +texty.org.ua###the-only-donate-banner +hentaiworld.tv###imagead +###ctl00_topAd +||online.a1.by/js/button.js +||laserdrivepreview.com^ +||ishort.in/js/full-page-script.js +transfermarkt.co.uk##.werbung-skyscraper +||a.18ramp.com^ +||mightylottrembling.com^ +||tigainareputaon.info^ +dnes.cz##[id^="r-"] +###leftFloat[style="z-index: 999; position: fixed; left: 0px; bottom: 0px;"] +rentanadviser.com#?##ctl00_ContentPlaceHolder1_lblvideos > .videocontainer:has(> .reklamcontainer) +||aycrxa.com^ +@@||rule34hentai.net/fluidplayer.min.js$domain=rule34hentai.net +##.advert-detail +sina.com.cn##p + .article-video +alsen.pl,portalpasazera.pl,careers.equinix.com,finnair.com,ispot.pl,dyzurnet.pl,georg.at,batteryempire.cz,eliis.eu,sercedziecka.org.pl,ekoplaza.nl,krungsri.com,wark24.de,app.lepermislibre.fr,osehero.pl,puratos.co.jp#$#body.modal-open { overflow: auto !important; } +||s20dh7e9dh.com^ +||buleor.com^$third-party +congtruongit.com##a[href^="https://www.fshare.vn/partnerlink"] +||anyporn.com/if2/ +tannheimertal.com#@#.cc-banner +1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.thread_recommend +ui.memoryhackers.org##.show.fade.alert-dismissible.dont-block-this-info-message.alert +||xcafe.com/*.jsf?m= +||subsistpartyagenda.com^ +kwik.si#@#.adSense +##.cookies-open +danlan.org##.ad98090 +i-voce.jp##.undefined[class^="listItem_"] +eurogamer.*##.desktop_mpu +||cdn.livetv*.me/tmp/515x45- +blog.hatena.ne.jp##.upgrade-pro +dic.pixiv.net##.ranobe_body_ad +||666bbb888www.com^ +spiele-umsonst.de##.sumslogocon +ripple-stream.com###block-12 +litmind.*###bottom_notice +navitime.co.jp##.kyujin-control-banner-container +haaretz.co.il#$?##__next > div > div:has(> span > div > a[href^="https://promotions.haaretz.co.il"]) { remove: true; } +sousede.cz#%#//scriptlet('trusted-set-cookie-reload', 'cookieConsent', 'eyJhbmFseXRpY3MiOmZhbHNlLCJwZXJmb3JtYW5jZSI6ZmFsc2V9') +xakep.ru##.snp-pop-127840-wrap +fctables.com#$#body { overflow: visible!important; } +||666ppp888ppp.com^ +a2zupload.com,unlockapk.com#%#AG_onLoad(function() { var el = document.querySelector('.adsbygoogle'); if(el) el.setAttribute("data-adsbygoogle-status", "done"); }); +avclub.com,jezebel.com,pastemagazine.com,splinter.com##.htlad-sidebar_rectangle +||slipperysack.com^ +||tr.keetsgray.com^ +##.adscontainer +aa25.cn,kafan.cn###content_top +elektrotanya.com##div[id^="ad"] +pixta.jp##.__b-popup1__.b-modal +||egalitysarking.com^ +||picsofdream.space^ +d1xz.net##.base_ad_640_90 +||antelope.gabriellaroche.dev^ +||rtb-useast.readywind.media^ +@@||api.imgur.com^$stealth +||d34zwq0l4x27a6.cloudfront.net^ +||develenv.com^$third-party +||letstryanal.com/track/$popup,third-party +animefire.net###sub_modal +beautydepot.ru,print24.com##.cookie__wrap +||pushbird.com^$third-party +faponic.com##a[href^="https://nudify.online"] +deezer.com#%#//scriptlet('trusted-click-element', '.chakra-portal .chakra-modal__content-container > section.chakra-modal__content > .chakra-modal__header:has(> .chakra-stack > a[href^="https://www.deezer.com/payment/go.php?origin=paywall_pressure"]) + button.chakra-modal__close-btn') +foxnews.com#%#//scriptlet('set-constant', 'Taplytics.featureFlagEnabled', 'trueFunc') +gotporn.com##.image-group-vertical +||itongcheng.cc/amm/ +dlupload.com##center > img[data-target="#signup-modal"] +||8594.833enmhob.com^ +girlstyle.com,thecatcity.com,urbanlifehk.com##.desktop-sidebar__block--ad +folhabv.com.br##iframe[src^="https://egoi.page/"] +sigma4pc.com#%#//scriptlet("abort-current-inline-script", "document.addEventListener", "abisuq") +bizjournals.com#$##headlessui-dialog-27 { display: none !important; } +newscon.net###adblock-warning +||mscoldness.com^$popup +||cholatetapalos.com^ +tproger.ru##.tp-tag-subscription-banner +fandom.com#?##WikiaBar:has(> #WikiaBarWrapper > .wikia-bar-anon > .message[data-wikiabarcontent]) +negisoku.com###main > div.column-inner > div.column-inner-2 > div[style^="overflow: auto;"] +designhill.com#$#.fancybox-lock { overflow:visible!important; } +trojka.polskieradio.pl##div[class^="Rodo_container"] +komyounity.com##.entry-content > p.has-text-align-center.has-vivid-purple-background-color + div figure > a +###ad-top-250 +airly.eu##.app__map-container > .map-container > .map-container__banner +codeceo.com,fuli8.net##.widget_text:first-child +samsoe.com#$#body { overflow: visible!important; } +bkjia.com,zol.com.cn##.hot_tj +||bfpgf.com/wp-content/uploads/2015/08/360dxs.jpg +jeshoots.com#%#//scriptlet("set-constant", "google_jobrunner", "noopFunc") +##.storyad +@@||cdn.consentmanager.mgr.consensu.org/delivery/recall/recall_build.svg +###right-featured-ad +||homes.aomg5bzv7.com^ +||3376.5clo0xmbf.com^ +||dyzyhj.com/Jk/ +||geozo.com^$third-party +leba24.info##.advertizing-slots +cutlinks.pro#$#.box-main > .row > .col-md-12 > #countdown { display: none!important; } +||samsungadhub.com^$third-party +@@||bookscool.com/*/advertisement.js +rpgsite.net##.long-block +web.skype.com#?#body > div.notifications > div.notification:contains(cookies) +stacksocial.com#$#html > body:not(#style_important) { overflow: visible !important; } +turizm.ru#$?#html:has(> body) { overflow: visible!important; } +||antiaecroon.com^ +fahrradmanufaktur.de#%#//scriptlet('set-cookie', 'newsletterBox', '1') +flightstats.com##.fs-header-ad-container +||ushzfap.com^ +###ad-0 +artnet.com##.cookies-banner +||kingfisher.gedaly.com^ +||freesexcam365.com/in/ +pexels.com##.inline-ads +##.background-adv +||globalso.site/form.js +||ulathana.com^ +##.ad_336x280 +||jaumevie.com^ +||abruptroad.com^ +yenicag.az##.adv-post-inner +###bottomAdSection +mediance.com#@#.adcenter +||deceptionhastyejection.com^ +||xoilactv123.gdn^ +jagranjosh.com##.Ads +greenlemon.me#@##ads_content +hao123.sh##.box-banner +||drctcldfe.com^ +mondo.me##.js-gpt-ad +||1.lvshi567.com^ +vipcams.literotica.com###ModelList__container > div[style^="height:"]:has(> div.ModelCard--package-banner-model) +teleperformance.com#$#.row.OpacityTotal { opacity: unset!important; } +chita.ru##.chitaru__newsletter-subscription +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_$domain=digitaltrends.com +tennisworldusa.org##div[style^=" margin:10px auto 10px; max-width: 970px;"] +||usyliet.top^ +##.js-ads +||apyoth.com^$third-party +thinbug.com###inktokad +||520z-2.com/uploadfile/sucai/ +getstoryshots.com###post_ad_container +.nu/ads/ +footballclub.cz##.n-ads-leaderboard +@@||app.clickfunnels.com/assets/lander.js$script,domain=propanefitness.com +w.atwiki.jp###tanuki-list +##.player_ad2 +||meckaughiy.com^ +@@||bucket.fitwhey.com/Banners^$domain=fitwhey.com +||zxpqwwt.com^ +||e6wwd.top^ +finextra.com##.module--sponsor +youdao.com#@#.open-share +coreldrawdesign.com###impressionStatus +||xvhgtyvpaav.xyz^ +||ih3hswhi.sdbrrrr.lat^ +story.hr##.c-sidebar-image > a[href^="https://appurl.io/"] +srware.net##a[target="_blank"][onclick*="Forum_Adv"] +@@||googletagservices.com/tag/js/gpt.js$domain=atozmath.com +||lmj8i.pro^ +||c002d5e58d.41f8869f7c.com^ +safelink.asia#$##seosecretidnadblock { display: none !important; } +qzone.qq.com##.gb-bill-area +amcplus.com#$#.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text_ads_2.text-ads.text-ad-links { display: block !important; } +indianexpress.com##.premium-story +spidersweb.pl##.ad-left + div[style="height: 250px;"] +mxdm.xyz#%#//scriptlet('abort-current-inline-script', 'Function', 'new Function(document[') +||femsurgo.com^ +##.articleAdvert +minsknews.by##.telegram-promo +||montent.powzers.lol^ +||weiyuedu.cc/skin/v3/js/dibu.js +order.linemo.jp###not-supported-browser-modal +||trafyield.com^ +||douwotoal.com^ +/common/cf/*$image,object,domain=~ztgame.com +##.adHeadline +@@/chunklist/*.m3u8$xmlhttprequest,stealth=referrer,domain=decmelfot.xyz|usgate.xyz|hdfungamezz.xyz|chrisellisonllc.xyz|arcasiangrocer.store +niuacc.com##.botLm-container +asanradio.az##.col-md-12 > .panel.panel-info > a[href][target="_blank"] > img +ship24.com,sbt.com.br##app-accept-cookie +@@||rmdown.com/ads.js +audiophileon.com#?##content > .extra-wrapper > .sqs-layout:has(.sqs-block-button-container--center > a[href^="https://www.amazon.com/"][target="_blank"]) +tripadvisor.com##footer ~ div[class^="Su"][style="bottom: 284px;"] +@@||hqq.tv/*player/*.php$popup +##.adsense160x600 +adler-farbenmeister.com#?#.emotion--container > div.emotion--element:has(> div.look_adlerEKWaction > img[src*="newsletter"]) +||toltooth.net^$popup +tcbscans.com##.mx-auto center > a > img +||17a024caf0.f44dae97aa.com^ +||adobe.com/td_redirect.html$popup +||leadgenic.ru^$third-party +empireonline.com##.article_adContainer--filled__vtAYe +dailycoffeenews.com##.banner-box +pconline.com.cn###JdlFixed +||1.ajiyuming.com^ +||tfmgqdj.com^ +@@||sdk.privacy-center.org/*/loader.js$domain=video-streaming.orange.fr +||acqaghx.icu^ +||dustyhammer.com^ +yandex.*##._view_advertisement +praca.gov.pl,ifsamerkezi.com##.cdk-overlay-container +||fux.com/mojon.js +##.f-data-policy +hotokami.jp##.mail_magazine_form--container +schwalbetires.com#$#body { overflow: auto !important; } +||tr-bouncer.com^$popup +stileproject.com,shemaleporn.xxx,waxtube.com##.aff-item-list +player.javbraze.com,stream4free.live###closeButton +||sasadown.cn/source/plugin/drk_ledadv/ +appsumo.com#$#.ad.ads.Ad.Ads.googleAd.googleAds { display: block !important; } +continental-aftermarket.com#$#.modal-backdrop { display: none!important; } +||vividmeadow.com^ +baidu.com##.rel-exp-feed-ad-item +##.ad-wrapper-outer +piraproxy.info,unblockedstreaming.net###lbxUR99472 +www.seznam.cz#%#//scriptlet("set-constant", "sssp", "emptyObj") +linuxhandbook.com#?#.row > .footer__el:has(> form[data-members-form="subscribe"]) +dizimini.com#%#//scriptlet("adjust-setInterval", "countdown", "", "0.02") +||hollaforums.com/if/rc +zoyaporn.com##.on_player_ads +rlptoday.de,news.de,mainpost.de,aufderbuehne.de,trainingsworld.com,zaubertopf.de,totallygamergirl.com,maclife.de,kuechengoetter.de,survivethis.news,prad.de,infranken.de,nachrichten.at,moviejones.de,np-coburg.de,frankenpost.de,insuedthueringen.de,augsburger-allgemeine.de,4fansites.de,general-anzeiger-bonn.de,kurier.de,knuddels.de,fumsmagazin.de,reisefrage.net,motorradfrage.net,autofrage.net,sportlerfrage.net,gesundheitsfrage.net,finanzfrage.net,wer-weiss-was.de,spielfilm.de,jappy.com,serienjunkies.de,woxikon.de,wize.life,computerfrage.net,gutefrage.net,teckbote.de,ligainsider.de,woxikon.de,rp-online.de,frag-mutti.de,ksta.de,sol.de,noz.de,mopo.de,express.de,berliner-kurier.de,berliner-zeitung.de#@#.full_AD +iqiyi.com##div[class^="video-slide_threeImagePages"] > a[href^="http"]:not([href*="iqiyi.com"]) > div +@@||showcase.codethislab.com/banners/$image,~third-party +||increasingdeceased.com^ +reverso.net##.bottom-rca +||ittontrinevengre.info^$popup +||zgeitmvt.com^ +yunalady.com#$?#html { overflow: auto !important; } +||jsdelivr.net/gh/cloud-files-cdn/jsfiles/lieqi. +creaders.net##.border_b > tbody > tr > td[height^="2"] +||tracking.injoyalot.com^$document +cgtips.org#$?#.better-ads-listitemad { remove: true; } +://i.imgur.com/$domain=coinurl.net +@@||google.ps/translate_$media,third-party,xmlhttprequest +||miycoc.xyz^ +lopinion.fr##.PromoSidebarImageButton +m.nivod2.com,m.nivod2.tv,m.nivod4.com,m.nivod4.tv,m.nivod5.com,m.nivod5.tv,m.nivod7.com,m.nivod7.tv,m.nivod8.com,m.nivod8.tv,m.nivod9.com,m.nivod9.tv##.bottom-bar +##.main-footer-ad +||effeminatecementsold.com^ +vava.cars##vc-cookies-notification +||www.amusingporn.com^ +##.mb_informativa_cookies +##.adsrecnode +||jiqiv.com^ +tsunagujapan.com##.sns_links_newsletter +||cartooncrazy.net/mg*.html? +edmtunes.com,fixyourandroid.com,thewincentral.com##.td-g-rec +###content_ad_block +@@||bikerumor.com/detroitchicago/dayton.js +brillen-sehhilfen.de###datenschutzhinweis +digitalplayground.com##.floating-container-banner +##.header__advertisement +short-wave.info#@#img[width="468"][height="60"] +||83a23035d8.5065a954ce.com^ +114la.com###dlAD2 +smart-tutorials.info,how-to-pc.info,easy-learn-tech.info,one-click-tutorials.info,solvetube.site,getintopc.com#%#//scriptlet('set-constant', 'pqdxwidthqt', 'false') +||i.imgur.com/cSePTP2.jpg +||iociley.com^ +@@||redefineadpl.hit.gemius.pl/*redataredir?url=*.hit.stat24.com*ad.xml$domain=polsatnews.pl|polsatsport.pl|twojapogoda.pl +konzolstudio.hu#$#body { overflow: visible !important; } +||rpazaa.xyz^ +drohnen.de#@##cookie-law-info-bar +##.mobileadbig +||adsc.wasu.tv^ +postnauka.ru##donate-bar +agario-play.com#?##helloContainer > div.side-container > div.agario-panel:has(> div.text-center > div[id^="div-gpt-ad"]) +/moneymaker/js/player/zanting.js +||dscex7u1h4a9a.cloudfront.net^ +turizm.ru#$?#body:has(> div) { overflow: visible!important; } +||content.jwplatform.com^$domain=lifewire.com|techradar.com|digitalcameraworld.com|loudersound.com|musicradar.com|gardeningetc.com|livingetc.com|tomshardware.com|www-techradar-com.cdn.ampproject.org +ltn.com.tw##.list > li[id^="apxzone_"] +@@||cdn.privacy-mgmt.com^$domain=capital.fr +||eajpryc.com^ +glasistre.hr#?#.row:has(> div[class^="col-"] > style + div > div > div.ponuda) +newacropol.ru##link[href="/styles_form.css"] ~ div[style*="width: 100%; text-align:center; border-top:"] +golem.de##a[href^="https://hits.golem.de"] +babesource.com##.gallery-content > .sidebar +car-mo.jp##.ad-carview +foodrenegade.com##.top-cta +||kontera.com/javascript/$third-party +makeup.ru##.header-subscribe +plantes-et-sante.fr##.jq_inscription_newsletter +@@||cloudfront.net/imengine/image.php$stealth,domain=blt.se +||askdlajfbv.top^ +/ads/index/*$~xmlhttprequest,domain=~kuchechina.com +fenet.jp##.bl_sideBanners +||lotour.net/bcef/388.js +###ad-code +||hpacdn.pornpics.de^ +||p1.qxzsw.com^ +info.flightmapper.net##.fancy-frame-as +blogmura.com##.subscription-flow +ibc.org##.spinAdvert +.info/ad/ +javxxx.me#@#.ad-placement +||adsmart.hk^$third-party +invisible.co##div[aria-label="Cookie banner"] +###sponsorship-box +gartengeraete-onlineshop.de,koempf24.de#$#.ui-cookie-consent { display: none !important; } +tvtv.ca,tvtv.us###app > div.MuiBox-root + div.MuiPaper-root.MuiPaper-elevation +@@||oasjs.kataweb.it/cookielex/$domain=huffingtonpost.it +zzztube.com,videoporn.tube,pornogram.tv,icegay.tv,24porn.com,gayporno.fm,gaymaletube.name,gayporn.fm,gaysuperman.com##.b-uvb-spot +productz.com#%#//scriptlet('set-cookie-reload', 'rodo_accepted', '0') +||emxdgt.com^ +vezess.hu##.banner-container +pleinevie.fr,science-et-vie.com###detection-block +||kendrickcoleman.com/images/banners/ +||ecikmrm.icu^ +||foreseegigglepartially.com^ +||lantodomirus.com^ +##.ad_sponsoredsection +||adpnut.com^$third-party +###adv-masthead +||hurlaxiscame.com^ +mobilarena.hu###right > div[class$="-responsive-300px-60px"] +||kousjcignye.com^ +||diit.cz/sites/default/files/_diit_branding/branding.jpg +stuff.co.nz,thepost.co.nz,thepress.co.nz,waikatotimes.co.nz##.header-ads-block +fialkaspb.ru##.bottom__cookie_block +uptoearn.xyz#%#//scriptlet('adjust-setInterval', 'generateDownloadLink', '*', '0.001') +metro.co.uk###we-need-monies +euroweeklynews.com##[data-revive-zoneid] +||alfa-track.info^ +/pubads. +||idlebrain.com/images5/main- +||rutebuxe.xyz^ +||news.cn^*_tlad.js +###adsLeft +||pb.s3wfg.com^ +vitra.com##a[class^="footerCookieSettings_"] +news-gazette.com#?##asset-below > .asset-recommend:has(> .yap-ad-) +##a[href^="https://datewhisper.life/"] +dailymail.co.uk#$#.footballco-close-button { display: none !important; } +fanyi.sogou.com##.img-banner +edealinfo.com#%#//scriptlet("abort-current-inline-script", "$", "fakeAd") +||lgepbups.xyz^ +||amsfi.com^ +@@||chinapost-track.com/ads.txt +griffbereit24.de#$#.modal-open { overflow: auto !important; } +||st03.kakprosto.ru//static/d6765ed590518c78b294c54a720474d2-2.js +petri.com#?#.content_widget:has(> div.widget_content > div.hs-form-insert) +dnsstuff.com##img[width="594"][height="97"] +###phrase_notification_cookies +athirvu.in#?#.sticky-sidebar > section.widget:has(> div.textwidget ins.adsbygoogle) +||5h3oyhv838.com^ +###banner-ad-large +###didomi-notice +@@||consent.trustarc.com/asset/notice.js$domain=hsl.fi +meinvoice.vn##.content-post-adversite +dlhd.*,lewblivehdplay.ru,freckledine.net,bong.ink,crackstreams.dev,tutlehd4.com,topembed.pw,redditsoccerstream.online##div[style*="2147483647"] +||cdn.2024jphatomenesys35.top^ +##.horizontal.ad +||bookletfreshmanbetray.com^ +##.sponsored-display-ad +||oh100.com/js/pubuliu. +spin.com##div[id*="-promo-lead-"] +securityonline.info,xkorean.net,h-hentai.com,honatur.com,lanouvelletribune.info,supertelatv.net,yearn-magazine.fr,cantaringles.com,cscscholarships.org,javgay.com,rozbor-dila.cz,teenboytwink.com,filmeseserieshd.org,kizzboy.com,meterpreter.org,pronunciaciones.com,atelevisao.com,worldoftrucks.ru,novelleleggere.com,plant-home.net,mundo-pack.com,scholarshipsads.org,jmusic.me###adblock_screen +timeanddate.com###privacybanner +||whichav.*/qq/qq.js +||noisesperusemotel.com^ +warotanien.net###simplicityclassictextwidget-38.widget-over-breadcrumbs +rapidgator.net##a[href^="https://itunes.apple.com/us/app/rapidgator-net-file-manager/"] +thelist.com##.divider-heading-container +||vrelai.com^ +||dolefulcaller.com^ +kurnik.pl#$#body ins.adsbygoogle[data-ad-slot] { display: block !important; height: 2px !important; width: 1px !important; } +||pagead2.googlesyndication.com/pagead/js/google_top_exp.js$script,redirect=noopjs,important,domain=ebb.io +bloomberglinea.com,bloomberglinea.com.br##a[href^="https://news.google.com/"][href*="/publications/"] +||vidoomy.com^$third-party +nacion.com##.piano-slideup-meter-wrapper +@@||cdn.cookielaw.org/scripttemplates^$domain=mojkatalog.rs +dailydooh.com##[id^="rectdiv"] +###around-the-web +##.ad-tall +||imgdrive.net/anex/ +||scupio.net/kanglei/ +##.widget_doubleclick_widget +blog.logrocket.com##.code-block-64 +chapmanganato.com##div[style^="width: 100%;overflow: hidden;"] +||joinpropeller.com^$popup +##.send-to-news +blog.eva.ua##.acticle-block > p > a[href^="https://invite.viber.com/"] +parade.com##.connatix_wrapper +###topbanneradtitle +nishinippon.co.jp###new_side_mail_magazine +||mountainouspear.com^ +||adblockstrtech.link^$popup +/javhd-jp-970x170.jpg +symbl.cc,unicode-table.com###js-cookie +||fzivunnigra.com^ +comicbookmovie.com#$#.ad { height: 1px !important; } +forbes.com#@#.ADBAR +riumar-family-resort.de#$#body { overflow: auto !important; } +||oxydend2r5umarb8oreum.com^$popup +guidingtech.com##.sidebar > #text-46 +||sh.sina.com.cn/iframe/522/ +||ftxtr.com/iframes/t24/web/ +majorgeeks.com##.navigation-light +kaskus.co.id,kaskus.com###Conho01Left +@@||securepubads.g.doubleclick.net/tag/js/gpt.js$domain=blog.wiki-topia.com +gmotech.jp###bannerParts +360.com###rainbow-cat-screen +###advads_ad_widget-19 +||fsalfrwdr.com^ +||sonumal.com^ +##.google-right-ad +fontke.com##.index-adver +:538/attachment/xjdb.jpg +||casefyparamos.com^ +||consent.cmp.oath.com^$third-party +landiannews.com##a[href*="ourl.co"] +@@||upload*.jianshu.io^$stealth +omio.*##div[id^="LpsContent-EmailSubscription"] +ddproperty.com##.container-dfp +||d2ltukojvgbso5.cloudfront.net^ +nationalpost.com###sidebar > .adsizewrapper +||filter.myadcampaigns.com^ +||fromjoytohappiness.com^ +cryptorank.io##.sc-16d121c9-0 +zuanke8.com##.zuanpw +kickasshydra.dev,kkat.net,kkickass.com,kick4ss.com##.land-content .alert-warning +fastestvpns.com##.custom-banner +||mobzon.ru/adbp/adbp.js +###headerTopAd +medal.tv#?#article div[class^="sc-"] > div[class^="StyledBox-sc-"] > div[class^="StyledBox-sc-"]:has(> div[class^="StyledBox-sc-"] > span:contains(/^Medal is better with Mobile$/)) +svetapple.sk#?#figure:has(> figcaption:contains(Reklama)) +##a[onclick^="_czc.push(['_trackEvent', '广告"] +##.tjads +&zoneid=*&direct=$popup +ege-study.ru##.m365-topbar-bottom-fixed +@@||tryit.w3schools.com^$document +||yzdh44.com/js/ +||gruffsleighrebellion.com^ +@@||sudupan.com^*/*.gif +||crepgate.com^ +aol.com##.inline-breaking-news-newsletter +huawei.com##.banner_box +@@||060s.com/images_ad/*.png +@@||qvc.de/wcsstore/*/content/javascript/gdpr.js +cadelta.ru,mmohelper.ru##.zen_subscribe +brisbanetimes.com.au##iframe._3Y-wX +||thunderdepthsforger.top^ +dongknows.com###secondary > .widget_oih_opt_in_widget +kerrynotes.com##.sgcc-cookies +_728_90_ +##a[href^="https://safesurfingtoday.com/"][href*="?skip="] +||box1.aomg5bzv7.com^ +hentai-moon.com#%#//scriptlet('set-constant', 'flashvars.adv_pre_html', '') +bazar.ua##.vw-stats-info-promo +360kuai.com###xunjia-modal-btn +||china.com/zh_cn/etc/gghead +##.ad-contain-300x250 +1kkk.com##.kk2.cc +||fghghh.cn^ +wroclawskisport.pl#?#.theiaStickySidebar > aside > .widget:has(> h2 > span:contains(/^Partner$/)) +outdooractive.com#$#.oax_cookie_consent_modal { display: none!important; } +filmeonlinehd.biz,onlinework4all.com,youdbox.com,downloadtwittervideo.com,fetchtube.com,elkooora.com,lodynet.co,mega4up.com,brstej.com,tuktukcinema.com,adslinkfly.online,mvs4u.tv,arabseed.net,speedvideo.net,watchdbzsuper.tv,gsurl.in,yalla-shoot.today,earnload.co,gpmojo.co,halacima.co,mangazuki.online,televisiongratishd.com,videobin.co,todofull.net,zoom-link.com,urlcloud.us,hdfilme.cc,mangacanblog.com,stalktr.net,lelscan-vf.com,app.ignition.fun,9anime.vip,123movie.cc,123movie.sc,123movies.productions,123movies.domains,123movies2019.com,123movies2019.net,123movies2019.org,123moviesback.com,123moviese.com,123moviesgot.com,123moviesok.org,123moviesss.com,123moviestar.net,123moviies.org,123watchmovies.org,1xxx.tv,300mbmovies4u.club,33sk.tv,3sk.co,4shworld.com,9anime.cloud,9movies.tv,9putlocker.io,9xrockers.pw,adultwallpapers.co.in,afghanidata.com,aflam.io,aflam4you.tv,aflamonlinee.org,akoam.net,altadefinizione01.love,altadefinizione01.site,anime-odcinki.pl,animedoor.com,animeflv.net,animesave.com,animeskai.biz,animestreams.tv,animeunity.it,animezone.pl,aovivonatv.com,arenavision.cc,atozmp3.co,bindassbros.com,bucetasx.com,cadelanocio.com.br,cambabe.me,camgirlbay.net,caminspector.net,camwhores.adult,camwhores.tv,camwhoreshd.com,cb01.io,ceesty.com,chatrooms.org.in,chodan.com,cima5.com,cimaclub.com,cinema4tv.com,clickndownload.*,clicknupload.*,clik.pw,cloudvideo.tv,clubedoaz.com.br,cmovieshd.bz,cmovieshd.com,cmovieshd.net,cockhero.org,converto.io,crackzsoft.com,cwtvembeds.com,czech3x.net,dailyimages.xyz,darmowa-telewizja.online,denunciando.com,despreseriale.ro,dir50.com,downloadhub.org,downloadhub.ws,dp-stream.com,dramamate.com,dredown.com,ebooksz.net,egybest.site,embed.watchasian.co,extreme-d0wn.com,f-hd.net,f16f.com,fatimakhamissa.com,ffmovies.ru,filerio.in,filme-bune.net,filmywap.com,flenix.net,flix555.com,flowhot.me,foxebook.net,freeapps4y.blogspot.com,freedisc.pl,freelivesports.co,full-stream.nu,fullmaza.net,fullmovies24.net,fullmoviescenter.com,fussball-livestream.net,gameofbay.org,gaypinoyporn.com,glinks.me,gnula.se,gogomovies.net,gotdatfire.com,greenmp3.com,gsul.me,gsur.in,hdfilme.net,hdfilme.tv,hdmoviesfree.net,hdmp4mania.world,hdpopcorns.in,her69.net,hevcbay.com,hindugodsongs.com,igg-games.com,indexofmovie.com,indoakatsuki.net,ipagal.org,irp.uz,joymovies.com,justdubsanime.net,justupload.io,katmovie.de,katmoviehd.cc,kinoger.com,kinoger.to,kombatch.com,koursaros.net,kprofiles.com,kreskowkazone.pl,legendofkorra.tv,libertyvf.co,m4ufree.io,mangahasu.se,mangaindo.web.id,mehlizmovies.com,milfzr.com,momjoi.com,movie1k.pw,movie2free.com,moviebay.io,movies1234.net,movies79.com,movieshd.ru,movizland.online,mp3-pn.com,mp3-red.co,mp4mania.world,mr-hd.com,mrelhlawany.com,msphubs.com,mywatchseries.stream,nepalikanchi.com,new-mastermovie.com,newpct.com,newpct1.com,nghmaty.com,ngusman.com,olozmp3.net,onlinechat.co.in,onprojectfreetv.site,otakustream.tv,ouo.io,pagalworldm.com,panda-streaming.net,pelisencastellano.com,phimotv.net,piratebays.co.uk,pirateproxy.yt,pornlibrary.net,porntrex.com,punjabimoviesonline.org,putlocker.sk,putlockerfree.net,putlockertv.se,putlockertv.ws,rapidvideo.is,revivelink.com,rule34hentai.net,rumahminimalisbagus.com,sa7eralkutub.com,sabwap.co,savethevideo.com,sawlive.tv,scanof.net,sebn.sc,segiempat.com,sempreinter.com,sendvid.com,sexmag.biz,shaggyimg.pro,short.pe,shortmony.me,shurikenteam.com,siii.club,simitator.com,softcoretube.org,softpcfull.com,software-on.com,solarmovie.net,solarmovie.st,solarmoviefree.co,solarmoviefree.me,solarmoviesc.co,solarmoviex.to,speed4up.com,sportify365.blogspot.co.uk,sportify365.blogspot.hr,stiffgamerdown.com,stream4free.live,streaming-football.org,subsmovies.me,tamilfreemp3songs.com,tamilmv.cz,telepisodes.org,thaihotmodels.com,theseriesonline.net,toquemp3.com,torrentlocura.com,torrentmegafilme.com,torrentrapid.com,torrents9.org,torrentsmd.eu.org,tous-sports.tv,toussports.info,tubebg.com,tudotv.tv,tudotvonline.com,tugaanimado.net,tusnovelas.net,twojetv.ws,uii.io,upload.ac,upzone.cc,urgetofap.com,urgrove.net,ustreamix.com,vidcloud.icu,vidload.co,vidnode.net,vidoevo.com,vidtomp3.info,vimeotomp3.com,viralitytoday.com,vojkudee.net,watch-online.biz,watch-series.co,watch32.is,watchfilmy.com,watchncum.com,watchonlinemovies.com.pk,watchparksandrecreation.net,watchrecentmovies.co,watchseries.unblockme.xyz,wicr.me,xkeezmovies.com,xmovies8.io,xmovies8.net,xmoviesforyou.com,xxxwebdlxxx.org,yakaracolombia.com,yalla-shoot.com,yeane.org,ymovies.tv,yt2mp3s.me,zedstream.com#%#//scriptlet("abort-current-inline-script", "String.fromCharCode", "zfgloaded") +bike.shimano.com##.cmp-cookies-notification +###adspace-1 +rp.pl###subscription-bar-top +vivud.com##.in_stream_banner +###skinad-right +nytimes.com,nytimesn7cgmftshazwhfgzm37qxb44r64ytbb2dj3x62d2lljsciiyd.onion##.g-paid +detector.media###msg_cooky_blk +||stopblockads.com^$popup +||redenyswallet.click^ +smallpdf.com#?##app > div[class^="sc-"] + div:has(img[alt="survey illustration"]) +hockeyfeed.com##body div.ads[class*="device"][class*="svelte"] +||9eeb47afec.678aea51c0.com^ +memo-book.pl#$#.rodo-locked { overflow: auto !important; } +so-net.ne.jp#@#.ad-notice +espoonseurakunnat.fi#%#//scriptlet('trusted-click-element', '#reject-cookies', '', '500') +shopwelt.de,kleinanzeigen.de,mobile.de,nordic.businessinsider.com###consentBanner +mediapost.com###widget_main > .affix +moneypop.com,factable.com##.pohcontainer +/uploadfile/ad/* +||baskettexture.com^ +||sina.com.cn/3/2016/1114/45.js +||chinaz.com/news.js +||astivysauran.com^ +hometheaterreview.com##div[id^="amzn-assoc-ad-"] +independent.co.uk##.footer-prompt.sticky +tubefilter.com##.signup +telegram.hr##.banner-separator + div.full +washingtonpost.com#$##wall-bottom-drawer { display: none !important; } +winfuture.de##div[class^="hp_"] > div > div[style="display: none !important;"] + .clearfix +nipic.com##.vip_homeshow +taxscan.in##.taxsc-mobile-popup-ad +gcamera.co,wikibiodata.com###custom_html-19 +mpyit.com###sidebar a > img +youmath.it#$##container_content[style*="filter: blur"][style*="height"] { height: auto !important; } +retailer.ru##p:has(> a[href="https://t.me/retailer_news"]) +||burstnet.com^$third-party +torrentproject.cc##a[href="/vn/?yd=?"] +||ytlarge.com/youtube/*728-90. +m.post.naver.com#$##cont { user-select: auto !important; } +||23.109.87. +firstcry.com##section[appdownload] +||dskjbvzvs.com^ +zalakirovano.ru#$#.swpmodal-overlay { display: none !important; } +coolapk.com##.app_left > div.left_download +porn1free.com,retrooh.com,hotclassicfuck.com,videos6.com##.player > #embed__pre +||0452.5clo0xmbf.com^ +###sky-left +||snacktools.net/bannersnack/$domain=~bannersnack.dev +##.content-top-ad-item +oploverz.my###sidebar > .widget_text:has(> div.textwidget > #histats_counter) +||dirtrecurrentinapptitudeinapptitude.com^ +||buylnk.com^ +###top-ad-wrapper +njuskalo.hr##.PrivacyPolicyNotice +bookriot.com##.inside-content-ad-container +kapital-rus.ru##.subscribe_on_ks_yandex +||nyt5j.cyou^ +||louseflippantsettle.com^ +flagpedia.net##.rklm +titantv.com##td[style="vertical-align:top; position:relative; min-width:160px;"] +@@||cdn.cookielaw.org^$domain=zdnet.com +infolaw.co.uk#?#.inside-sidebar h3:contains(Featured services) ~ p +||alicdn.com/img/ibank/*_687764080. +||2b2a5aa2e8.580a3132d3.com^ +||chance.aomg5bzv7.com^ +@@||vanis.io/ads.js +penize.cz,strategium.ru#%#//scriptlet('prevent-setTimeout', 'adblock') +aniplay.tv##.joyride-modal-bg +twitch.tv##main.tw-flex > div[class]:not([data-test-selector]) > div[data-test-selector="test_selector_prime_tracking_button_wrapper"] +##.adboxcontent +shop.berliner-kaffeeroesterei.de,lanius.com,bremer-gewuerzhandel.de,delius-klasing.de,toner-dumping.de,lilienthal.berlin,mister-lady.at,mister-lady.com##.js--overlay +smashy.stream,bestgirlsexy.com,nhentai.to,masahub.net#%#//scriptlet('abort-on-property-write', 'handleException') +||links.extralinks.casa/ads.js +@@||taobao.com^*&adgroupid= +semafor.com#?##__next > div[class^="css-"]:has(> form#floating-africa-form) +flightsim.to#%#//scriptlet("adjust-setInterval", "count ", "", "0.02") +anisearch.*###content-sidebar > aside#rightA +@@||looker.com/api/internal/$~third-party +||titanads1.com^ +##.sb-ad +||adshort.tech/toolfp.js +thetimes.co.uk###react-edition-subscription-marketing-banner-slice +||dapperdiscussion.com^ +||dzbkl37t8az8q.cloudfront.net^ +phonearena.com##.s_page_content > div > .ad_300_250 ~ br +##.adv-top-container +vidup.io##.sponsored-container +/adpreview?$popup +||ignorantmethod.pro^ +||rexsrv.com^ +numuki.com##.small-banner-responsive-wrapper +shutterstock.com##div[data-automation="tourComponent_popper"] +selectra.jp,walletinvestor.com##.sticky-footer +##.adHplaceholder +21stcenturywire.com##.textwidget > div[id^="ld-"][style^="padding:"] +aiscore.com##.codeImgLeftBox.oddBox +||tictastesnlynot.com^ +.net/2?z=$script,third-party +||compatriotelephant.com^ +||qirkgwfpspt.com^ +naszemma.pl##a[href^="https://naszemma.pl/go/betclic"] +youku.com##div[id$="_ykbanner"] +||7fc8.site^$document,popup +technicalatg.xyz#%#//scriptlet("adjust-setInterval", "wpsafe-", "", "0.02") +uptodate.com#%#//scriptlet('set-cookie', 'cookie-accept', '1') +##.adbutler-top-banner +||teinlbw.com^ +babestube.com##body > div#_iframe_content +takprosto.cc###facebook_takprosto +||bbci.co.uk/plugins/dfpAdsHTML/ +@@||en.bongacash.com/js/videojs/video.js$domain=pornsocket.com +||fuzzyincline.com^ +||9b802eccae.84190de182.com^ +@@||v.fwmrm.net/ad/l/1$domain=viasatsport.se +||b724ebdb0a.00f031b898.com^ +realpornclips.com#?#.main > div.container > h2:contains(Advertisement) +sonntagsblatt.de###spb-block-subscribe-to-newsletter-popup-block-sonntags +autoteiledirekt.de#$#.overlay { display: none !important; } +##.ad_btn-white +||x.xxxmovies.fun^ +easou.com##.ecom-adTop +||hyfvlxm.com^ +||teenpornvideo.sex/player/html.php?aid=*_html&video_id=*&*&referer +anilibria.top##.v-col-md-8:has(> div.v-card--flat a[href="/support"]) +##.mw-ad +nfmovies.com#@##adright +tecmundo.com.br##div[class^="tec--thebrief"] +mlsbd.shop#%#//scriptlet('prevent-addEventListener', 'DOMContentLoaded', 'hasRedirected') +couponxoo.com##.box_io +forum.tomshw.it#$##top { margin-top: 0 !important; } +||antelope.journeyofanurse.com^ +||cpvfeed.50onred.com^ +||11778562.xyz^$document,popup +msn.cn##.intra-article-ad-full +||xml.dollopsdigital.com^ +||forbeautiflyr.com^ +megayoungsex.com##.SAbnBot +bogner.com###flyout-newsletter +||refbanners.website^ +eastday.com##.video-mask +naekranie.pl##body > div.wrapper > div[id] > div[class][style*="content: ''; overflow: visible;"] +senzuri.tube##.video-page__content > div.left + div[class]:last-child +||m6j37.xyz^ +sonkwo.hk##.store-ad-waist +kodi-tipps.de#$#.pum-overlay { display: none!important; } +||smallestunrealilliterate.com^ +/img/ad/*$~xmlhttprequest,domain=~weblio.jp +osohshiki.jp###fixed_footer +hao123.com##.title-wrap + .right-img +@@||sjsmitaa.org/bin/showads. +autotrader.co.uk##.gpt-billboard +||hdickeu.top^ +/tagman/*$domain=~abelssoft.de +||minimize363.fun^ +glospowiatusredzkiego.pl,wgospodarce.pl,gostynska.pl,ddbelchatow.pl,jarocinska.pl,klodzko24.eu,nowaruda24.pl,portalplock.pl,korsosanockie.pl,korsokolbuszowskie.pl,korso.pl,korso24.pl,forsal.pl,zwielkopolski24.pl,se.pl,dziennik.pl,rawicz24.pl,tko.pl,tvn.pl,roweroweporady.pl,tulodz.pl,weszlo.com#%#//scriptlet('set-constant', 'questpassGuard', 'noopFunc') +@@||schwalbe.com/system/modules/cookiebar/assets/dist/cookiebar.min. +||jmipzsn.icu^ +##.ads-desktop +||ifllwfs.com^ +||dr1.piczlabs.com^ +/senddata?site=inpage +###jsid-ad-container-post_below_comment +pensoft.net###warningCookie +||content-cooperation.com^$third-party +||yhbcii.com^ +thedailybeast.com##.Sizer +holod.media###engb +@@||id.skyeng.ru^$stealth +||oumnxiek.top^ +@@/css/branding_*.css$domain=netgear.com +gettyimages.*##.euCookieDialog +##.lyad +##.dc-ad +novilist.hr##.addBlock +58.com#?#LI[sortid]:-abp-has(.jinico) +||go-route.com^$popup +||yd.abeighdayment.com^ +bola.net##.bola-social-bar +dvdgayonline.com#%#//scriptlet('remove-attr', 'href', 'a[href]#clickfakeplayer') +||auneechuksee.net^$popup +||520xingyun.com/images/188*.gif +||k-oggwkhhxt.love^ +||adipolosolutions.com^$third-party +xwhite-tube.com##.content--ads +yandex.com##.ImagesViewer-SidebarAdv +||88lm13.com^ +||pcauto.com.cn/zt/*_dialog/cjx-pc-half_ +||prod-adops-proxy.dnitv.net^$redirect=nooptext,domain=discoveryplus.* +inutomo11.com##iframe[src^="http://inutomo11.com/nanj"] +||ucazgetyk.com^ +||mebohjhh.xyz^ +niotv.com##.epg_ad_list +||gaujagluzi.xyz^ +##.adsbygoogle-box +##.ad_marker +flightconnections.com##.route-info-container > .parallax-container > #IntentMediaParallax +||akqktwdk.xyz^ +v.qq.com##.nav_link[href^="http"]:not([href*=".qq."]) +app.daily.dev##.from-theme-overlay-active-cabbage.to-theme-overlay-active-onion +liner.hu###liner_nyito_fekvo_1 +@@||demorgen.be^$domain=myprivacy.dpgmedia.be,stealth +sms24.me,sms24.info#%#//scriptlet('abort-on-stack-trace', 'document.createElement', 'showAdblock') +||stockstar.com/info/1200x90/ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$redirect=googlesyndication-adsbygoogle,domain=memoryhackers.org +news-724.com#%#//scriptlet('abort-current-inline-script', 'document.createElement', 'adsbygoogle.js') +realmadryt.pl##.gamebar-section-sponsors +4gamers.com.tw##.scroller-ads-wrapper +sportmaster.ru##.sm-cookie-agreement-old +||delivery-pc.wasu.cn/d/frontJs/3.0$redirect=noopjs,domain=wasu.cn +||faselhd.center/v.mp4 +techno-edge.net##.main-membership +infoconcert.com###ic-cache +-sponsor-ad. +so.com###e_idea_left +/cp/webcam_gallery^$domain=cambabe.me,third-party +||crimblepitbird.shop^ +m2o.it###promo +itdog.cn##.col-12 > .card.mb-3[style="padding: 5px;"] +theroar.com.au##.u-d-block +||dreamintim.net^ +wanchan.jp##div[class^="footer_app_dl"] +###cookie-warn +thestrayferret.co.uk##div[class^="Notifications_popupContainer"] +latestly.com###decor3 +systweak.com###SubscribePopUpBox +||2568.seponews.com^ +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$xmlhttprequest,domain=smallseotools.com +##.article-ad-container +shahid.mbc.net#%#//scriptlet('prevent-fetch', 'doubleclick.net/gampad/ads') +@@|http$script,~third-party,domain=mylink.*|my1ink.*|myl1nk.*|myli3k.* +artportal.hu##div.ad +||web.51fishplace.com^$third-party +.mp4?*sdtfrom=&$domain=m.v.qq.com +||bemsongy.com^ +###aad-header-1 +javgg.net##iframe.lazyloaded.na +||tragicbeyond.com^ +##.native_ad_inline +||usejj.makepolo.cn^ +###adDiv +docinsider.de###__cookiemsg +mlive.com,cbr.com##body > div:not([style],[id]) > style + div[class] +||oeryt111.fun^ +hotmovs.com###in_va +masrawy.com##.leaderboardDiv +mini.eastday.com##li[class^="recommend_news recommend_ad_hot_"] +||ysx8.vip^$third-party +kuow.org##.cta_newsletter +chfi.com,1067rock.ca,921citi.ca,q92timmins.com,q92sudbury.com,star959.ca,977rock.ca,979rock.ca,chez106.com,chymfm.com,country1011.com,country1043.com,country1067.com,country1071.com,country1073.ca,country600.com,country933.com,country935.ca,easy1013.ca,jack1023.com,jack929.com,jack969.com,jack969.ca,krock1057.ca,sonic1029.com,sonicradio.ca,starfm.com,kiss1023.ca,kiss925.com,kissnorthbay.com,kissottawa.com,kissottawa.com,kisssudbury.com,kisstimmins.com,kiss917.com#$#.sidebar-widget { height: 250px !important; } +manomano.co.uk,manomano.de,manomano.es,manomano.fr,manomano.it##.Ssfiu-:has([data-testid="popoverTriggersponsoredLabel"]) +sexcelebrity.net,perverttube.com,fpo.xxx#%#//scriptlet('set-constant', 'flashvars.adv_pre_src', '') +||m.ygexing.com/d/js/acmsd +bdupload.asia,indishare.org##center > p > a[href][target="_blank"] > img +sexy-youtubers.com##a[href="https://theporndude.com/"] +sammobile.com###closeAd +##.houseAd +moviehd2022.com##.banner-right +cococare.com##form#ic_signupform.popup +ipadforums.net##.mainContent > div.sectionMain.funbox +@@||usercentrics.eu^$domain=br.de +||qfavlkgf.com^ +rickandmorty.cn-fan.tv###vipRight +secrid.com#%#//scriptlet('set-cookie', 'cookies', 'true') +||realgfporn.com/lander^ +duplichecker.com#?#.data_inbox > div:has(> div > span > span) +ambientedirect.com##.snippetNewsletterFlyIn +||ttwwzqdx.xyz^ +||baidu.com/rmaAjax/getGame? +motorsport-total.com#?#.pull-right > div.teaser_container:has(> div.f1de-container > div.block-title:contains(Newsletter)) +||freedidi.com/wp-content/plugins/death-luhubaoyu/ +mito3d.com##.wrap_card_advert +||js-check.com^$document +playporn.xxx,videosdemadurasx.com##.wrap-spot +||headirtlseivi.org^ +moneycontrol.com##.bot_RHS300 +makro.cz,makro.pl#$#.consent-disclaimer { display: none !important; } +wololo.net##.entry-inner > blockquote > center +danskebank.se#$#html { overflow: visible !important; } +||dv.pictunoctette.com^ +porn.com##.cookie-alert +stirileprotv.ro##div[id^="dfpbillboard"] +@@||consent.trustarc.com/asset/notice.js$domain=concursolutions.com +||jsc.mgid.com^$domain=~mgid.com +.m.qiuwu.net^ +||soorkylarixin.com^ +||racunn.com^$document +goosedaily.com##.lightboxbnr +||sexmature.fun/myvids/ +liyayazilim.com###cookiemaster +||wangzhanmeng.com/link/link.html +##.mastheadAds +/mod_pagepeel_banner/*$image,script +||banners.leightonbroadcasting.com^ +||oxtracking.com^ +mathopenref.com##.lowerRect +fandom.com#%#//scriptlet('json-prune', 'sponsored') +tennessean.com,sputniknews.com##.taboola-sidebar +||ojkduzbm.com^ +filmora.wondershare.com##.wsc-seasonal-container +||lizardslaugh.com^ +||fringeforkgrade.com^ +||projectwonderful.com^ +comicbook.com###omni-skybox-plus-top +||ifeng.com/iframe/quickbet +chineseinla.com##.forum_banner_ads +thebell.io##.follow > .follow__subtitle +northernpowergrid.com#$#.blurred { filter: none !important; pointer-events: unset !important; } +||watchfreeofads.com^$popup +||tmserver-2.net^$third-party +world.rugby#$#body > div[class^="_"][class*=" _"]:empty {display: none !important; } +pastemagazine.com##div[id$="_rectangle"] +greenlemon.me#@#[id^="ads_"] +propublica.org##.site-footer__section-newsletter +###advertisement-300x250 +||disposableearnestlywrangle.com^ +##.detail-ads +##.headerAd +cashconverters.pt#$#.privacy_policy_message_box { display: none !important; } +||ifefashionismscold.com^ +###layer_ad_content +quora.com##.NewGridQuestionPage .linked_content +/adserve/*$script +@@||runative-syndicate.com/do2/*$domain=onemanhua.com +detail.zol.com.cn##.link_jd +||spotx.tv^$third-party +/iframe/ss/baidu_*.html +##.cookies-dialog +forum.duolingo.com#?#.ReactModal__Overlay:has(> div.ReactModal__Content h2[class]:contains(Learn Italian in)) +##.longAd +.nativeads. +m.babytree.com##.recommend-brand +urm.lt##.sub-block +||laowangblog.com^*-ad +sg169.com###coupleft +||bigear.cn/cache/htmlcache/ +||640186f930.04de88565b.com^ +supermedia.pl,lesoleil.com,ledroit.com,lenouvelliste.ca,lequotidien.com,latribune.ca,lavoixdelest.ca##div[class^="cookies-banner"] +||zj.rochermack.com^ +banco.az##.menu-banners +@@||tous-sports.tv/js/advertisement-AdBlock.js +tiktok.com#%#//scriptlet('prevent-addEventListener', 'touchmove', '.preventDefault():void') +yahoo.co.jp###bnr_app +||alladvertisingdomclub.club^ +||bottleselement.com^ +||inquiryclank.com^ +||vacationsoot.com^ +vanmoof.com##.ost-overlay-container +||filter.leoyard.com^ +##.view-ads +||mentxviewsinte.info^ +##.adsense-googleAds +||js.onclckbnr.com^ +@@||faberlic.com/images/banners/ +||tidyinteraction.pro^ +##.ad-pos-top +||jingdianlaoge.com/static/js/q.js +||awunkse72.shop^ +belfastlive.co.uk,birminghammail.co.uk,bristolpost.co.uk,cambridge-news.co.uk,cheshire-live.co.uk,chroniclelive.co.uk,cornwalllive.com,coventrytelegraph.net,dailypost.co.uk,derbytelegraph.co.uk,devonlive.com,dublinlive.ie,edinburghlive.co.uk,examinerlive.co.uk,getsurrey.co.uk,glasgowlive.co.uk,gloucestershirelive.co.uk,hertfordshiremercury.co.uk,kentlive.news,leeds-live.co.uk,leicestermercury.co.uk,lincolnshirelive.co.uk,liverpool.com,manchestereveningnews.co.uk,mylondon.news,nottinghampost.com,somersetlive.co.uk,stokesentinel.co.uk,walesonline.co.uk##.topbox-cls-placeholder +news.sky.com##[data-role="ad-label"] +||innovationlizard.com^ +||1lzz.com^$popup +||graijoruwa.com^$popup +2ip.io,2ip.ru##.sidebar-adv +||yqdnad.icu^ +finmag.cz###PX_outstream__wrap +##a[href="/forum/"] > img[src*=".bcebos.com"] +||temksrtd.net^$popup +||hectorobedient.com^ +||a.duduji.com^ +@@||dl.go4up.com/*ad*.js +apko.org##.center-post-widget > div[id^="text-"] +defenseone.com,passioneperigatti.it,jazz.fm,milleunadonna.it,tiscali.it,multiplayer.it,movieplayer.it,sputnikglobe.com,wexphotovideo.com,m2o.it,deejay.it,capital.it,moto.it,automoto.it,atlantico.fr,mediaset.it,libero.it,ilmattino.it,leggo.it,3bmeteo.com#%#//scriptlet('trusted-click-element', '.iubenda-cs-customize-btn') +prothomalo.com##img[width="300"][height="80"] +chinese.engadget.com##body #ldrBoardAd +##.taboola_module +talksport.com,wiwo.de#%#//scriptlet('remove-class', 'sp-message-open', 'html') +hstoday.us##a[href^="https://www.cdc.gov/"] +||ealeo.com^$popup +##.SkyScraperAd +||frowzlynecklet.top^ +trail4motion.de#%#//scriptlet('trusted-click-element', '.js-offcanvas-cookie-submit') +||vbnmsilenitmanby.info^$popup +canva.com##body > div[style^="z-index:"]:has(p > span > a[href*="cookie"]) +||reachjunction.com^$third-party +@@||ny.gov^$stealth +kickasstorrents.to##.dssdffds +||oatchelt.com^ +||showedprovisional.com^ +filesmerge.com#?#.slider-body > div.slider_item:has(> div > h4:contains(/Ads|Werbung|Mainostaminen|Publicité|Publicidad|Pubblicità|广告|Реклама/)) +||cdn.http.anno.channel4.com/m/*.mp4$~object,media,redirect=noopmp4-1s,important,domain=channel4.com +##.ads-rail +||yhubsxmg.xyz^ +inenglishwithlove.com#?#.sqs-block:has(> div.sqs-block-content div.image-button-inner > a[href^="https://elsaspeak.com/"]) +/ytrek7.$script,~third-party +uwaga.tvn.pl#%#//scriptlet('set-constant', 'Berry.waitFor', 'noopPromiseResolve') +||m0hcppadsnq8.com^ +epravda.com.ua##.post__text + div.push +anilibria.top##.v-carousel + div.justify-center +easylearn.baidu.com##.vip-banner-cont +mlyn.by###acceptСookie +xrares.com##a[href*="/plugout.php"] +@@||spinbot.com/js/adsbygoogle.js +megaup.net#%#AG_onLoad(function(){var e=document.querySelector(".metaRedirectWrapperBottomAds img");e&&Object.defineProperty(e,"naturalWidth",{value:300})}); +gadgetsnow.com#?#div[data-articlebody] > div[class^="_"] > .colombia:upward(1) +||smartcpatrack.com^$popup +||theporndude.com/promo/$third-party +||wordpersonify.com^ +||hockeycomposure.com^ +||hoseitfromtheot.com^ +icourse163.org#@#.sns-link +fortune.com##div[data-cy="subscriptionPlea"] +2345.com###J_Banner_Special +mgtow.tv###header_plug +oann.com##.ad-slot__ad-label +/468x60_ +novayagazeta.ru##div[id^="materialBlock"] > div[style="height: 794.625px;"] +conservativebrief.com#?##primary > div.main-box:has(> div.main-box-inside > div[id^="ld-"]) +||savvcsj.com^ +highlandsenergi.com##.woocommerce-store-notice +yahoo.com###module-tabadsw +||cybmas.com^$third-party +###kt_player > a[target="_blank"] +||amtracking01.com^ +||adsvolum.com^ +@@/chunks.m3u8$stealth +ananvod.com##.rbPicAll +negisoku.com##.t_h div[class^="res_"] .t_a div[style*="padding: 10px; margin: 5px 20px 10px;"] +citybeat.com,riverfronttimes.com##.fdn-teaser-row-teaser +||puerty.com^ +||static.rapidbidhub.com^ +||xiaobi*.com/layer/layer.js +drvsky.com###bz_position +||87bcb027cf.com^ +||kirujh.com^ +||afshanthough.pro^ +energylandia.pl,bedietcatering.pl,wsei.edu.pl,wealthseed.eu,actavera.eu,inwestomat.eu,itsf.com.pl,kresy.pl,software-on.com,desktopsolution.org,eteknix.com,blog-rct.com##body #cookie-law-info-bar +activejet.pl##.newsletterBanner +||gloomilychristian.com^ +download.net.pl##.sidebar-container a[href^="https://amzn.to/"] +gayxx.net#%#//scriptlet("abort-on-property-read", "adsbyjuicy") +seeklogo.com##.sideAdsWp +boniu123.cc##a[href^="http"] > img[src*="/bn_"] +.info/js/alls_foot.js +is123moviesfree.com,fmovies.sc##center > a[href="../stream"] > img +news.yahoo.co.jp###wrapper > #peron +||incomparable-pair.com^ +||kmruv.cn^ +||detectivegrilled.com^ +||summitmanner.com^ +||awecrptjmp.com^$document +baike.baidu.com##.BK-after-content-wrapper > ul[class][id] > li > a[onclick^="page.Mixedor.mixedOpen"][target="_blank"] +||it165.net/index.php?m=poster& +@@||torrindex.net^$script,stylesheet,domain=thepiratebay.org +/affiliate/ad/*$image +||yukpxxp.com^ +serveradmin.ru###text-html-widget-4 +||adzyou.com^$third-party +/ajs?zoneid= +plainenglish.io##.blog-banner-container +##.adPlaceholder +||cookieless-data.com^ +##.ad-contain-top +www.ixbt.com#%#//scriptlet('remove-attr', 'onclick', '.rebrand_article_content_block > div[align="center"] > a.big_img,a.resize-image') +paypayfleamarket.yahoo.co.jp###appadbnr +vikatan.com##div[class^="styles-m__cookieConsent"] +||mtwwzqdx.xyz^ +/adServe/*$popup +||masterbate.pro^$third-party +go.shareus.in#%#//scriptlet("prevent-window-open") +##.n1ad-center-300 +antonimos.de,quesignifi.ca#%#//scriptlet('set-constant', 'waitTime', '0') +cimanow.cc#%#//scriptlet('set-constant', 'navigator.brave', 'undefined') +blog.eccouncil.org#?#.sidebar-right-item > div.widget > h3.gdlr-widget-title:contains(Subscribe):upward(1) +||magicalbending.com^ +vesselfinder.com###admap +##.adSidebarButtons +/static/js/4728ba74bc.js$~third-party +companyhouse.de#$#div[id="ajax-modal"][style="display: block; padding-right: 17px;"] { display: none !important; } +m.finance.yahoo.co.jp###w2aBnr +||nm.placoidtobyman.com^ +microimg.biz#%#window.setTimeout=function() {}; +||android.com.pl/wp-json/acpl/v1/campaigns/client +talkbass.com###primary-products +||infinite-ads.com^$third-party +onlineocr.net##.tbl_style > tbody > tr[style="height:120px; min-height:120px"] +||thofteert.com^$popup +||channeldrag.com^ +slate.com#@#.ad01 +@@||fcportables.com/wp-content/uploads/ad-inserter^ +||loli.net/2020/06/17/vGALJ4mQx26T75u.gif +gamestar.de#%#//scriptlet('trusted-click-element', '#cmp-modal.in .cmp-accept') +||receptivereaction.com^ +moviesfi.net#%#//scriptlet("adjust-setTimeout", "#download", "11000", "0.02") +||cpmterra.com^$third-party +||cpmleader.com^$third-party +##.RC-AD-TOP-BANNER +||astesnlyno.org^$popup +||birqmiowxfh.com^ +||get.stoplocker.com^$all +###leftAdAboveSideBar +@@||mediacdn.disqus.com^$document +123pan.com##div[style="width:100%;position:absolute;bottom:0;height:96px"] +boxy-svg.com#%#//scriptlet('set-local-storage-item', 'bx-portalwebapp:showPrivacyNotification', 'false') +sheego.de###js-nlContainerTarget +@@||tnmr.org/hls$stealth=useragent +||viimaster.com^ +@@||thepiratebay.*/ajax_ +financebaby.de#$#.modal-open { overflow: visible !important; } +eldiario.es##.news-partners-recruitment +latestlaws.com###jindal_ad +udn.com##.inline-ads +uniladtech.com,gamingbible.com,ladbible.com,sportbible.com,unilad.com,tyla.com#%#//scriptlet('set-constant', 'pbjs.rp', 'noopFunc') +104.com.tw###login_box ul.products_list > li > a[href^="https://goo.gl/"][onmousedown^="adc"] +@@||redguide.top^*/ad.css?$stylesheet +blog.163.com###topbar_yxpArea +||flowerstreatment.com^ +||az6a8nmuz5vbrgd2.exasrv.com^ +thehansindia.com##body div[class*="level_ad"]:not(#style_important) +piceramic.com,physikinstrumente.de#$#.cc-window[aria-label="cookieconsent"] { display: none !important; } +scribd.com#$#.auto__doc_page_body_toolbar[style^="margin-top:"] { margin-top: 0 !important; } +healthline.com##.css-1031od0 +||d2mw3lu2jj5laf.cloudfront.net^ +/fx168_ad +fanatical.com##.biscuit-auth-collapsible +bianalisi.it,prostobank.ua,sex-empire.tv###modal +||achilles-ena.com^ +||bravotube.net/count.js +frprn.com,youtrannytube.com##.footer-spot +ustream.to#%#//scriptlet("set-constant", "ads_blocked", "noopFunc") +||interpersonalskillse.info^ +/wp-content/plugins/fasterim-optin/*$~xmlhttprequest +||coveredsnortedelectronics.com^ +baidu.com##.ec_wise_ad +##.c-advert-superbanner +###ui-cookie-policy +tattle.life##.mmt-sticky +m.tecmundo.com.br##.nzn-app-interstitial +||icmal.az/theme/frontend/icmal/style/default/banner/ +okwave.jp##.following_buttons +pixiv.net##div[style^="margin-left: 0px; --columns"] div[class^="sc-"] > div[class^="sc-"] > section[class^="sc-"]:has(> div[class^="sc-"] > a[href^="/premium/lead/lp/?"]) +yahoo.com##div[id$="-Banner-Proxy"] +||scoot.co.uk/delivery.php +birdwatchingdaily.com##.ad-advertisement-vertical +asahi.com##.nZ_AH +myseries.co#$#div[id^="player_ads_"] { display: none !important; } +||thepeom.com^ +amway-estonia.com,amway-latvia.com,amway-lithuania.com,amway.*#%#//scriptlet('set-cookie-reload', 'isMarketingCookiesAccepted', 'false') +###ad-space-big +nookthem.com##body > [style*="z-index: 999999"][style*="margin-"][style*="bottom:"]:not([class]):not([id]) +youtubetomp3music.com#%#//scriptlet("prevent-window-open") +linkerpt.com#%#//scriptlet("abort-current-inline-script", "jQuery", "fp_mouse_right_click_restriction") +rtbf.be###js-cookie-policy-default +@@||elahmad.com/ads/fc.php +##.amp_ad_wrapper +||bakeryunprofessional.com^ +remontnik.ru##rtk-cookies-notice +||foxpush.com^$third-party +motor.es#%#//scriptlet('trusted-click-element', 'label[for="accept_specialFeatures_2"]') +~taobao.com,~tmall.com##A[href="https://s.click.taobao.com/cTAwFvu"] +github.com##a[href="http://gk.link/a/103EK"] +||gb1aff.com^ +||ig0nr8hhhb.com^ +##.ad-first +||onclkds.com/apu.php^ +||vanpeople.com/gg/ +2chav.com##div[style^="width:682px;height:385px"] +###lightboxAd +||mufflerlightsgroups.com^ +interia.pl,pomponik.pl,styl.pl##div[class*="video-"] div[class="vjs-fixedmonitor-wrapper-fixed vjs-fixedmonitor-fixed"] +###expat_cookies +evrimagaci.org###pwa-popup-container +uuu9.com###top +||alu.cn/aluTrade/Fragments/ListAdvertisementProductsHandler. +||2mdn.net^$~media,third-party +savemyrights.com#%#//scriptlet("set-constant", "document.onclick", "true") +to8to.com##.common-tender-wrapper +outlookindia.com##[class^="ad_wrapper"] +piacenza24.eu###simplemodal-overlay +||remarkedoneof.info^ +reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion##div[id^="sidebar-btf"] +@@||ad.vivo.com.cn^$~third-party +chamsko.pl##.main-banner +||f417a726.xyz^$document,popup +pcsoft.com.cn##iframe[id] +###adFooter +||ofd.meng-an.cn^$third-party +###adposition1_container +feebee.com.tw###ad_mid_module +##.ads_topright +||ixxoo.asia^ +||5xd3jfwl9e8v.com^ +||static.birgun.net/images/abone_banner_light +@@||miniminiplus.pl$generichide +mbd.baidu.com##.related-news > section:first-child + div +##.postWideAd +tw.news.yahoo.com###mrt-node-Lead-1-Ad +||semblanceindulgebellamy.com^ +@@||milfzr.com^$generichide +/di3asdadasdadas.di3asdsa.js +||szpbh.cn^ +sms-activate.org#$#body[class] { overflow: auto !important; padding-right: 0 !important; } +||c96ee2ee55.e1fdc63869.com^ +@@||api-*.cludo.com/api/$stealth +||cdn.syinga.com^ +||d2t47qpr8mdhkz.cloudfront.net^ +||itskiddien.club^$popup +||picard.aomg5bzv7.com^ +tabakhero.de#%#//scriptlet('trusted-click-element', 'button.js-offcanvas-cookie-submit') +jkpan.cc#%#//scriptlet("abort-current-inline-script", "jQuery", "\u") +tudn.com#?#.newsletterContainerArticle:upward(.grid) +onliner.by#?#.news-text > p[style]:has(> strong > a[href="https://t.me/newsonliner_bot"]) +novinky.cz,seznamzpravy.cz##div[data-e2e="mol-advert"] +ticketswap.de##ticketswap-portal > ul[class^="css"] +||1kqfzwd.com^ +||recklessliver.com^ +@@||pagead2.googlesyndication.com/pcs/activeview$domain=allmovie.com|allmusic.com +dnainfo.com##body > div.overlay +@@||cloud.typography.com/*/css/fonts.css$stealth +||123animehub.cc/final +##.adFrameCnt +pg11.ru##form.newsletter +hellobacsi.com#$#body.noscroll { overflow: auto !important; } +##.ad160b +@@||appex-rf.msn.com/*.js?adtype= +mobileshop.eu##.fixed-warning +||90mh.com/mip/qdbao +||crypto-loot.com^$third-party +sabah.com.tr#%#//scriptlet('set-attr', '.player > div[data-videoid]', 'data-autoplay', '0') +substack.com##div[class*="cookieBanner"] +||baidu.com/fanyiapp/image/wise_banner_ +sexvid.pro##.aside_thumbs +||partlytrouble.com^ +gorodche.ru,eg.ru##.feed_sub +||uptightdecreaseclinical.com^ +kitsune-subs.anime-odcinki.pl#%#window.showAds = true; +||a.aliposite.site^ +||pornorips.com/wp-content/themes/PRs_resp/images/istripper/*.png +||img.indiansexxxtube.com:8080/graphics/igfv.jpg +@@||imagefap.com/jscripts/ad_loader.js +sportstiger.com#$#.fullads_banner { display: none !important; } +insidecloset.com#@#.cookie-bar:not(body) +.html|$domain=www.gamer.com.tw +texastribune.org##div[id^="newsletter-subscribe"] +||otoadom.com^ +###adDiv1 +kizi.com#%#//scriptlet("set-constant", "evitca_kcolbda", "false") +trip.com##.scroller-inner > div[class^="banner-container_"]:has(> div > div[class^="app-download-banner_"]) +||underwarming.com^ +/pbjsandwichdirecta9-$script +###left_down_float_ad +||quantumadblocker.com^$popup +||pinkvisualgames.com/?revid= +www-aljazeera-com.cdn.ampproject.org,aljazeera.com##div[class*="app-download-banner"] +||pekseerdune.xyz^ +||sleepcartoon.com^ +vogue.co.th##div.vdo-show-only-mobile-size +||boudinminding.shop^ +##.article-connatix-wrap +work.ink#%#//scriptlet('prevent-window-open', '/jump/next.php') +kyuukaiou.ldblog.jp###kijisitarss +@@/adback.$domain=pg-wuming.com +||outlineappearbar.com^$popup +||sentry-cdn.com^$domain=adblock-tester.com +youtube.com#?#ytd-rich-grid-row > #contents > ytd-rich-item-renderer:has(> #content > ytd-display-ad-renderer) +||improviseprofane.com^ +tutu.ru,tutu.travel##.style__disclaimer +javhope.com###havhope +streamzz.*,vidlink.org,streamz.*,nullpk.com,mitly.us,merdekaid.online,software-on.com##a[href^="http://deloplen.com/"] +##.rightColumnAdsTop +/cookie-law-$~script,~stylesheet +||xml.themediaad.com^ +perkinelmerinformatics.com#$#.minddnd-wa-announcement-wrap { display: none !important; } +###humix-vid-ezAutoMatch +moneysavingexpert.com##.reference-email-tip-box +maturetubehere.com###lotal +vsping.com##.cell > span > a[href]:not([href*=".vsping.com"]) +||hideme.ru/images/prx/prx_bnr_ +||lockingcooperationoverprotective.com^ +||fapfappy.com/*.php$script,~third-party +||knowledgecity.com/blog/wp-content/uploads/*/FreeCourses- +theporndude.com#%#//scriptlet('trusted-set-cookie', 'wallpaper', 'click') +||api.autopilothq.com^$third-party +@@||pubads.g.doubleclick.net/gampad/ads?*&description_url=https%3A%2F%2Fani.gamer.com.tw$domain=imasdk.googleapis.com +andhrafriends.com###ipsLayout_mainArea > center > table +##.dfp-billboard-wrapper +##.full-top-ad-area +||m32.media^ +||trianglecollector.com^ +wstream.video#$#.mypop { height:1px!important; } +eobuv.sk##.marketing-bar +||gaipuzui.com^ +sm.cn###index_haodongxi +||batcrack.icu^ +||demonstudent.com^ +||candyprotected.com^ +##.topAdBanner +||freecounter.ovh^ +yahoo.com###Lead-0-Ad-Proxy +mvideo.ru#$#mvid-global-container > mvid-modals-container:has(mvid-modal div.modal-layout span.mobile-notification__text-cookie) { display: none !important; } +||zdjtxjp.xyz^ +csgostash.com##.adv-result-box-music +||srv.dynamicyield.com^ +uspassporthelpguide.com##.ad-text-sm +/ccm19.js +||survey4you.co^ +||0ae00c7c.xyz^$document,popup +||nullpoantenna.com/scripts/parts/blog/ +||ambitiousagreement.com^ +||qzone.la/Scripts/m.js +@@||my.westfieldinsurance.com^$document +||percentageartistic.com^ +/toucanCookie. +poradnikbiznesu.info#%#//scriptlet("prevent-addEventListener", "DOMContentLoaded", "#vicky-cookiebox") +airhelp.com##div[data-testid="sticky-bottom-bar"] +||ddvfoj5yrl2oi.cloudfront.net^ +||wildebeest.trigo.dev^ +gearaid.com,gripgrab.com,apfelband.de#$##gdpr-blocking-page-overlay { display: none !important; } +pixta.jp###js-modal--recognized-subscription +desishoot.fun###chaty-channel-telegram +||btbt.tv/dd/ +:4443/ty/x-$script,third-party +ask.clip-studio.com##.fixedBanner +profootballfocus.com##.pff-cta-top +||adjust.com^$script,third-party +filmweb.pl#%#//scriptlet("set-constant", "rodo.checkIsDidomiConsent", "noopFunc") +caliber.az##ul > a[href="https://t.me/caliber_az_official"] +redirect.dafontvn.com#$##levelmaxblock { display: none !important; } +seeklogo.com##.shutterBannerWp +it-doc.info,laweekly.com,windows101tricks.com,wdwnt.com,cgpress.org,tv.puresoul.live,livesportstream.club,dataversity.net,fullform.website,collegelearners.com###block-3 +||vengeancerepulseclassified.com^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,domain=gamingnews.live,important +||avocams.com^$popup +nxing.cn##.main:nth-child(-n+6) +##.leaderAdvert +wired.com##.full-bleed-ad +player.octopusbanner.com#$##ads { display: none !important; } +luxuretv.com#?#.title > div:contains(Webcam LuxureTV Club) +wall-street.ro##.justify-content-center.minh-250 +||remarkable-assistant.pro^ +bayshop.com##.registration +||pornerbros.com/churro.js +noklapja.hu#$#.blurry { filter: none !important; } +player.chillizet.pl,player.meloradio.pl#$#.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd { display: block !important; } +productreview.com.au##div[data-can-overlap="true"][style^="position:"] +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=mlb.com +||jump-path1.com^ +authent.lidentitenumerique.laposte.fr#@#.consent-container +m.kt.com##.click-banner +||static.livesport.ws/uploads/*240x400$image +||foiblespesage.shop^ +neowin.net###ipsLayout_contentWrapper > .ipsResponsive_hidePhone > div[style="width:100%; height:100px;"] +the-village.com.ua##div[onclick="hideFallbackImage()"] +@@||github.com/AdguardTeam/*/antiadblock.txt +##.adrighttop +filmora.wondershare.com.ru##body > div.d-lg-none > div.py-3 +||lcwfab1.com^$third-party +imgtaxi.com##a[href="https://imgtaxi.com/go/stripper"] +||whirlclick.com^ +littletravelsociety.de#$#html.pum-open-overlay { overflow: visible !important; } +hottomotto.com##.c-top-pop-banner +@@||geolocation.onetrust.com/cookieconsentpub/v*/geo/location$domain=soundcloud.com +||redir.bluesandals.xyz^ +||benignitydesirespring.com^ +xn--80ac9aeh6f.xn--p1ai#?#main > div[class] > div.flex:has(> div.leading-none > a[href="/subscription"]) +||smarttopchain.nl^ +deutsches-museum.de#$#.cookiebanner:not(body) { display: none !important; } +123chill.to##div[style*="position: absolute"][style$="z-index: 2147483647;"] +dodropshipping.com##a[href="https://dodropshipping.com/shopify-sidebar"] +tydzien-kuchni-polskiej.pl#%#//scriptlet('trusted-set-cookie-reload', 'cookiesTypes', '{"necessary":true,"functional":true,"efficiency":true,"advertising":false}') +||createsgummous.com^ +gastrokuchyn.cz##.electro-overlay +/modules/ads/*$~xmlhttprequest +haaretz.com#?#div[data-test="articleBody"] > div:not([class]):has(> aside > a[href^="mailto:doptint-subscribe"]) +##.adsbanner1 +||admeridianads.com^$popup +aggeliestanea.gr,infotel.ca#@#.adResult +||jishulink.com/images/activity/invite_ +158.69.120.31#$##myModalSingle { display: none!important; } +trashbox.ru##a[href^="https://t.me"] +###adv-box +||bidfhimuqwij.com^ +##.widget_themoneytizer_widget +fcbarcelona.dk#@##article_ad +sekilastekno.com#%#//scriptlet("abort-on-property-read", "adtipop") +||sledujserialy.to/theme/json/episode.ad.php?adlink= +careerindia.com##.instant-updates-bottom +wnacg.com##img[width="399"][height*="6"] +@@||akamaized.net/*.m4s$xmlhttprequest,stealth=referrer,domain=bilibili.tv +seura.fi##.nativead:not(.list) +||dftoutiao.com/ssp/ +||trowthsrandia.shop^ +||wingontravel.com/Static/headerfooter/Content/js/masterpage. +||superqualitylink.com^ +bodychief.pl##.cookies__popup +gizmochina.com,prodesigntools.com###wpfront-notification-bar +naughtyamerica.com##.privacy-disclaimer +newrepublic.com##.inserted-housead +||slashstar.net^$popup +cloud.tencent.com##.com-event-panel +||sensifyfugged.com^ +||id.vk.com/floating_one_tap_auth$domain=pikabu.ru +thediplomat.com##.td-ad-container--labeled +||sina.cn/check? +###advert_banner +||oversightantiquarianintervention.com^ +sondakika.com##.detay-verisi-b +hostpro.ua##.hp-promo-container +##.adv-in-body +dajie.com##.envelop_layer +domaceserije.net##[id^="MyAdsId"] +||bhovrath.com^ +merckgroup.com##.new-cookie__modal +popcorners.com#$#.fancybox-overlay { display: none!important; } +||wizssgf.com^ +||irtya.com^$popup +kemaltanca.com.tr##.valuezon-opt-in +multiup.org###__admvnlb__modal_container +zhihu.com##.TopstoryItem--advertCard +nb.zol.com.cn##.article-cont > div.zol-eshop +scribd.com##.exclusive_trial_mode +ifkdy.com##.hb +||distinguishedshrug.com^ +||ooloptou.net^ +$domain=ads.adxadserv.com|adserver.juicyads.com|cs.adxpansion.com|olmsoneenh.info|static.javhd.com|syndication.exosrv.com +gazzetta.gr##.in_read_dfp +cobak.co.kr##div[class^="Popup__popup"] +||xkzzz.com/zb_users/plugin/MoreLinks/MoreLinks. +magi.camp#?#.editable-content > p:has(> a[href="https://app.adjust.com/ky2lbjf"]) +||iredindeedeisasb.com^ +||dosliggooor.com^$popup +epoznan.pl##a[href^="adsysClick?id="] +korsanedebiyat.com#$##popup-box { display: none !important; } +baike.baidu.com##.pinzhuanWrap +##.advertisement_container +xistore.by##.header-block-topb +@@||res.aidegelin.cn/dom2/js/app.js$domain=69xx03608.xyz +||ultetrailways.info^ +tsargrad.tv##.push-suggest__popup +rynek-rolny.pl#$#.modal-backdrop { display: none !important; } +thesprucecrafts.com#@##onetrust-consent-sdk +@@||audi.com.tr/*/modeller/$stealth=webrtc +fdoctor.ru#$##notificationCookies { display: none!important; } +||moradu.com^ +||chfpgcbe.com^ +classcentral.com###signup-slidein +@@||adobedtm.com^*/satelliteLib-$script,domain=samsungmembers.cn +techreen.com##.tr-block-label +||harassjav182.fun^ +visitukraine.today,parametrixinsurance.com,docsumo.com,sdi-muenchen.de,hearing-screener.beyondhearing.org,moebel-as.de,dji.de,boesendorfer.com,finnair.com##.cookie-consent-wrapper +||cndcfvmc.com^ +||sbseunl.com^ +##.inline-banner-ad +strawpoll.de###consent-overlay +tiendeo.com.tr##.s·footer-gdpr +pornpics.com##li[class*="r"][class$="-frame"] +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_$domain=gumtree.com +dailymotion.com#@#.ad_box +##.ads_300 +tu-darmstadt.de#@##cookie-modal +jiji-kue.com,wishdreamcompany.xyz##.main-column-inner > .rss-blogroll +tonsturm.com,silhouette.de##body > div.gatewayContainer:first-child +||crockuncomfortable.com^$popup +ctee.com.tw##.qxd +aaaauto.pl###site-bottom-bar-content > a[href^="/pl/callback_form.php"].smoothbox +||zxqiwe.cn^ +||eravesofefinegoldf.com^ +||zztxfj.xyz^ +||nfctoroxi.xyz^ +gizbot.com###lightbox-popup-ad +##a[href*=".cfm?domain="][href*="&fp="] +neos-easygames.com,synk-casualgames.com#@##ad_block +youramateurporn.com#?##videoTopCarousel:has(a[target="blank"][rel="nofollow"] > img) +||wcareviews.com/bv/ +x.com,pinterest.com##[id^="credential_picker_"] +||pvtest.zol.com.cn^ +login.ingbank.pl##.global-overlays__overlay[data-tag-name="cookie-banner-main"] +###sponsorBorder +autozeitung.de#$?#html.remodal-is-locked:has(> body) { overflow: visible!important; } +safenote.co##div[style^="margin-bottom:"].alert +||macx.cn/js/jquery.$domain=game.macx.cn +tokuvn.com#%#//scriptlet("abort-on-property-read", "goToURL") +vev.red,vidup.io#%#//scriptlet("set-constant", "Object.prototype.ads", "undefined") +18pornvideos.net##.content > .spots-wr +honor.com#@#.ad-wrap:not(#google_ads_iframe_checktag) +||alightbornbell.com^ +||performanteads.com^ +##.adbox_300x600 +||2bc767f6cc.ca3b526022.com^ +dailyfx.com###top-ref-box +rajsayt.xyz#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||buzzcity.net^$third-party +||supervideo.tv/tag$script +@@||digisupportdesk.com/index.php$stealth,xmlhttprequest +||foalwoollenwolves.com^ +spankbang.com##.livecam-rotate +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video-js.min.css$domain=rmfmaxxx.pl +youpornru.com###pbs_block +###ad_global_header1 +##.dual-ads +||tyhwheveeshngi.xyz^ +||31d6gphkr.de^ +getdirecto.com##.cookies-components +sberbankdirect.de#$#.cm { display: none !important; } +||bscscan.com/images/gen/*.gif +wst.tv##.footer-logos +||js1.dadiniu.cn^ +onlinefilm-hd.com###footer div[align="justify"] +###adPopover +/plugins/mts-wp-in-post-ads/*$script,stylesheet +itv.com##.seek-bar__ad +baidu.com##.top-banner-ad-wrap +sexy-youtubers.com##a[href^="http://aj1070.online/"] +escortbook.com##.escortbook_banner +sud.ua##.b-sidebar-adv a[href="http://www.sud.ua/click/2"] +tvchoicemagazine.co.uk#%#//scriptlet("set-constant", "showModal", "noopFunc") +news.zindaa.mn,24tsag.mn,zaluucom.mn##.banner +||untitled.dwstatic.com^ +||kaujouphosta.com^ +maxima.pt##.nextnews +@@||ahcdn.com/key=$stealth +pcgamer.com##.suggestionbox +3movs.com##div[class="3M-textlink"] +net.hr#?#.sectionTitle_wrapper ~ div[class^="css-"]:has(> div[class^="css-"] a[id^="placeholder_container_"]) +||literaturerehearsesteal.com^ +||ausoafab.net^ +solvusoft.com##.button-topper +costanorte.com.br##.hMpjTE +||shqipvision.com/js/blockadblock.js +bobs-tube.com##iframe[src*="bongacams.com/promo.php"] +qdmm.com,qidian.com##.qdRead_redscan +||5.wemakebestnews.com^ +aerotime.aero##.cs-entry__subscribe +##.FirstAd +||sevierxx.com^ +||api.cupid.qiyi.com/etx? +||ufeevhhnjilfeo.com^ +||unblockall.xyz/assets/js/script.js +sebeadmin.ru###scrollable +##.ad-below-post-title +fjallbrynt.se###itc-cookie-notify +hao.360.com###left-float-animation +webtips.dev##div[data-subscriber-ignore] +bongngotv2.net##div[class^="ab"] +opensubtitles.org#%#//scriptlet("set-constant", "hide_ads3", "1") +##.ad-shine-panel +stromnetz-hamburg.de#@##cookie-bar +lzacg.one#?#.content-layout .zib-widget:has(> .textwidget:only-child > a[target="blank"]) +||doostaiy.com^ +idnes.cz###r-super300 +||xpee.com/application//assets/scripts/sgunder.js +wenxuecity.com#?#div:-abp-has(>label[class^="adlab"]) +||historyactorabsolutely.com^ +||thangetsoam.com^ +titulky.com#$?##head_b { margin-top: initial !important; background: initial !important; } +thewindowsclub.com#?#article > .widget:has(> center > strong > a[rel*="sponsored"]) +thechive.com##.postup-form-wrapper +vergoelst.de#$?#body > div.ReactModalPortal:has(> div[class*="overlayModalCookieConsentVariant"]) { display:none!important; } +||1lj11b2ii.de^ +slacker.com#$#body > header { margin-top: 0!important; } +||isboost.co.jp^ +##.ad__container +awbi.in##.telegram-card +redgifs.com#$?#.previewFeed > div[id^="gif_"]:has(.MetaInfo-BoostedBtn) { remove: true; } +##.ad160_l +||saturatemadman.com^ +csgoob.com###ADback +ilm.ee##.thisad +tubeon.*#%#//scriptlet("prevent-window-open", "about:blank") +w4files.ws#%#//scriptlet("adjust-setTimeout", "link_button", "", "0.02") +##.header_advertisment +||falkag.net^ +shrm.org##.row-shrm-sponsors +||advertising.yandex.ru^$domain=d3ward.github.io +nekotoningen.blog.jp##div[class^="ldapp-link"] +kyeongin.com,olymp.com##.banner-newsletter +||brqhyzk.com^ +||themeulterior.com^ +||wuxibus.com/Image/title +||theusualsuspects.biz^ +tochka.by#?#.b-news-detail-body > p:has(> a[href="https://t.me/tochkaby"]) +||top-performance.top^$popup +vorek.pl#%#//scriptlet('prevent-setTimeout', '.offsetHeight') +||julefhgu.xyz^ +||webmedrtb.com^$popup +||pcwdld.com/SGNg95BS08r9.js +himovies.sx,moviesjoyhd.to##img[style="max-width: 728px; width: 100%"] +douyu.com##a[href*=".youzan.com"] +###adv-Middle2 +chinese-series.org###after-player-ads +todayonline.com##.tw-flex-shrink-2 +||damagedmissionaryadmonish.com^ +||slidecaffeinecrown.com^ +theinertia.com##.inertia-ad-300x250 +##.adBorder +@@||ok.ru/videoembed$stealth +||316feq0nc.de^ +denik.cz##.cookies-lista +sso-mil.ru##.inf-sw +||ws67eqwwp.pro^ +||wouvista.com^ +8ziyuan.com##.deanadsside +||asgccummig.com^ +||declarefollowersuspected.com^ +icentre.hu,azb-cuw.pl#%#//scriptlet('set-cookie', 'cookie', '1') +unique-tutorials.info,getintopc.com,solvetube.site,tech-platform.info#%#//scriptlet("set-constant", "qckyta", "false") +###articleBoard-ad +||beavertron.com^ +||argospelopid.com^ +||movesickly.com^ +||d17757b88bjr2y.cloudfront.net^ +||monkey.compulsivo.co^ +||3d78620f7e.be30660063.com^ +fotor.com#?##unic-gdpr:upward(2) +##.ad-top-300x250 +##a[href^="https://pubads.g.doubleclick.net/"] +titulky.com#%#//scriptlet("set-constant", "foolish_script_is_here", "noopFunc") +nownews.com##article > [class^="contentAd_"] +###ad_468x60 +mcoc-guide.com#@#ins.adsbygoogle[data-ad-slot] +###scroll_ad +||bing009.shop^ +conservativefiringline.com#$#body { display: block!important; } +nytimes.com##.pz-ad-box +vod.warszawa.pl#%#//scriptlet('trusted-set-cookie', '_c_a', 'required') +technical.city##div[style="padding-bottom: 20px"] > div[style="min-height: 250px"] +||programmer-club.com.tw/images/uuu/ +||ato.mx^ +@@||google-analytics.com/analytics.js$domain=mediamarkt.*,stealth,important +bartamanpatrika.com##.mybot-adcover +@@||xevode.net/embed-$stealth +www.wp.pl#%#//scriptlet("prevent-addEventListener", "wheel", "preventDefault") +zxzjtv.com##.container > .none +answers.yahoo.com##.ginsuAd +thebanker.com,vivino.com###cookie-notice-container +||baijs04.shop^ +||curledbuffet.com^ +||contact.aomg5bzv7.com^ +##.ads_place_top +darkreader.org##.vpnwelt +||mishapideal.com^ +regenzi.site,hegra.cam,migration.cam,reviewpalace.net,techplanet.cam,techland.live,gameplanet.cam,topgames.cam,techsoul.cam,gamehub.cam,gameland.click,gamestation.cam,gamezone.cam,gamesera.online,free-games.cam,top-games.live,gulftech.live,reviewhub.vip,reviewtech.me,pcreview.me##center > a[target="_blank"] > button[onclick="hideButton()"] +||cold-cold-freezing.com^ +timesofindia.indiatimes.com##.rgt_ad +||iobvmtx.xyz^ +||indiansgetfucked.com:8081/images/banners/ +||xiqougw.com^ +booklink.me,p9.com.tw###ad2 +decrypt.co##.opacity-75 +||gypperywyling.com^ +rappler.com##.cp-slider-popup +errx01USAHTML/?bcda=$document +||goodnightbarterleech.com^ +##.ad-m-banner +apherald.com##.top-story-list > li[style="height: 120px;max-height: none;"] +||mwcm.nytimes.com/capi/metered_assets/?plat=*&areas=welcomeAd +cian.ru##div[data-name="DealSaleBanner"] +spidersweb.pl##.newAd +9animetv.*,9anime.*##.mba-block +douyu.com##div[class^="recommendApp"] +||verysilenit.com^ +##.adBorders +inps.it,duplichecker.com,7pass.de,pfla.hu,porndoe.com###cookie_directive_container +||p8u.hinet.net^ +zhihu.com#@#.FollowButton +@@||cdn.trustcommander.net/privacy/*/privacy_v*.js$domain=lci.fr +##.ad-skyscraper1 +costco.com##.rm-grid-product +##.fs_ad +eenadu.net##.lcol-ad-block +mangarock.com#?#div.slick-track > div.slick-slide:last-child > div[class]:has(> div > a[href="/membership"]) +intelligenceonline.com#$#.modal-backdrop { display: none !important; } +m.qu.la#?#:-abp-has(> a[href*=".bcebos."]) +midiavip.com#$##portal[style] { display: block!important; } +||kolsh.cn^$third-party +filmibeat.com##div[id^="are-slot-"] +||cpgou.cn^ +||nsjyfpo.com^ +||s.magsrv.com^ +||paintplantation.com^ +daretoku-eromanga.info##.sidewinder-2 +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,xmlhttprequest,redirect=noopjs,domain=freebinchecker.com +##.cookie-warning +||learnenglish.britishcouncil.org/sites/all/modules/splashify/js/splashify_init_min.js +ltn.com.tw##div[class*="adHeight"] +###page_ad +banglatribune.com##div[id^="BT_Inner_R"] +@@||dnvodcdn.me/*/mp4$stealth,domain=iyf.tv +nuuuppp.*##body > div[class][style^="cursor:pointer;position:absolute;"][style*="z-index"] +tbxt.com###headad2 +pachinkopachisro.com#?#.plugin-memo:contains(オススメ記事(他サイト様)) +##.left_ad_container +||positivehealth.com/img/original/TopicbannerAvatar/ +colnect.com##.popup_holder +lenniu.com##.caClass +readonepiece.com##div > b +getyarn.io##.my2p +##.adHF +###related_ad +||rtb-apac.milkywase.com^ +||88lm03.com^ +##.textad +apteka.ru##.CookieNotify +||dadatuwz.com^ +nytimesn7cgmftshazwhfgzm37qxb44r64ytbb2dj3x62d2lljsciiyd.onion##.e12j3pa50 +||hilltopgo.com^ +shroomers.app##.alert-warning[style^="z-index:"] +/huya/main/widget/roomGg +hipets.com###__next > .MuiPaper-root.MuiPaper-elevation[style]:has(> div > div > div > a[href^="/polityka-prywatnosci"]) +##.inarticlead +##a[href*="/?intr="] +||6ca9278a53.com^ +||responsad1.space^ +||allsportsflix. +###alerte_cnil +590m.com,jdxiazai.cn,089u.com,306t.com,ctfile.com,474b.com,u062.com#?#.card:has(div[id="760ad"]) +pornsexer.com##.bottom-adv1 +bantyou.livedoor.biz##iframe[src="http://bantyou.livedoor.biz/frss.html"] +naval-technology.com##.gdm-recommended-reports +foreks.com##body > div.crzFix +||qjukphe.com^ +mboost.me#%#AG_onLoad(function(){var a=document.querySelector("#__NEXT_DATA__");if(a)try{location=JSON.parse(a.textContent).props.initialProps.pageProps.data.targeturl}catch(b){}}); +zeenews.india.com##.add-placeholder +||glokta.info^ +rekkerd.org#%#//scriptlet('set-constant', 'td_ad_background_click_link', 'undefined') +||anei.tv^$third-party +||login.rtxplatform.com^ +###ads-before-content +lightnovelpub.vip,lightnovelworld.com,lightnovelspot.com,webnovelpub.com,lightnovelpub.com#%#//scriptlet('prevent-setTimeout', '/(?:function)?\(\)(?:=>)?\{(?:(?!.*(add|remove)Class).*)\(.*"(?:(?!show|visible).*)"\)\}/') +usingenglish.com###header-leaderboard-ad +||install-check.com^ +banbye.com#%#(function(){try{"undefined"!==typeof localStorage&&(localStorage.getItem("npm-vuex")||localStorage.setItem("npm-vuex",'{"app":{"snackbarMessage":"","snackbarDelay":5000,"snackbar":false},"auth":{"user":{},"token":"","loginDialogDismissed":true}}'))}catch(a){}})(); +starwarsaddicted.it,wuyong.fun,26g.me,myqqjd.com,poapan.xyz,javboys.com,idevicecentral.com,fcportables.com,codehelppro.com#%#//scriptlet('abort-on-property-read', 'reqServers') +tinhte.vn#?#.root > header + div[class^="jsx-"].main:has(> div[class^="jsx-"] > div[id^="bling-"]) +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=radiozet.pl,important +leakedzone.com##.item:has(> .movie-item > a[href^="https://phpremium.com"]) +lequipe.fr#@#.text-ad +finnader.com,retireally.com,cryptomeloud.com,finveeally.com,finnanced.com,finviewvibes.com,moneysally.com,pikatees.com,itdmusics.com,mrfreemium.blogspot.com,userupload.in,xtremestream.co,pornleaks.in,viciante.com.br,zippyshare.cloud,note1s.com,rseducationinfo.com,coingraph.us,rsadnetworkinfo.com,encurtareidog.top,encurtareidog2.top,gogetapast.com.br,cazztv.xyz,nopay.info,adsy.pw,rssoftwareinfo.com,casperhd.com,7hd.club,onehack.us,bitcotasks.com,finclub.in,financeyogi.net,projectlive.info,itdmusic.com,bg-gledai.*,pepperlive.info,mgnetu.com,starlive.xyz,topsporter.net##body > style + div[id][class*=" "] +blog.insurancegold.in,blog.cryptowidgets.net#%#//scriptlet('set-constant', 'navigator.brave', 'undefined') +||189.cn/actpush/$popup,third-party +||fmmirep.icu^ +aetv.com,history.com,mylifetime.com##.show-newsletter-container +##.ads-by +doccheckshop.de##.cookie-bar-extended +||gullibleguitar.com^ +sxqjdy.com##.gg2 +||matchaix.net^ +##.hp-sectionad +||roewnand.biz^$third-party +indiaeducation.net##.newsletter_sub_wrapper +/^https:\/\/images\.hdmz\.co\/images\/[A-z]+\./$domain=putlocker.vip +flashscore.*,horseracing24.com,darts24.com,handball24.com,volleyball24.com,motorsport24.com,golflive24.com,baseball24.com,cricket24.com,icehockey24.com,basketball24.com,tennis24.com,diretta.it,livescore.in,soccer24.com,soccerstand.com,livesport.com,scoreboard.com###notifications-alert-wrapper +||occndvwqxhgeicg.xyz^ +pogolinks.space#%#//scriptlet('trusted-set-constant', 'dtGonza.playeradstime', '"-1"') +##.ads_468 +38.242.198.170##.ancr-group +hentaiworld.tv##.support-ad +||backfiremountslippery.com^ +##.side-advertising +cloudflare.com,surveymonkey.com##.eu-cookie-banner +||zigzagrowy.com^ +##.adds2 +||jable.tv/assets/images/wejo/$image +filepress.fun#%#//scriptlet('prevent-window-open') +natureweight.ru##.ulp-animated +.com/logo/logoxia.js +la7.it,sony.ua,sony.ru,priceless.com,gazzetta.it###_evh-ric +ecosia.org##.funnel-treedaybox +timesofisrael.com##.crm-post-module +||superprof.es/apuntes/wp-content/themes/sp_ressources/dist/videos/apprenez-a-la-maison-desktop.m4v +portalspozywczy.pl##body .ad:not(#style_important) +qingwk.com##.c-meiqia-wrapper +squarespace.com##body > .squarespace-banner +||1m72cfole.de^ +||expensivepillowwatches.com^ +||streetupwind.com^ +poczta.interia.pl##.app-promo-plywak +###cookieOverlay +###adSlot-dmpu +||combinedexterior.com^ +yahoo.com###yucs-top-ff-promo +/cpro/ui/* +inc.com#$#.announcement { display: none !important; } +gifs.com###gifsad +||dr8pk6ovub897.cloudfront.net^ +##.adsBoxTop +||oxkqeu.xyz^ +simpasian.net##.hideme +||foolishcounty.pro^ +helenair.com#?#.card > div.card-body:has(> div.caption-container p:contains(Download the App)) +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-loan-list-card +||solaranalytics.org^$popup +@@||vod-*=video/mp4$media,stealth=referrer,domain=animesonline.nz +/css/jquerymin*.js$domain=fullassia.com|assia.*|assia4.com|assia23.com|assia24.com +theverge.com,washingtonpost.com##.outbrain-wrapper +csdn.net##.advert-bg +fotocommunity.de#?#.site-main > div.vc_row > div.vc_row:has(> div.wpb_column > div.vc_column-inner > div.wpb_wrapper > div.index__newsletter) +ligazakon.net##.rowflex-col-subscription_sidebar +programmist1s.ru###profbuh_overlay +offshoreleaks.icij.org#$#.disclaimer-card { position: static !important; } +muenchnersingles.de#%#//scriptlet('trusted-click-element', 'div > button[label="Alle akzeptieren"]') +eprice.com.hk##.article__content > div[style*="text-align"] +||7junshi.com/static/red-envelopes.js +||operaserver.com^ +||boannred.com^ +||b235be2c38.a38fb9d969.com^ +irecommend.ru###cookies_ec_notice +##.adrect +||rssing.com/rpcg.js +||gtimg.com/newsapp_bt/0/1846661534/641 +||rootderideflex.com^ +1rnd.ru,0352.ua,44.ua,056.ua,032.ua,04868.com.ua,karelia.news,0154.by,0472.ua,048.ua,0512.com.ua,0522.ua,0532.ua,0552.ua,056.ua,0564.ua,061.ua,06153.com.ua,0642.ua,62.ua,7152.kz,7232.kz,city04.kz,inaktau.kz,inalmaty.kz,inastana.kz,inatyrau.kz,inkaragandy.kz,inshymkent.kz,kaskelenec.kz,qapshagai-city.kz,uralskcity.kz##app-cookie-consent-popup +news.biglobe.ne.jp##.push-bx +pri.org##aside.always-under.donate +||dressexpansion.com^ +moja-ostroleka.pl#%#//scriptlet('adjust-setTimeout', 'adBanner', '*', '0.001') +rnf.de##.privacy-popup-container +||trafficsan.com^$third-party +qq.com##.mod-ad-full +hupu.com###shihuo1111 +||yonelectrikeer.com^ +||drumfailedthy.com^ +themarker.com#%#//scriptlet("prevent-addEventListener", "load", "hblocked?returnTo") +ghxi.com##.entry-content > div[style^="position:"] +ubestgames.com,mixfreegames.com##.walk_video_leftad +||piaohua.com/js/yzz/$script +##.svg-icon + #player_pause +btime.com##.shop-guid +##.sponsored-article-widget +||hikrfneh.xyz^ +@@||audiotag.info/js/adblockDetectorWithGA.js +||loyalracingelder.com^ +scrolller.com##.vertical-view__column > .vertical-view__item:has(> div[style$="overflow: hidden;"]) +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=softonic.com +||maillist-manage.com^$third-party +##.commercial-unit-mobile-top +ultrasurfing.com#?##main > #container-top-stories:has(> .adsbygoogle) +###adverticum_r_side_container +9le8.com###program_play_right +1000mg.jp##div[class$="rss"] +||rtzbpsy.com^ +||toddlespecialnegotiate.com^ +sarenza.de##.notif-bar +||data.video.iqiyi.com/videos/other/*$xmlhttprequest,~third-party,badfilter +||d36gnquzy6rtyp.cloudfront.net^ +||easymrkt.com^$popup +||colorfulafterthought.com^ +###videoPauseAd +codesnail.com##.inside-right-sidebar > #custom_html-2 +||pathlime.com^$third-party +||fzlol.com/images/$script +||coolserving.com^ +||exhaustfirstlytearing.com^ +##.BottomAdContainer +hotspringsofbc.ca,studybullet.com##body > .clr + div[id][class*=" "] +||m9w6ldeg4.xyz^$popup +psm7.com##.psm-telegram-container +||denunciationsights.com^ +oekom.de,tvz-verlag.ch,dtv.de###wh_cookie_advice +forebears.io##.banner-h +||starredvs.com^ +informator.ua#?#.post__text > p:has(> a[href="https://t.me/informator_live"]) +||mosquito.birbs.art^ +||fliffusparaph.com^ +techedubyte.com,oatuu.org,ravenscans.com#@#.ad-placeholder +||ezjhhapcoe.com^ +||unoblotto.net^ +@@||my.leadpages.net^*/public/ +tp-link.com##.cookie-dialog +beurer-shop.de,rosenthal.de,juweliere-kraemer.de,casio-shop.eu,allywebsite.com,yourdictionary.com,ladenzeile.de###gdpr_banner +||ptoaltie.com^ +swzz.xyz##div[class^="italianews"] +plagiarismdetector.net###mio_mp_mg +*bet*.jpg$domain=037hdmovie.com,~third-party +||sinaimg.cn/cj/finance/forex/res/searchCallup.js +eprevodilac.com##.oglasi_sredina +||cdhfvrug.xyz^ +###rhs_ads +||porntube.com/nativeexternal/ +nicovideo.jp##.PreVideoStartPremiumLinkOnEconomyTimeContainer +###subheaderAd +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,important,domain=linetv.tw +||peephoogruku.net^ +||accountsdoor.com^ +insidehook.com,utilitydive.com,screamingfrog.co.uk,socialmediatoday.com##.signup +come-on.de#%#AG_onLoad(function(){setTimeout(function() {if(!document.cookie.includes("euconsent-v2") || !document.cookie.includes("trf-euconsent-v2")){var g=new MutationObserver(function(){var b=document.querySelector(".cmp-root-container")?.shadowRoot?.querySelector(".cmp-button-accept-all");b&&b.click();});g.observe(document,{childList:!0,subtree:!0});setTimeout(function(){g.disconnect()},1E4)}}, 1500)}); +wink.ru#?#header ~ footer + div[class]:has(> div[data-test="cookie"]) +||mendedrefuel.com^ +twitter.com,x.com##a[href*="src=promoted_trend_click"] +||dit-dit-dot.com^ +dahuasecurity.com##.top_tip_wrap +porn.com###cookie_message +||auneechuksee.net^ +||camsoda.com/promos/ +sportowefakty.wp.pl###scrollboost > div[class*=" "]:has(> div[class]:only-child:empty) +brainly.lat##.js-react-adblock-banner +svyaznoy.ru#%#//scriptlet('remove-class', 'android-banner-on-page') +thatsmybis.com##.ml-3.mr-3.p-3.bg-light.rounded +||platesworked.com^ +9to5mac.com##.single-custom-post-ad +eikaiwa.dmm.com##.banner-single-top +||ust-ad.com^ +##.ad-MediumRectangle +woolworth.de#$#body.modal-open { overflow: auto !important; padding-right: 0 !important; } +||hborq.com^ +##.tnt-ads-container +||candyprotected.com^$popup +||ruckingefs.com^ +kbb.com#@#.gpt-ad +###head-ad-text-wrap +||ddaixdz.cn^ +paradisehill.cc##.bb-0 +||prayercertificatecompletion.com^ +||kzcdgja.com^ +###ads_box1 +sythe.org##a[href^="https://discord.gg/dmwatch"] +##.ad300x250b +stopcor.org##.videoOfDay +@@||static.doubleclick.net/instream/ad_status.js$domain=techedubyte.com +landkreis-bautzen.de##.xm_matomo +||ultracdn.top^ +###cmp-app-container +dongknows.com##.dkt-banner-ads +cn-healthcare.com##.fh_ad_wrap +||newsfrompluto.com^ +##.header_top_ad +limetorrents.lol##a[href^="/leet/"] +||123lnk.com/post/jsx.js +||pliblcc.com^$third-party +||beneathgirlproceed.com^ +||fortpavilioncamomile.com^ +||8818.79j68qav2.com^ +###adver +||mournpatternremarkable.com^ +||carlosappraisal.com^ +readly.com#@#.cookie-consent-content +storm.mg##.storm_magic_placeholder +||vpnrice.com/a/p.js +becominghuman.ai,medium.com,plainenglish.io#?#div[data-test-id="post-sidebar"] ~ div:not([class]) div ~ div[class]:has(> div[class] > h2[class]:contains(/^Get an email|^Sign up for/)) +yenidonem.com.tr###ilangovtr +||ganglia.aomg5bzv7.com^ +anjuke.com##.list-item > .jx-sign +hongkiat.com##.promote +##.adsleff +##.trc_excludable +##.adisland +numista.com###right_pub +||po.quiresraviney.com^ +||netflix-thai.org/wp-content/uploads/*.gif +||irritatingfog.com^ +catholic.by###content a[href="https://t.me/catholicby"] +@@||static.surfe.pro/js/net.js$domain=allfaucet.xyz +||yavli.com^$popup +51yfx.com###tmall_1111 +federalnewsnetwork.com,texasmonthly.com##.promo-inline +gotohole.com##.player > a +tubeon.com##.puFloatLine +||z91f4.top^ +##a[data-href^="http://ads.trafficjunky.net/"] +##.bottom-ad-desktop +||c4d.cn/template/iscwo_zcool/iscwo/ad/ +###ad-leaderboard-atf +neuseeland-haus.de#$#div[id^="cookie-notice-lightbox-"] { display: none!important; } +/300-250. +||valuedalludejoy.com^ +###ads_leaderbottom +hespress.com###notification-popover-container +playjolt.com,gamessumo.com,myfreegames.net##div[style^="min-width: 728px; height: 90px; margin: 0 auto;"] +/cloud_theme/build/js/script.min.php$domain=clik.pw|shurt.pw +firefoxchina.cn##.ff-open +||owwogmlidz.com^ +||alicdn.com/img/ibank/*_1082732848. +||d.3dfetishgirls.com^ +-display-ads. +mcdonalds.pl##.cookie-messages +||gurynyce.com^ +myforecast.co#?#tr[align="left"] > td.normal:has(> a[href="https://apps.apple.com/us/app/id1533560725"]) +seiko-boutique.de#$#div[id^="popupbuilder-popup"] { display: none !important; } +##a[href^="https://www.highperformancecpmgate.com/"] +law.ed.ac.uk#@#.cookie-content +||11.y2sysv81v.com^ +||fdswrgg.cn^ +||utiq.hna.de^ +149.56.24.226###player-lux +||ynet.com/c/js/manto.min.js +##.nn_mobile_mpu_wrapper +||alphabird.com^ +how2electronics.com##[href^="https://www.nextpcb.com/"] +/300x600_ +/shehuik618cn/images/i.js +codes.com.ua,gov.hu,cbjinternational.com,garageequipment.co.uk,croatiaairlines.hr,trashinbox.net,proglib.io,trashmail.ws,spambox.xyz,rainmail.xyz,promokod.pravda.com.ua,proantic.com,tel.co.jp,higrosystem.com,tmail.io,ehime-u.ac.jp,webextension.org,dartshopper.it,emecze.pl,oddslivesport.com,tempumail.com,regionalmarke-eifel.de,mennicaeuropejska.pl,supermonety.pl,flowfitonline.com,kolejkowo.pl,disco-polo.eu,bleachpraylove.com,tempinbox.xyz,docmicro.com,kocailem.com,macnica.co.jp,adressmonster.de,bimibrocolis.pt,bimibrocoli.fr,bimiparsakaali.fi,bimi.es,bimibroccoli.*,bimibrokkoli.de,bimibrokkoli.no,fiberatlantic.com,europe-mountains.com,krs-online.com.pl,pap.pl,batimag.ch,hug-baustoffe.ch,mecze24.pl,usehead.ru,plugshare.com,brodrene.eu,taishukan.co.jp,fundacjapolsat.pl,wikibrief.org,bonuspiu.com.tr,order.wreckfestgame.com,brasty.de,goetheweb.jp,prodirectbasketball.com,safe-animal.eu,bangkokbiznews.com,thansettakij.com,komchadluek.net,springnews.co.th,nationtv.tv,tnews.co.th,myoffice.ru,hanet.com.pl,trzmiel.com.pl,1cgames.net,intellinews.com,esselunga.it,vitraglobal.com,uhren4you.de,mecze.com,unwire.hk,daiichisankyo-ep.co.jp,positronx.io,yoyogames.com,logsign.com,astra-honda.com,twist.com.tr,publi24.ro,bauernzeitung.ch,cerrahi.com.tr,lescon.com.tr,europa-lkw.de,kidega.com,kordsa.com,lisacharlotterost.de,lawebdelprogramador.com,lvr.de,ostsee.de,klinik-langenfeld.lvr.de,klinik-koeln.lvr.de,leitz-cloud.com,leib-immobilien.de,activex.com.tr,evyap.com.tr,kobiety.pl,straganzdrowia.pl,e-tesettur.com.tr,suzuki.ch,arkomen.com,deutsches-ausschreibungsblatt.de,negozi.fastweb.it,gaboras.com.tr,sygic.com,turkey.astonmartindealers.com,add0n.com,8gunhaber.com,proglib.io,antonimy.net,gamedot.pl,teamquest.pl,stema.istore.pl,findeks.com,kube.no,sklep.xerima.com.pl,vitra.com.tr###cookie +||talkingretail.com/wp-content/plugins/MBM-GDPR/assets/dist/js/MBM_GDPR.min.js +###verticalAds +vidsvidsvids.com#%#//scriptlet("prevent-window-open") +tweaktown.com##.adcon +igromania.ru##.knb-grid-container a[class^="YoutubeChannel_"] +||antjgr.com^ +fotka.pl,fotka.com###brd_profil +||haokoubei.top^ +##.sidebar-zergnet +tvbox.one#@#.homeadv +||viralize.tv/t-bid-opportunity/ +##.box_ad_content +||5068.com/*gg +hwupgrade.it###live-player +javseen.tv#%#//scriptlet("abort-on-property-read", "jsPopunder") +@@||statesman.com/section/widget-eedition-ads$domain=statesman-tx.newsmemory.com +@@||wikia.nocookie.net/*/css/*.scss$domain=fandom.com +fussball.de##.cookie-advise +##.ab-ad_placement-article +koat.com,wxii12.com#?#.article-content--body-text > .article-content--body-wrapper-side-floater:has(> .ad-rectangle) +btmovi.in##body > span[style] +appledaily.com##.article__header > div.platform-container +||go.pub2srv.com/apu.php$redirect=nooptext,important +||misbar.com/firebase-messaging-sw.js +||hrtye.com^$popup +||shinep.xyz^ +@@||cdn.optad360.net/cmp/$domain=cursorinfo.co.il +||poorlytanrubbing.com^ +||terraria-servers.com/assets/js/jquery.adblock-detector*.js +##.content-ad-widget +myptt.cc##p[style="padding:0;margin: 5px 0;color:#ff0000;"] > a[href][target="_blank"][style^="display:inline-block;"] > img +||glaurtas.com^ +in.fo,moovitapp.com#@#.ads-banner +deccoria.pl##body .dc-billboard:not(#style_important) +||widgets.opinary.com^$third-party +minilu.de###dcCookieHelper--bg +autofaucet.dutchycorp.space##.hide-on-med-and-down > div[style="text-align:center"] > a[onmousedown^="$(this).attr('href',"] +||affiliatesensor.com^ +newsnow.co.uk##.grid-column__container +bartinolay.com###siteAcilis8Saniye +##.ad_Bumper +||decencysoothe.com^ +||ad-adblock.com^$document +jornalopcao.com.br##.template-part-component-termos +||static.ad.logic-test.viasat.io^ +yokugames.com,cimaramadan.site#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +114la.com##.search_ad +||nylonnickel.com^ +||ads.audio.thisisdax.com^ +ccn.com#?#.theiaStickySidebar > #text-31:has(> .widget-title:contains(Advertisement)) +||1f87527dc9.com^ +wykop.pl##body .pub-slot-wrapper +thelingerieaddict.com#?#.sidebar-container > aside.widget:has(> div.textwidget > img[src*="-Signup"]) +###ad_wide +rawpixel.com##.cUYulH +npvua.com##.spu-centered +###ad-discover +blog.livedoor.jp##.rsstop +||ads3-adnow.com^ +duba.com##.bgOpen +##.adv300left +##.maomi-content > .section-banner +corrieredellosport.it##div[class^="Header_containerToast"] +freegogpcgames.com##div[id^="cookii-"] +agents.media##.post-article > p:has(> em > a[href="https://t.me/agentstvonews"]) +||comihon.com^ +newsthump.com#@#.custom-ad +partnerkin.com##.twidget +||gaujokop.com^ +fembed.com#%#(function(){var b=window.setTimeout;window.setTimeout=function(a,c){if(!/=setTimeout\(/.test(a.toString()))return b(a,c)};})(); +blick.ch#%#//scriptlet('trusted-click-element', '#onetrust-banner-sdk #onetrust-pc-btn-handler, #onetrust-consent-sdk .onetrust-close-btn-handler') +pcbway.com###Toptip +camp-fire.jp##.pc-banner +audiobookbay.is##[href="/ddeaatr"] +chemz.io##.menu_ad1Box +||paella.adrise.tv/*.mp4$redirect=noopmp4-1s +||woopeekip.com^ +femida.az##.news-st > .addthis_native_toolbox ~ br +rynek-kolejowy.pl##.popupElement +delfi.lt##iframe[src*="//track.adform.net/"] +valmano.de##div[data-component-id="comp_0000A142"] +iz.ru#%#(function() { try { if ("undefined" != typeof localStorage) { localStorage.setItem("player.live.current.volume", "0") } } catch (ex) {} })(); +-sidebar-ad. +in.techradar.com##style[type="text/css"] + div[class]:not([id]):not([style]):not([class*=" "]) +||channelvids.space^ +@@||truck1.eu/_BANNERS_/client/* +1000.menu#$#html[style*="overflow:"] { overflow: auto !important; margin-right: 0 !important; } +buhonline.ru##.bottomPopup +||static.creativethingsdoneright.top^ +bca.co.id#%#//scriptlet('remove-class', 'popup-disclaimer-show', 'body.popup-disclaimer-show') +||animeland.tv/zenny/ +counter.dev,lindaikejisblog.com##.da +1istochnik.ru##.news-sidebar-social +caixin.com##.incubator +##.element_contentad4 +||feelseveryone.com^ +||trpyceq.cn^ +analindiantube.com,asianbeautytube.com,maturespecial.com,holloporn.com###embed__pre +||lexozfldkklgvc.com^$third-party +||17173cdn.com^*/js/task/src/task/live/greenhand/ +||kvezz.com^ +||wnacg.*/zec/ +sporx.com###habershare +infobel.com#%#//scriptlet("set-constant", "canRunAds", "true") +33am.cn##.bd_980_90 +/hndxweb/push$popup,third-party +m.hindustantimes.com##.recommended-list > ul > li:empty +gamepur.com##.region-sidebar-second-top > .block:not(#block-quicktabs-content_comments) +first-class-and-more.de,bankstoday.net###subscribe_widget +@@||google.com/recaptcha/enterprise/ +/adhtml/* +||hegeju.xyz^ +mnw.cn##.mnw_960 +163.com##.redpacket-footer +||heavyfetish.com/contents/oyeetirbhzpn/player/Vicetemple_PornX.mp4 +bbc.com,bbc.co.uk##div[class*="-ConsentBanner"] +/cookieCompliance.js +hinative.com##.mod_header_horizontal_app_banner +independent.com.mt#%#//scriptlet('set-cookie', 'ShowCookiePolicy', 'False') +hostelworld.com##.gta-fixed-wrapper +||falcon.executeprogram.com^ +5278.cc###rightside_banner_top +||reposefearful.com^ +||overlookrapt.com^ +||ylx-4.com^ +||ablitleoor.com^ +##.leaderboard-ad-module +||hectorfeminine.com^ +###stickyleftad +yxdown.com###tl_adv +||impostorjoketeaching.com^ +||wolverine.jhdierenklinieken.nl^ +georg.at#$#.cc { display: none !important; } +||stream.offidocs.com/images/*-banner +||blastworthwhilewith.com^ +zr.ru##div[class^="styled__StoryNoteSubscribe"] +clickhole.com,lifehacker.com,splinternews.com,avclub.com,deadspin.com,gizmodo.com,jalopnik.com,jezebel.com,kotaku.com,qz.com,theinventory.com,theonion.com,theroot.com,thetakeout.com##.js_newsletter-form-inline +||timetoagree.com^ +sadistic.pl#%#//scriptlet('remove-class', 'add-opacity', 'body') +anires.ru##.preview_logo +##.right_ad_wrap +||betterdirectit.com^ +moduscreate.com##.gdpr-show +##.banner_240x400 +silverspoon.site#@#.adsbyvli +||obtainedcredentials.com^ +||oubeliketh.info^ +freep.com##header ~ main form[aria-label^="Sign up for newsletter"] +sports-stream.*,tv-sport-hd.com###reklama1 +##.right_adskin +##.widead +mecze.com##.cool-stuff +tripsonabbeyroad.com##[href^="https://tp.media/"] +||tunein-od.streamguys1.com*/bump_sonic_pre.$media,redirect=noopmp3-0.1s +||ax4.xmoviesland.com^ +||pornconversions.com^$third-party +##.cookie-permission +naobzorah.ru###shopBlock +||dywolfer.de^ +||imperturbableawesome.com^ +##.mar-leaderboard--bottom +novaposhta.md#%#//scriptlet('set-cookie', 'legal_consent', 'true') +cmyip.com##.jumbotron > a[href^="go/"] +vivirenelpoblado.com#?#.wpb_wrapper > div.td_block_wrap:has(> div.td-fix-index a[href^="https://news.google.com/publications/"]) +screencrush.com,tasteofcountry.com#$##site-menu-wrapper > .logo { display: block!important; height: 50px!important; } +globalnews.ca##body div.c-ad +crsed.net##gj-cookie-prompt +||cmqxy.cn^ +gameinfo.io,mangatar.framiq.com,skargards.com###cc_dialog +##.leftbar_ad2 +@@||mobdisc.com^$stealth +t.cj.sina.com.cn###sina-cont000 +dolap.com#$#.fancybox-lock { overflow: auto !important } +||foreveryoung.gz01.bdysite.com^ +||utilizepersonalityillegible.com^ +happymag.tv##.article-header-ad +##.pads_bulk_widget +||psoopirdifty.xyz^ +||ok.forwank.com^ +winwin7.com##.xzbox-lf +##.widget_adace_ads_widget +zeroupload.com##.download-page a[rel="noopener"] > img +||nice.tranny.one^ +allscrabblewords.com,famously-dead.com,famouslyarrested.com,famouslyscandalous.com,mpog100.com##.ad2 +||shainsie.com^$popup +unilad.com#?#div[class*="StyledArticle-articleBody"] > div[class^="css-"]:has( > div[height="1em"] > div[class^="css-"]:empty) +nar.sp.netkeiba.com#?#.Wrap > div[style].HeadBnrWrap:has(a[href^="https://netkeiba.onelink.me/"]) +||cdn.jsdelivr.net/gh/*/js/AdsenseAds.min.js +||bmcdn1.com^ +18avtube.com,adultwefong.com,aicoin.cn,aicoin.net.cn,avmimi.com,fsdpp.cn,ip138.com,mangahax.com,mm-cg.com,sports.qq.com,suopao.org,timecn.cn,txzqw.me,youxi.baidu.com###banner +klops.ru##.topic-subscription-panel +17yy.com###addiv +##.adx-300x600-container +##.ad_crown +||eduad.baidu.com^ +||dwene4pgj0r33.cloudfront.net^ +wtp.waw.pl##.page-consent +englishdom.com##.js-gdpr-tooltip +||d38190um0l9h9v.cloudfront.net^ +||searchenginejournal.com/wp-json/sscats/v2/stext/seo +caras.uol.com.br###leadme_bottomstripe_wrapper +notizie.tiscali.it##div[style="width:100%"] > div[style="margin:44px 0px"] +||asandcomemu.info^ +cdromance.com,colombiareports.com,miloserdov.org,mostlyblogging.com###custom_html-14 +||freezeanything.com^ +businessinsider.com##.targeted-recommended +minnpost.com###block-21 +||jarguvie.xyz^ +toolss.net#%#//scriptlet('prevent-setTimeout', 'testAd.offsetHeight === 0') +screencrush.com##.newsletter-frame +bionic.co.uk#$#.cookie-mask { display: none !important; } +||sharppatch.com^ +onlinedown.net##.m-safedown-center +||longarctic.com^ +swgoh.gg##.ad-item +visvitalisbg.com##.bottom-freezed-bar +||s.zlinkp.com^ +||onenetworkdirect.net^ +||vidoomy.com/api/adserver/ +compleatgolfer.com,sacricketmag.com###slidein +marketrealist.com###Track\.End + div[class] +kurkul.com##.text_news > div.widget_image-vertical +@@||1qwebplay.xyz/*.php$stealth=referrer +keywin.org##.pindaolist +bongacams26.com,bongacams19.com,bongacams18.com,bongacams11.com,bongacams.net,adultcams.me,adultchat2100.com,alphafreecams.com,bimbolive.com,bongacam.net,bongacam.org,bongacams-chat.ru,bongacams.com,bongacams.eu,bongacams2.com,cammbi.com,prostocams.com,r2games.com,royalcams.com,smutcam.com##.push_notification_alert +allconnect.com##.nudge-notification +naturitas.es#$#.dialogBg { display: none !important; } +||luxestassal.shop^ +||viewtraff.com^$third-party +@@||iubenda.mgr.consensu.org/bridge/*$domain=video.lastampa.it +petapixel.com#?#.posts > .is-elsewhere:has(> .post-preview__excerpt > p > a[rel="norewrite follow external noopener noreferrer"]) +hyundai.hu###cookies_information +bumudur.com###wboxA +||hlegsdh.icu^ +eundl.de#@##cookie-info +||data.bvsrv.com^ +##.widget_better-ads +sports.ru##.sports-apps-promo +@@||static.h-bid.com/prebid/*/prebid.js$domain=makeuseof.com +murdocklondon.com#$#body.cookie-msg .page-header { top: 0!important; } +||framentyder.pro^ +@@||marketplace.xbox.com^$document +knowt.com#?#body div[class*="container"] button:contains(remove ads):upward(div[id][class^="breakpoints_mdDownDisplayNone"]) +kijiji.ca##[data-testid="adsense-container"] +fups.com#$#body[style*="overflow:"] { overflow: auto !important; } +jable.tv###site-content > div.container > section.pb-3.pb-e-lg-40.text-center +||s.remonti.org^$third-party +@@||crowdcompute-pa.clients*.google.com^$stealth +||genesismedia.com^ +||39.net/js/wt.js +lyricstranslate.com#$##content-inner > #content-top { min-height: 0 !important; } +||s3.amazonaws.com/*?subaff=*&subid_short=$all +||iutur-ixp.com^ +cengizlermarket.com,pricelulu.co.uk,teknotalk.com,pekcazip.com,ozbaymobilya.com,checkdomain.de,checkdomain.net##.notification-wrapper-bottom +nmb48-mtm.com,dev904.blog.fc2.com,origin873.blog.fc2.com##.rss-area +||longlakeweb.com^ +||offerforge.net^$third-party +codexworld.com##.SidebarBox_subscribe > h5 +vippsmobilepay.com##.Cookiebox +||exe.io/files/cplylive.js +reverso.net##.top-horizontal +uploadmall.com#%#//scriptlet('set-constant', 'navigator.brave', 'undefined') +||cdngain.com^ +||cfos-emobility.de/js/cfos.1.71.js +upi.com##.ad_slot_inread +mnogoradio.ru##.no-adb +##.ad_200 +||stilaikr.com^ +||stakingbasket.com^ +sourceforge.net#?#article.main-content > div.m-kmu:has(.subscribe-tagline) +||wdt9iaspfv3o.com^$popup +##.block-ad-header +interia.pl##div[width] > div[class^="sc"][style*="overflow: auto;"]:has(> #feed_grupa:only-child > div > .ad) +cinejosh.com#$#body { overflow: auto !important; padding-right: 0 !important; } +||viiaoqke.com^ +||qtoxhaamntfi.com^ +||publift.com^$third-party +games.washingtonpost.com##.HomeCategory__ads___aFdrmx_3 +||nhgpidvhdzm.vip^ +fansonlinehub.com,teralink.me,teraearn.com,terashare.me,hotmediahub.com,terabox.fun#?##app div.overlay:has(> div.modal > div.dialog-ad-box) +retrip.jp##footer-induction:has( > div[class]:only-child > section:only-child > ul > li:only-child > a[href*="redirect_app"]) +zcool.com.cn#@#.advtop +recipe-blog.jp##.bannerApp +3sat.de#$#.smartbanner-show .o--epg .epg-content .options-bar { top: 2.9375rem !important; } +||xlckxtyqntt.xyz^ +||freewheel-mtgx-tv.akamaized.net/*.mp4$domain=play.tv3.lt,redirect=nooptext,important +speechnotes.co#$##app_container[style^="right:"] { right: 0 !important; } +cavalierdaily.com#$##cav-generic-modal { display: none !important; } +yeyemo4.com,yeyemo5.com,yeyemo6.com,yeyemo7.com,yeyemo8.com,yeyemo9.com,yeyemo10.com##center > a[target="_blank"] > img +carsales.com.au,technobuffalo.com##.page-header +||amazon-adsystem.com/widgets/$important,domain=soccerstreams-100.tv +||republicmonitor.com/images/lundy-placeholder.jpeg +||0040.5clo0xmbf.com^ +||zillastream.com/api/spots/ +||whuweehy.xyz^ +||hxsxw.com/hx8899/ +||includeoutgoingangry.com^ +lisamorganmoore.com###secondary > #widget_sp_image-4 +shootz.io###respawnDiv > center > div > div[style="width:336; height: 280; background-color: #000; display: inline-block"] +arabiaweather.com#$#.overflow-hidden { overflow: auto !important; } +||floccischlump.com^ +||mnfhxszj.xyz^ +##.adrevtising-buttom +##.advertisement-container +||disgustedawaitingcone.com^ +pussy.org#%#//scriptlet("prevent-window-open") +pc-builds.com##.ez-banner +englishclub.com##div[style^="min-height: 280px;"] +teamos-hkrg.com##.p-body-inner > center > div > a[href][target="_blank"] > img +crash.net##.block-ad-manager +||floraopinionsome.com^ +legionisci.com##div[class^="ad-rectangle"] +||aeryt111.fun^ +buhexpert8.ru###reg-popup-form-overlay +||goupu.org/1files/*.htm +oknamedia.ru##.social-media-and-subscription-buttons +fleurop.de#$#body { overflow: auto !important; padding-bottom: 0 !important; } +tuwan.com##.Video-r-ad +||iframe.porndudegirls.com^ +||ltengronsa.com^ +||rising.cn/rxbox/ +||linkbuddies.com^ +meming.world#$##memingsubscription-telegram-popup { display: none!important; } +rebates.jp###content > div[class^="css-"]:empty +||95590.org/v1. +russianemirates.com##.news-lat +wowhead.com##.premium-promo-row +oko.sh#$#.banner-inner { display: block; width: 0 !important; } +##.ad_leaderboard +diariodecuba.com##.newsletter-social-wrapper +||fbfec2.xyz^$document,popup +incident-wo.com,nandemoiiyoch.com###custom_html-13 +gazettetimes.com,missoulian.com,kenoshanews.com,cumberlink.com,trib.com,dailyprogress.com,stltoday.com,journalstar.com##.ad-col +||japanbros.com^ +||marmot.theshootingcentre.com^ +||hhju87yhn7.top^ +||zzapolowy.com/wp-content/uploads/*/lv-bet-300x600-pakiet-powitalny.jpg +bookworld.no#@#a[href^="https://ndt5.net/"] +forum.nasaspaceflight.com##[style="text-align:center; margin-bottom:30px;"] +##.banner-125 +petco.com##[class*="SponsoredText"] +strato.de,strato.nl###eu-cookie-guideline +jb51.net##.gsdw +epwk.com##.head_banner +@@||rubiconproject.com/prebid/dynamic/$script,domain=ask.com|journaldequebec.com +||cdn.faptitans.com/s*/rc/logo.jpg +##.middleAdLeft +||nqslmtuswqdz.com^ +||wnacg.com/1sdfdc1/500_60-1.gif +@@||techperiod.com/wp-content/cache/min/*/wp-content/themes/TechPeriod/js/ads-*.js +||chicoryapp.com^$third-party +##.in-thumb-ad +||freezereraserelated.com^ +||vmvajwc.com^ +||adhigh.net^$third-party +winaero.com#%#//scriptlet('abort-current-inline-script', 'jQuery', '/\.innerHTML[\s\S]*?(R[ЕE]COMM[ЕE]ND[ЕE]D|to fix Wind[оo]ws|\.parentNode\.insertBefore)/') +||uhwwrtoesislugj.xyz^ +##.ads-top-main +||jonaswhiskeyheartbeat.com^ +memeburn.com,ventureburn.com##.wrapper--grey +||consumerzero.com^ +javbangers.com##.topnav > li > a[onclick][href] +roblox.com##.abp +###footer-sponsors +mrsportsgeek.com##div[class="container"] > .row > .col > .jcarousel-chriswrapper +##.wcAd +||cloudfront.net/css/*.min.js$script,third-party +##.ad-s +||operationalcocktailtribute.com^ +@@||web.telegram.org^$generichide +###top-advert +||rtb-eu-v4.cpmme.com^ +pzpn.pl##.viia-cookie +||opalmetely.com^ +||samsungtvads.com^ +hentaivn.net##.qc_main +avmeme.com#?#.align-items-start > a[href="https://3dayseo.com"]:upward(1) +huawei.com##.huawei-bootom-cookie +||kerchenovias.com^$third-party +||shop.degussa-goldhandel.de/*/Wamoco_CookieConsentUi/ +tokopedia.com##[href$="src=topads"] +||toreddorize.com^ +||sub2.avgle.com^ +actu.orange.fr#%#//scriptlet('prevent-addEventListener', 'DOMContentLoaded', 'InactivityPopin') +||chinanews.com/ad2019/wujiu_ad.jpg +hentai2read.com##div[data-type="leaderboard-top"] +||suchbasementdarn.com^ +||prngpwifu.com^ +||topagrar.pl/files/js/ado.js +audiobookbay.is##a[href^="/dl-14-days-trial"] +||frtya.com^$popup +##.adzone_skyscraper +||299dcc6f32.d37914770f.com^ +||warfarerewrite.com^ +energetyka24.com,space24.pl,cyberdefence24.pl,defence24.pl,defence24.com##.partners-module +psmag.com##body > div.m-interstitial +turcolegal.com#$##cookie-law-info-bar { display: none !important; } +||xclicks.net^ +ysokuhou.blog.jp##div[style="padding: 10px; margin-bottom: 10px; border: 1px dotted #333333;"] +legit.ng,tuko.co.ke##.c-adv +||writerhand.com/assets/js/unblock.js +##.ADVFLEX_250 +||royal-cash.com^$third-party +||w94.1qlgi.top^ +###bw_cookiechoice +||wesmallproclaim.com^ +##.break-ads +@@||sdk.privacy-center.org^$domain=publicsenat.fr +yandexcdn.com#%#//scriptlet("prevent-window-open") +eurogirlsescort.com##.banners-inpage +||contentshamper.com^ +ocado.com##.supplierBanner +||yldmgrimg.net^ +muzhi.baidu.com##.wgt-best-answer + script + div +al.com,cleveland.com,lehighvalleylive.com,masslive.com,mlive.com,newyorkupstate.com,oregonlive.com,pennlive.com,silive.com,syracuse.com##.revenue-display +picbaron.com,imgbaron.com##a[href="https://forum.picbaron.com"] > img +||adzerk.net^$third-party +||sukneyu.com^ +bwin.com##.cookie-consent-message +||ldipsuml.top^ +###midrect_ad +moulik.cz##.col-xl-fixed-right:has(> div[class]:only-child > .aab-lite:first-child + div[id*="-square-"]:last-child) +||realvu.net^ +@@.png#$domain=3dpchip.com|9zvip.net|club.tgfcer.com|coolinet.com|d1-dm.com|digit77.com|e9china.net|upxin.net +@@||googletagservices.com/tag/js/gpt.js$domain=allestoringen.be|allestoringen.nl|downdetector.ae|downdetector.ca|downdetector.cl|downdetector.co.nz|downdetector.co.uk|downdetector.co.za|downdetector.com|downdetector.com.ar|downdetector.com.au|downdetector.com.br|downdetector.com.co|downdetector.cz|downdetector.dk|downdetector.ec|downdetector.es|downdetector.fi|downdetector.fr|downdetector.gr|downdetector.hk|downdetector.hr|downdetector.hu|downdetector.id|downdetector.ie|downdetector.in|downdetector.it|downdetector.jp|downdetector.mx|downdetector.my|downdetector.no|downdetector.pe|downdetector.ph|downdetector.pk|downdetector.pl|downdetector.pt|downdetector.ro|downdetector.ru|downdetector.se|downdetector.sg|downdetector.sk|downdetector.tw|downdetector.web.tr|xn--allestrungen-9ib.at|xn--allestrungen-9ib.ch|xn--allestrungen-9ib.de +||ad.linksynergy.com^ +prensariomusica.com##.rgpd-leyend +addendum.org#$#body { overflow: visible !important; } +coolblue.be#$#.cookie { display: none !important; } +@@||promo.zendesk.com^$xmlhttprequest,domain=promo.com +||eyewonder.com^$third-party +iltalehti.fi##.iltalehti-newsletter-popup +so.com##li[data-cpc_query] +||bitrec.com/*-prod-services/js/recommender.js +##.partner-ads-list +cbr.com#%#//scriptlet('remove-cookie', 'unauthenicatedArticleLimitReached') +||gtitcah.com^ +||triangletribune.com/cache/sql/fba/ +thelogicalindian.com##.news_letter_box +oryouri.2chblog.jp,mindhack2ch.com##.article-rss +getcopy.link,123movies.*##body > div[id$="Overlay"][style^="opacity: 0.85; cursor: help;"] + div[class][id][style^="padding-bottom:"][style*="position: fixed; width:"] +||cdn.shopify.com/extensions/*/tiny-cookie.min.js +||shesubscriptions.com^ +maxcheaters.com##.ipsResponsive_inlineBlock > a[href*="advert"] > img +||ainsyndication.com^$third-party +||inventionyolk.com^ +||a.redd.porn^ +aii.sh#%#//scriptlet("prevent-window-open") +digikitz.net#$#html { overflow: visible!important; } +||media.salemwebnetwork.com/adverts/advertisement.js$redirect=noopjs,domain=biblestudytools.com,important +truyengihotnhat.com,rule34hentai.net,zinchanmanga.com,streamhub.to,javstream.com,sxyprn.net,tokyomotion.com,mrjav.net,yurineko.net,azel.info,clip-sex.biz,justpicsplease.com,mihand.ir,nudecelebsimages.com,overwatchporn.xxx,xnxxw.net,xxxymovies.com,nozomi.la,nhentai.to,masahub.net,vidsgator.com,nudostar.com,slutmesh.net,movieffm.net#%#//scriptlet('abort-on-property-write', '__aaZoneid') +pixalate.com#?#.widget-type-cell > div.row-fluid-wrapper:has(> div.row-fluid > div.widget-type-cell > div.row-fluid-wrapper > div.row-fluid > div.widget-type-cell > div.row-fluid-wrapper > div.row-fluid > div.widget-type-blog_subscribe) +supercars.com##.footer-promo +||sutterflorate.com^ +search.yahoo.com##.searchRightBottomAds +lulucos.jp##.GlobalAppDL +thebetterindia.com##.tbi-gtap-notification-overlay +bongda.com.vn##.adv +||androidheadlines.com/wp-content/uploads/2020/04/AH-Latest-Tech-Deals-Wide.jpg +||divetroubledloud.com^ +||plexop.net^$popup +mhn.quest#%#//scriptlet('prevent-setTimeout', '/\.adblock|monster-home/') +||remoifications.info^ +gfinityesports.com##.mediavine_sidebar-atf_wrapper__ad-placeholder +biguz.net###under +||kfpnqug.cn^ +baidu.com###exp-fixed-bottom +||constitutekidnapping.com^ +gizchina.com##.vwspc-section-sidebar > .vw-sticky-sidebar > div[id^="text-"]:not(#text-29) +elama.ru#$#.jquery-modal { display: none!important; } +||s1.wp.com^$subdocument,third-party +##.ad_1000x90 +freeyou.ag#%#//scriptlet('remove-class', 'fixed-body', 'body,html') +muharebetarihi.com#%#//scriptlet("abort-on-property-read", "addMultiEventListener") +||mail-ads.google.com^ +ekd.de,blog.mozilla.org###newsletter-subscribe +estudyme.com#@#ins.adsbygoogle[data-ad-slot] +||mywondertrip.com^$popup +||fjqcqdr.icu^ +chronicle.com#%#//scriptlet('remove-attr', 'hidden', '.ArticlePage-articleContainer > .ArticlePage-articleBody.contentBody') +kpanews.co.kr#@#.ad_top +bravotube.net,bravoteens.com,pornoaffe.com,hd-pornos.net##.vjs-overlay +||wbnbocz.xyz^ +||a.91nets.cn^ +elconsolto.com,masrawy.com###izooto-optin +cinra.net##.p-newsletter +||camads.net^ +||rebindskayoes.com^ +||l1native.com^ +||shealapish.com^ +nypost.com##.widget_text.no-mobile.box +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=mariogames.be +||inabsolor.com^$popup +##vg-pause-ads +||1.zou114.com^ +||ntlysearchingf.info^ +||flowsearch.info^ +||ogfbe.net^ +simsdom.com##div[id^="adv"] +terrashop.de,arvelle.de###cookie_note_div +deepfake-porn.com,x-picture.com##.happy-sidebar +tion.ru###subscribe_bird +emuokunmaster.com##div[style="width: 1225px; height: 267px; margin: auto; text-align: center;"] +||cdn.rawqel.com^ +anyporn.com,bravotube.net##.inplb3x2 +||video.ibm.com/socialstream/$domain=myoplay.club +##._ggs +goodreads.com#$?#.Overlay--floating:has(> div.Overlay__window > div.Overlay__content > div.LoginInterstitial) { remove: true; } +taftcoffee.com###wa-chat-btn-root +@@||inven.co.kr^$stealth=ip +||photo2.tinhte.vn^$domain=live7.vebo3.org +||assets.presearch.com/backgrounds/ +scotsman.com###sidebarMPU1 +@@||imds-professional.com/wp-content/plugins/complianz-gdpr/assets/js/cookieconsent.min.js +||img2.win007.com/image/*.jpg +thewindowsclub.com###text-422067553 +underarmour.*,lululemon.*###emailPopupModal +/mads.php? +||secondlyundone.com^ +wsls.com##.floatingWrapper +porngun.net###player-container > #video-pause +technobuffalo.com##div[class="post third overflow"] +||adgebra.in^$third-party +||jumptap.com^ +||163.com/special/*=ad_ +||oi.fapnow.xxx^ +manager-magazin.de###mmPlusBanner +spidersweb.pl##.app-adBox +##.outbrain__main +kartoteka.ru##.callback-container +last.fm##.nag-bar--language-mismatch-prompt +navigium.de#$?##placeholder > div.modal:has(div.modal-header > h5:contains(Cookies)) { display: none!important; } +myfoxzone.com,wtol.com,5newsonline.com,fox61.com,wthr.com,wqad.com,fox43.com,10tv.com,localmemphis.com,newswest9.com,weareiowa.com,krem.com,kcentv.com,cbs19.tv,kiiitv.com,12newsnow.com,cbs8.com,kvue.com,wbir.com,wltx.com,wgrz.com,newscentermaine.com,whas11.com,ktvb.com,13wmaz.com,firstcoastnews.com,wnep.com,wtsp.com,wfaa.com,kgw.com,king5.com,wcnc.com,kens5.com,ksdk.com,khou.com,wusa9.com,abc10.com,wwltv.com,11alive.com,wfmynews2.com,thv11.com,9news.com,wkyc.com,wzzm13.com,kare11.com,13newsnow.com,12news.com#$?#div[data-module="grid"] > dialog[data-name="exitInterstitial"] { remove: true; } +oberbank.at,hisarhospital.com##div[class^="dt-cookie-"] +||1342a.com/js/jquery.js +elama.ru#$#body { overflow: visible!important; } +||copyrightcontent.org/unblocker/ub/$domain=finchtechs.com|imginn.com|manithan.com +##.field-59-companion-ad +javhd.com##.benefits-list-holder +###upper-ads +||yaojingweiba.com/inc/ +xxxdl.net##div.in_thumb.thumb +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=get.x-link.pl +51cto.com#@#.addarea +||vulnerablebreakerstrong.com^ +||ileeckut.com^ +||mnwor.xuanlishi.com^ +oncehelp.com#%#//scriptlet("prevent-window-open") +360kuai.com##.g4.undefined +||d3ohee25hhsn8j.cloudfront.net^ +profuture.co.jp##div[class^="bnrApp_"] +apachecn.org###coo_banner_WideScreen +||6w4ddqwxuy0r3rnq.l5eamr17d.com^ +@@||liveindex.org/wp-content/plugins/imedia-basic/*.js +||icebergindigo.com^ +papahd.club,papahd1.xyz##button[onclick*="bitbillionaire.live"] +swisscows.com##.home-link-instruction +coingecko.com##div[data-controller="navbar"] a[href^="https://coingecko.app.link/"] +||jhpxlyd.cn^ +kissasian.*###leftside > div[style="margin-bottom: 10px; overflow: hidden; width: 728px; height: 90px;"] +@@||cmoney.tw/vt/js/google_analytics.js +washingtonpost.com##div[class*="pb-f-ad-leaderboard"] +blog.themarfa.name#?#.sidebar > div.sidebar__block:has(> div.sidebar__social) +fusionmovies.to##.selected_box_title > .preloaderSmall ~ [class][style*="position: absolute;"][style*="transform:"] +||tapdb.net^$popup +bitcatcha.co.id##.stickypl +stream2watch.co##.fpl +||ar1nvz5.com^ +||byfoongusor.com^ +##.ad300b +||designeropened.com^ +yts.mx##.dfskieurjkc23a +||sing-tracker.com^ +emptycode.in,sachiepvien.net,libri.link#%#(function(){var b=document.addEventListener;document.addEventListener=function(c,a,d){if(a&&-1==a.toString().indexOf("adsBlocked"))return b(c,a,d)}.bind(window)})(); +||162.252.214.4^ +unknowncheats.me###bab +seputarforex.com##.need-share-button +peoplematters.in##.alertBar +||tatrck.com/redir/clickGate.php$popup +||advertiseimmaculatecrescent.com^ +||atinsolutions.com^$popup +||a.adsession.com^ +||iccjkn.icu^ +||83761158.xyz^$document,popup +||yotta.scrolller.com^ +niebezpiecznik.pl##footer > a[href^="https://niebezpiecznik.pl/"][href*=".php"][target="_blank"] > img +armidaleexpress.com.au#$#.top-0.sticky { top: 0 !important; } +||actionisabella.com^ +@@||113.com.tw/www/image/index-ad.png +@@||pagead2.googlesyndication.com/pagead/managed/js/adsense/*/show_ads_impl_*.js$domain=zefoy.com +commerzbank.de,billiger-telefonieren.de###uc-central-banner-modal +glaubensstimme.de,gwdg.de,openwrt.org##.cookielaw-banner +melectronics.ch##.iA-DTEA +||googlevads-cn.com^ +||g6j.cupidonmedia.com^ +journals.asm.org##.boombox-wrapper +eurofamily.hu#$##gdpr_modal { display:none!important; } +hejalbert.pl##div[class^="styles_popup_"] +360kan.com##.info-flow__ad +@@||computeruniverse.ru/lib/ads.js +##.contentad-superbanner-2 +mastercomfig.com##.text-start[style^="background:"] +||android.aomg5bzv7.com^ +eprice.com.tw##.ad-970x90-g +gamekings.tv##.addblocker-detected +###ad336 +ticketco.events##.tc-cookies-message +playground.ru#$#.modal-open .modal.in.js-game-rating-modal { display: none !important; } +/right_ads.$~xmlhttprequest +steamcrackedgames.com#%#//scriptlet("set-constant", "scgpo", "true") +pixlr.com#$#body { overflow: auto !important; } +||dissolvetimesuspicions.com^ +||wbidder.online^$document +/iframe_pfbad/* +iqiyi.com##.rightLink +buhonline.ru##.topic-item-aria_subscribe +homemoviestube.com###v_right +xn--bafg-7qa.de#$#html { overflow: auto !important; margin-right: 0 !important; } +||caeli-rns.com^ +bgr.com##.bg-black +pornxs.com#?#.video__container > div.video__inner > div > div:not([class]):contains(Advertisement) +zzkdhb.com##li[style*="important"] +||tsy-jnugwavj.love^ +||highperformancedformats.com^$popup +||developer-tech.com/wp-content/uploads/sites/*/FREE-VIRTUAL-EVENTS$image +narcotics.com###rmnscta-cta +###ad_houseslot_b +virtualbrest.ru##a[href="https://tx.me/virtualbrestnews"] > img[height="65"] +||vigilantprinciple.pro^ +||rtb-useast.denakop.com^ +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=google-ima3,domain=news8000.com +javuncensored.watch,javcensored.net,javbake.com#%#//scriptlet('remove-class', 'adstrick', '.adstrick') +mydrivers.com##.jdong11 +armyrecognition.com##a[href^="/component/banners/click/"] +||thematicalastero.info^$document +miamiherald.com##.subscription-cta-widget +||nsexfxwcvro.xyz^ +home.webinarjam.com##.gdpr_flapjack_banner +###bannerad2 +streamgoals.com##.vjs-overlay > a[target="_blank"] +comparic.pl##.gkliuiy-single +bestvpn.com##div[class^="ulp-"] +||bokeden.com^ +mrt.od.ua#%#//scriptlet('set-cookie', 'pum-2309', 'true') +genshin.ru#$#html.pum-open { overflow: auto !important; } +exagon.de#$#body { filter: none!important; } +urlaub.de#$#body > .wrapper.hasCookies { margin-top: 0px!important; } +||static.leadpages.net/leadboxes/current/embed.js$domain=troypoint.com +||musicnote.info^ +||laceratehard.com^ +@@||oiihk.com^$generichide +||qfjsliy.top^ +||scorpiovirls.click^ +xhamster.com##.yxd-jdsp-b +141jj.com,99kubo.tv,jumi.su,preface.ai,r3sub.com##a[href*="bit.ly"] +||excessstumbledvisited.com^ +||nzlrfdv.xyz^ +xn--24-3qi3cza1b2a4dxc2byb.com##.bottom-center > .widget_media_image > a[target="_blank"] > img +xjav.tube,manysex.tube,manysex.com##.video-page__related + div.headline +5173.com###gg330 +nontonhentai.top###floatcenter +||tmb5trk.com^$popup +###cookies_info +||predictiondisplay.com^ +perchance.org##div[style*="height: 90px; overflow: hidden; text-align: center;"] +wall-street.ro##.ads-branding +cam4.com#%#//scriptlet("set-constant", "window.open", "noopFunc") +##.ads-half +scroll.in##.floating-contribute-block +@@||weby.aaas.org/weby_bundle_v*.js$domain=sciencemag.org +satdl.com##.advertizement +sssam.com#%#//scriptlet("set-constant", "ads", "") +allkpop.com##.akp2_wrap +##.ad250wrap +sugarlandskeeters.com###consent-slide +/js/ads/zuoxiajiao.js +||fittingcentermonday.com^ +expert-security.de#$#body { overflow: visible!important; } +||w51t.com^$subdocument +offidocs.com###adxx +||intersportv.com/canli-mac-yayinlari/wp-content/uploads/*/intersportv.js +@@||surfsees.com/wp-content/plugins/clickarsf/assets/fuckadblock.js +sexuhot.com#%#//scriptlet("abort-on-property-read", "history.replaceState") +allmusic.com#%#//scriptlet("abort-current-inline-script", "$", "AdBlock") +||widget.manychat.com^$third-party +fmmods.com#%#//scriptlet("abort-current-inline-script", "document.createElement", "counter.toString") +||imgxr.com^$domain=xiuren.org +@@||bitearns.com/*/advertisement.js +||ah-me.com/b*.js +alexa.cn##.importantTop +||degeronium.com^ +mail.yahoo.com##div[data-test-id="video-container"] +familyhandyman.com,tasteofhome.com##.newsletter-sign-below-header +||nzbindex.nl/i/top_*_*?_=$xmlhttprequest +topcam.com.tr,hasmusturizm.com,kutahyalilar.com.tr###cookie_iagree +/ad_bottom.jpg$image +##.oasads +||preparingacrossreply.com^ +smaker.pl,pomponik.pl,interia.pl#$#body[class*="body__ad-spons--"] { padding-top: 0 !important; } +||justthegays.com/api/spots/ +||thztv.*/tool/ +||kyuxym.xyz^ +hulu.com#%#//scriptlet("set-constant", "Object.prototype._parseVAST", "noopFunc") +@@||vidmoly.to/jws.php +sport.bg,sportal.bg#$#body[style="overflow: hidden;"] { overflow: visible!important; } +##.ad-below-adjacent-post +||wingsurf.cn^ +nubilex.net###text-31 +||f97c68bed0.0a10a1bb7b.com^ +###dsStoryAd +||ordinarilyrehearsenewsletter.com^ +dessi.co##.pages__BannerWrapper-sc-1yt8jfz-0 +##.sh-cookie-confirmation +@@||sportslens.com/files1/newsnow_f_ab.gif +||thecred.info^ +saalesparkasse.de#$#body.eprivacy_initial_visible { border-top: none!important; } +noblechairs.de#$#ck-user-cookie-consent-modal { display: none !important; } +showtv.com.tw##.side-AD +navitime.com###cookie-notice-section +||resnikscdn.pro^ +||ktkjmp.com^ +||opjav.com/bet/*_728х90.gif +xn--giant-dsseldorf-5vb.de#$#body { overflow: visible!important; } +realpython.com##.article > div.card.bg-secondary +||loxitdat.com^ +||nbabite.to/vast/clappr-google-ima-html5-preroll-plugin.js +/pjk/static/tp.php +##.player-news > .news-list +/detroitchicago/stickyfix.js$script +eymina.com,soapandbeauty.com###cerez +ohmanhua.com#%#//scriptlet("abort-on-property-write", "__DOMAIN") +##.fsAdContainer +||actitat.com^ +||jsftzha.com^ +||tingroom.com/skin/dy/images/enread.jpg +wamiz.com##blockquote#adblocker +@@||battlecats-db.com^$generichide +scientificamerican.com##div[class^="newsletterSignup"] +||highcpmrevenuegate.com^ +###container > .item.title_normal +||faucet4news.xyz/img/tempmailad.gif +||zzup.com/ad.php +||arabseed.*/sw.js +###eu-cookie-policy +@@||58cdn.com.cn/tuiguang/center/ +my0832.com##.xx_div +||0307.5clo0xmbf.com^ +mercadolibre.*,mercadopago.*###newCookieDisclaimerBanner +recipe-blog.jp###topBnrAppBadge +||hortestoz.com^ +bringmethenews.com#@#.has-fixed-bottom-ad +##.anchor-ad +xhspot.com,xhwide5.com,xhchannel.com,xhchannel2.com,xhtotal.com,xhtree.com,xhwide2.com,xhlease.world,xhamsterporno.mx,xhxh3.xyz,valuexh.life,xhdate.world,xhtab4.com,xhbranch5.com,galleryxh.site,xhbig.com,xhaccess.com,xhofficial.com,seexh.com,xhamster42.desi,xhvid.com,xhtab2.com,xhamster20.desi,xhamster19.desi,xhwebsite2.com,xhamster18.desi,xhadult3.com,xhadult2.com,xhmoon5.com,xhwide1.com,xhamster3.com,xhplanet2.com,megaxh.com,xhamster16.*,hamsterix.*,xhamster.com,xhamster2.com,xhamster7.com,xhamster8.com,xhamster9.com,xhamster10.com,xhamster12.com,xhamster13.*,xhamster14.com,xhamster15.com,xhamster17.*,xhamster18.*,xhamster19.com,xhamster1.desi,xhamster2.desi,xhamster3.*,xhamster4.desi,xhamster20.com,xhamster22.com,xhamster23.com,xhamster25.com,xhamster26.com,xhamster27.com,openxh.com,xhamster31.com,xhamster32.com,xhamster34.com,xhamster36.com,xhamster37.com,xhamster38.com,xhamster5.desi,xhopen.com,openxh1.com,xhamster39.com,xhamster40.com,xhamster.one,xhamster.desi,stripchat.com##div[class*="containerBottomSpot"] +bbcamerica.com,ifc.com,onlinesearches.com,sundancetv.com,wetv.com###banner-top +||airaujoog.com^ +||urlgone.com^ +tamrieltradecentre.com#@#ins.adsbygoogle[data-ad-client] +||tangpuax.xyz^ +timesofindia.indiatimes.com##[data-contentprimestatus] +pconline.com.cn##.juletao +||ad.soicos.com^$popup +yourlust.com##.banner_right_bottoms +||pfactgmb.xyz^ +hotpets.com.tw##div[class^="code-block code-block"][style^="position: fixed; z-index: 9995;"] +/gg.php +##a[href*=".gaimin.gg/cn"] +||npracticalwhic.buzz^ +zdrowie.wprost.pl##.header-partner +circuitotormenta.com##.cookies-back +pixiv.net##.ads_anchor +||qpic.cn/qqgameedu/0/cfc175896f5b4d6a9ff115b3096dcebe_ +##.ad--pushdown +||unsuccessfultesttubepeerless.com^ +mmff30.com##.titletablediv .titletablecell > a[target="_blank"]:not([href$="html"]):not([target="_self"]) +||tvzingvn.net/wp-content/themes/zingtv/js/qc1.js +thisvid.com##.main-nav > li > a[href^="//servtrending.com/"] +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,xmlhttprequest,redirect=googlesyndication-adsbygoogle,domain=unityassets4free.com +10jqka.com.cn###backWashNav +stakingrewards.com##div[class^="assetFilters_desktop-banner_"] +###eucookielaw +##.right-rail-box-ad-container +###advertisement728x90 +crowdstrike.com###blogSubscribe +||generosityfrozecosmic.com^ +||lajjmqeshj.com^ +||rvtfwryz.icu^ +@@||content.googleapis.com$document +||d1ytalcrl612d7.cloudfront.net^ +whoer.net##.app-popup +streamlit.io##div[class*="GDPRBanner"] +/fourapi/api/data/money?date=$xmlhttprequest +motorpage.ru##.news-subscr +||easyfag.com^ +||rek5.savefrom.net^ +||edaciousedaciousindexesbrief.com^ +##.ad_back +||fc.3dmgame.com^ +||compellingperch.com^ +dl.gamecopyworld.com##td[align="center"][style="height:70px;"] +coinedition.com##.tdi_59 +lexpress.fr##.bottom-bar-full +appleinsider.com##body .ad +warc.com##.get-daily-news +##.apd-right +speka.media##.first-news-block + div.container > button.bg-blue-300 +||css.mangabz.com/*/mangabz/js/mobile/newyb.js +##.advert-unit +on3.com##.desktopAdhesion +tinhte.vn#?#.section > div.snd > div.main:has(> div.item > div.main > div[style="width:300px;height:250px"]) +petcim.com##.cerezpop +||gdbyhtl.net^*adfix/ +pusatporn18.com###HTML7 +###adrect +stewmac.com#$#.modal-backdrop { display: none !important; } +||applifysolutions.net^ +pogdesign.co.uk##footer > .box728 +||assets.emarsys.net/web-emarsys-sdk/*/web-emarsys-sdk.js +||merig.xyz^ +@@||fux.com/adb_detector.js +||tern.daffy.org^ +m.bunjang.co.kr#%#//scriptlet("set-cookie", "_bun_hide_lm", "0") +acronymfinder.com##.search-results > .tab-content > .result-list > tbody > tr > td[colspan="3"]:not([id]):not([class]) +||contentr.net^ +||incompletethong.com^ +tech.hindustantimes.com##.footerAds250 +##.content1-ad +@@||getinmac.com^$generichide +vk.com##.feed_friends_recomm +||ligvraojlrr.com^ +big5.china.com.cn##.Advertising > a +nnmclub.to##body > div.request +/adserver.$popup +||lcmbppikwtxujc.xyz^ +mtrend.cn##.hdlist +chargedretail.co.uk,foodstuffsa.co.za,thinkcomputers.org##.apPluginContainer +||generousclickmillennium.com^ +girlschannel.net##.footer-banner +wifi-ooe.at,wifi.at#$#body.modal-open .page-wrapper > :not(.modal) { opacity: 1 !important; } +||isohunt.app/a/b.js +5ggyan.com#?##sidebar-wrapper > .sidebar > .HTML > .widget-content > .adsbygoogle:upward(2) +||baidu.com/ndwkasp/ +mediaite.com,packhacker.com,packinsider.com#@#.adthrive-content +#@#.wps-player-wrap +##.block-ads-bottom +delo.ua##.promo-block-subscribe +redgifs.com##div[class^="_adLiveButton_"] +||penrake.com^ +||propellerclick.com^ +kontur.ru#$?#script#popupSettings { remove: true; } +zzbaike.com###topnav + div[style] +ynet.co.il#$#body { overflow: auto !important; } +notes.io##.directMessageBanner +zyro.com#$#body.modal-open { display: none !important; } +||pennilesspictorial.com^ +online-lawyer.jp,open-minds.it##.fixed-banner +||xvpcjl.xyz^ +search.yahoo.com##.searchRightMiddleAds +event.kingstream.live,play.kingstream.live,en.ripplestream4u.online,watch.soccerloverss.live##.featured-post.section +nintendolife.com,purexbox.com,pushsquare.com,timeextension.com##.insert +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=ravenscans.com|oatuu.org|techedubyte.com +123animes.*##div[id][style^="position: fixed; inset: 0px; z-index: 2147483647;"] +octagonshop.pl,angela.pl,berdsen.pl,hard-pc.pl###kqs-box-tlo +productz.com##.c-rodo-bar +||admin.datingclix.com^ +||wmpset.com^ +||cript.to/dlm.png +||mailing.aomg5bzv7.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.result-op[tpl="right_chris_prize_list"] +greatist.com,healthline.com,medicalnewstoday.com,psychcentral.com##[data-testid="sponsored-bar"] +opensnow.com###site-alert-cookienotice +##.widget_ione-dart-ad +vakantiepiraten.nl#$#body { overflow: auto !important; } +ithome.com.tw##div[class="span4"] +sitepoint.com##div.inline-content +2ch.sc##body[style="margin-top: 28px;"] > div > span[style="float:right;"] +||duba.com/static/*/js/min.pop.js +/468x72. +acg17.com##.yhq +||ahm.135320.com^ +||determineworse.com^ +||filter3.danarimedia.com^ +@@||jimstatic.com/cookieControl.js$domain=yaxi.jp +###preAds_ad_mrec_intext2 +||afgzipohma.com^ +domovita.by##.subscription-messengers +pitch.com##.player-v2-pitch-logo-button +||adappi.co^ +##.admngrfr +||tptp002.cfd^ +_panel_ads. +||ad-doge.com/Images/b_ads/ +xxxdan3.com##.partner-site +||hb.vampednorbert.com^ +tradersunion.com#$#div[id$="-popup"] { display: none !important; } +comidinhasdochef.com##.snp-overlay +finparty.ru##.sidebar-subscribe-form +||squadapologiesscalp.com^ +yutu.cn###botfocus-res +||tagsd.com^$popup +||leapretrieval.com^$popup +vivi.tv##.c-addHome +###long_advertisement +||ruthwoof.com^ +etepetete-bio.de#$#cookie-selector { display: none !important; } +||ajscdn.com^ +##.sterra-ad +hipdf.com##.wsc-ad-plugin-container +thesaurus.com#@#.SZjJlj7dd7R6mDTODwIT +||bnserving.com^ +||roamapheejub.com^ +||btbtdy.*/templets/btdy/js/ad +||peeredfoggy.com^ +domekiogrodek.pl,swiatzwierzat.pl##.scrollAd +||zippywind.com^ +##.vertical_ad +techbang.com##.google-dfp +||adsrv4k.com^$popup +baidu.com##.hotad-list-box +||elil.cc/pdev/ +||lefengtv.com/js/tj.js +hh3dhay.com###sidebar > a > img +theprotocol.it#?#div[class^="GridElement_"] > div:has(> div[class^="Container_"] > aside[data-test="section-cookieModal"]) +||suresdb.top^ +||boskodating.com^$popup +||refpa.top^$popup +boomx5.com#%#//scriptlet('trusted-click-element', 'form button#proceed', '', '1000') +boatsonline.com.au,yachthub.com##.js-sticky +cntraveler.com##div[class^="MessageBannerWrapper"] +||intelligenceretarget.com^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,important,domain=nihongo-pro.com +||wenku8.net/js/ +torrentdownloads.cc##a[href*="bit.ly"][rel="nofollow"] > img[alt] +||taiwannutrition.com/blog/wp-content/plugins/arscode-ninja-popups/ +##.cookies-wrapper +okbizcs.okwave.jp##.qaDetail_oemLink_under +||leads.media-tools.realestate.com.au/conversions.js +||ptaissud.com^ +flightradar24.com##[data-id="ccfe42b"][data-element_type="widget"] +lz13.cn##.left_box3 +/gdpr.js +digest.myhq.in#?#.post-content > p > em > span > b:contains(/^Subscribe to our newsletter and/) +blog.bizvibe.com#$#body.cli-barmodal-open { overflow: auto!important; position: static !important; } +worthpoint.com##.bannerContainer.visible +maclife.de##a[href="http://www.maclife.de/wichtigsten-apple-news-direkt-whatsapp.html"] +||trknext.com^$document +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=gamer.com.tw +||szaction.cc/public/*/plugins/ +tempstaff.co.jp##.floating_area +cine-max.sk,cherytr.com##.cc-nb-main-container +cnn.com,liveuamap.com##.user-msg +pref.yamanashi.jp##.pushModal-overlay +firefoxchina.cn##.feed-tm11 +||d2g9nmtuil60cb.cloudfront.net^ +mousecity.com###content > .center[style^="width: 720px; height: 300px; margin:"] +kekememes.de#$#body { overflow: visible!important; } +##.ad_widget +||cnwnews.com/templets/images/jccf +basinnow.com,e-jpccs.jp,oxfordlearnersdictionaries.com#@##advertise +||nwwais.com^ +##.ad300x250-inline +||xms.lol^ +freeoffice.com#$#.modal-backdrop { display: none!important; } +autocentrum.pl,parenting.pl,abczdrowie.pl,autokult.pl,fotoblogia.pl,komorkomania.pl,gadzetomania.pl,money.pl,so-magazyn.pl,o2.pl,pudelek.pl,wp.pl#@##ad-column +toshibatec.eu##.cookie-consent-background +ubergizmo.com###sidebar_card_spon +##.native_ad +delfi.ee##.C-banner +||softcab.com/google.php? +||baidu.com/static/html/cbjs.html +h-online.com###bannerzone +imgtaxi.com##iframe[src^="frame.php?"] +kiplinger.com##.kip-advertisement +ciekawostkihistoryczne.pl##.placeholderAds +go4up.com##a[href^="http://go4up.com/download/forwardr"] +boss.az##.bnr-top +||wiremembership.com^ +ck101.com#?##threadlisttableid > tbody:not([class]):not([id]):has(> tr > td[id^="popin_"]) +###ads-horizontal +bilibili.com##.operate-card[data-target-url*=".miaozhen."] +xhamster2.com##.wio-xspa +tvlogy.to#$?##pre-banner { remove: true; } +neowin.net##article[class^="classes "]:not([itemscope]):not(itemtype):not([id^="elComment_"]) +sextb.net,sextb.xyz##.sextb_300 +uc.cn##div[data-ad_url^="http"] +||vxnbklwrctqbn.xyz^ +/kan/ads/dl.js +/ads2/* +renklikodlar.net##.header_adblock +@@||businessinsider.com.pl/*srcc=$stealth +landshut.de#$#body { overflow: auto !important; } +duckduckgo.com#%#//scriptlet('trusted-set-cookie', 'ax', 'v433-5') +||gudohuxy.uno^ +||login.crowdegic.com^ +##.ads_180 +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=crazygames.com|shellshock.io|minijuegos.com +journaldesfemmes.fr,linternaute.com##.sns_ico--bell +||raw-co.com^ +||breitbart.com/t/assets/js/prebid +coinhub.wiki##.container_coinhub_footerad +skysmart.ru#?#.block:has(> div[class] > span.button > span.button-text:contains(/^(Узнать бесплатно|Начать учиться)/)) +||ucconn.live^ +arstechnica.com###outbrain-recs-wrap +||dontent.powzerz.lol^$popup +falling-walls.com##.module-newsletter-form +.com/piaozi/*.js +issuu.com#?#div[width="370"] > div:has(> div#ad-primis-wide) +moeimg.net###page-pickup-link_frame +###top_adsense_cont +dafideff.com#?#.inline_wrapper > div.middle_post:has(> ins.adsbygoogle) +.cn/*-*-*.xc$script,third-party +pacogames.com##div[id^="gp_"] +||gscontxt.net^ +||poshsplitdr.com^ +bithub.pl##div[class^="clickout-native_"] +jeffdornik.com##._2kEVY +autofaucet.dutchycorp.space,firefaucet.win##.sticky-ad-728x90 +newsbeast.gr##.undeMenuAmSlot2 +||frailoffer.com^ +pixelpost.pl##.sidebar-inwrap > aside#text-3 +||eyuyao.com/yyad/ +||142.91.159.136^$popup +||robustbelieve.com^ +||click-v4.cldirplarimo.com^ +||d3pvcolmug0tz6.cloudfront.net^ +geekwire.com##.flyover-email-cta +##.ad-unit-inline-center +##.leader_aol +twitteringmachines.com##div[style^="margin: 8px "] > div > div > p > a +odishabytes.com##.single-container > div.better-studio-shortcode +||bestcontentprovider.top^ +autohaus-reitermayer.de#$##gdpr-bar { display: none !important; } +kids-in-mind.com###main-content > .page > .entry-content > .et-l--post > .et_builder_inner_content > .et_pb_section > .et_pb_row_fullwidth.et_clickable +||cat.weddingsabroad.com^ +marinelink.com,maritimejobs.com,maritimepropulsion.com,yachtingjournal.com##.jq-banner +china.cn##.search_video +@@||id.wsj.com$stealth +1001tracklists.com#$?#div[class*="adngin"].exNet { remove: true; } +zowie.benq.com##.cookies-tip +||6820tp1.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###ecl-weigou-view-container +theyetee.com##.js--cookies +alotporn.com##.player-adv +||chatbase.co^$third-party +##.ads3 +###ad-right-bar-tall +||aphid.smartjournal.no^ +businessnovinite.bg,btvplus.bg,ladyzone.bg,btvsport.bg,btvnovinite.bg#$#body { overflow: auto !important; } +xtremetop100.com###middleba[style="height: 100px;"] +||udiab1.jianshu.com^ +###ad_new +||m.qiushuzw.com/9CB0D8A5/2dfc69b0d8a5.js +||rptmoczqsf.com^ +kimchimari.com##.fd-form-popup +animeworld.*##.this-message-does-not-harm-to-you-dont-remove-it +eragonitalia.it,galka.if.ua###itro_opaco +pcmag.com##div[x-data="window.newsletters()"] +||fackeyess.com^ +||planningwebviolently.com^ +sports.ndtv.com##.overlay__side-nav +||amjsiksirkh.com^ +wankflix.com##div[id^="adLeader"] +###cookieFrame +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=gotrip.hk +salzkammergut.at#@##cookie-modal +||characterrealization.com^ +||chandrabinduad.com^$third-party +||woujaupi.xyz^ +||answerroad.com^ +whnews.cn###gd_r +||angege.com^$popup +fxstreet.com#$#body { overflow: auto !important; } +port.ac.uk##div[data-module="CookieMessage"] +###ad-Content_2 +jp.investing.com#?##__next > div > div.fixed:has(> div.flex > div.shadow-button:contains(アプリへ切り替える)) +||tianyaui.com/global/dashang/vip_seat/js/ds_vip_seat.js +||wclsylk.cn^ +||dft9.online^ +cctime.com,doyo.cn###top_banner +bloomberg.com##div[class*="FullWidthAd"] +my.kaspersky.com##.js-cookie-notification-banner +alibabacloud.com##.btn-survey +##.ad980 +||minnow.mimosaagency.com^ +sabanci.com###warning-bar +ddooo.com##.guoasu +simply-hentai.com##.reader > div.mb-3 > div.mt-3 +||uxlvk.cn^ +||g5fzq2l.com^ +curiouscat.me##.consentWrapper +@@/ad.sense/ad-m.js$~third-party +###tesco_cookie_widget +||undertakingmight.com^ +||kjsvvnzcto.com^ +@@||vb.icdrama.se/advertisement.js +yeniavto.az##img[width="170"][height="240"] +@@||googletagservices.com/tag/js/gpt.js$domain=chegg.com|chelseafc.com|epaper.timesgroup.com|farfeshplus.com|k2radio.com|koel.com|kowb1290.com|nationalreview.com|nationalworld.com|nbcsports.com|scotsman.com|tv-asahi.co.jp|uefa.com|vimeo.com|vlive.tv|voici.fr|windalert.com +thestreamable.com##.container-lg > aside.container-sm.mb-7 +haerle-bau.de#$#div[data-overlay="privacy"] { display: none!important; } +||awelsorsulte.com^ +||economictimes.indiatimes.com/gdpr_consent.cms +||popnc.com^ +elconfidencial.com##.tp-sticky iframe[id^="offer_"] +||static.mut.de/static/*/Mut_Newsletter/js/popup-newsletter.js +yes-news.com###content-728-top +||meadowlark.hownow.guide^ +||static.ichehome.com^ +||uthorner.info^ +hobby-machinist.com#%#//scriptlet('prevent-setInterval', 'options') +progamerage.com##div[class^="adsslotcustom"] +planetminecraft.com##li.resource[data-type="advert"] +tryzapp.com###root > div.MuiGrid-root +||mps.wenkuzu.com^ +||mmvideocdn.com^ +creatorlabs.net#?#div[data-container="sidebar"] > div[id^="cc-matrix-"] > div.j-module:has(> p[style="text-align: center;"] > span:contains(Advertisement)) +||atpanel.com^$image +||gettingcleaveassure.com^ +carwale.com#?#div[data-skin="bg-transparent"] > div > div > button:contains(Subscribe Now):upward(2) +afkgaming.com##._4hwc1 +sm.ms##.download-box +rambus.com###elementor-popup-modal-24040 +southbmore.com###sidebar a[href^="https://bit.ly/"] > img +noizz.rs###bannerStickyBottom +vk.com##.VkVideoPromoBlockWeb__root +||choakaucmomt.com^ +||chunkycactus.com^ +||crunchslipperyperverse.com^ +||xxxbed.cyou/script/superpop1.js +motohigh.pl###zox-lead-top-wrap +@@||megaup.net/ads.js +||js.onclckmn.com^ +asianetnews.com##.desktop-ad-1 +tech5s.co,yoshare.net##center:has(> div > button[onclick^="handleDownload("]) +dmarge.com##.dx-ad-wrapper +10minutemail.com###secondary_ads +||4449ae38c2.ee3d8d5c76.com^ +dlupload.com#%#//scriptlet('prevent-window-open') +||dd4ef151bb.com^ +@@||cdn.privacy-mgmt.com/privacy-manager/index.html$domain=bbc.com +||d1igvjcl1gjs62.cloudfront.net^ +wuxiaworld.site##[id^="wuxia-"] +tech-camp.in###__pu_x_modal +famitsu.com#?#.game-title-content > .row > .col-12:has(> .col-12 > .banner-ad-mark) +||support.streamjav.top^ +gohatori.com#@##adframe:not(frameset) +blablacar.pl,6play.fr#%#//scriptlet('trusted-click-element', 'button#didomi-notice-disagree-button') +@@||kisscartoon.ac/ajax/$popup +||tracker-sav.space^$document +fux.com,pornerbros.com,porntube.com,tubedupe.com##.sponsored +||mitbbs.com/ad_ +balkangreenenergynews.com##.banner-premium +qq.com##.qiye-Article-QQ +||189.cn/dns/ +@@||japanesewithaimee32741.activehosted.com/f/embed.php$domain=japanesewithaimee.com +||unbelievablydemocrat.com^ +||1212.ogrt80r65.com^ +||sawfish.black-forest-digital.de^ +xtapes.to#%#//scriptlet("abort-current-inline-script", "jQuery", "pop_init") +denvergazette.com###promo-designer-modal-custom-pop +||idiafix.com^ +||watchmygf.com^$popup +qwant.com##.result__ext > div:has([data-testid="adResult"]) +pprx.team##.dbtfy-cookie_box +||eegheecog.net^ +@@||tuborstb.co^$stealth=3p-auth +||s.pornox.site^ +||rjlfolk.xyz^ +/borlabs-cookie.min.js$domain=mobil-ganz-einfach.de|schwebheim.de +||szpnz.cn^ +||ist.aomg5bzv7.com^ +thenextweb.com##.cookieConsent +||oswowg.xyz^ +||cookies-consent.skoda-auto.com/js/cookies-manager.js +||oqaejin.icu^ +||cztv.com/201506/02/124d35111e8f180c96f99acbcbdf5de6.jpg +fc2covid.com##.widget > center +ogloszenia.agro.pl###rodoModal ~ .modal-backdrop +||d4vd.life/love/ +@@||st.pussyspace.com/style/05/img/JhsdsSD221.svg| +###foot-ad-wrap +vyond.com#$#.cookie-overlay { display: none !important; } +antena3.ro#@##onetrust-consent-sdk +m.shein.com##.in-sitetips +xerifetech.com##body> footer ~ .adblock_subtitle + div[class] + div[class] +tagesspiegel.de##a[href*="tagesspiegel-app"] +||fanhaodang.org/Runtime/js/ +||e-tailwebstores.com/accounts/default1/banners/ +||filter.datadrives.ai^ +e-ohaka.com##.blk_cta +toronto.citynews.ca##div[data-ad-type] +ck101.com##.topicReward5Progress +||cyuwkbf.top^ +ambientweather.net##.component-cookies-banner +||boilerefforlessefforlessregistered.com^ +0rechner.de###cookiesmsg +wmf.com#$##registration-popup { display: none!important; } +||thisvid.com/enblk/ +geopop.it##.cp_banner-native +||ppstatic.pl/assets/gratka/v*/css/pages/promoButton.css$domain=~naszemiasto.pl +menshealth.de##div[ga-track-vis="article.magazine.vis"] +||teamsmarched.com^ +kotaku.com##.js_video-sticky-trigger +||2asd3413.fsseeewzz.lol^ +##.O-CookieLaw +||casting-porno-tube.com/wp-content/uploads/*/Banner1.png +deepl.com##aside[aria-labelledby="app-ad-banner-heading"] +eapteka.ru###notifications-root +||itchinglikely.com^ +||baidu.com^*/directad? +||xvbwvle.com^ +technclub.com##.ekngsw +radiokrakow.pl##.cookie-alert-2 +tvgids.nl#%#//scriptlet('trusted-click-element', '#consent-all-target') +||lvw7k4d3j.com^ +sourceforge.net,freepik.com##div[data-id^="div-gpt-ad-"] +||reportbulletindaybreak.com^ +||draconiancurve.com^ +||tynt.com^ +almayadeen.net#%#//scriptlet("set-constant", "videojsContribAds", "noopFunc") +||bd1.click.com.cn^ +||sinaimg.cn/mw690/005uyUwYjw1eocc98cbgag30gk02ygm9.gif +elpais.com##a[href^="https://plus.elpais.com/newsletters/"] +||pornwatch.ws/iamfront.js +||bantyou.livedoor.biz/frss.html +##.right_adv +||agnrcrpwyyn.com^ +adpaylink.com#%#//scriptlet('remove-attr', 'href', '.box-main > a[href][target="_blank"]') +||strangledisposalfox.com^ +uc123.com##.s-left +||syndication.linkfryn.com^ +||adenza.dev^ +kairos.news#?#.theiaStickySidebar > div.widget:has(> div.textwidget a[href^="https://kairos.shopping/product/"]) +desired.de#%#//scriptlet("set-constant", "consentIsActive", "false") +dji.com###cookie-tip +||gftefmt.icu^ +zwitserleven.nl##body > div[style*="opacity: 0.8"][style*="overflow: hidden"] +/player_embed_cu.php?s=$popup +msn.com#?##main > .stripecontainer > .lifestyle:has(> .stripe > .stripenav > ul > li > span.adslabel) +@@||cdn.appconsent.io/*.js$domain=lefigaro.fr +chronicle.com#$#body { overflow: auto !important; } +||ptwmjmp.com^ +ubook.reader.qq.com##.guide-card +###video-adv-wrapper +lapagan.net#%#//scriptlet("set-constant", "adsbygoogle.length", "undefined") +@@||stwater.co.uk/content/stw/en/homepage/jcr:content/cookie-banner.stw_props.json$domain=stwater.co.uk +||techhome-js.github.io/code.wsm^$third-party +||bmfads.com^$third-party +##.sponsored_links_container +astro.qc.ca###cookie-law-info-bar +||0179.k3718qw08.com^ +megazakaz.com##.overlay_item +indiedb.com,moddb.com##.supporter +||surroundingsliftingstubborn.com^$popup +||binga07.shop^ +||wagersinging.com^ +||9135fec6cb.f026a8e109.com^ +||mekstolande.com^ +academictimes.com###cover +||stemboastfulrattle.com^$popup +rayon.in.ua#$##subscribes { display: none !important; } +||allreqdusa.com^$popup +||jwpcdn.com/player/*/googima.js +###ad-right3 +@@||adv.*.ch^$xmlhttprequest,other,script,domain=tio.ch +duckduckgo.com#$#.badge-link.ddg-extension-hide { display: none!important; } +movavi.com,movavi.ru##.v-privacy-policy-popup +washingtonpost.com#$#div[data-qa="overlay-background"] { display: none !important; } +##.ad-btn-heading +||rhubarbsuccessesshaft.com^ +##.ad-mpl +idlixofficial.net,idlixofficial.co,idlixofficials.com#%#//scriptlet('trusted-set-constant', 'dtGonza.playeradstime', '"-1"') +@@||embed.redditmedia.com/widgets/platform.js$domain=gamerant.com +@@||data.alicloudccp.com^$stealth,domain=aliyundrive.com +briefmenow.org#%#//scriptlet('set-cookie-reload', 'disallowPrepawayBanner', '1') +?whichAd=freestar& +mediathekviewweb.de#@##cookieModal +unian.net#$#.main-column > div > aside { height: 30px!important; } +@@||s.yimg.com/dy/ads/native.js$domain=animedao.to +animenewsnetwork.com#$##page > div.side { visibility: hidden !important; } +@@||58b.tv/static/js/ad.js +accuweather.com##.adhesion-header +||jvnydntynmru.com^ +||ndthdte125.shop^ +||zeuqmpe.icu^ +||xhpzrfj.com^ +zzztube.com,me-gay.com,gaysuperman.com##.mobile-random +codapedia.com##a[href^="/ad-click.cfm"] +||eanddescri.com^$popup +audiogon.com###main-content div.content-marketing-panes > div[class]:first-child + div[class] +ombudsmanpensioenen.nl##.cookiebar-panel +||meetonliine.com^$popup +ask.fm#?#.lightbox_overlay:has(> div.lightbox_container form#signupConversionForm) +||a.boyjackpot.com^ +||envoyauthorityregularly.com^ +$script,third-party,denyallow=myqcloud.com|bytecdntp.com|pddpic.com|googletagmanager.com,domain=yjys.me +||mythings.com^ +||icyreprimandlined.com^ +muslimgirl.com##a[href^="https://pennyappealusa.org"] +||baithoph.net^ +||sterilityvending.com^ +||bashwhoopflash.com^ +sb.by##a[class^="brand-link-"] +||ofseedotom.com^ +##.adzone-preview +yourweather.co.uk,theweather.net,meteored.*#$#.cmp_gdpr { display: none !important; } +||monkquestion.com^ +oncam.me##a[href^="https://pornwhitelist.com/"] +azadliq.az##img[width="1000"][height="110"] +ethnos.gr##div[id^="article_inline_"][data-ocm-ad] +||adversesuffering.com^ +||rudimentarydelay.com^ +bonami.ro#?#body > div.rcic:has(a[href="https://www.bonami.ro/i/politica-de-utilizare-cookie-uri"]) +imgmaze.pw,imgview.pw#%#//scriptlet("set-constant", "_pop", "emptyArr") +@@||trafficmanager.anyclip.com^$domain=content.dictionary.com +||api.gogoanime.zip/promo +madoohd.com#%#//scriptlet('set-constant', 'showLimit', '0') +fpdisplay.com##.class_adv1 +@@||playwire.com/bolt/js/zeus/embed.js$script,third-party +xxxdan.com,jizzbunker.com##.right-banners +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$redirect=googlesyndication-adsbygoogle,domain=genoanime.tv,important +qinbing.cn##.adspic_mid2 +tuenti.ec,lopes.com.br,crysis.com##.cookiemodal +###homeAd +simplebits.io#%#//scriptlet('prevent-fetch', '.io/ads/') +sporcle.com##div[id^="div-gpt-"] +theoutline.com##div[data-campaign] +@@||9cache.com^$stealth,domain=9gag.com +||lucidmedia.com^ +madeinvilnius.lt##.content-inner > div[style^="text-align: center;"][style*="min-height:"] +imagetostl.com##.vb +||a.bxwblog.cn^ +||bitcotasks.com/yo.php +lowendtalk.com##.Row > #Panel > div:not([class]):not([id]) > a[href] > img +||sihbb.com/yang/ +||ridleward.info^ +||positionavailreproach.com^ +||pdfbook.cn/wp-content/uploads/2017/11/049.jpg +regielive.ro#@##homead +pagesix.com#?#.single__content > p:has(> strong:contains(For more Page Six)) +||6af461b907c5b.com^ +||youjizz.com/KWIKY*.mp4$redirect=noopmp4-1s,domain=youjizz.com +auto.orange.fr##body #oSocialPopin +charismanews.com##.skinTrackClicks +||login.omnijay.com^ +veev.to#%#//scriptlet('adjust-setInterval', 'download', '*', '0.001') +markmanson.net###flyout +mydrivers.com##.yTv3AMqP +dowolnycel.pl#$#body[style="overflow: hidden;"] { overflow: visible!important; } +vaistai.lt###billboardwrapper +||ck33.top^ +||zoeaethenar.com^ +iz.ru###p4s-confirm-widget +shingakunet.com###kikakuKomaArea > div[style="margin:20px 0 0 0;"] +golem.de###nl-banner +u.co.uk#%#//scriptlet('prevent-fetch', 'v.fwmrm.net') +bbva.es#$#.mo-cookies-window { display: none!important; } +@@||vlist.se/advertisement.js +##.adrotate_top_banner +productreview.com.au##div[class*=" leaderboard_"] +slashview.com#$##SlashviewAdDetector { display: block !important; } +gazzetta.gr##.bettotal +cartoonmad.com##table[width="950"] > tbody > tr > td > table[width="210"] > tbody > tr > td > table[width="210"] +||get-partner.life^ +business-standard.com##div[id^="between_article_content_"] +@@||scrippsdigital.com/cms/videojs/$stylesheet,domain=scrippsdigital.com +myp2p.biz,realstreamunited.tv###hiddenBannerCanvas +fapality.com##.ntw-a +##.adsntl +||player.cnevids.com/interlude/gq*&rightRail=true$domain=gq.com.mx +react.libhunt.com##.text-strong-invite +||cdn77.org^*.mp4$badfilter +||akilifox.com^ +@@||9anime.nl/user/ +carnegieendowment.org#?#.zone-main > .from-right.slide-in:has(.mktoForm) +winfuture.de,billiger.de,dw.com#%#//scriptlet('trusted-click-element', '#cmpwrapper >>> #cmpbntyestxt') +eu.patagonia.com#@##onetrust-consent-sdk +||duplicateallycomics.com^ +###toolbar_cookies +###topImgAd +||viiadr.com^$all +bayernportal.de#%#//scriptlet('set-cookie-reload', 'cookieConsent', 'true') +||adition.com^$third-party +||rqtrk.eu^ +dvdsreleasedates.com###ad-movie +mail.google.com##header[role="banner"] > div[class^="gb_"] > div[class^="gb_"][data-ogsr-up] > div[style^="overflow: hidden; position: absolute; top: 0px; width: 370px; z-index:"] > iframe[name="callout"] +||softasm.com/wp-content/themes/softasm/img/softasm-top-download.jpg +||thothd.com/player/player_ads.html?advertising_id=$subdocument,redirect=noopframe,domain=thothd.com|thothd.to +bva.bund.de#@##cookiebanner +airbnb.de##div[data-application="true"] ~ div:not([class],[id],[dir]):has( > div[dir="ltr"] > section div[aria-labelledby="announcement-curtain"]) +heiguang.com##.pbAddPic +ultimatespecs.com##.left_column_sky_scrapper +sex-or-never.com,3nenbkumi-chinpachisensei.net,naga-ken.info,dohack.jp,re-lifework.com##.bfb_textTextBtn +||casionest292flaudient.com^ +sexvid.xxx#?#.spots_thumbs > .spots_title:contains(Advertisement) +||widget.justwatch.com^$third-party +@@||fengkongcloud.com/fpv2.js +threatpost.com##.c-twitter-post-widget +||synonymcuttermischievous.com^ +atida.fr#$#body.block { overflow: auto !important; } +||senonsiatinus.com^$popup +||redtube.fm/advertisment.htm +||opossum.stephanieharari.com^ +teknobaze.com,app.trangchu.news##.penci-rlt-popup +||pyzwxkb.com^ +##.fp-ads +||br.coe777.com^ +||akmxts.com^ +||guvwolr.com^ +||vip1.loli.net/2020/02/17/A9jmsY41EwiUzou.png$domain=ddrk.me +ellalanguage.com##p > a[target="_blank"] > img +||torrent911.ws/z- +##.adwrapper1 +||sportsyndicator.com^ +cimavids.live,cnvids.com#$##countdown > canvas, h3 { display: none !important; } +@@||feedback-pa.clients*.google.com/*/google.internal.feedback.$stealth +##.ads-widget +||5373.833enmhob.com^ +everythingrf.com##div[id^="ucHeader_Panel"] +||rmndme.com^ +techacrobat.com,techgistafrica.com##.jeg_push_notification +||img.informer.com/images/mac_banner_v2.png +protonvpn.com#?#div[data-testid="header"] > div > div.animate-enter-top:has(> div.bg-bannerVpn) +msn.com##a[href^="https://amzn.to/"] +gamcore.com##.warningbox ~ a[rel="nofollow"] > img +adjaranet.com##div[class^="styled__StyledBanner-"] +kohls.com###kmnsponsoredbrand-sponsored_top-anchor +||ptotchie.xyz^ +||static.theardent.group^ +||superiorickyfreshen.com^ +##.idmuvi-topbanner +bitssurf.com#%#//scriptlet("abort-current-inline-script", "document.getElementById", "AdBlock") +t-nation.com#$##vs_lb_wrapper_127714 { display: none !important; } +jdn.co.il##iframe[src^="https://advertising.jdn.co.il/"] +@@||clickiocmp.com/*/cmp/vendor-list.json$xmlhttprequest,domain=highlights.legaseriea.it +36dm.club,36dm.com,acgsou.com##img[width="700"][height="60"] +||wallpapersfacts.com^ +||gatetodisplaycontent.com^ +||theyellownewtab.com^$popup +##.p-ad-dfp-middle-rec +jiankang.com##.all_eye +@@||manhua.weibo.com/adv/ +baeder-duesseldorf.de#$#.modal-backdrop { display: none !important; } +timesofindia.indiatimes.com#?#.main-content > div.article_content~div[class*=" "]:has(> div > div > a[onclick]) +csdn.net#?##feedlist_id > li:has(> div[id^="kp_box_"]) +||conductmassage.com^ +hatarako.net,askdoctors.jp##.top-app-area +iqihang.com#$#.homeIndex.padding[data-v-3f7c92dc] { padding-bottom: 0 !important; margin-top: 0 !important; } +||lyricsgrand.com^ +glenatbd.com###subscribe-me > .subscribe-me +rmdown.com###foo1ter +||analyticsindiamag.com/wp-content/uploads/2019/02/Blue_03.jpg +wikijob.co.uk#$#.popup-background { display: none !important; } +espncricinfo.com##.adSlotCnt +bau-welt.de,sugargang.com,sugardad.eu##.modal--newsletter +cpomagazine.com##.entry-content > div.essb-ctt + p + div[class^="_"] +||datacygnal.io^ +||dbclix.com^ +streamz.cc#%#//scriptlet('remove-attr', 'onclick', 'form[action="dodownload.dll"] > input[onclick*="window.open"]') +javbabe.net,chinababe.net##.clipxx +hupu.com##.hp-header-banner +||ixnow.xyz^ +ipsw.me##.frameForMoney +||supervideo.cc/tag01.js +||bs_6e59b780.wearbald.care/sdk.js$domain=captainaltcoin.com +||potpourrichordataoscilloscope.com^$popup +propay.be##.accept_cookies_wrapper +###btnAdDP +cute-cursors.com##.app-install-extension-card +||ontj.com^ +||heimalesssinpad.com/overroll/ +tnaflix.com##.pause-ad-wrap +||affablewalked.com^ +amazon.*#?#.s-search-results > div[data-asin]:has(> div[class] > div[cel_widget_id] > div[data-component-props*="Sponsored"]) +vr-bayernmitte.de#$#.no-scroll { overflow: auto !important; position: static !important; } +||serv.bvsrv.com^ +forum.lowyat.net##.style_ad +eranda.jp##.m_floatFooter +##.sidebar-ad-c +pinoymovies.es,pinoymovieseries.com#%#//scriptlet("remove-attr", "href", "a[href]#clickfakeplayer") +videodownloaderultimate.com#$##m_offer { display: none!important; } +webwereld.nl,tvspielfilm.de,med1.de,computerworld.com,neowin.net#%#!function(){function b(){}function a(a){return{get:function(){return a},set:b}}function c(a){a(!1)}AG_defineProperty('_sp_.config.content_control_callback',a(b)),AG_defineProperty('_sp_.config.spid_control_callback',a(b)),AG_defineProperty('_sp_.config.vid_control_callback',a(b)),AG_defineProperty('_sp_.config.disableBlockerStyleSheets',a(!1)),AG_defineProperty('_sp_.checkState',a(c)),AG_defineProperty('_sp_.isAdBlocking',a(c)),AG_defineProperty('_sp_.isAdblocking',a(c)),AG_defineProperty('_sp_.isContentBlockerPresent',a(c)),AG_defineProperty('_sp_.getSafeUri',a(function(a){return a})),AG_defineProperty('_sp_.pageChange',a(b)),AG_defineProperty('_sp_.setupSmartBeacons',a(b)),AG_defineProperty('_sp_.msg.startMsg',a(b)),document.addEventListener('sp.blocking',function(a){a.stopImmediatePropagation(),a=document.createEvent('Event'),a.initEvent('sp.not_blocking',!0,!1),this.dispatchEvent(a)})}(); +##a[href^="https://a.bestcontentoperation.top/"] +||gtoonfd.com^ +||rshsk.xyz^ +##.gdprModal__placeholder +counterpath.zendesk.com##.flash-cookie +chiebukuro.yahoo.co.jp###app_bnr +wn.de###paywall_container +/eucookienotice. +mintmanga.live#$#.brands { display: none !important; } +medibang.com##.mdbnAdBlock +cooldl.net##.post > div.pm +||symptomprominentfirewood.com^ +||x0r.urlgalleries.net^ +||qpix.com/2021/05/20/Aqcp.gif +##.bottom-adv-container +###container > .wrapper > .fl +shabdkosh.com#?#.col-lg-4 > h1:contains(Sponsored Link) +_sidebar_ad_ +fatede-go.com##.mod-rss-btm +paidappstore.xyz#$##wpsafe-link { display: block !important; } +##.dart-leaderboard-top +bitgid.com##.telegram-long +elamigosedition.com#@##ad-655 +groupon.nl,groupon.de###subscribe_modal_container +travelrussia.ru#$##widget-topBar { display: none !important; } +meteoprog.pl##.promo +kmplayer.com##.dim-layer +||spongemilitarydesigner.com^ +||monieraldim.click^ +||baidu.com/?action=getadsdata& +thelocal.*##.tl-ad-container +||unlocky.xyz^ +ibm.com##.ibm-canada-notice +decrypt.co#$#body div[class^="fixed "][style^="width: 100vw; height: 100vh; z-index: 1000"] { display: none !important; } +joyn.de##.ButtonMobileStickyHint_HintContainer__Layout__coBBZ +@@||ddzswov1e84sp.cloudfront.net^$script,domain=free-content.pro +||bestchainconnection.com^ +myprivatejobs.com###popup +upsangel.com##a[href="https://upsangel.com/check/surfsharkvpn/"] +njuskalo.hr##.SmartAppBanner +m.timesofindia.com,timesofindia.indiatimes.com##.bottomnative.colombiaRequestSend[data-ad-id] +||lzzqfj.xyz^ +oakley.com#$#.fancybox-lock { overflow: auto!important; } +||tszoxhtk.xyz^ +heatworld.com##.sticky-ad-unit-spacer-default +||1894.79j68qav2.com^ +@@||app.usercentrics.eu/browser-ui/$domain=wohnglueck.de +||tubedupe.com/td_fl.js +||advertising-cdn.com^ +hdmovie5.cam#%#//scriptlet("remove-attr", "href", "a[href]#clickfakeplayer") +recipe.rakuten.co.jp##.rakuten_recipe_app +logi.im#%#//scriptlet("prevent-setTimeout", "ins.adsbygoogle") +ilfattoquotidiano.it##body > div[style^="position: fixed; min-width: 990px; border-color:"] +@@||androidtvbox-*.netdna-ssl.com/wp-content/themes/jannah/assets/js/ad.js$domain=androidtvbox.eu +rok.guide##.desktop-promo-banner +21cn.com###embed_hzh_div +163.com##.imglist-bobo-app +##.adverts-125 +psprices.com###Psprices_MID +play.google.com##c-wiz > div > div[class][ng-non-bindable] > div[style="background-color: rgb(90, 90, 90);"] +lg-firmwares.com,sfirmware.com#%#AG_onLoad(function(){var a=document.querySelector("#download-popup-inner");if(a&&!a.hasChildNodes()){var b=document.createElement("inc");a.appendChild(b);b.setAttribute("class","adsbygoogle")}a=document.querySelector("#download-popup-inner > .adsbygoogle");b=document.createElement("iframe");b.style="width: 0px !important; border: none !important;";a&&a.appendChild(b)}); +||get.xclick24.com^ +###CookieOK +techgoing.com#?#.td-is-sticky > div.wpb_wrapper > div.td_block_wrap:has(> div.tds-block-inner div.tds-email-bar) +##.pageGoogleAds +astar.bz,anistar.org,online-star.org##.a-message +||top-performance.club^$popup +||zxrcfw.com^ +backpack.tf,backpacktf.com#?#.panel:-abp-contains(createAd) +@@||cdn.cookielaw.org/scripttemplates/otSDKStub.js$domain=vandenborre.be +perfectdailygrind.com##.gengpdg-col +upload.ac,uplod.org,uplod.cc##.dl-plus.text-center +||ptaupsom.com^$popup +cnbc.com##div[class^="BoxRail-Styles-"] +tvxs.gr##.sponsored-area +aral.de,castrol.com,bp.com##.nr-cookie-notification__wall +alanadlari.com###kvkk-bar +opencritic.com#?#.flex-grow-1 > app-advertisement ~ .mx-4:has(> div > .affiliate-button-container) +@@||gogodl.com/*/js/advertisement.js +##.ad--b +pornxs.com#%#//scriptlet("prevent-window-open") +||img-load.com^$document,popup +meditation-portal.com###subscribe-7 +##.ad_claim +||r5apiliopolyxenes.com^ +###content_ad_placeholder +trendfaq.com#%#//scriptlet("prevent-window-open") +||1db7ae623d.ddc1aaee63.com^ +centrum.cz##.CMP_app_gdpr +###article-billboard-ad-1 +##.ad-watermark +||etjui.cn^ +||gaegwdkirfcgp.com^ +/htmm/20*.php$popup +||static.antaranews.com/js/notification.min.js +||hc360.com/images/14826/289x90.jpg +choiceappstore.xyz#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||rusticswollenbelonged.com^ +seventeen-web.jp##.cookie-consent-footer +||jy08.shop^ +yahoo.com#?#.stream-item:-abp-has(>div>div>div>span:-abp-contains(即日熱搜)) +spojoba.com##.line-nav +||npnpxoz.xyz^ +||tooraicush.net^ +investing.com#$#.wrapper > div:not([class]):not([id]) > div:not([class]):not([id]) > div[style^="height: 90px !important;"] { position: absolute!important; left: -3000px!important; } +||3pornstarmovies.com/*/*/*/js/ssu*.js^ +||trickvealwagon.com^ +hitechplus.in###sidebarrightsc > #HTML2 +||go.mooncklick.com/apu.php?$redirect=nooptext,important +square-enix-games.com###newsletter-subscription-2 +||blog.livedoor.jp/rbkyn844/ftp/gazoulink$subdocument +csgoob.com#$##ADback { background: none !important; } +eurobuildcee.com##.banner +||xml-v4.medialabs.info^ +||rtbix.xyz^$document +/contents/images-banners/* +/ads.bundle.min.js$script +cityam.com#$##pre-header { position: absolute!important; left: -3000px!important; } +||vuvcroguwtuk.com^ +||lh3.googleusercontent.com/pw/$domain=173.249.49.204|rolexforums.com +##.small_ads +||tzvpn.site^ +live2.thapcam24.net##.match > div.modal:has(a[href^="/go?url"]) +||whaurgoopou.com^$popup +etherealgames.com,phoenixnap.com,javporn.tv,apkdlmod.com,freecoursesites.net,courseforfree.net,javhoho.com,playsexgames.xxx###text-6 +chitubox.com,poliglot16.ru##.cookie-agree +vipnews.jp##.article-body-more > b + br + br +beetoons.tv##my-privacy-concerns +||parkurl.com^ +||noelsdoc.cam^ +360che.com##div[id^="PAGE_AD_"] +||hibj.online^ +jiwachan.net##.foot_rss +||casinohacksforyou.com^ +||fastenchange.com^ +||videojj.com/api/v1/plat_tags? +||l.qq.com/lview? +checkfelix.com,kayak.ae,kayak.bo,kayak.ch,kayak.cl,kayak.co.cr,kayak.co.id,kayak.co.in,kayak.co.jp,kayak.co.kr,kayak.co.th,kayak.co.uk,kayak.co.ve,kayak.com,kayak.com.ar,kayak.com.au,kayak.com.br,kayak.com.co,kayak.com.do,kayak.com.ec,kayak.com.gt,kayak.com.hk,kayak.com.hn,kayak.com.mx,kayak.com.my,kayak.com.ni,kayak.com.pa,kayak.com.pe,kayak.com.ph,kayak.com.pr,kayak.com.py,kayak.com.sv,kayak.com.tr,kayak.com.uy,kayak.de,kayak.dk,kayak.es,kayak.fr,kayak.ie,kayak.it,kayak.nl,kayak.no,kayak.pl,kayak.pt,kayak.sa,kayak.se,kayak.sg,swoodoo.com##.ev1_-results-list > div > div > div > div.G-5c[role="tab"][tabindex="0"] > .yuAt-pres-rounded +||eephoawaum.com^ +###trd-exitintentbox +lanyes.org##.kuanpin +||jennylist.xyz/t63fd79f7055.js +||annulmentequitycereals.com^ +||truculentrate.com^ +||forasmum.live^$popup +ceplik.com,mrcheat.us,udemycoursedownloader.com,articlesjar.com,wrzko.ws,mocasoft.ro,techno360.in##.kill-adblock-container +myjest.com###Mj_728x90_div +rankmath.com###mts_gdpr_popup +||ousinouk.xyz^ +forum.alfaholicy.org#?##sidebar > li > .block.smaller:has(> .blocksubhead > span.blocktitle:contains(/^Reklama$/)) +||bulochka.xyz^ +||baitenthenaga.com^$popup +checkfelix.com,kayak.ae,kayak.bo,kayak.ch,kayak.cl,kayak.co.cr,kayak.co.id,kayak.co.in,kayak.co.jp,kayak.co.kr,kayak.co.th,kayak.co.uk,kayak.co.ve,kayak.com,kayak.com.ar,kayak.com.au,kayak.com.br,kayak.com.co,kayak.com.do,kayak.com.ec,kayak.com.gt,kayak.com.hk,kayak.com.hn,kayak.com.mx,kayak.com.my,kayak.com.ni,kayak.com.pa,kayak.com.pe,kayak.com.ph,kayak.com.pr,kayak.com.py,kayak.com.sv,kayak.com.tr,kayak.com.uy,kayak.de,kayak.dk,kayak.es,kayak.fr,kayak.ie,kayak.it,kayak.nl,kayak.no,kayak.pl,kayak.pt,kayak.sa,kayak.se,kayak.sg,swoodoo.com##div[data-resultid]:has(a.IZSg-adlink) +sogou.com##.recommend-pop +||soundingdisastereldest.com^ +###euCookie +||interstateflannelsideway.com^ +vesseltracker.com#$#body.modal-open { overflow: auto !important; padding-right: 0 !important; } +||xszpuvwr7.com^$popup +||dexchangeinc.com^ +||asmassets.mtvnservices.com/asm/ +adobe.com##body > div.message +||chmueyv.icu^ +3addedminutes.com,anguscountyworld.co.uk,banburyguardian.co.uk,bedfordtoday.co.uk,biggleswadetoday.co.uk,blackpoolgazette.co.uk,bucksherald.co.uk,burnleyexpress.net,buxtonadvertiser.co.uk,chad.co.uk,daventryexpress.co.uk,derbyshiretimes.co.uk,derbyworld.co.uk,derryjournal.com,dewsburyreporter.co.uk,doncasterfreepress.co.uk,falkirkherald.co.uk,fifetoday.co.uk,glasgowworld.com,halifaxcourier.co.uk,harboroughmail.co.uk,harrogateadvertiser.co.uk,hartlepoolmail.co.uk,hemeltoday.co.uk,hucknalldispatch.co.uk,lancasterguardian.co.uk,leightonbuzzardonline.co.uk,lep.co.uk,lincolnshireworld.com,liverpoolworld.uk,londonworld.com,lutontoday.co.uk,manchesterworld.uk,meltontimes.co.uk,miltonkeynes.co.uk,newcastleworld.com,newryreporter.com,newsletter.co.uk,northamptonchron.co.uk,northantstelegraph.co.uk,northernirelandworld.com,northumberlandgazette.co.uk,nottinghamworld.com,peterboroughtoday.co.uk,portsmouth.co.uk,rotherhamadvertiser.co.uk,scotsman.com,shieldsgazette.com,stornowaygazette.co.uk,sunderlandecho.com,surreyworld.co.uk,thescarboroughnews.co.uk,thesouthernreporter.co.uk,thestar.co.uk,totallysnookered.com,wakefieldexpress.co.uk,walesworld.com,warwickshireworld.com,wigantoday.net,worksopguardian.co.uk,yorkshireeveningpost.co.uk,yorkshirepost.co.uk##div[class^="AdLoadingText"] +##.rectad +moviepilot.de##body > .notification +sonicsoak.com###shopify-section-newsletter +torrentfunk.com##main > .title:has(> table.tmain > tbody > tr > td > div[style="float:left"] > a[href*=".html"]:not([href*="torrentfunk.com"], [href^="/"])) +@@||ojogos.com.br/wdg/js_aggregator-active/js/module/monetisation/advertisement.js +job.minnanokaigo.com##.grid-cols-app-bar +||hvdt8.chimeratool.com^ +##.bannerAside +aceofhacking.com,wikiwiki.in###media_image-3 +kisscartoon.me##.videoAdClose +podbean.com#?#body > div:not([id]):not([class]):has(> button#ok_use_cookie_warning) +linkedin.com#$#.core-nav { margin-top:0px!important; } +thehackernews.com##.deal-store +###cookieFixed +xfemaledom.com###beside-video-ver2 +@@/pub/ad/*$domain=ruten.com.tw +post-gazette.com##.pgevoke-story-topads-banner +filerox.com##._ozxowqadvert +prismreports.org##.newspack-newsletter-prompt-overlay +unsplash.com##body > dialog:has(> a[href="/cookies#manage-consent"]) +||onetouch17.info^ +videovard.*#%#//scriptlet("prevent-window-open") +||linkworth.com^$third-party +ferra.ru##.layoutContent a[href="https://t.me/ferraru"] +||minormeeting.com^ +mumbailive.com#$##telegramModal { display: none !important; } +||engagedsmuggle.com^ +||uumnxiet.top^ +||vihqpr.xyz^ +bilibili.com##span[style*="height:"][data-loc-id] +patriotnewsfeed.com##.custom-html-widget [href] > [src] +experts-exchange.com#$#.interceptReplaceElement { display: block!important; } +top.gg###rewarded-video +||illuminatelocks.com^$popup +rlxtech24h.com#%#//scriptlet('abort-on-property-write', 'checkAdsStatus') +majordomo.ru###perenos-saita +||skymobi.agency^$popup +mazda.com.tr#$#body.lock-scroll { overflow: auto !important; } +||iupian.com/mstyle/js/topinfo.js +/edugram_chat.js +||nippona7n2theum.com^ +||oagoalee.xyz^ +##.ad--e +influencersgonewild.com#?#.g1-advertisement-inside-grid:upward(li) +##.head_adv +||coltagainst.pro^ +stockwatch.pl##div[class*="-"]:has(> span[data-adsourl]:first-child + img:last-child) +||internalsink.com^ +emder-fisch-feinkost.de,campingshop-24.de##.eightworks-cookie-consent-plus-toggler +||05592cfcf1.0b383a4924.com^ +||lozeecalreek.com^ +||th.micheryfrugal.com^ +lucianne.com##table[width="180"][height="630"] +hoklartherm.de###Cookie_content +||nyaa.land/static/p2.jpg +||everypilaus.com^ +||sqqqabg.com^ +compress-or-die.com##.component_latest-news +heraldonline.com,charlotteobserver.com##div[style="--height:250px;"] +insales.ru##.register-modal +||9ye.com/Files/Editor/ad/ +pixiv.net##.ad-frame-container +tech2.hu##div[class^="td-a-rec"] +highsnobiety.com##.newsletter-interstitial +||professionalsly.com^ +nlc.gov.cn###lovexin12xx +||zentrixads.com^ +##.primis-video +||gorillatrk.com^ +##.ads__container +foxsports.com.au,cbssports.com,thoughtcatalog.com,webmd.com,gamespot.com,windowscentral.com,tvguide.com,sfgate.com,afterellen.com,boston.com,calgarysun.com,cattime.com,celebuzz.com,cnet.com,comingsoon.net,computershopper.com,ctnow.com,cycleworld.com,edmunds.com,everydayhealth.com,metacritic.com,msn.com,popphoto.com,popsci.com,ranker.com,saveur.com,sportingnews.com,tv.com,washingtonpost.com#@#iframe[width="300"][height="250"] +||jikbwoozvci.com^ +bloomberglinea.com,bloomberglinea.com.br#$#.tp-modal:has(> div.tp-iframe-wrapper > iframe[id^="offer_"]) { display: none!important; } +idanmu.ee##.entry-body > div[class]:first-child +||trafficshop.com^ +unikoshardware.com##.elementor-widget-sidebar a[href^="https://bit.ly/"] +sunderlandecho.com##.slab__block > #adSlotMainContent1 + .backfill-cta +||tempest.services.disqus.com/ads-iframe^$important +xn--80afnfom.xn--80ahmohdapg.xn--80asehdb##.page-notification +##.SummaryPage-HeaderAd +huaban.com#@#img[width="240px"][height="400px"] +||dswcrlf.cn^ +baidu.com##.app-side-banner +le.com##.Ad +||polarbearyulia.com^ +###catapult-cookie-bar +dianping.com##.J_midas-3 +||mowhamsterradiator.com^ +||cdn.shrtfly.vip^ +_left_ad. +||gatsbybooger.shop^ +pastehouse.com##.col-md-9 > .text-center > a[target="_blank"][rel="nofollow"] > img +||mergebroadlyclenched.com^ +dyttw.com.cn##a[href="/ads"] +||cor8ni3shwerex.com^ +||chazidian.com/all/mobile_ +jingyu.com##.stream-app +car-mo.jp##.pr-modal +1link.vip##h2 > strong > a[target="_blank"] +##.gnt_tbr.gnt_tb +yts-official.com###movie-poster a[rel="nofollow sponsored"] +newser.com##div[style^="display:inline-block;width:728px;"] +||live-eu.newsvot.com^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,domain=akunssh.net +haustechnikdialog.de###ctl01_privacy +||blushingwar.com^ +open.ru##div[data-react-class="CookiesAgreement"] +akf-japan.jp,otakaraou.com,oozeki-shop.com##.popup_confirmation_bar +big.az##.link8 +###panelAd +shopify.in##.js-guide-cta +||huarenjie.com/attachment/myfiles/ +||positivejudge.com^ +||monkey.colinjohnston.com^ +||under2given.com^ +||antlion.hendrikhaack.de^ +@@||sharepirate.com^$generichide +||hwnojj.xyz^ +||careersadorable.com^ +||advertnative.com^$third-party +2345.com##.spreadHotWords +teachoo.com#$#div[aria-labelledby="loginModalLabel"] { display: none !important; } +cheatsheet.com##.top-ad +joe.ie,joe.co.uk#$#.noscroll { overflow: visible!important; } +streamingcommunity.*##header > div.close-banner +||s.bussyhunter.com^ +yle.fi#%#//scriptlet('set-constant', 'yleConsentSdk.show', 'noopFunc') +wired.com##div[role="presentation"][data-outbrain-url] +||adcalm.com^$third-party +opensubtitles.org#?#div[class="msg"][style="padding: 10px;"] > div:has(> iframe[src^="ads2.opensubtitles.org"]) +pornwhite.com##.player-spots +pasivka.com.ua#$#.modal-opened body { overflow: auto !important; } +blog.x.com,blog.twitter.com##.js-eu-cookie-notice +||meishichina.com/v3/ +||zktsygv.com^ +###rightCouplet +##.ad_grein_botn +||hotelscombined.com.au^$third-party +rugbypass.com##.rcjs +||mmqvujl.com^ +@@||oasjs.kataweb.it/cookielex/$domain=kataweb.it +ali213.net##.zadmainholder +thejakartapost.com##.the-brief +||apiecelee.com^ +||coincodex.com/apps/coincodex/templates/top.html +bitly.com###wow-modal-overlay-7 +rtl2.de#$#.campaign-overlay { display: none !important; } +@@||forms.esputnik.com^$domain=dnipro-m.ua +||volleyballachiever.site^ +antena3.com,ondacero.es#%#//scriptlet('trusted-click-element', '.sibbo-panel__aside__buttons > a.sibbo-cmp-button[data-accept-all]') +teepr.com###topAdBlock +##.guj-ad--placeholder +dziennik.pl##.loaderBlock[data-widgetname="ecommerceWidget"] +snowcrows.com,helldivers.io,twitchmetrics.net##body > div[style^="background:"][style*="position: fixed; display: flex; align-items: center; justify-content: center; inset: 0px; z-index:"] +||xu.chimerscoshing.com^ +bluelightcard.co.uk#%#//scriptlet('set-cookie', 'privacy', '0') +||upseelee.xyz^ +##.download_ad +||mmonly.cc/js/mmonlyAPP.js +||goodstriangle.com^ +light.gg##.items-right-square +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,important,domain=taufiqhdyt.com +mpyit.com###post-0 +/yryy/css/javatop.js +integrada.minhabiblioteca.com.br#$#body { overflow: visible!important; } +businessmirror.com.ph##.busin-before-content +m.focus.de###nlgate +||5.ccutu.com^ +hentaidude.com###box-canai +downfile.site,memangbau.com,trangchu.news#%#//scriptlet("adjust-setTimeout", "#proceed", "*", "0.02") +||padsdel.com^$popup +darkreader.org##.recommendations-container +||userscript.zone/s.js +||hankrivuletperjury.com^ +@@||serialy.io/theme/js/popunder.js +||br.baculatowser.com^ +||etargetnet.com^$third-party +##.adscreen +||8d07a.xyz^ +dailygh.com###video_fade +||littlecutecats.com^ +fischeredelmetalle.de#?##root > div[class] > div:has(> div[class] > div[data-nosnippet="true"] a[href="/datenschutz/"]) +||google.com/pagead/1p-user-list/ +@@||algolia.net/*/indexes/*/queries^$domain=xda-developers.com +##.adthrive-placeholder-content +pckeysoft.com,tipucrack.com##center > a[href][rel="nofollow"][target="_blank"] +live-tracking.locusmap.app###ktCookieStatement +camwhores.tv#%#//scriptlet("abort-on-property-read", "onload") +psychcentral.com#$#.no-hash { display: none !important; } +moroccoworldnews.com#?#.col-md-4 > h3.west-h4:contains(/^DOWNLOAD OUR APP$/) +paid4file.com#%#//scriptlet('remove-class', 'get-link', 'a.get-link[target="_blank"]') +##.dr-cookie-info-box +||fstsrv9.com^$popup +##.internalAd +||youngestclaims.com^ +||lkcoffe.com^$popup +9to5google.com,9to5mac.com,9to5toys.com,dronedj.com,electrek.co##.ad-container +atelevisao.com#?#.s-ct + .single-sidebar:has(#mailpoet_form-2) +||q.ikre.xyz^ +leicarumors.com###text-467498341 +||watchthistop.net^ +##.adsbygoogle +bossip.com##.fsb-desktop +igeekphone.com##.theiaStickySidebar > ul > .igeek-widget +tweakdroid.com#?#.tweaksectionheader:has(strong:contains(Advertisement)) +besanttechnologies.com#$#body { overflow: visible!important; } +||wes.org/gdpr/Gdpr_plugin.js +apkmody.fun#%#//scriptlet('adjust-setTimeout', 'download_loading', '*', '0.02') +||d1z8dffpbvf0ns.cloudfront.net/app.min.js +kino.24tv.ua##div[id^="telegramBanner"] +||deridenowadays.com^ +||wu.sixthsskene.com^ +pornhd6k.net##.menu-item-34066 +||stergessoa.net^ +||spy-manga.com/im*.gif +@@||facebook.com/photo.php^$popup,domain=animeflv.net +gohatori.com#%#//scriptlet('abort-current-inline-script', 'setTimeout', 'none') +ruangguru.com##.bantuan +||anyporn.com/aa/ +starbike.com#@#.adsense_wrapper +||widerrose.com^ +||jlmhk.com/images/data/ +bioskopkeren.*#$##film { display: block !important; } +autonews.com##.oas-ad +tmearn.com##iframe[src*=".tmearn.com/"][style^="overflow:hidden;"] +pdfdrive.com#$#body { overflow: visible !important; padding-right: 0 !important; } +||asopn.com^ +||tq-eu.clouback-3.online^ +||naturallyedaciousedacious.com^ +||mnpkxgfp.xyz^ +funpay.com,tractive.com,freshbooks.com##.banner-cookie-consent +cn.momondo.com#?#body > div:has(> div[aria-modal="true"] a[href="/privacy#cookies"]) +topagrar.pl#?#section[class^="sc-"]:has(> div[class^="sc-"] > div[class^="sc-"] > div[data-id="container"] > div[width] > div[class^="sc-"] > div[data-autoscale-warpper] > div[id^="adocean"]) +||timot-cvk.info^$popup +||6381.5clo0xmbf.com^ +||nestorscymlin.shop^$document +thequint.com#?#.container > div[class] > div > div[class] > div[class]:nth-child(2) > div[class] > div[class]:contains(/^Stay Updated$/):upward(2) +/ads-vast-vpaid.js?$script +||hydraulzonure.com^ +quora.com#?#.q-box[style^="box-sizing:"] > div.q-box:has(> span[data-nosnippet="true"] > div.q-box[style="display: none !important;"]) +yokohamajapan.com,store.mdsol.co.jp,noor-book.com,impactoespananoticias.com,fxpro.*,welcome.city.yokohama.jp,cart.hostinger.com,hogskolanigavle.varbi.com,manual.canon,kia.ru,chiba-tv.com,hab.co.jp,php.co.jp,ftm.nl,radios.co.at,radiosdepuertorico.com,jamaicaradio.net,radios.com.sv,radios.hn,radios.com.pa,radiosaovivo.net,radios.com.bo,radioarg.com,radios.com.co,radios.com.ec,emisoras.com.py,radios.com.pe,surinaamseradio.com,radios.com.uy,radio.co.ve,radiolisten.de,raadiod.com,emisora.org.es,radiofona.com.gr,radios.hr,ieradio.org,latvijasradio.com,radios.lu,radijas.org,radiohallgatas.hu,nederlandseradio.nl,nettradionorge.com,onlineradio.pl,radioonline.com.pt,radiosonline.ch,radiostanice.rs,nettiradiot.org,radio.org.se,internetradiouk.com,bg-radio.org,radio.pp.ru,radio.co.cm,radio.cd,radio.co.ci,radio.com.gh,radio.mg,radio.co.ma,egyptradio.net,radio.org.ng,radio.sn,radiosa.org,radiotunisienne.org,radio.co.ug,radios.hk,onlineradios.in,radioonline.co.id,radioonline.my,radionp.com,radio.net.pk,radio.org.ph,radiosingapore.org,radio.com.lk,vietnamradio.org,radios.org.il,radioth.net,zhibo.fm,radioau.net,radio.org.nz,emisoras.com.gt,radio.org.ro,siradio.si,ceskaradiaonline.cz,ecouterradioenligne.com,radiosonline.be,radios.co.ni,radioalgerie.eu,radios.co.cr,radio.or.ke,radios.tw,radioonline.kr,radio-bd.com,radios.com.do,trinidadradiostations.net,emisora.cl,radio.ht,radio.co.dk,emisoras.com.mx,jpradio.jp,instant.audio,radiosdecuba.com,consenthub.utiq.com,sketchup.com,kisarepo.jp,bitstamp.net,hesburger.*,znews.vn,amomeupet.org,egrp365.ru,sqlservercentral.com,saneibd.com,edukasicampus.net,godiva.co.jp,0patch.com,pvpoke-re.com,radioua.net,greenday.com,linuc.org,clicsante.ca,israelnationalnews.com,serpstat.com,pandavpnpro.com,freeyourmusic.com,liica.co.jp,x5.ru,adshnk.com,parkernathan.com,route-inn.co.jp,pastelink.net,dictum.com,tamtam.chat,ynjn.jp,881903.com,irisohyama.co.jp,olyrix.com,rutube.ru,asm.org,socialcomics.com.br,margarethowell.jp,ascoltareradio.com,wego.jp,storececotec.it,geeksforgeeks.org,dauc.cz,heidisql.com,sueddeutsche.de,plex.tv,tmohentai.com,gorsovet.com.ua##.cookie-consent +_adchoices. +trip.com###use-cookie +bravoteens.com##span[id^="BTEm"] +||mobiledevel.com^ +||undress.app/ad_banners/ +||goat.lymedocs.com^ +realt.by##.reading-box +guru3d.com##article.ct-publish:has(> header > .ct-publish-meta > .badge > .bi-badge-ad-fill) +###skinad-left +staradvertiser.com#%#//scriptlet("abort-current-inline-script", "jQuery", "covid19_modal") +||fascinatedfeather.com^ +corporate.vbest.jp###floating +||w3plywbd72pf.com^ +sinami.com##.banner_centerLeft +claimrbx.gg#%#//scriptlet('prevent-setTimeout', 'Adblocker Detected') +file-upload.com#%#//scriptlet('abort-current-inline-script', 'document.getElementById', 'getElementById("adblockinfo")') +tweakers.net#@##cookieOverlay +slreamplay.cc#%#//scriptlet('prevent-window-open') +||partners.dogtime.com^ +||cdn.ovqds.com^ +||05e11c9f6f.com^ +||dolphin.mayansmithgobat.de^ +hupu.com##.hupushihuo +squaremile.com##.parallax-wrapper +###scroll-ad +infoniac.ru##.post-zen +||dependsbichir.shop^ +ustream.to###adblockz_alert +||fumblingform.com^ +||peer39.com^$third-party +schemecolor.com###sc-gdpr-box +##.ad_heading +||qewylqmaqbjbj.top^ +busuu.com#%#//scriptlet('trusted-click-element', 'button[data-testid="advertise_continue"]', '', '2500') +careerkarma.com##.code-block > div#container > div.border-form-ajax +###taboola-below-article-thumbnails-express +sailingmagazine.net##center > font +astv.ru##form[id^="FormUpdateUser"] +###sidebar-top-ad +###leftadg +||dc5k8fg5ioc8s.cloudfront.net^ +erzgebirgskreis.de##.fnn-cookiemanager +###leaderAd +@@||formula.ifz.ru/cgi-bin/tex2img-new.cgi$stealth +||consent.a24films.com^ +atptour.com##.atp_ad +@@||my.asos.com/identity^$stealth +##.right-rail-ad +geniuskitchen.com##.gk-promo-card +||hohamsie.net^ +cashearn.cc#%#//scriptlet("prevent-setTimeout", "checkblockUser", "1000") +||51credit.com/51api/creditcard.php?mod= +##.forum-ad +onefootball.com##div[style*="ad-slot"] +xhamster11.com#%#//scriptlet('abort-on-property-write', 'wio-vpopunder') +=mumumoniqi-piaochuang- +||channelpartner.de/messaging.js +||takiparkrb.site^ +||owojqopr.com^ +||msxoux.icu^ +erogazopple.com###text-45 +||admiredresource.pro^ +ftios.vn##.ftd4-maybest +ilsole24ore.com###acceptCookieBanner +||loadtime.org^ +tutorialink.com##.tutorialink-ad3 +||injectshrslinkblog.com^$third-party +||916cad6201.com^ +||sailif.com^ +##.cookieLegal_comp +_438x60. +###cookiesAllowingRequest +centrumxp.pl#%#//scriptlet('set-local-storage-item', 'marketing', 'false') +onemanhua.com##body > div[style^="position: fixed;"][style*="z-index:"] +||xqjqripb.xyz^ +androidcentral.com##a[href^="https://ad.doubleclick.net"] +##.oneColumnAd +||adsoftware.top^ +||re-captha-version-3-263.buzz^ +instagram.com#%#!function(){new MutationObserver((function(){document.querySelectorAll("article > div[class] > div[class]").forEach((function(e){Object.keys(e).forEach((function(c){if(c.includes("__reactEvents")||c.includes("__reactProps")){c=e[c];try{c.children?.props?.adFragmentKey?.items&&e.parentNode.remove()}catch(c){}}}))}))})).observe(document,{childList:!0,subtree:!0});}(); +hentaihere.com##.js-adzone +playshake.ru#%#fuckAdBlock = function() {}; +best4you.sk##img[width="690"][height="90"] +/push.js?utm_source=*&domain=$script +expedia.at,expedia.be,expedia.dk,expedia.fi,expedia.fr,expedia.ie,expedia.it,expedia.nl,expedia.no,expedia.es,expedia.se,expedia.ch,expedia.co.uk,expedia.de###gdpr-consent-banner +lapagan.org###return-to-top + div[id][class*=" "] +||valesweetheartconditions.com^ +||filemoon-*/js/baf.js +||ggw.watertu.com^ +||thetruestory.news/widget-top.iife.js$domain=echofm.online|zona.media|thebell.io|agents.media +protanki.tv#$#.ant-modal-mask { display: none!important; } +||wantgoo.com/wantgoofiles/banner/ +##.custom-ads +daijiworld.com##.hpRightAdvt +dehn.at,dehn.de#@##cookieConsent +||imasdk.googleapis.com/js/sdkloader/ima3.js$script,redirect=noopjs,domain=gbnews.uk +||convertedhorace.com^ +newsbreak.com##div[style*="position:relative;width:100%;height:0;padding-bottom:"] +##.yahooads +digg.com##article.fp-vertical-story:has(a[href="/channel/digg-pick"]) +stfly.io#%#//scriptlet("abort-on-property-read", "tabUnder") +||bodieshomicidal.com^ +inwx.com#$#.consent-background { display: none !important; } +||2cnjuh34jbman.com^$third-party +timelessleaf.com##.sidebar > #custom_html-24 +chineseinla.com###weixin_ads2 +e-sogi.com###banner_members +clik.pw##iframe[id^="frame"] +||fpvdrzx.xyz^ +||d2rsvcm1r8uvmf.cloudfront.net^ +##.ad-fullwidth +anhdep24.net#@#.ad_box +hometheaterreview.com#?##page-sidebar > .ct-div-block:has(> .ct-code-block .amazon-search) +||cdn.myanimelist.net/images/event/support_mal/banner-ani-*.gif +||appyrincene.com^ +||excelwrinkletwisted.com^ +||arc.msn.com/*/api/selection?placement=*upsell +regielive.ro#@##AD_Top +||mdfsbn.com^$third-party +##.reviews-display-ad +/eis/diy/ad/* +##.phpbb-ads-center +vtv.vn##.ads +||oxcluster.com^$third-party +||istoanaugrub.xyz^ +.xyz:8009/11?x= +topic.com##.pages-Article-adContainer +freepik.com##.spr--internal +xtits.com#?#.container > div.block-content > div.table:has(> div.spot-holder > div.adv-title) +esports.gg###FreeStarVideoAdContainer_VCT +start.ru##.cookie_agreement +||haiyuer.com/uc +so.com##.atom-adv +||brown-gas.com^ +||hsfewosve.xyz^ +plusone8.com###overlay-advertising +petco.com##[data-widget-type="citrus-banner"] +##.advertisement.rectangle +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=agario-play.com +yatego.com###ycwMo +prozoro.net.ua##.install-app +ppe.pl##body .navbar__ad-opera +@@||adikpm.github.io/repo/assets/js-v3/prebid.js$domain=adikhealth.xyz|mangindo.xyz +||spokesperson254.fun^ +||rinsederangeordered.com^ +luscious.net#%#//scriptlet('set-local-storage-item', 'ignoring_adblock', '1') +##.snoadrotatewidgetwrap +||ourcommonstories.com^ +||d3imksvhtbujlm.cloudfront.net^ +paraphraser.io##div[style="min-height:122px"] +||haltingbadge.com^ +bab.la##aside[role="complementary"] +||c1.czcol.cn^ +||freeworldgroup.com/banner +||qdjsiyt.icu^ +||jijidy.com/640x200down. +nba.com###nba_tos +||lowlocket.com^ +fulltv.com.ar###canales-derecha > div[class]:has(iframe[src*="ver.gratis/"]) +||fwsir.com/static/cpt/ +autokult.pl##body > div[id] > div[class]:empty +||guojitv.com/m/js/ad_ +||n2faw.site^ +salesforce.com##.blog-shared-newsletter +||tpc.googlesyndication.com/safeframe/*/html/container.html$xmlhttprequest,redirect=nooptext,domain=megainteresting.com +thehungryjpeg.com###stickyWarningCookiePolicy +##.advertising_top +||n3567.com^ +||faggrim.com^ +vvrbank-krp.de#$#.lightbox--cookie-consent { display: none!important; } +ivacy.com###showdiscount-modal +@@||carefood.kz/upload/$image +twavking.com##.da_single_video +@@||cbox.ws/box/$stealth +||calm-length.pro^ +philomag.de##.stickyfooter .node--promoted +||fwcnex.icu^ +||pushyexcitement.pro^ +@@||betterads.org/hubfs/Mobile-Web-Ad-Experiences-Ranking-*.jpg +||riiciuy.com^ +graziamagazine.ru##.subscription_block_container +unstop.com##.cookies-save +##.header_ad_space +||decoycreation.com^ +calibercorner.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +bbs.xmfish.com##.adv-760 +harpers.org###issuem-leaky-paywall-articles-remaining-nag +||efs604.top^ +||static.sedodna.com^ +##.lazyload_ad +purplepainforums.com,snow-forecast.com###affiliates +||goteat.xyz^ +msn.com##a[href^="https://clk.tradedoubler.com/"]:not([href*="microsoft.com"]) +howcast.com##.m-brand-engagement +||omgranbulltor.com^ +studylib.net#?#.sidebar-top-content > span:contains(advertisement) +||judicated.com^ +aranzulla.it###ad97090 +||picadmedia.com^ +||btxxxnav.com^ +||pornohammer.com/static/script/*/video-cust-ad.js +jdbbs.com###archy5 +##.connatix-wysiwyg-container +##.lowerAd +||nvuwqcfdux.xyz^ +||yl04z4v.cn^ +###cookies_banner +52pk.com,hao.rising.cn,vpgame.com##.add +||mindlessswim.pro^ +||ss.phallicbedsore.com^ +||web-adblocker.com^$popup +tukkari.com,tukkari.eu,tukkari.cz,tukkari.de,citygolf.cz,rightdeal.sk#$##cookiesDialog { display: none !important; } +||glandinterest.com^ +||ab.fsdhbfi2h4932hriegnd111fdsnfl1l.co.za^ +chita.ru###subscribe-sendpulse +||snadsfit.com^$popup +bluejaysnation.com,canucksarmy.com,dailyfaceoff.com,flamesnation.ca,oilersnation.com,theleafsnation.com###box_2_300x600 +360.com###festival-mario-screen +###story_ads +varnascan.net,siikomik.com,summertoon.*,donghuaworld.com###footer + div[id][class*=" "] +apoteket.se#$#div[id^="CybotCookiebotDialog"] { display: none !important; } +@@||inoreader.com^$genericblock,generichide +||ilsussidiario.net/images/banner-*. +worldstarhiphop.com#$#html.om-position-popup body { overflow: visible !important; } +maranhesduve.club#%#!function(){if(-1 a[href^="http"]:not([href*="chanpindashi."]) +free-proxy.cz###navbar_right [onclick^="window.open"] +workspacetips.io#%#//scriptlet('prevent-setTimeout', 'shownJoinInModal') +bitcoinist.com,captainaltcoin.com,cryptonews.com,cryptonewsz.com,cryptopotato.com,insidebitcoins.com,news.bitcoin.com,newsbtc.com,philnews.ph,watcher.guru##[class*="clickout-"] +||validinstruct.com^ +rinconpsicologia.com##.site-container + div[id][class*=" "] +edh.tw###vip-banner +mlg.com###privacy-policy-overlay +express.co.uk##.vf3-conversations-list__promo +wpolityce.pl##.header-boost--promo +share.upmc.com##.sfmc-combo-module +||newstomato.com/images/newsletter.png +v3.account.samsung.com#$#body[style] { overflow: auto !important; padding-right: 0 !important; } +petri.com##.bottom-interstitial +maxthon.cn##.top-right-pop-wrapper +||worersie.com^ +myticket.de##div[id^="c-newsletter"] +101android.ru#?#body > iframe:matches-css(width: 360px) +||unitsympathetic.com^$document +||sexbuggishbecome.info^ +||louderwalnut.com^ +||kyuwkbd.top^ +mazda.hu#$#div[data-component-type="cookiePanel"] { display: none!important; } +||leefosto.com^ +||easegoes.com^ +eracom.com.tw,nexttv.com.tw#%#//scriptlet("remove-attr", "style", ".download-tip ~ .article[style^='padding-top:'][style*='!important;']") +||zitchuhoove.com^ +sudomod.com#$#body { overflow: visible!important; } +watch-jav-english.live#%#//scriptlet("prevent-window-open") +@@||pakkotoisto.com/js/siropu/am/ads.min.js$domain=pakkotoisto.com +||salmiacforked.top^ +adnkronos.com#@#.avp-p-wrapper +||bumblecash.com^ +spoutible.com#%#//scriptlet('set-cookie-reload', '__c_u_a__', '1') +||vidcdn.info/FSNOXw5.js +tvplay.tv3.lt#?##__next > div[class^="sc-"] > div[class^="sc-"]:has(> button) +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_thread_list[data-field^="\7b \"id\":4756933479,"] +searchenginewatch.com#$#.modal__newsletter ~ div.modal-backdrop { display: none !important; } +||0af2a962b0102942d9a7df351b20be55.com^ +||filter.adkmbc.com^ +||n0544.com^ +seznam.cz##div[data-dot^="reklama"] +bremer-gewuerzhandel.de##.emotion-genussletter-container +trendblog.net###sidebar-wrapper > ul > li.widget_duplicate_widget +cinemakottaga.*#$##wpsafe-link { display: block !important; } +||jeoawamjbbyeq.top^ +republic.ru##.ino_agent +##.ad_spacer +||vhngny-cfwm.life^ +filmweb.pl#%#//scriptlet("prevent-setInterval", ".offsetHeight&&0!==") +||scoreasleepbother.com^ +notbanksyforum.com##a[href^="http://www.ebay.co.uk/usr/heartresearchuk_shop/"] +lo4d.com#?#ul > li.feedb2.bbcr:has(>.glbt > .adsbygoogle) +wanchan.jp##.pc_appad +sakshi.com##.adtext +||ffofcetgurwrd.com^ +wccftech.com##.mb-11 +.com/js/bnr_ +xv-ru.com,xvideos.com#%#//scriptlet('trusted-click-element', 'span#disclaimer-reject_cookies') +oneindia.com##.oi-recom-art-wrap +##.adverticum_content +||empflix.com/mew.php +oko.sh,tii.la#%#//scriptlet('abort-current-inline-script', 'document.createElement', '/\.innerHTML|break;case \$\./') +finam.ru##.subScribeModal +||blehcourt.com^ +@@||googletagservices.com/tag/js/gpt.js$domain=etf.com +||wma.io^ +flagpedia.net##.frklm +/rss_$subdocument,domain=eegg.fun +@@||tennisachat.com/*/cookiealert.css +fctables.com###privacy-optin +xfreehd.com#@#.ad-title +wcostream.net##img[src^="premiumad"][src$=".png"] +nauchniestati.ru##.adv-universal +||avvxcexk.com^ +mobileflasherbd.com#%#//scriptlet("prevent-window-open", "youtube.com") +||wearevaporatewhip.com^ +||randomadsrv.com^ +soranews24.com##.ads-relatedbottom:not(.ad300x250) +hinet.net###media_ad_popup_overlay +##.advertisingimage +||glistening-novel.pro^ +###ad-banner-image +suzuri.jp##.footer-app-banner +###syl-cookie-monster +editpad.org##label[style="font-size: 12px;text-transform: uppercase;"] +##.advert4 +torrentgalaxy.to,torrentgalaxy.mx###blockalert +seths.blog#?#.sidebar-content > div.sidebar-widget > div#subscribeform:upward(1) +nhentai.net###chatbanner +reverso.net###bottom-mega-rca-box +e-kg.pl#?#.l-col > p:has(> a[href="https://starowka.kolobrzeg.pl//"]) +||shocked-failure.com^ +||43e1628a5f.com^ +||rabc1.iteye.com^ +||adbox.lv^ +developers.sber.ru###GDPRBanner +||gpt.mail.yahoo.net/sandbox$subdocument,domain=mail.yahoo.com +swedbankrobur.se#%#//scriptlet('trusted-set-cookie', 'COOKIE_CONSENT', 'functi-1|market-0') +||scashwl.com^ +call2friends.com#%#//scriptlet("abort-current-inline-script", "onload", "Adblock") +tomtop.com##.freePointWrap +||literalpraisepassengers.com^ +||s1.lk21static.xyz/assets/*-nov.gif$domain=layarkaca21.* +##.adslot_blurred +mobil.abus.com#@##cookieChoiceInfo +gsuitetips.com#$#body { overflow: auto !important; } +||sex3.com/ee/s/s/im.php +||bescore.com/libs/e.js +@@||perrzo.com^$generichide +##.nav_ad +zmorph3d.com#@#.b-header-banner +freevpn4you.net#?#div[style] > div[align="center"]:has(> div[id^="yandex_rtb_"]) +||speedporn.net/wp-content/themes/retrotube/nex1.js +cboxera.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||belengougha.com^ +||xml.servsserverz.com^ +##.banner-ads-right +ganassurances.fr###gan_privacy +/footer_ads.php$subdocument +ysia.ru##.wpdmi-read-us +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,important,domain=battlestick2.net +binance.com##.ng-scope > div.download-fixed +staige.tv##.s-cookie-notice +||acglover.*/wp-content/uploads/*-520-245. +||affiliate.k4.tinhte.vn^ +###Consentement-cookies +wideroe.no#$#body { overflow: auto !important; } +similarsites.com##div[class^="HomepageBanner__"] +sarayanews.com##div[class^="bestaAds_"] +||2345.com/js/index/activity/ +||ads.environmentalleader.com^ +/default/ads/* +reddit.com,reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion#$#shreddit-experience-tree { display: none !important; } +accuweather.com#$#.ads-not-loaded .non-ad { -webkit-filter: none !important; filter: none !important; } +kroesewatersport.nl##div.cookie-position +bing.com#?#.insights > .insml > li > .ins_exp > div > ul > li > .ta_c > a[href*="/aclick?ld="]:upward(1) +haufe-akademie.de###modal-exit-intent +/768x90- +hindustantimes.com##.storyAd + .slideSection +peachjohn.co.jp##.block-footer-guide--service a[href="/app"] +ara-shoes.de###newsletterHub +||1337x.unblock2.xyz/ab*.js +||appconsent.io^$third-party +###ad250 +2ip.io,2ip.ru##div[id^="notification-"] +||nygwcwsvnu.com^ +||izalflh.cn^ +||squeaknicheentangled.com^ +||algg.site^$popup +movies4u.*##.popSc +fselite.net#?#footer > section[class^="brxe-"]:has(> div[id] > div[class]:first-child:empty) +||aweyqalyljbj.top^ +##a[href^="https://fc.lc/ref/"] +mvtk.jp##.modal-cover +||d20903hof2l33q.cloudfront.net^ +europosters.de#$#body { overflow: visible!important; } +uploadever.com###container > center > .btn-success +###adcenter +@@||abema-tv.com^$stealth=3p-auth +hindustantimes.com##.embed_div > #games_popup_div +adweek.com#?#.sidebar > div.widget-wrapper:has(> div.htl-ad-wrapper) +nejm.org#@#.adplaceholder +@@||usercentrics.eu^$domain=paketshop.myhermes.de +douglas.at,douglas.be,douglas.ch,douglas.cz,douglas.de,douglas.es,douglas.hr,douglas.hu,douglas.it,douglas.nl,douglas.pl,douglas.pt,douglas.ro,douglas.si,douglas.sk##.product-grid-column:has(.product-tile__sponsored) +amazon.*##div[id^="dp-ads-"] +samehadaku.vip##.infoeps > div[class="pencenter"][style^="overflow: hidden"] +###cookiesWarningBanner +@@||api.usercentrics.eu/settings/*/latest/de.json$domain=sixx.de|prosiebenmaxx.de|sat1.de|prosieben.de|kabeleins.de|sixx.de|sat1gold.de|ran.de|joyn.de|sat1.at +||scootcomely.com^ +derprivatpatient.de###block-block-49 +||jowyylrzbqmb.top^$popup +tickets.vibus.de###DatenschutzFooter +@@||uponor.ee/UponorInternet/build/js/cookieconsent.min.js +runningmagazine.ca##.repeater-bottom-leaderboard +||sport.cz^$cookie=sportySporty +lanazione.it##div[class^="WhatsApp_wa_box__"] +||owlsr.us^ +iemone.jp##.survey_wrap +thecity.nyc##div[class^="adblock-allowlist-messaging__"] +cyberwaters.com##.thevpnbox +@@||poedb.tw/js/adsbygoogle.js +temi.pl#?#center > span.napis:contains(/^REKLAMA$/) +||sexfg.com^ +change.org##div[class^="FlashMessageError-"][role="alert"] +||cornersindecisioncertified.com^ +##.m-content-advert-wrap +mgnet.xyz##.container-bns +||grtyj.com^$popup +kadrovik.ua##a[class="global-link"][target="_blank"] +||myabandonware.com/media/img/innog/ +@@||3dpchip.com^$generichide +kvno.de#$##js-cookie-settings-manager { display: none !important; } +###footer-ad-large +erotic-beauties.com##.sidebar > .widget_text +||thefappening.so/sproject/*.php +@@||consent.trustarc.com/asset/$domain=fortune.com +aeza.net##div[class^="sc-"] > div[class^="sc-"]:has(> div[class^="sc-"]:contains(/^Support$/)) +y2mate.guru#%#//scriptlet("prevent-setTimeout", "window.open") +_adplugin. +##embed[width="468"][height="60"] +@@||cdn.privacy-mgmt.com^$domain=notice.sp-prod.net +###adskinleft +||terbit21.gdn/ads/ +coderutil.com##.search-module + a +##.advertisement.leaderboard +||xmlv4.reklama.network^ +||wholefreshposts.com^$popup +gotceleb.com##.pad > div[style^="clear:both; width:100%; padding:30px"][style$="height:250px"] +||largeharass.com^ +7kat.com.tr##.footerebulten +##.AdTagModule +vsnp.net###link_etc2 +sberdevices.ru##div[class^="cookie-modules--root--"] +||static.cloudflareinsights.com/beacon.min.js$domain=sportfacts.net|topsporter.net,redirect=nooptext +modamelis.com###btz-cookie-popup +||econenectedith.info^ +||huohuo.huamuwo.com^ +_cookieCgu. +comicbook.com##.embedVideoContainer +pholder.com##.AdSenseAboveFoldResponsive +||jav.land/ad/ +||yahoo.com/embed/tv?site=buzzhand& +###login_wp.foot_flwp +opoka.org.pl##.webpart-wrap-raw_html:has(> a[name="reklama"]) +||fuckthat.xyz^ +||36c4345fdc.c473f6ab10.com^ +wildgay.com###popup_box +qqyy.com##.right_dcotor_tab +news-daily.com,outlookindia.com,stripes.com###_snup-rtdx-ldgr1 +thgss.com#%#//scriptlet("set-cookie", "acceptUsingCookies", "yes") +||e-hotelarz.pl/grafika/grafika.php +fonearena.com###text-523313999 +||matchjunkie.com^ +centslessbooks.com,idec.org.br###ouibounce-modal +filfan.com##.topLeaderboardHome +myfoxzone.com,wtol.com,5newsonline.com,fox61.com,wqad.com,fox43.com,10tv.com,localmemphis.com,newswest9.com,weareiowa.com,krem.com,kcentv.com,cbs19.tv,kiiitv.com,12newsnow.com,cbs8.com,kvue.com,wbir.com,wltx.com,wgrz.com,newscentermaine.com,whas11.com,ktvb.com,13wmaz.com,firstcoastnews.com,wnep.com,wtsp.com,wfaa.com,kgw.com,king5.com,wcnc.com,kens5.com,ksdk.com,khou.com,wusa9.com,abc10.com,wwltv.com,11alive.com,wfmynews2.com,thv11.com,9news.com,wkyc.com,wzzm13.com,kare11.com,13newsnow.com,12news.com##html[data-platform="desktop"] div[data-module="grid"] > div.grid__section:has(> div.grid__content > div.grid__main > div.grid__cell > div > div[data-module-sizer="ad"]) +autogidas.lt##.header-ann +activistpost.com##a[href^="https://secure.altimetry.com/"] +||phjtxx.xyz^ +deccanchronicle.com##body .cnitem-list > .cnitem_add_area_outer +watchmyexgf.net##.albums-ad +ifrs.org#@#.cookie-modal +||webstats1.com^ +englishdom.com###gdpr-tooltip +###taboola_wrapper +||target.vivid.com^$third-party +||anyclip-media.com^$third-party +kinarino.jp,kinarino-mall.jp###js-view-in-app +devops.com###custom_html-70 +||getgreenshot.org/js/vendor/blockadblock.js +@@/wp-content/uploads/WP-manga/*$image,stealth=referrer,domain=mangasehri.net +||occupiedpace.com^ +moneycontrol.com##.advSlotsGrayBox +||cdnrl.com^ +people.com,cnycentral.com,news3lv.com,upnorthlive.com,wcyb.com,wjactv.com,fortune.com##.outbrain +||filter.hotmaracas.fun^ +||lifeboatdetrimentlibrarian.com^ +go4up.com##a[style="display:inline!important"] > img +vgtimes.ru##.write_gr +||tianshif.com/zeis/ts.gif +livestreaming24.eu#%#//scriptlet("prevent-window-open", "i-converter.com") +###tr_ad7 +stmas.bayern.de#$##cookie { display: none !important; } +work.ink#%#//scriptlet('prevent-window-open', '/youtube\.com|discord\.gg/', '1') +||watchadsfree.com^$popup +abcnews.go.com#$#.SingleVideo .MediaPlaceholder .StickyVideoPlayer { position: absolute !important; } +@@||aweprt.com/embed/fk?_=$domain=oklivetv.com|okteve.com +weeronline.nl#$##root > div[class^="wol-app-module__overlay-popup___"] { display: none!important; } +zhihu.com#?#.TopstoryItem:-abp-has(.Popover > .TopstoryItem-advertButton) +||takeyouforward.co^ +||vansky.com/agdg/homegg/ +||akalibalboas.com^ +||gagwebapi.com/api/webpush/$third-party +||rakuten.co.jp/com/advance/ichiba/rc-gp-sp_banner_scv/sp/condition.js +jtbank.cz###apploud-consent +##.ad-program-top +||aiiaqw.xyz^ +||inadmissibleinsensitive.com^ +zhangxinxu.com##a[href*=".taobao.com"] +||psixoahi.xyz^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,xmlhttprequest,redirect=googlesyndication-adsbygoogle,domain=codescratcher.com +||thikraik.net^ +spankbang.com###shorts-frame +||people.com.cn/img/gjt/ +uploadrar.com#?#div[class^="download"][class*="page"] div[class^="banner"]:has(> .as_ads_guard:only-child) +bul.az##body > div[style="margin: 0px auto; width: 1004px; height: 100px; margin-top: 20px;"] +bike-news.jp#$?#.swiper-slide[data-history^=photo_extra] { remove: true; } +togetter.com##.app_download_footer +||23.109.150.208^$popup +cyberlink.com#$#.modal-open { overflow: auto !important; } +jp.indeed.com#$#.jobsearch-JpProfileModalPromo { display: none!important; } +antiyoutuber.cz#%#//scriptlet('abort-on-property-read', 'Object.prototype.Branding') +c19-worldnews.com##.vmagazine-medium-rectangle-ad +||possessdolejest.com^ +||publika.az/axar.php^$third-party +cherryservers.com##[x-data="cookiesConsent"] +||gcylkq.xyz^ +||037jav.com/wp-content/uploads/2021/04/*.gif +9gag.com##.download-app-container +beelink.pro###adb +||ce1e674f2f.3897e90a2e.com^ +/template/jable/tj.js$~third-party +||daiwheew.com^ +||nalyticaframeofm.com^ +shamining.com#$#body { overflow: auto !important; } +fc2.com#?#div[class] > div[class$="_in"] > div[class$="_bt"] > button[name="gdpr_agree_btn"]:upward(3) +/\/(Zen-Technologies|solar-group)\.gif/$domain=bharatshakti.in +kiwiexploits.com#%#//scriptlet("prevent-window-open") +foodnavigator.com#%#//scriptlet("set-constant", "wrbm_gb.copyAlert", "undefined") +computing.co.uk##.sidebar-block +totv.org#%#//scriptlet("set-constant", "blocked", "false") +vedomosti.ru##.the-header-announce +leak.sx,comohoy.com,pornleaks.in#%#//scriptlet("prevent-addEventListener", "load", "abDetectorPro") +lifehacker.com##div[aria-label="Products List"] +||cmp.quantcast.com^$xmlhttprequest,redirect=nooptext,domain=utmn.gnomio.com,important +emma-matratze.de##.signup-form-popup[type="NewsletterSection"] +robtex.com##div[id^="crt-"] +motors.mega.mu#@#.ad-card +##.ad_btn1 +ingles.com,spanishdict.com#%#//scriptlet("set-constant", "SD_BLOCKTHROUGH", "true") +||aeffe3nhrua5hua.com^ +||eardepth-prisists.com^ +ricettasprint.it###tca-sticky +marketcapof.com##.ledger-container +cbsnews.com#%#//scriptlet('remove-class', 'floating', '.embed__sticky-content') +||styletrackstable.com^ +||cityscapestab.com^$popup +3c-lxa.mail.com##.ad.sky +mangafor.com#?#div[id^="custom_html-"]:has(> .textwidget > .adsbygoogle) +||gummierhedera.life^ +@@||forums.opera.com/api/topic/$~third-party,xmlhttprequest +@@||marca.com^$generichide +_400-80. +||csdnimg.cn^*#/preview/ +erostopics.net##.posts-list-upper-widget +bigear.cn##a[href^="/?module=dantian&"] +||unynwld.com^ +@@||latin.it/banner.php +jumpsokuhou.com##.headline_out +codejie.net##.s-ad-tit-box +##.advertorial_728x90 +tube8.*##.js-remove-ads-premium-link +swissmilk.ch#%#//scriptlet('set-cookie', 'closedCookieBanner', 'true') +hvhbbs.com##.margin-add > style + div +###advads_ad_widget-18 +aaread.space##.navi +||industrybrains.com^$third-party +mymarket.ge##.cookie-frame +huawei.com###cookie_notices +||hubsauwha.net^ +allcelebs.club##table[width="300"][border="1"] +||skyedtonify.click^ +||kiwi.halostats.app^ +##.adTag +last.fm#%#(function(b,c){setTimeout=function(){var a=arguments[0];if("function"==typeof a&&/^function [A-Za-z]{1,2}\(\)\s*\{([A-Za-z])\|\|\(\1=!0,[\s\S]{1,13}\(\)\)\}$/.test(c.call(a)))throw"Adguard stopped a script execution.";return b.apply(window,arguments)}})(setTimeout,Function.prototype.toString); +@@||stc.cdncache.xyz/css/fonts/$domain=streamz.ws +thehackernews.com##a.custom-link[rel*="sponsored"] +rutube.ru##.wdp-promo-modal-module__wdpPromoModalOverlay +||91jbz.com/file/script/A +||wheebsadree.com^$popup +||d3rkkddryl936d.cloudfront.net^ +historia.nationalgeographic.com.es##.sticky-subscription +||d2tf0.icu^ +###gpt-dynamic_native_article_4 +||tanglesoonercooperate.com^ +yahoo.com###ACT_crazy +##.adsense_rectangle +mypage.mag2.com##.reader-banner +flightradar24.com##div.items-center.justify-center:has(> div#pb-slot-fr24-airplane:empty) +||mrutvncx.top^ +||bjeellnaldl.xyz^ +||irutvnco.top^ +||gloomilysuffocate.com^ +/huijiad/huijiad. +timesofindia.indiatimes.com##div[data-cb="processCtnAds"] +stadtundgruen.de#%#//scriptlet("abort-current-inline-script", "$", "#contentwrap") +.com/js/indextop.js +||faultspiano.com^ +||inaccessiblefebruaryimmunity.com^ +||neptuntrack.com^$popup +||pipsol.net^ +||tjj.com^ +||psockapa.net^$document +daemon-hentai.com#%#//scriptlet('prevent-setTimeout', 'adbl') +promptart.labml.ai##.banner-container +###ad_bigrectangle +careerindia.com##.os-header-ad > * +mytoolz.net#$#body { overflow: auto !important; } +jianhuadaily.com##.alignnone[width="1050"] +@@||st.pussyspace.net/style/03/img/x-sprite.png| +gofile.io##a.mr-1[target="_blank"] +###ad-lb-secondary +||asset-1.tstatic.net/js/kgnotif_tribun.js$domain=tribunnews.com +101.ru##.showMessageAdBlock +tass.ru##div[class^="PartnerMaterialFeedAD_blank_card__"] +pudelek.pl##div[class^="_"][style^="position: relative;"] > a[href][target="_blank"]:only-child > div[style^="position:"][style*="background-image: url"] +@@||cdn61.zvooq.com/track/stream^$stealth +moegirl.org.cn#$##moe-global-background { background-color: unset !important; --background-url: none !importnat; } +franczyzawhandlu.pl##div[class^="position_"][class$="top"] +ivi.tv##.service-notification +kininaru-geinou-m.blog.jp##.rss-blogroll + div.sub-title-box +||smartico.one^$third-party +eservice.7-11.com.tw,4399pk.com,downkr.com,cardu.com.tw,cw.com.tw,hk.on.cc,share.acgnx.se##.banner +blog.neufund.org,uxdesign.cc##div[role="dialog"] ~ div[class] > div[style]:has(> div[class] > div[class] a[href^="https://medium.com/m/signin?operation=register"]) +babiato.tech#%#//scriptlet('prevent-setTimeout', 'show', '10*1000') +motobuy.com.tw##.AD1 +||cdn.vuukle.com/platform.js$domain=joblo.com +||uskoie.xyz^ +/pfe/current/*$third-party +||httpcn.com/Images/banner +##.g1-ads +123movies.*###infoAsk +kocpc.com.tw##ads +||theirsstrongest.com^ +mitula.com.tr###bannerEmailLeftContainer +@@||instreamvideo.ru/storage/inplayer/$third-party,image,script,stylesheet +||soilenthusiasmshindig.com^ +||unsettledfencing.com^ +7news.az##iframe#disableIframeBanner +||baijs05.shop^ +pro.m.jd.com##.download-pannel +2023.allthingsopen.org#@#a[href*=".com?aff="] +softicons.com##.bottom_125_block +blog24.me#%#//scriptlet('prevent-xhr', 'czilladx.com') +||dtbot.directtalk.com.br^$third-party +socialblade.com##.cas-wide-container +||coguan.com^$third-party +||hewomenentail.com^ +smartprix.com##sm-dap +||enroundwarms.top^ +||astoecia.com^ +@@/advert/*$domain=csxbank.com|fjgcjxgl.com|locuspublishing.com|moretv.com.cn +elmuemasz.hu###cookiePolicyDiv +scandal-heaven.com##body > .minwidth_IE + script + style + div[id]:not([class]) +||bundlerenown.com^ +politeka.net##.b__subscription-email +/js/layer1.js$domain=99re.com +deichmann.com##a[href="/de-de/newsletter"] +||4493.935ft4j96.com^ +||ttavav6.com/zz/ +||burbarkholpen.com^ +bloggif.com##.sky +eprice.com.tw###goldlink +||bothererune.com^ +drtuber.*#%#//scriptlet("abort-current-inline-script", "TRAFF_TARGETS") +cubiq.ru#%#//scriptlet('remove-in-shadow-dom', 'notification-bar') +qidian.com##div[style="background: rgba(0,0,0,0.4);position: fixed;left:0;right:0;top:0;bottom:0;z-index:9999;"] +||googlesyndication.com/safeframe/$subdocument,redirect=noopframe,domain=soranews24.com +##.ad-med-rect-tmp +||bladespanel.com^ +thesaturdaypaper.com.au#$##page-wrapper > .paywall-container-outer { display: none!important; } +||adoperatorx.com^ +ancient.eu,fanatix.com,gamertweak.com,gematsu.com,videogamemods.com,videogameschronicle.com,worldhistory.org##.adcontainer +calciomercato.com#$#.no-scroll { overflow: visible !important; } +ntr-games.com,irliepaja.lv,asiatimes.com,8lordfilm-0.xyz,thedailybeast.com##.grecaptcha-badge[data-style="bottomright"] +||benefactorstoppedfeedback.com^ +mysocceraustralia.com#?#.cactus-sidebar-content > aside.widget:has(> div.widget-inner div[id^="div-gpt-ad-"]) +@@||gamefly.com^$domain=bradsdeals.com|coupons.com|dealigg.com|dealnews.com|goodsearch.com|groupon.com|hotukdeals.com|moneysavingexpert.com|offers.com|retailmenot.com|slickdeals.net +metode.my.id,sigaptech.com,tutorialsaya.com#$##wpsafe-link { display: block !important; } +||finviz.com/gfx/banner_ +###leftGoogleAds +||btn.pchome.net^ +tiki.vn#%#//scriptlet("prevent-setTimeout", "mweb_to_app_popup") +viagogo.*#?#main div[class$=" "] ~ section:has(a[href*="//play.google.com/store/apps/details?id="]) +###adMeld +onlyinyourstate.com###video1-1 +||erdeallyighab.com^ +arte.tv##.next-cookie-banner +/nativeads/script/*$script +@@||jg-werbegeschenke.de/wp-content/plugins/complianz-gdpr/assets/js/cookieconsent.min.js +||ctasnet.com^ +||studiouspassword.com^ +tekno.kompas.com##.kcm +gametracker.com##[href="http://www.gameservers.com"] +##.ad_header_top +studyflix.de##.huge-notification +meteomedia.com##div[data-testid^="div-gpt-ad-"] +||omzylhvhwp.com^ +autotrader.co.uk##li[data-is-featured-listing="true"] +||psaithagomtasu.net^ +fotoplus.pl#%#//scriptlet('abort-current-inline-script', '$', '#cookiez') +news.baidu.com##.recommend-animate +##.article-advert +##.side-bar-ad +kiryuu.id##[width="1280"] +@@||520call.me^$generichide +thegamingwatcher.com#%#//scriptlet('set-cookie', 'snc-cp', '2') +||mogilev.online/wp-content/uploads/2021/01/telega.png +rheinbahn.de###cookiefrage +gkv-spitzenverband.de##.cb-banner +||familyminded.com/assets/di_ads.*.js +||wildcat.longviewforecasting.com^ +pornoreino.com##.bottom-bang +cardu.com.tw##.diamond-txt-ad +bola005.com##div[id^="AdLayer"] +bc.game#%#if (typeof localStorage != 'undefined' && localStorage.setItem) { localStorage.setItem('ns_system', '{"showCookie":false}'); }; +||download-file.org^$popup +bezprawnik.pl##div[class^="ad_slot_"] +silbonshop.com#$##consent-tracking { display: none !important; } +###search-google-ads +||enftvgnkylijcp.xyz^ +||xxxshake.com/*pop/|$script,~third-party +||futuresite.register.com/us? +netology.ru##div[class*="-banner-module"] +||tmulppw.com^ +pap.pl###block-zapiszsienanewsletter +jn.pt###sk-notifications-container +fanlesstech.com###HTML6 > .widget-content +||2nt.com/share/js/gdpr/ +e-kg.pl##.l-box__more +flightconnections.com##.right-column:has(> .route-display-box-container) +||chushoushijian.cn^ +winterszus.pl##.sidebar-banner +longreads.com##.support-longreads +freethesaurus.com###qk1 +###stationad +pornid.name,zbporn.com,zbporn.tv##.spots-title +tryboobs.com###spotsRight +vitacig.eu.com##.vctheme-cookies-popup +||cookie-script.com^$third-party +##.ad1b +||taosq.net/public/250x250.jpg +@@||adapi.zcool.com.cn/api/adstrategy/realtime/get_ad_info?location_id=$domain=zcool.com.cn +f95zone.to##.p-nav-list > li:has(> div[class] > a[href][data-nav-id="LiveSexCams"]) +partner.seznam.cz#$#.szn-cmp-dialog-container { display: none !important; } +caoporn.com###bottom-gg1 +actualidadiphone.com#?##abn_singlestealer:not(:has(> div.nav-youtube)) +||utiq-aws.net^ +||cookingsorting.com^ +streamlive.to,mamahd.com###ad_overlay +leaked.jp##div[style="width: 100%;height: 312px;margin:0px 0 5px 0px;overflow:hidden;border: 1px solid #e6e6e6;"] +||disinheritbottomwealthy.com^ +readthedocs.io##.keep-us-sustainable +||cdn.drawx.xyz^ +###sky-right +airdriecityview.com,alaskahighwaynews.ca,albertaprimetimes.com,bowenislandundercurrent.com,burnabynow.com,coastreporter.net,cochraneeagle.ca,delta-optimist.com,fitzhugh.ca,moosejawtoday.com,mountainviewtoday.ca,newwestrecord.ca,nsnews.com,piquenewsmagazine.com,princegeorgecitizen.com,prpeak.com,richmond-news.com,rmoutlook.com,sasktoday.ca,squamishchief.com,stalbertgazette.com,thealbertan.com,theorca.ca,townandcountrytoday.com,tricitynews.com,vancouverisawesome.com,westerninvestor.com,westernwheel.ca##.slot +##a[href*="/kt169.com"] +||qksrv1.com^$popup +/^https?:\/\/(ww.\.)?m4ufree\.tv(\/[a-z\d]{0,2}){3}\/[a-z\d]+\.js$/$script,domain=m4ufree.tv +baidu.com##.wa-zp-exact-new-border +i38.ru##td[valign="top"] ul:has(> li a[target="_blank"][rel="nofollow"][href="https://vk.com/tochki.nadgorodomi"]) +@@||ssports.com/images/resources/web/live/js/LiveAds.js +@@||spacecentre.co.uk/wp-content/plugins/uk-cookie-consent^ +||adconsole.kozoom.com^ +longform.asmartbear.com###site-main > div.layout-container-header > a[href="/subscribe/"] +head-fi.org##.hf_sponsor_140x140 +||materialmoon.com^ +iflscience.com##.header-secondary > .content-container.mobile +buzzfeed.com##.js-bfa-impression +/wpadgu-clicks.js$script +||espionagegardenerthicket.com^ +##.sidebar-box-ads +||uii.io/js/u3.js +nikopolnews.net##.callback +||steadilyearnfailure.com^ +apkpure.*##.aegon-link +||voodc.com/avurc +||altfafbih.com^ +##.rdm-daac-notice-template +asianporn.life,asiansex.life##.top-mo-ave +storyfire.com,s7.ru##.cookie-usage +lepoint.fr##body div#paywall-sticky +honeygain.com###root > button + div[class^="CardView-"] +@@||images.intellicast.com/Scripts/ad-v3.js +##.rs-ad +lifecake.com#$##modal-background.cookie { display: none!important; } +||thisav.com/js/bioep. +||struhuts.com^ +shellsmart.com##.header > #modal_container +@@||simg.doubanio.com^$stealth=referrer,domain=douban.com +||sellerignateignate.com^ +||dadslimz.com^ +jinghuasoft.com##.zhifubao +||hqtube.xxx/api/pu/ +||1.codesdq.com^ +viciante.com.br##body > style + div[id][class*=" "] + div[class*=" "] +||cloudfront.net/images/banners/original/$domain=mmacore.tv +sina.cn##div[data-adid] +redirect.dafontvn.com#%#//scriptlet("adjust-setInterval", "progressbar", "30", "0.02") +blog.livedoor.com##a[href="http://blog.livedoor.com/guide/blog_reader"] +||asryrzpu.xyz^ +flixclassic.pl#$#.overflow-hidden { overflow: visible !important; } +ilive.to#%#setTimeout(removeOverlayHTML, 2000); +||ams.fx678.com^ +||addynamix.com^$third-party +##.adsbottombox +||console.hour-media.com^ +tv2ostjylland.dk,tvsyd.dk##div[x-data^="cookieNotice"] +||eshoohasteeg.com^ +keb-automation.com#@##privacy-consent +oh-my-teeth.com###cta-sticky-banner +||noticebroughtcloud.com^ +||flac24bitmusic.com/uploads/headerbaner.gif +||chambermaidthree.xyz^ +wir-sind-bund.de,bbk.bund.de#$#.mfp-ready { display: none !important; } +||ebp.renren.com^ +||cdntxt.com/t1/ +soaphub.com##.sh-sh_inpost_3 +thefashionspot.com##.siqps-wrapper +@@||openfpcdn.io/fingerprintjs/$script,xmlhttprequest,redirect=noopjs,domain=uslugaplus.com,important +choice.npr.org#%#//scriptlet('trusted-click-element', '#accept') +||fafmimgubcm.com^ +||forthnorriscombustible.com^ +||assettoworld.com/bens/vinos.js +||adlayer.net^$third-party +||sharpofferlinks.com^ +getgreenshot.org##.logo+nav > div[class^="ga-"] +jingyingjiajiao.com##.bdgg +||boasttrial.com^ +startpage.com#@#.widget.ad +sport.ro,sukabumiupdate.com##.notification-wrapper +banki.ru##div[data-gtm-view*="_news_page"][data-gtm-view*="view_widget"] +||geo.dailymotion.com/player/x8agi.html$domain=cumhuriyet.com.tr +ebookdz.com#%#//scriptlet("abort-current-inline-script", "document.createElement", "adblockInfo") +520call.me#%#//scriptlet("set-constant", "all520dddaaa2022aaa", "undefined") +###GoogleAdTop +xnotx.com###sidebar > noindex +mylink.vc###pub9 > center +xemphimso.com##.float-ck +##.ads-banner-bottom +##.GoogleDfpAd-Content +@@||dragonfly.opera.com/app/$document +pornpics.com,pornpics.de##.stamp-bn-1 +##.adDyn +##.c-advert-app +||giboxdwwevu.com^ +bonusbitcoin.co##div[style="text-align:center;margin-bottom:10px;height:300px"] +10minutemail.net,eel.surf7.net.my,javatpoint.com###right +||airflow.tsmt5revp.com^ +newegg.com###promoTop +||pblcpush.com^ +##.app_nexus_banners_common +||pvxvazbehd.com^ +avclub.com,deadspin.com,gizmodo.com,jalopnik.com,jezebel.com,kinja.com,kotaku.com,lifehacker.com,qz.com,splinternews.com,theinventory.com,theonion.com,theroot.com,thetakeout.com##.js_ad-dynamic +usenix.org,kantarsifo.se,premiumcamps.info,romdb.geeklogger.com##.sliding-popup-top +mcdonalds.co.jp###freestyle-apps-sns +engadget.com##.related-content-lazyload +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=battlestick2.net +tanuki.pl###sidebar > div#buttons +||qq.com/Index/getAdsAndHotspot +onona.ru##.wheel-wrapper +||plrjs.org^ +archiproducts.com##.cont-newsletter-social +||understoodadmiredapprove.com^ +||alagaodealing.com^ +booksy.com##.c-cookiesBar +||66.fmx.cn/js/ +||static.mytuner.mobi/media/banners/ +gameloft.com,jeans-meile.de,sportfm.ru##.fancybox-overlay +||redir.widebluetrue.xyz^ +ritmoteka.ru##body > div[align="center"] > center > table > tbody > tr > td[height="300"] +theregister.com#?##right-col > .rhs_eagle_container > .adun:upward(1) +instadp.com##a[href="https://followmeterapp.com"] +inoreader.com##.ad_footer_remove +howtogeek.com##.subscribe-button +audiobyray.com###adblock_screen +||bestofmoneysurvey.top^ +##.float-adv-left-top +||getemoji.com/scripts/apester.js +###header-block-ads +fajnegotowanie.pl##.banner-container +barelist.com,spankingtube.com##a[onclick] +digg.com##.bg-digg-gray-darker > div.view-container.relative.text-center +benesse.jp##.sh-appbnr +/briefmenow.org\/img\/pa[0-9]{1}.jpg/$domain=briefmenow.org +||irrationalcontagiousbean.com^ +accuradio.com###slot2Wrapper +||girlsofdesire.org/flr6.js +||cdn.delutza.com^ +daisharin.co.jp###name-ga-cookie-accept-bar +||6198399e4910e66-ovc.com^$popup +zdnet.com#%#if (typeof localStorage != 'undefined' && localStorage.setItem) { localStorage.setItem('zdnetSettings', '{"autoplayEnabled":"off"}'); } +@@||chartbeat.com/swf/ChartbeatPDK.swf +||videoplaza.tv/proxy/distributor/*.weburl=https://www.voot.com/$important +||baidu.com/resource/tuisong/ +||handbaggather.com^$popup +topfiveforex.com##[href^="https://luckyfish.io/"] +familyminded.com##.inline-video-wrapper-featured +||vividcash.com^$third-party +||bakteso.ru^ +||5001.url25fatm.com^ +romfordrecorder.co.uk#$#.tp-backdrop { display: none !important; } +gartenappel.de###cookie_hinweis_wf +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-weigou-nav-buy +||falsechasingdefine.com^ +||9553.com/otherhtml/ +nikonrumors.com##.xoxo > li[id^="custom_html-"] +||kangaroobro.com/bn.js +@@||consent.cookiebot.com/uc.js$domain=netkom.de +##.cookies-popup +||marryingsakesarcastic.com^ +###bigad +##.header-pencil-ad +##.skyscraper-ad-1 +atlasobscura.com##.AdBlockModal +golinuxcloud.com##.golin-content +dinamalar.com###selNNenws +##.sf_ad_box +@@||telefon-treff.de/js/CW/adsbygoogle.js +||sel-sel-fie.com^ +||apxtarget.com^$third-party +konyhatizezercikk.hu#@##cookieModal +store.saneibd.com,yourmystar.jp###karte-c +medyascope.tv##.elementor-330147 +discuss.com.hk##div[id^="div-gpt-ad"] + div[id] +tetris.com##.vAxContainer-R +straitstimes.com###MyPageOverlay +ostannipodii.com###message_cookies +edrawsoft.cn##.publicity-entrance +@@||redditinc.com/assets/images/site/*_300x250.$image,~third-party +||resources.hostgator.in/affiliate/$image,third-party +bvl.bund.de#@##cookiebanner +stackoverflow.com###divQuestionFollowFeaturePopover +||xiaomi.eu/community/forumrunner/detect.js +epoznan.pl###rodo-info-box +##a[href^="https://www.goldenfrog.com/vyprvpn?offer_id="][href*="&aff_id="] +###ButtonAd +###diads +||cnzz.yifenghuyu.com^$third-party +||connecttoday.eu^ +@@|http://*.theinquirer.net/$script +||teemingmutts.shop^ +ogretmentercihim.com###poper +||responservbzh.icu^ +###ad_foot +get-in-engineering.de#$#.cookie-consent-modal-backdrop { display: none !important; } +||mlegyu.xyz^ +||d1xkyo9j4r7vnn.cloudfront.net^ +||cdn.ethers.io^$domain=newslive.com|animexin.vip|gayvidsclub.com +###AdBottomRight +||wandhi.com/img/ +##.ad-topper +mostlyblogging.com,sarkarideals.com,tvarticles.me###custom_html-3 +newser.com###divImageAd +aol.com##.m-promo-standard +dify.ai,bunq.com,framer.com##.--framer-cookie-banner-container +search.avast.com###AsbAdContainer +mega.nz###mainlayout > .psa-holder > .banner.anouncement:has(> .content-box > button[data-continue-link*="/features-update-"]) +polskieradio24.pl##section[class^="WtgWrapper_container"] +@@||10drives.com/api/$stealth,domain=premiumebooks.* +trinityaudio.ai###cookie_toolbar +||truckstomatoes.com^ +miltonkeynes.co.uk,whatsonstage.com##div[class*="AdContainer"] +vid.crictime.com###HDVideo +||foamyfood.com^ +kbjfree.com##.video-card[target="_blank"] +||1100ad.com^$third-party +infoq.com#?#.related__sponsor:upward(1) +||cdn.leightonbroadcasting.com^ +##.textSponsor +||iphaigra.xyz^ +||thiraq.com^ +dartsstreams.com,vipboxtv.*,dartsstream.me,golfstreams.me,motogpstream.me,rugbystreams.me,socceronline.me,tennisstreams.me,boxingstreams.me,ufcstream.me,mlbstream.me,nbastream.nu,live.crackstreams.se##.position-absolute.bg-opacity-50 +m.youku.com##body > [style="width: 100px; height: 100px; position: fixed; top: auto; right: 0px; bottom: 0px; left: auto; z-index: 188;"]:not([class]):not([id]) +||unbeardgorraf.top^ +||w11.zhongkaohelp.com^ +||pagead2.googlesyndication.com/pagead/show_ads.js$script,redirect=noopjs,important,domain=ehubsoft.net +ipon.hu#$#.noscroll { overflow:visible!important; } +##.adCenter +pallets.nl,migroskurumsal.com,wowhead.com##.cookie-settings +facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion###contentCol > div > div > div[class="_5hn6"][style] +||gplinks.in^$third-party +anderson-review.ucla.edu,meteoreporter.pl###privacyAlert +fanaticbike.hu#$#.cookie-alert-popup { display: none !important; } +||webshark.pl^$third-party +||0redire.com^$all +2345.com###sideCat +/js/db.js$script,third-party +||bookstaircasenaval.com^ +||iid97.com/wp-content/cache/autoptimize/js/ +##.gptSlot-outerContainer +bellesa.co##a[target="_blank"] > div > video +porndoe.com##.nav-page li > a[href^="http"][target="_blank"] +||888promos.com^ +||indianfriendfinder.com^$popup +||gecontentasap.com^$third-party +||563639804d.13e63e2dea.com^ +lsm.lv##.current-video.sticky > div.embed-responsive +ilm.ee#$#body { background: none!important; } +||autoclaim.ovh^$domain=dutchycorp.ovh +/s/s/js/m/custom_advanced.js? +@@||shrink-service.it/api-extension/$stealth,domain=adshnk.com|adshrink.it +||gstatic.com/uservoice/surveys/resources/prod/js/survey/survey_binary$script +handheldlegend.com#$##shopify-section-entry-popup { display: none !important; } +||fadedprofit.com^ +gebe.com###cookiePolicyBox +@@||fmhua.com^$stealth +darkleia.com,getcomics.info##.advanced_floating_content +slidehunter.com##.itm-ads +silicon.de#@#.dfp_ad +wstream.video#$##noplayer { display: none!important; } +||ocmtag.com^ +||9dmnv9z0gtoh.com^ +@@||haaretz.co.il/htz/js/advertisement.js +||466f89f4d1.com^ +||17fffd951d.com^ +m.jd.com##.j_curtain_yinliu +goal.com##[data-type="AdComponent"] +###sidebar_ad_2 +||mobipromote.com^ +||stubbleupbriningbackground.com^ +||xkowcsl.com^ +||kmisln.com^$popup +||d325d2mtoblkfq.cloudfront.net^ +digit.in##.recommended-box +||mootermedia.com^ +freedrivemovie.com#%#//scriptlet('abort-on-property-write', 'onload') +||badujaub.xyz^ +catalogmineralov.ru#$#.modal_window { display: none!important; } +||superzooi.com/ilove/bananas.php +##.ad-300-250-600 +mdn.lol#%#//scriptlet('abort-on-property-read', 'alert') +claude.ai##body > div:has(> div[data-theme="claude"] > h3:contains(Cookie)) +lefigaro.fr##.figaro-player.is-sticky +#%#var AG_removeCookie=function(a){var e=/./;/^\/.+\/$/.test(a)?e=new RegExp(a.slice(1,-1)):""!==a&&(e=new RegExp(a.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")));a=function(){for(var a=document.cookie.split(";"),g=a.length;g--;){cookieStr=a[g];var d=cookieStr.indexOf("=");if(-1!==d&&(d=cookieStr.slice(0,d).trim(),e.test(d)))for(var h=document.location.hostname.split("."),f=0;f div[class="module"]:has(> div.toptipsTab) +ytsyifytorrent.com,torrents.vip,ytsyifymovie.com,ytstv.me,ytstvmovies.*#%#//scriptlet('prevent-element-src-loading', 'script', 'pagead2.googlesyndication.com') +game8.co##img[data-track-nier-keyword="article_ads_creative.click"] +the-village.ru##div[class="base-Layout--Layout__asideCol"] > section[class^="screens-"] + section[class$="socialBlock"] +astondevs.ru###footer + div[class]:has(> div[class]:only-child > div[class]:only-child > div[class]:first-child > p > a[href="/cookies"]) +||enporn.org/system/theme/AnyPorn/js/popcode.min.js +||orgyxxxhub.com/js/objad.js +||fo.sackerskips.com^ +riemurasia.net#?##container > div.main-div > div[id]:has(>script[data-adfscript]) +watchhowimetyourmother.online#%#//scriptlet("prevent-addEventListener", "click", "checkTarget") +||ads.kelkoo.com^ +##.ad_in_article +##.td-a-ad +auto.ru##div[class="CardOfferBody__contentIsland"] +tousatu-ch.net##.head-under.widget_custom_html +baidu.com##.under-tips +putlocker-9.co##div[align] > a[title*="HD"][rel="nofollow"][class] +dojrzewamy.pl#$#body .ad-container { display: block!important; height: 1px!important; } +uol.com.br##.webalert_container +||katerigordas.pro^ +||axiomplus.com.ua/static/*/Axiom_CallMe/js/call-me.js +sita.sk#@#.ads-box +||dpmsrv.com^ +||yearbookhobblespinal.com^ +pizzamafia.ru###root > div[class^="popup_"] +||whaitsaitch.com^ +@@||s0.2mdn.net/ads/studio/Enabler.js$domain=yuukinohana.co.jp +/wp-bannerize/*$script,stylesheet +@@||demonoid.is/awe2.js +zoomgirls.net##.wallpaper-2ads +/mpc/*$domain=52xkdy.com|fydy8.com +||teenspirithentai.com^$third-party +hdtube.porn##.g-col-banners +||toovoala.net^ +||agmed.cyou^ +/adsen.php +@@||sharecast.ws/embed.min.js$stealth +tokfm.pl,avanti24.pl,gazeta.pl,wyborcza.biz,wyborcza.pl,wysokieobcasy.pl##body .adviewDFPBanner:not(#style_important) +||lzp.plus^ +||vuukle.net^ +||cb.com.cn/index/ad/ +twibuz.com##div[class^="blogroll-"] +||hypemakers.net^ +||jp.twww.sbs^ +##.sideBlockAd +037hdmovie.com###fix_footer2 +||vivads.net/links/popad$popup +forbesjapan.com##.article-detail-register +||googleads.g.doubleclick.net/pagead/id$script,xmlhttprequest,redirect=noopjs,domain=magesy.blog|blog.miuiflash.com|freewebcart.com|technoflip.in|hentaiseason.com|novinhastop.com|obutecodanet.ig.com.br|kolsuzkafasi.com|samuraiscan.com|modagamers.com|freegogpcgames.com|akumanimes.com|softwaretotal.net|ozabc.com|kopetnews.id|chimicamo.org|firmwarex.net|kieblog.vn|sampledrive.in|needrombd.com|aresmanga.com|chineseanime.co.in|portaliz.site|paidappstore.xyz|freecoursesites.com|hulnews.top|routech.ro|downloadr.in|financeflix.in|rule34porn.net|hiseku.com|crazytechgo.com|bithub.win|mytechroad.com|surfsees.com|38.242.198.170|enrology.in|jojo-themes.net|freedidi.com|brizzynovel.com|gezegenforum.com|freejav.guru|eoydo.com|3cinfo.net|appsmodz.com|crunchyscan.fr|boainformacao.com.br|manyakan.com|pinayvids.com|moviessquad.com|bneo.info|dengeki-plusv2.xyz|politicalmeme.pl|bullfrag.com|epainfo.pl|rontechtips.com|ypojie.com|cinemakottaga.*|tinhocdongthap.com|pogolinks.space|baominh.tech|sachiepvien.net|downloadcursos.org|jkmeng.cn|trgamestudio.com|audiobooks4soul.com|vfxdownload.net|electomania.es|captionsgram.com|clebinhoretrogames.com.br|reset-scans.*|alilove.pl|sqlserveregitimleri.com|tokuvn.com|texture-packs.com|bestwego.xyz|pcwarehub.com|phpscripttr.com|moddedguru.com|oyuncusoruyor.com|pbarecap.ph|sourds.net|tinyppt.com|tvinternetowa.info|nullpress.net|freeallcourse.com|nulljungle.com|udemydownload.com|doffeecafe.me|5.182.211.129|latesthdmovies.digital|hataphim.com|gigacourse.com|codingtuting.com|cyfostreams.com|movieslegacy.com|htstreaming.com|freewebcart.com|dubzstreams.com|watchmdh.to|ssf-co.com|solidfile.net|downloadtutorials.net|win10.vn|movieshub.top|legaartis.pl|legendary-rt-textures.xyz|globfone.com|blogging-techies.com|privatemoviez.*|courseclub.me|shineads.in|conhecimentolivre.net|downloadcursos.top|eductin.com|rtilinks.com|cronachedellacampania.it|applexgen.com|desktophut.com|pinsystem.co.uk|grafixfather.com|globalrph.com|phoenixfansub.com|cyberdefensemagazine.com|vectogravic.com|teknotaci.com|uplod.net|onlinecoursebay.com|scrapywar.com|worldpremiumware.online|godmods.com|modagamers.com|tipslearn.com|nulljungle.com|merkulov.design|cardiagn.com|nulleb.com|filecr.com|vpnbrothers.com|bollyholic.site|tech-story.net|tokuvn.com|freepreset.net|superembeds.com|animekhor.xyz|temi.pl|apkmagic.com.ar|crypto-blog.xyz|sakarnewz.com|nullphpscript.com|gocmod.com|mangaprotm.com|techsmoon.com|freedownloadvideo.net|magesy.pro|magesy.blog|freeudemycourse.com|wordpredia.com|comentariodetexto.com|myqqjd.com|windowslite.net|dvdporngay.com|karanpc.com|weadown.com|an1me.nl|nurparatodos.com.ar|rttar.com|downloadlyir.com|unofficialtwrp.com|hlspanel.xyz|brasilsimulatormods.com|taodung.com|ipamod.com|jenismac.com|portalizpro.com|francescopelliccia.it|fapdrop.com|azoranov.com|daotranslate.com|androjungle.com|filegajah.com|seriesperu.com|megafire.net|broflix.club|shineads.org|gplastra.com|kuponigo.com|arponag.xyz|step-tech.pl|thecustomrom.com|plc247.com|uiiumovie.*|knightnoscanlation.com|tavernadequadrinhos.com.br|idlixplus.*|teksnologi.com|aiimgvlog.fun|porninblack.com|emptycode.in|livehd7.io|tech5s.co|mockuphunts.com|7xm.xyz|xadulto.com|serverbd247.com|cctvwiki.com|luciferdonghua.in|filmefarsi.com|pinsystem.co.uk|tuxnews.it|sonixgvn.net|downfile.site|loaninsurehub.com|daotranslate.com|idlixofficials.com|mhdworldtv.com|kisahdunia.com|mixrootmods.com|chindohot.site|javindo.eu.org|snlookup.com|daotranslate.us|vietnoiket.com|3dmodelshare.org|plc4me.com|qcscertification.com|ezaudiobookforsoul.com|apkdelisi.net|tromcap.com|mangaflame.org|drivers.plus|okpeliz.com +twitter.com###layers div[class="css-1dbjc4n r-l5o3uw r-97e31f"] +||cb.baidu.com^ +douyu.com##.XinghaiAd +/adblock_detector2.$script +||jqtnft.xyz^ +||setupad.net^ +##.video-ad-container +||zoozishooh.com^ +||rhzvlcu.xyz^ +||metsaubs.net^ +melodelaa.link#%#//scriptlet("prevent-addEventListener", "/^(?:contextmenu|copy|cut)$/", "preventDefault") +##a[href^="https://go.xxxijmp.com"] +||933aee6e12.3e6072834f.com^ +@@||sinajs.cn/open/api/js/wb.js$domain=sc.sina.com.cn +imi-online.de,hdm-stuttgart.de,internetchemie.info,neumarktonline.de,lungenaerzte.net,reizdarmselbsthilfe.de,pflanzenfreunde.com,ingolstadt-today.de,dslr-forum.de,seitenreport.de###mbmcookie +###google-ads-detailsRight +||attesthelium.com^ +###AD_468x60 +||temp.aomg5bzv7.com^ +sys-team-admin.ru###policy-cookie +||formatinfo.top^ +koreabiomed.com##.view-aside +netouyonews.net##div[id^="mid_rss"] +thecontentauthority.com##.ez-video-container.ez-float-right.ez-stuck +###divAdRight +thegatewaypundit.com##.adcovery-home-01 +||feedads.feedblitz.com^ +@@/pubads_impl.js$domain=mytvsuper.com|tvb.com|tvbs.com.tw +adzz.in,proappapk.com#?##postBody:has(#gotolink) > div:not(.text-center) +_popAds. +thephoblographer.com#$#body { overflow: auto !important; } +||sex-and-flirt.com^ +auchan.fr##.loi_hamon.loi_hamon_open +||bcd8072b72.com^ +radioyanosik.pl##a[href^="https://clk.tradedoubler.com/click?p="] +gala.fr,capital.fr##.dailymotion-player-root > div#dailymotion-pip-small-viewport +||securedsmcd.com^$popup +||baidu.com/feproxy/ad/list? +||xizi.com/js/rotator.js +###skin-ad-left-rail-container +||adncdnend.azureedge.net^ +@@||ad.8maple.ru/8ads.gif +/js/nt.js$domain=fc-lc.xyz|tmail.io +kinotochka.co##.Fullstorybtizer > a[href="/index.php?do=register"] +mintmanga.live#%#//scriptlet('set-cookie', 'list-banner', 'true') +||ywokwlx.icu^ +pakobserver.net##.tdi_124 +##.gtm-ad-slot +###pushdownAd +wuzhuiso.com###mohe-hotnews_right +||spider.hoomie.online^ +##.ad-post-top +##.adv300x250 +@@||therichest.com^$generichide +filmlinks4u.is##div[id^="tab_HD"] +||refpaikgai.top^ +||gamecopyworld.com/ddd/ +/^(?!.*(fastlycdn.com|doodcdn.co|intensedebate.com|vixcloud.co|cdn.plyr.io|authkong.com|rsc.cdn77.org|linkvertise.com|fastly.net|statically.io|sharecast.ws|b-cdn.net|bunnycdn.ru|bootstrapcdn.com|cdn.ampproject.org|cloudflare.com|cdn.staticfile.org|disqus.com|disquscdn.com|dmca.com|ebacdn.com|facebook.net|fastlylb.net|fbcdn.net|fluidplayer.com|fontawesome.com|github.io|google.com|googleapis.com|googletagmanager.com|gstatic.com|jquery.com|jsdelivr.net|jwpcdn.com|jwplatform.com|polyfill.io|recaptcha.net|shrink.pe|twitter.com|ulogin.ru|unpkg.com|userapi.com|vidazoo.com|(\/\/|\.)vk\.com|yandex.|yastatic.net|ytimg.com|zencdn.net|player|youtube.com|cackle.me|googleoptimize.com|vuukle.com|chatango.com|twimg.com|google-analytics.com|hcaptcha.com|raincaptcha.com|media-imdb.com|blogger.com|hwcdn.net|instagram.com|wp.com|imgsmail.ru|cloudflare.net|(\/\/|\.)x\.com)).*$/$third-party,script,_____,domain=fapfappy.com|onestream.xyz|123movieshd.*|sportsonline.*|dlhd.*|ducumon.click|klto9.com|f2movies.to|streamcenter.pro|xx0day.com|sextb.xyz|sextb.net|gocast2.com|alexsports.site|xxxymovies.com|javhdo.net|daft.sex|tv.puresoul.live|stakes100.xyz|veryfreeporn.com|bestsolaris.com|link.ltc24.com|linkebr.com|bitfly.io|adcorto.me|exe.app|gplinks.co|miklpro.com|kutt.io|cutlink.link|rexdlfile.com|downloadhub.ink|skidrowcodex.co|adcorto.xyz|cuturl.in|paidtomoney.com|kissmanga.link|skidrowcodex.net|vvc.vc|illink.net|300mbplus.*|hdmovieplus.site|shrinkme.in|gibit.xyz|iir.ai|todaynewspk.win|stfly.me|dz4win.com|bolssc.com|canyoublockit.com|aii.sh|uptoshort.com|gsurl.in|oncehelp.com|adslinkfly.online|extramovies.casa|asianclub.nl|kshow123.net|dlapk4all.com|cryptoads.space|profitlink.info|shorthitz.com|putlocker.digital|pimpandhost.com|pornpapa.com|shorthub.co|xxxfiles.com|pornone.com|rawdex.net|hiperdex.com|ask4movie.co|animekayo.com|xorgasmo.com|mitly.us|xtits.com|vjav.com|japscan.se|birdurls.com|area51deportiva.com|mixdrop.to|allporncomic.com|doramasmp4.com|animepahe.com|1337x.is|savelink.site|free-trx.com|gosexpod.com|kropic.com|kaplog.com|homemoviestube.com|pics4you.net|manganelo.link|zeenite.com|clk.ink|push.bdnewsx.com|iyotvideos.com|uptomega.me|tumanga.net|wat32.com|123moviesfree.*|123unblock.best|123unblock.*|shieldmanga.club|shieldmanga.*|ccurl.net|beinmatch.*|ytmp3.eu|movie8k.*|sports24.*|openloadmov.net|downloadpirate.com|payskip.org|themoviesflix.co|hentaitube.online|bestshort.xyz|link1s.*|earnwithshortlink.com|foxseotools.com|exe.app|10convert.com|crownimg.com|fc.lc|mypornstarbook.net|desitvshows.xyz|strims.*|cpmlink.net|bigtitslust.com|holymanga.net|links.mflixblog.xyz|skidrowreloaded.com|pewgame.com|himovies.to|warefree01.com|kissanimes.cc|sxyprn.com|sxyprn.net|anupama.*|kiryuu.co|blurayufr.com|forex-trnd.com|wolfstream.tv|tuktukcinema.net|userupload.net|crypto-faucet.xyz|doctor-groups.com|downloadhub.kim|myadultanimes.com|freeadultcomix.com|shrlink.top|lelscan-vf.co|ruvideos.net|srsone.top|otakufr.co|jujmanga.com|allviids.com|amlijatt.in|fulltube.online|123movies.*|lewdweb.net|fsapi.xyz|flixtv.club|promo-visits.site|krypto-trend.de|hatsukimanga.com|simplyfaucet.xyz|fzmovies.*|desiflix.club|tny.so|1mlsbd.com|knaben.ru|streamtape.*|mangadop.info|japscan.ws|dramacool.*|123movies-hd.online|latestmanga.net|hexupload.net|sukidesuost.info|sbembed1.com|cocomanga.com|rawkuma.com|erogarga.com|mixdrop.sx|kiiw.icu|crownimg.com|onlynudes.tv|hitomi.la|kabegamipuloh.web.app|japscan.ws|bluemediafiles.*|mrdhan.com|films5k.com|zetporn.com|watchmalcolminthemiddle.com|reddit.tube|btcmovies.xyz|outletpic.com|la123movies.com|streamingworld.club|gomo.to|yesmovies.sx|xtits.xxx|y2mate.com|upornia.tube|weloma.art|pornvideos4k.com|4kpornmovs.com|theproxy.to|putlocker-website.com|up-load.io|insuranceblog.xyz|leaknudes.com|beingtek.com|gtlink.co|fmovies.app|hentaiblue.com|yifysubtitles.vip|anonymz.com|torrentgalaxy.to|fmoviesto.cc|mixdrop.*|just-upload.com|go-stream.site|eztv.unblockedsites.net|wareskey.com|fullcrackedpc.com|crackdj.com|aileen-novel.online|porncomixonline.net|7starmovies.net|wuxiarealm.com|mangahub.io|dvdplay.*|tinyurl.is|readcomiconline.li|mangaraw.org|rawmanga.top|senmanga.com|hacamchicac.com|mangas-raw.com|flyfaucet.com|streamadblockplus.com|imgsen.com|imgstar.eu|picdollar.com|pics4upload.com|silverpic.com|apkmody.io|imgsto.com|nikaraw.com|subdl.com|crackpoint.club|torrentgalaxy.to|javct.net|haho.moe|sockshare1.com|4anime.gg|sportssoccer.club|footyhunter3.xyz|extrafreetv.com|1337x.unblockit.cat|yourporngod.com|watchjavonline.com|tirexo.blue|picyield.com|bluemediafile.*|pornrabbit.com|stream2watch.be|worldstreams.watch|worldstreams.click|milfzr.com|gameshdlive.xyz|streamcheck.link|gamerarcades.com|asiangaylove.com|yurineko.net|animepahe.ru|0123movie.site|ufcfight.online|biggamez.xyz|trannyteca.com|youpits.xyz|lilymanga.net|123moviesite.one|bestporncomix.com|zinchanmanga.com|yaoimangaonline.com|worldstreams.lol|zoechip.cc|zoechip.com|monoplay.xyz|oxy.st|backfirstwo.com|3dporndude.com|thepiratebay.zone|mmsbee24.com|sekaikomik.bio|dofusports.xyz|1tamilblasters.*|gaystream.pw|hog.mobi|pahe.me|kuncomic.com|rawinu.com|nicomanga.com|prbay.online|prbay.top|prbay.xyz|youtube4kdownloader.com|soccerinhd.com|remaxhd.fun|remaxhd.cam|eztvx.to|bunkr.ci|bunkr.site|indiangaysite.com|elgoles.pro|hdfungamezz.xyz|upmovies.net|gamehdlive.online|nativesurge.info|readcomiconline.li|nowmaxtv.com|luciferdonghua.in|hawtcelebs.com +||sozi.cn/images/tj/szdown +||xlrjnhxi.xyz^ +filmvilag.me###adv_kereses +||pesterunusual.com^ +nbastream.net,nfl-stream.live##a[href^="http://www.sportyplay.com/"] +##.image-advertisement +||barhalunkist.shop^ +msn.com###taboola-above-homepage-thumbnails +||ewurserw.top^ +seafarerswelfare.org##.subscribe.gray +##.adVideo +##.banner-cctv-A2 +##.bottom_ad +parmigiani.com##.slideout-cookies +decolar.com##.subscription-sticky-footer-container +||oppfiles.com/script_include.php?id= +##.adsense-article +gamewatcher.com##.top-banners-wrapper +andhrafriends.com#?#.ipsClear > li.ipsDataItem:has(> center div[data-floatposition="bottom-right"]) +||nuniceberg.com^ +||pinttalewag.com^ +###MediumRectangleAD +bizhint.jp###jsi-signup-modal +||gitoku.com^ +temu.com#%#//scriptlet('trusted-set-cookie', 'privacy_setting', '100') +getthit.com#%#//scriptlet('set-constant', 'sharedController.adblockDetector', 'noopFunc') +||lauhoosh.net^ +jumpmatome2ch.biz##.d-contents +##img[width="720"][height="90"] +##embed[width="120"][height="240"] +||atdlbgx.xyz^ +healthbenefitstimes.com###google-adv-top +pogoda.wp.pl##div[class^="placeholder_"] +||93692zubo66936.com^ +zhcw.com##.jltb +||sequencestairwellseller.com^ +xxx18.uno#%#//scriptlet('prevent-setTimeout', 'window[a0b(\'0x') +||utrius.com^ +@@||tra.scds.pmdstatic.net/advertising-core/$domain=voici.fr +/cdn-cgi/pe/bag2?r[]=http%3A%2F%2Fhilltopads.net +##.ad-c-label +###ch-ads +||hdaidj.cn^ +##.m-sponsored +||6699fa.cn/imagestb/ +##iframe[src^="https://tsyndicate.com/"] +@@||safeframe.googlesyndication.com/safeframe/*/html/container.html$domain=castlesiege.io +||imgsrc.baidu.com/*/pic/*.jpg$domain=/87[0-9]{2}ck\.cc/ +@@||ipspeed.online/*/*.png$domain=freeopenvpn.* +pornhits.com###s-suggesters +freecodecamp.cn,freecodecamp.one#@#.btn-social +||unspeakablepurebeings.com^$popup +readhxh.com,readsnk.com,readkingdom.com,readonepiece.com,readvinlandsaga.com,watchoverlord2.com,demonslayermanga.com,read7deadlysins.com,readfairytail.com,readnaruto.com,watchsao.tv,watchgoblinslayer.com,readdrstone.com,dbsmanga.com,readopm.com,readkaguyasama.com,readjujutsukaisen.com,readtowerofgod.com,readnoblesse.com,readmha.com##.justify-center > div > center +downloadhub.cfd##a[href="https://bestbuyrdp.com/"] +||nhentai.net/api/_/popunder?$popup +homemoviestube.com##.film-aside-ads +||trafficbroker.com^$popup +pravda.com.ua##.google_banner +||avthelkp.net^$popup +||boldsky.com/common/build/js/site-notification-desk.min.js +accuweather.com##body #header-davek +movie007hd.com##div[id^="divAd"] +||saipeevit.net^ +keepvid.com##.side_adBox +##ps-connatix-module +ifeng.com##div[class^="layout-"] > div#subNav + div +dvdgayonline.com##.aligncenter +slashdot.org###announcement +||louses.net^ +makyaje.com###nodata +||potentialapplicationgrate.com^ +luxuretv.com#%#//scriptlet('abort-current-inline-script', '$', 'Modal') +sonnenapotheke-hauenstein.de,apoase.de,apotheke-marienbrunn.de###cookie-message ~ .design +secure.logmeonce.com##.alert-box.bottom +||guineaacrewayfarer.com^ +1track.ru#$#.modal-backdrop { display: none!important; } +@@||jinyongci.com^$generichide +||kkjshsj.com^ +###mpu_banner +||ourdreamsanswer.info^ +||126.net^*analysis +erdinger.de###cookie_conf_banner +musescore.com#?#main[class] > section[class]:has(> div[class] > img[src^="/static/public/img/musescore/app_image/"]) +||kopvx.cn^ +@@||yimg.com/ss/rapid3.js$domain=style.yahoo.com.tw|tw.answers.yahoo.com +feedbax.de#@##cookie-popup +||datacluster.club^$popup +##.js-dfp-ad-top +||fuelbuck.com^$third-party +fmovies.limited,rarbg-official.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +2ip.io,2ip.ru##.ip-links-container > div > i[class^="ip-icon-link"] + a +kickass.love##a[href="/k.php?q=q"] +||bedinastoned.click^ +||eakelandorder.com^ +||turncdn.com^ +||d2g6dhcga4weul.cloudfront.net^ +||sapo.pt/api/molecule/newsletter +torrentgalaxy.to#%#//scriptlet('adjust-setInterval', 'loader', '*', '0.001') +themoscowtimes.com##.preheader_advert +dbook.docomo.ne.jp,dmagazine.docomo.ne.jp#@#.ad-cover +||delicatereliancegodmother.com^ +carsized.com##.pl_header_ad +||xml.setlitescmode-2.online^ +ltn.com.tw,stheadline.com##.ad_w300 +wpolityce.pl#$#.nu-header-with-boost ~ .nu-main-content { margin-top: -45px!important; } +electronicsforu.com##.webform-wrapper +@@||policy.app.cookieinformation.com/*/jysk.nl/nl.js$domain=jysk.nl +||kkmacsqsbf.info^ +||login.bappaads.com^ +@@/adverts/*$domain=onlychild.cn +cnnindonesia.com##.wtfact +news.yahoo.co.jp##a[data-ylk^="rsec:webtoapp;slk:bnr_"] +||blotburn.com^ +##.secondary_ad +audioholics.com,classy-online.jp#@#.side-ad +||constructpreachystopper.com^$popup +thegay.com##.wrapper + section +||mysteryislands-music.com/assets/25d95cf50901b28289d2452522416f01.js +##.smalladblock +||kaplay.com^$third-party +ufanotes.ru#?#.right > div.weather +@@||adslink.pw/advertisement.js +yorkshirepost.co.uk###sidebar-newsletter-signup +focus.cn##.qhb-fixed +||obduratesettingbeetle.com^ +economictimes.indiatimes.com##.techSideWidget +otonarisoku.com,pazdra2ch.blog.jp###comment-title +techtalk.gfi.com##.ulp-overlay +||besttracksolution.com^ +ipornia.com#%#//scriptlet("set-constant", "vdaVars.neverblock.loaderUrl", "undefined") +24.hu##.a2blck-layer +||magicianboundary.com^ +erwinmueller.com#$##mod-event-popup-info { display: none!important; } +igg-games.com##.post > a > img +douyu.com##.pendant-wrap +||dopor.info^ +||cdn.thealtening.com/banner$image +found.ee##.disclaimer-text +||asrowjkagg.com^ +||tutvp.com^ +4tube.com###main-jessy-grid +hdzog.com##.block-showtime-two +downkr.com##a[href*=".xitongzhijia."] +||moocaicaico.com^ +banana.by###footer +sparkasse-dachau.de,sskm.de#%#//scriptlet('trusted-click-element', 'a[data-form=".eprivacy_optin_decline"]') +knauber-heizoel.de,knauber-erdgas.de,knauberstrom.de###cookieoverlay_outer +schellgames.com##.privacy__popup +||hdfilms.tv/js/x4pz6s8.js +huya.com###J_roomGg2 + a +||alonehepatitisenough.com^ +||ifsnickshriek.com^$popup +||realisecheerfuljockey.com^ +filecrypt.co##a[target="_new"] > img +8teenxxx.com###footerad4 +viralsciencecreativity.com##div[id^="pagePinnedMiddle"] +der-postillon.com,ghacks.net##.mrf-cmp +||static.schrotundkorn.de^ +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=arkadium.com +/Ads/bid300b.aspx$subdocument +@@||googleads.github.io/videojs-ima/node_modules/video.js/dist/video.min.js$domain=setn.com +||pop.nexusbytes.com^$domain=servedez.com +||puma.com^$popup,domain=hupu.com +||vagalume.com.br/js/lib/modalAgeRestriction.js +||ft.com/a.html +||rigembassyleaving.com^ +exophase.com##.ad-general +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws###app-container #vasquette div[class] > div[aria-label*="Chrome"] +||sandwichdeliveringswine.com^ +58.com###banjiaAD +##.cnx-player +zenmarket.jp###gdpr-terms-warning +socketloop.com###boring +||licklink.net/js/full-page-script.js$script,redirect=noopjs,important +||jeestauglahity.net^ +||susifhfh2d8ldn09.com^ +||web-guardian.xyz^ +||chatwoot.hicity.vn^ +||xg6hb.xyz^ +||delivery.adrecover.com/allow.jpg$domain=duplichecker.com|smallseotools.com,redirect=1x1-transparent.gif,important +##.link_ad +||idm.hit.gemius.pl/gplayer.js$script,redirect=gemius,domain=poradnikzdrowie.pl|mjakmama24.pl|se.pl|eskarock.pl|voxfm.pl|radioplus.pl|eska.pl|radiosupernova.pl|vibefm.pl|urzadzamy.pl|mediateka.pl|muratordom.pl +cryptomininggame.com#?#.col-lg-3 > .panel:has(>.panel-heading > h2:contains(Advertisements)) +##.billboardAd +th.gl#%#//scriptlet('prevent-element-src-loading', 'script', 'nitropay.com') +||pollenshuckles.click^ +@@||sdk.privacy-center.org/sdk/$domain=video-streaming.orange.fr +pig69.com#$#body #protection { display: none !important; } +##.header_ad_div +||myadsserver.com^ +||oceanwebcraft.com^$third-party +||privatedqualizebrui.info^$popup +||singlesexdates.com^$popup +comedy.com##.advertisement-video-slot +||kp.*/adaptive/push/ +||fieldparishskip.com^ +||hitbip.com^ +||aab.devicetests.com^$script +cryptopolitan.com##.crp_inarticle_ads_container +||faqirsborne.com^ +||rtb-uswest.bat-ads.com^ +||18av.mm-cg.com/*/7mmtv.gif +||images.proxena-adserver.com^ +bjd.com.cn##.bjd-advertisement +###ads_title +simsdom.com#?#button ~ div[id] > div[id] div[class$="promoted"]:upward(2) +engine.presearch.org#$?#template[x-if="state.ads"] { remove: true; } +ouyaoxiazai.com##div[id^="cs_"] +soft4fun.net###xad_mu +@@||delivery.consentmanager.net/delivery/cmp.php$stealth +wentronic.com,wentronic.pl#$#.overlay-block:not(.overlay-block--gallery-modal-open) { display: none !important; } +freedownloadmanager.org##.news_subscr +||wcostream.net/premiumad +||directtaafwr.com^ +##.dart_tag +solgar.com.tr###footkvkk +||cdn.dawplm.com^ +eurogamer.pt,eurogamer.pl,rockpapershotgun.com,eurogamer.it,eurogamer.net,eurogamer.pt##div[data-mode="signup"] +||mbvsm.com^ +cnblogs.com##.bannerbar +diynetwork.com#$#body[style^="margin-top: 90px;"] { margin-top: 0!important; } +privacytutor.de###elementor-popup-modal-46882 +##.custom-advert-banner +app.neilpatel.com#%#//scriptlet('prevent-xhr', '/googletagmanager\.com\/gtm\.js|static\.hotjar\.com/') +trend.az##.read-news-on +autohome.com.cn###packetsWrap +||surdotly.com/js/Surly.min.js +||longfiles.com/images/468.png +||ogercron.com^ +hannity.com,inspiredot.net##.banner_ad +copaair.com###__next > div.MuiBox-root:has(> div[role="dialog"] a[href$="/politica-de-privacidad/"]) +buzip.net###linkerBanner +||douyu.com/member/gamegift/gameList/ +||54a9c3de7c.5ba9bf8065.com^ +dexerto.com##.inline-block +||nubcdaqa.xyz^ +messenger.com,facebook.com#%#//scriptlet("remove-class", "_31e", "body > ._li") +hema.nl#@#.cookie-modal +||b21be0a0c8.com^ +szhk.com###h_banner +||repeatloin.com^ +@@||majesy.com/css-cdn/advertisement.js +informpskov.ru###telegramButton ~ br +||iyf.tv/play/$xmlhttprequest +||314gqd3es.de^ +||gamadsnews.com^ +||tausoota.xyz^$popup +||habitualexecute.com^ +thestudentroom.co.uk#@#.fixed_ad +poedb.tw###topbanner970 +||d2ob4whwpjvvpa.cloudfront.net^ +lawrato.com##.popup-graybox +ettoday.net##amp-embed[type="dable"] +||disingenuousmeasuredere.com^ +97hj.net##.widget-zfb +##.wp125ad +sexy-youtubers.com#?#.td-ss-main-sidebar > aside.widget_text:has(script:contains(ad_idzone)) +||demonstrationtimer.com^ +||hdxyj.icu^ +||itv.hexun.com +##.container-content__container-relatedlinks +||afront.io^$third-party +||d1wjz6mrey9f5v.cloudfront.net^ +flightconnections.com#%#//scriptlet('remove-attr', 'id', '.display-box') +bunny.net##.bn-cookies-wr +||masturbation22.com/d/ +###topbanner_sponsor +||188.42.84.159^ +bookvoed.ru###subscribeToPush +||telegram.im/widget-button/ +||azyuuk.xyz^ +||ervantasrelaterc.com^ +vpsdx.com##.container-fluid > .gsfha3 > .gsfha3 +brisbanetimes.com.au,smh.com.au,theage.com.au,watoday.com.au###articlePartnerStories +@@||onetrust.com/scripttemplates/*/otBannerSdk.js$script,domain=konami.com +interviewbit.com##.modal-nudge--free_academy +ulule.com###react-ulule-header > div[class="sc-gojNiO gBoKcs"] +singlegrain.com##.sticky-bottom-cta +||cvfgere96.cn^ +||unleanmyrrhs.shop^ +||politegoldfish.com^ +shineads.in###block-88 +103.by,1plus1.video,1plus1.ua##.AppPopup +@@/playlist.m3u8$stealth +||crokerhyke.com^ +vervetimes.com##.uyj-before-header +duckduckgo.com,duckduckgogg42xjoc72x3sjasowoarfbgcmvfimaftt6twagswzczad.onion##.js-results-ads +theage.com.au###jobs +||ffdafx.xyz^ +||img.3sjt.com^ +##.barre_cookies +||viivedun.com^ +schick.com#$##skintimateNewsletterPopUp { display: none!important; } +@@||tbs.com/ajax/$stealth,domain=tbs.com +||adespresso.com^$third-party +||rentalcars.com/partners/ +shop.gfk-geomarketing.de,map-sales.de,interkart.de##.modals-overlay +||intelensafrete.stream^$third-party +||booster-vax.com^ +epravda.com.ua#?#.post__text > blockquote:has(> p > a[href="https://t.me/epravda"]) +dcard.tw#?##__next > div[class^="sc-"]:has(> a[href^="https://go.onelink.me/"]) +windowsreport.com##.aip_block +||pblymbu.cn^ +||ssp.moeli.net^ +sparwelt.de#$#.sw-modal { display: none!important; } +moviemakeronline.com#$#.adsbygoogle { position: absolute!important; left: -3000px!important; } +moqups.com,x.gd##.notice +||hhit.xyz^ +###adbox2 +###skin-ad +||epom.com^$third-party +muscleandstrength.com##.node-email-subscribe +menunedeli.ru##.mypopup-over +##.advertisingLegend +pixelprivacy.com##.pp-disclosure-notice +vermangasporno.com#?##fooside > div.col-md-4:has(> div.textwidget > form#feedburner) +ostrovok.ru##.mobileappbanner +@@||consentmanager.mgr.consensu.org^$domain=wempe.com +gorodrabot.ru###yandex_zen_popup +||jia.com/js/zixun/news.js +axsam.az##.adsbymahimeta +rbb.de,detomaso-watches.com#$#.page-wrap--cookie-permission { display: none !important; } +##.advertisement_300x250 +investing.com#%#//scriptlet("set-constant", "window.google_ad_status", "1") +##.ads_unit +||m1.we556.com^ +||wbsadsdel2.com^$popup +||latchwaitress.com^ +||glidelamppost.com^ +||mvmbfdfu.com^ +blackstonefootwear.com,meteomedia.com,theweathernetwork.com##div[data-testid="cookie-bar"] +###cookie_policies +bayernlb.de#%#//scriptlet('set-cookie', 'video', 'true') +@@||amsarkadium-a.akamaihd.net/assets/*/arena/heap/advertisements.js$domain=nydailynews.com +||sheardirectly.com^ +||ee0ca7f291.b41732fb1b.com^ +###bodyAd4 +croxyproxy.rocks###zapperSquare +||bnalzlv.top^ +###breadcrumb_ad +brainly.com.br##div[data-testid="registration_promo_modal_module_id"] +||shangxueba.com/ask/images/woxiaoyun.jpg +##.smallAds +||freegamefinder.com^$popup +||cdn.bescore.com^$third-party +koko.by##.offer-image +||f2dsex1.com/public/fb*.png +doomovie88-hd.com##img[alt="ufabet"] +@@||dydog.org/*/DPlayer.min.js +||rauvoaty.net^ +1001games.com##.gc-leaderboard +moviesand.com#%#//scriptlet("prevent-window-open", "about:blank") +cnbc.com###FiveThingsBanner-morning +3g.baidu.com,m.baidu.com,m5.baidu.com,www.baidu.com###banner_call + div[id] +ok.ru###hook_Block_VideoBannerBlock +||avaamo.com^$third-party +||ntvsw.com^ +forbes.com#$#body { overflow: auto !important; } +minfin.com.ua##.mail-subscribe-user +fitforfun.de##.promotion +||kwyamu.xyz^ +###floating_ad_container +||uwaxoyfklhm.com^ +express.co.uk##.newsletter-pure +searchenginejournal.com##a[rel="sponsored noopener"] +pornhub.com,youporn.com#?#:-abp-properties(float: right; margin-top: 30px; width: 50%;) +naturalnews.com#$##SubscribeBox { display: none !important; } +||peachurnet.com/templates/banner-*x*-*.png +@@||mstm.motorsport.com/mstm.js +||indiscreetjobroutine.com^ +||tytyeastfeukufun.info^ +/hao123_api/api/cpc/* +||grondrens.com^ +miohentai.com#%#//scriptlet("abort-on-property-read", "mnpwclone") +startpage.com##.pa-bg-carousel +||jiasule.com/static/js/http_error.js +||utarget.ru^ +nova.rs##.banner-footer +||xuehi.cn/reward/reward +||dmnprx.com^ +||pleasuregirl.net/bload +||joydirtinessremark.com^ +mail.yahoo.com##div[style="width:640px;height:360px"][id="video-player"] +-160x600_ +giphy.com##.device-desktop +hindimoviestv.com#%#//scriptlet('abort-on-property-read', 'PopShow3') +digg.com#?#aside > div.mb-8:has(> div[id^="bsa-zone_"]) +||cbd2dd06ba.com^ +ludashi.com##.div_text +##.ie-adtext +||chinaqking.com/images/qkw/jobApply1.jpg +##.sponsored-result +##.ad_970x250_container +@@||g2a.com/toolbar/$document +||a2712396a5.eed795c63c.com^ +###Advertisement2 +adminsub.net##div[class$="_ad"] +###bd-hl-content +||zeenews.india.com/live-tv/embed#mute +@@||financialexpress.com/wp-content/themes/vip/financialexpress/js/ads_js.js +||youtube.com/embed/?enablejsapi=1&origin=*3dnews.ru&widgetid=1 +@@||tvbanywherena.com^$generichide +##a[href^="https://engine.phn.doublepimp.com/"] +mail.yahoo.com#$##yucs { max-width: 2560px !important; } +fantasy.espn.com###games-footercol > .fantasy-sponsored-headlines +##.ad-right-header +||patronagepolitician.com^ +stapadblockuser.info#%#//scriptlet("prevent-window-open") +dubznetwork.com#@#.ads-by-google +apartmenttherapy.com,thekitchn.com,cubbyathome.com##.SiteFooter__signup +heizung-billiger.de###news_modal +||baylnk.com^ +||i8xkjci7nd.com^ +siivous.fi,zipextractor.app###cm +netspotapp.com#%#//scriptlet('set-cookie', 'Sticky_gdpr', '1') +##.ad_body +skincarie.com#@#.td-a-rec +iyaxin.com##.huand3 +hexun.com###videoLeftAd +@@||youtube.googleapis.com/embed^$stealth +ag.ru#%#//scriptlet('set-cookie', 'articlesRead', '1') +##a[href^="https://pb-imc.com/"] +uniqlo.com##.h-modal-cookie +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.game_list_and_rank +finance.sina.com.cn##div[class^="side-btns-"] +bing.com##.moduleCont > a[data-h^="ID=HpApp"] +||cookies.openticket.tech/latest/cookies.js +stavka.tv##.CookiesInfo +||mole.getfamealy.com^ +||ilvnkzt.com^ +quackr.io#$##wrapfabtest { height: 1px!important; } +||s1.hanlinzhijia.com^ +||wallowwholi.info^ +privatehomeclips.com##.left + div:not([class]):last-child +||uitopadxdy.com^$popup +||heiye.cc/js/bancity. +||gpone.com/cdn-cgi/apps/head/*.js +||buzzhand.com/images/$subdocument +.qidian.com/floatOpBox. +||adhaven.com^$third-party +||pistolsizehoe.com^$popup +||adtelligent.com^ +@@||live.lequipe.fr/thirdparty/prebid.js$~third-party +###cookie-policy-notice +##.trc_rbox +||consideratepronouncedcar.com^ +||boom.laravel.io^ +###adsZone +glowandglamcorner.com,dadinthemaking.com,listofthis.com,phineypet.com,actualpost.com,beautifulfashionnailart.com,americanstylo.com#%#//scriptlet("trusted-replace-node-text", "script", "innerHTML", "/document\.hasFocus\(\)===?false/", "document.hasFocus()") +||sinaimg.cn/finance/ny_live*.js +truffeonline.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||onmantineer.com^$popup +infotel.ca###desktopBannerBottom +logowanie.nn.pl#$#body { overflow: auto !important; } +||hornet.newburycompanies.com^ +mamastar.jp###personalInfo +||dy8c.com/JieShaoBu-secret/uploads/hongbao +zmovs.com##.im-b.show +##.ad-header +gamepure.in#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +##.m-advertisement--container +||tech.hindustantimes.com/fetch-tech-products/taglist?$domain=livemint.com +###vvc_cookie +allthatsinteresting.com##.banner-row +britannica.com##.abl +||push.ilovelanguages.com^ +fukuishimbun.co.jp###follow-footer +###homeAds +||mooncklick.com^ +||tsml.fun^$popup +###taboola-above-homepage-thumbnails +britannica.com,courthousenews.com,diabetesjournals.org,imgmak.com,infobel.com,kuioo.com,linkedin.com,pilot007.org,radiotimes.com,soundguys.com,topperlearning.com##.ad-banner +@@||infotel.ca/images/ads/$image,~third-party +iprima.cz#%#//scriptlet('abort-current-inline-script', 'document.createElement', 'kununu_mul') +##.adSpotFullWidth +suntimes.com,hellomagazine.com,genyt.com,express.co.uk,apkmirror.com##.OUTBRAIN +||tlx.3lift.com/header/auction|$redirect=nooptext,important,domain=aternos.org +hdthevid.online,vidhdthe.online#%#//scriptlet("abort-on-property-read", "JSON.parse") +||ck-cdn.com^$third-party +###bottom-ad-banner +9to5google.com,9to5mac.com,9to5toys.com,dronedj.com,electrek.co##.post-body > p > a[href^="http://bit.ly/"] > img +||hetsouds.net^ +||splief.com^ +ing.org###crush > #signup +video.komarovskiy.net##.rmp-ad-block-container +/jdforum\.net\/images\/.*(_final|green)\.gif/$domain=jdforum.net +kaotic.com###overflowIdVideo +ricettasprint.it#$#body { margin-top: 0 !important; } +don24.ru###__fstrk-social-widget +||boxcracked.com/wp-content/uploads/*/boxcracked.png +javhay.net,katestube.com,capital.bg,wankoz.com,tubsexer.*,fetishshrine.com,pornicom.com##.advertising +||ulwfys.xyz^ +||ignamentswit.com^ +dujiaoshou.cn###ad1 +||okanjo.com^$third-party +||fridaywake.com^ +psychpoint.com#%#//scriptlet("set-constant", "counter", "-1") +insiderintelligence.com###div-id-for-middle1-ad +pdfaid.com#%#//scriptlet("prevent-setTimeout", ".offsetHeight") +##.ad-lat2 +freeporn.info##.alfa_promo_parent +||alllget.com^$third-party +viva.gr#$#body.cc--open { overflow-y: auto !important; } +||intentionscurved.com^$popup +||nuhgpx.xyz^ +sap-certification.info##.site-c-header-ad-cr +###adSide1-container +place.line.me###floating-root + nav[class^="_"][style="bottom: 0px;"] > div:not([id])[style="bottom: 0px;"] +/ad_banner/*$image,domain=~ccf.com.cn +||platform.twitter.com/js/timeline$domain=anbariloche.com.ar +||98140548.xyz^$document,popup +||subsequentmean.com^ +||camprime.com^ +||wherunee.com^ +##.relatedAds +msn.com##a[aria-label="Ricardo"] +umicore.com#@#.cookieconsent:not(body):not(html) +cyberpedia.su###divtext > p[style="color:red;"] +racerxonline.com##.interstitial +||kangaroobro.com/bnpc.js +||bootcdn.net/ajax/libs/jquery-cookie/*/jquery.cookie.$domain=zaixianjisuan.com +eetimes.com###techpaperSliderContainer +||bcc878.com/js/abc/ +flickr.com##div[class^="main view"]:has(a[href$="&ref=sponsored"]) +nfl.com##.d3-c-adblock +###pvadscontainer +/pagepeel.$~xmlhttprequest +||dsbudkwq.xyz^ +lahoo.ca###diyrighttop +quora.com##.dom_annotate_ad_image_ad +proxybit.*##body > .container > .alert-dismissible[onclick^="window.open('https://bit.ly/"] +hgtv.ca##.latestContent-ad +jimdo.com##.pp-cookie-banner +###dfp-rectangle1 +###ad_primary +||tpc.googlesyndication.com/pagead/images/x_button_blue2.svg$image,redirect=1x1-transparent.gif,domain=diep.io +||dw.jiglikeshilla.com^ +||soft.mumayi.net/images/download.gif +/adiframe|*|adtech; +pccwglobal.com,consoleconnect.com###cc-overlay +||shockingship.com^ +forum.wordreference.com###botSupp +greatandhra.com#%#//scriptlet('set-cookie-reload', 'sosh', 'true') +ify.ac,milliyet.com.tr###push +###block-adsenseleaderboard +ghacks.net#?#.home-intro-hold-posts > a.home-posts:has(> span.ftd-title:contains(SPONSORED CONTENT)) +||cookie-switch.viminds.de^$third-party +pitch.com##div.player-branding-popover +/js/showgg.js +indeed.com#?#div[class^="jobsearch-"] > div[class^="css-"]:has(> a[data-href*="indeed.com/mobileapp?"]) +tutiempo.net##.ContBannerTop +||quedo.buzz^ +@@||static-file.com^$stealth,domain=eyny.com +@@||gdpr.privacymanager.io/latest/gdpr.bundle.js$domain=diepresse.com +araba.mitula.com.tr###bannerUsuario +###advertBox +cointelegraph.com#?#.post-page__item > div[class]:has(> div > div > a[href^="javascript:void(0);"][data-link] img) +adzz.in,proappapk.com#$##gotolink { display: block !important; } +dunckelfeld.de#?##gatsby-focus-wrapper > div > div[class*="css-"] > footer + div[class*="css-"] > div[class*="css-"] > div[class*="css-"] > p[class*="css-"] > a[href="/datenschutz"]:upward(4) +brtn.cn,btime.com##.business-item +##.bottomSponsor +wallpapers.com##.keyword-box > div > div[style*="height: 250px; display: flex;"]:has(> #pwMobiMedRectAtf) +lite.qwant.com#?#.content > article.result:has(> p > span.ad) +||ifjslio.top^ +noblessetranslations.com,4allprograms.me,ahstudios.net##body > script[src] + div[id][class*=" "]:not([id*="_"]) +##.advertspace +###ad-box-left +||wbidder.online^ +||fetishshrine.com/jsb/js_script.js +tumblr.com#?#aside > div[class^="_"][style^="top:"] a[href="/docs/relevantads"]:upward(3) +freexcafe.com#@#a[href^="http://refer.ccbill.com/cgi-bin/clicks.cgi?"] +nflstream.io##.embed-responsive > div[class="position-absolute w-100 h-100"] +mcafee-com.com#%#//scriptlet('set-constant', 'count', '0') +||small-headed.sbs^ +||choamikr.com^ +check24.de##.c24AppSplash +reuters.com##div[class^="article-prompt__container__"] +houstonchronicle.com##div[class^="ad-module"] +||symptomslightest.com^ +||premonitioninventdisagree.com^ +onlinetrade.ru##.indexBnrAndItems__bnr +mousecity.com#?#div[style^="display: inline-block; width: 728px; height: 90px; border:"] > script:only-child:upward(1) +@@||pagead2.googlesyndication.com/pagead/managed/js/adsense/*/show_ads_impl_$script,domain=rekidai-info.github.io +postandcourier.com##.dfp-ad-div +javdragon.com##body > .messagge.alert +curimovie.com#%#//scriptlet("adjust-setTimeout", "#counter", "", "0.02") +wokularach.pl#%#//scriptlet('set-local-storage-item', 'display_cookie_modal', 'false') +##.ContentBottomAd +steve.ai,animaker.com,ts.today##.cookie_section +blog.livedoor.jp##.rtcm +||replacestuntissue.com^ +skyscanner.jp###EmailCaptureInline +||sumbreta.com^ +androidadult.com##center > a[href*="utm"] > img +||display.cdnbucket.com^ +skysmart.ru#$#.cdk-overlay-container { display: none !important; } +##.l-adsense +tech.onliner.by#?#.news-text > p[style^="text-align:"]:has(> strong > a[href^="https://t.elegram.ru/"]) +##.euCookieLaw +##.cookie_warning +globalpublishers.co.tz##.adcontainer +tradingview.com###charting-ad +||mangatail.com/sites/all/themes/newbird/js/adblock-checker.min.js +luxuretv.com##iframe[data-src^="https://rokymedia.com/"] +||nederlandseloterij.nl/statics/nlportal-cookie-consent. +||hoopchina.com.cn/web/ad/ +ze.tt##.store-links +||tubeadvertising.eu^$popup +||xjtosdof.icu^ +##.top-box-right-ad +||jbm6c54upkui.com^ +wetter.com##.lity-modal +||sewersneaky.com^ +##.adv__leaderboard +etyres.co.uk,asdatyres.co.uk#$#.modal-backdrop { display: none !important; } +prajwaldesai.com##div[data-elementor-id="327160"] +/wamobantong.oss- +app.filen.io#?#main > div.right-4:contains(This site uses cookies) +gsdn.live,culture-informatique.net,xn--nbkw38mlu2a.com,chataigpt.org,gamevcore.com,novel-gate.com##body > iframe + div[id][class*=" "] +sushiwok.ru##div[class^="cookie-module__"] +/asset/angular.min.js?t=$xmlhttprequest,~third-party +@@||auchan.ru/pokupki/media/banners/*.jpg$~third-party +||aiftakrenge.com^ +||38eoeyf93dude0nh.8pv9vvi9b.com^ +/ec5bcb7487ff.js$script +techrum.vn##div[class^="k_ads_vip_"] +||qprthjab.com^ +@@||virginmedia.com/etc/designs/lgi-uk-mobile/*/cookie-disclaimer.min.$domain=virginmedia.com +||ti4la.icu^ +rigzone.com###frmSideSubscribe +||037hd.mobi/images/banners/ +||desiregig.com^ +haaretz.co.il###__next > div[class*=" "] > div[class*=" "][data-test="bottomStrip"] +@@||talkgadget.google.com^$jsinject +||dazu57wmpm14b.cloudfront.net^ +||heron.joel.is^ +jytechs.in,miuiflash.com,djxmaza.in,thecubexguide.com#%#//scriptlet('prevent-xhr', '/adtrue\.com|eningspon\.com|freychang\.fun|orquideassp\.com|popunder/') +@@||krebsonsecurity.com +||awrfds3.pornpapa.com^ +labsnews.com##.modal__policy +h-ka.de,thi.de,oedp-mainz.de,oedp-koeln.de,oedp.de##.cookiemessage__overlay +||creatives.cliphunter.com^ +||rcerrohatfad.com^ +@@||translate.googleusercontent.com^$generichide +||sentimenthailstonesubjective.com^ +gelia.fi,gelia.no,gelia.se#$#.cookie-information { display: none !important; } +###right1-ad +##.container-bottom-ad +||as1.maturexxx.vip^ +||hetaruwg.com^ +filese.me#%#//scriptlet("adjust-setInterval", "countdown", "", "0.02") +@@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl.js$domain=lolalytics.com +porndr.com##.content > .bottom-pct +@@||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=rockradio.com +||welved.com^ +comic-days.com##.gtm-top-days-premium-banner +business-standard.com##.bannerRelease +680news.com##.div-app-alerts +||inping.com^$third-party +/ifeng_jdttemplate.js +||meremark.com^ +||sssvd.china.com^ +||situatedconventionalveto.com^ +||xrpikxtnmvcm.com^ +||stbeautifuleedeha.info^ +f1box.me,golfstreams.me,mlbbox.me,mlbbox.me,mmastreams.me,motogpstream.me,nbabox.me,nflbox.me,nhlbox.me,rugbystreams.me,socceronline.me,tennisonline.me,cricstream.me##.position-absolute.bg-opacity-50 +@@||tags.news.com.au/prod/adblock/adblock.js +lifeonvirginiastreet.com###genesis-content > div.after-entry +hackread.com###text-52.widget +mironet.pl,mironetcz.sk,mironet.cz#$#.cookiesDialog ~ div.ui-widget-overlay { display: none !important; } +##.ad-sponsored-links +||extremityzincyummy.com^ +||tobaccosturgeon.com^ +||4b7140e260.com^ +||cdncg.com^*/peiyinquan +||mysteelcdn.com/gg/ +slashdot.org##.article-nel-12935 +||a32d9f2cc6.com^ +paperzonevn.com#%#//scriptlet('prevent-addEventListener', 'load', 'XV') +nes-emulator.com##.adindex +||orange.jo/ar/offers/pages/$domain=~orange.jo +||linkexchangers.net^$third-party +@@||sciencedirectassets.com^$stealth=useragent,domain=sciencedirect.com +hik-connect.com##div[class^="src-pages-cookie-___cookieTip__app-cookie-container"] +balay.es#@#.o-cookielaw +||s3.amazonaws.com/uploads/image/505544/33ab86499a.png$domain=nishinippon.co.jp +laanevirumaauudised.ee##div[class^="CookieBarElements"] +||ezhefg9gbhgh10.com^ +snopes.com##.outer-ad-unit-wrapper +||norisoku.com/rss- +croxyproxy.rocks,purevpn.com##.gdprContainer +shonenjumpplus.com##.daily-series-banner-wrapper +||oiu09.cn^ +pcsoft.com.cn##.gsxzdl +fxstreet.com#$##prestitial-handle { display: none !important; } +##.top_Ad +redketchup.io##.potato_sticky +dixyporn.com##.bottom_spot +supernowosci24.pl###r-above-menu-wrapper +kuyhaa-me.site,igg-games.com,urlbluemedia.shop,kuyhaa.me,cosmic1.co,lodynet.link,vidbinge.com,pelismax.one,stbturbo.xyz,y2mate.is,gogoanimes.fi,vdbtm.shop,hdfilme.plus,get-to.link,zoro.se,moviekhhd.biz,drivemoe.com,fusevideo.io,watchsomuch.to,faselhd-embed.scdns.io,nxbrew.com,toonily.me,limetorrents.lol,pelisflix2.green,185.217.95.44,moviesjoyhd.to,faselhd.*,5.45.95.74,kissasian.*,opensubtitles.org,1337xx.to,praiing.monster,lookmovie2.to,poisteewoofs.monster,streamvid.net,lookmovie.foundation,1l1l.to,file-upload.org,meetdownload.com,hentaiasmr.moe,witanime.org,yugenanime.tv,kissanimefree.cc,animeyt.es,anichin.top,tinyzonetv.se,monoschinos2.com,klmanga.net,zinmanhwa.com,ssrmovies.singles,tuktukcinema.*,phimmoiyyy.net,futbol-libre.org,rule34hentai.net,nettruyento.com,animepahe.ru,btcmovies.xyz,vidsrc.*,123movies-hd.online,dramacool.*,123movies.*,jujmanga.com,srsone.top,phimgiz.net,himovies.to,hhdstreams.club,uhdstreams.club,holymanga.net,strims.*,kissanime.*,xmovies8.pw,sektekomik.com,moviesjoy.*,1337x.*,0gomovies.*,vipbox.lc,watch-serieshd.cc,semawur.com,tamilblasters.unblockit.dev,shingekinokyojinepisodes.com,ekinomaniak.net,rexdlfile.com,downloadhub.ink,cuturl.in,123movie.date,manganelo.link,janusnotes.com,hblinks.pro,akwams.*,1337x.is,desiupload.co,leechall.com,allcalidad.la,disasterscans.com,masteranime.es,savesubs.com,gdtot.*,mkvcinemas.*,mangakik.com,akwam.*,mirrored.to,desustream.me,streamwire.net,brbushare.com,9kmovies.fit#%#//scriptlet("json-prune", "*", "pop_type") +||ukcomparends.pro^ +poe.trade###contentstart > .large-12 > #topone +||rssrank.net^$third-party +||optinmonster.com^$third-party +||xxxbox.me/vcrtlrvw +geekspin.co##aside[class*="newsletter"] +hao.360.com##.licai-right +||cdn.cloudvideosa.com^ +||azvision.az/qafqaza/qafqazinfo.php$third-party +tellyhd.rest#%#//scriptlet('trusted-click-element', 'a#clickfakeplayer:not([href])', '', '1000') +||2471april2024.com^ +||ismlks.com^ +||liisex.com/images/banners/ +kickassz.com#%#(function(){var c=document.addEventListener;document.addEventListener=function(a,b,d,e){"click"!=a&&-1==b.toString().indexOf('checkTarget')&&c(a,b,d,e)}.bind(document);})(); +unacademy.com##img[alt="freeliveclasses_afcat"] +@@||textfree.us^$generichide +||amazon-adsystem.com/aax2/apstag.js$script,redirect=amazon-apstag,domain=fandom.com +||whiteaccompanypreach.com^ +||obsessionseparation.com^ +heatmap.news##.infinite-container +royalqueenseeds.*##.cookie-popup__wrapper +||dosamurottom.com^ +ifeng.com##.advmark +###adcontainer2 +||weiyun.com/cgi-bin/tianshu_get?position=4& +||iqilu.com/static_files/richmedia/ +||dwqjaehnk.com^ +icdrama.se###closeADV +||bpmvkvb.com^ +||px3792.com^ +t-online.de###spec-cookies +dollartree.com,familydollar.com##.modal-dialog.alert +torrentproject2.*,torrentproject2.com,torrentproject2.net,torrentproject2.org##a[href][style="color:red"] +strikeout.cc#%#//scriptlet("prevent-addEventListener", "error", "blockMsg") +cleantalk.org#$#.modal-backdrop { display: none !important; } +||ywronwasthetron.com^ +marketwatch.com#$##right-rail-cutout { display:none!important; } +vitaexpress.ru###subscribtion-form +||jutyledu.pro^$popup +||service.force.com/embeddedservice/*/esw.min.js +||amphibian.studionimbus.nl^ +kimovil.com##.kau +||camvideos.tv/homeAD.php +||cb1d14ec96.c38f521ff4.com^ +baq.kz##.newsteleg +brow2ing.com##.popular_article_pick_up +||vuukle.com/widgets/powerbar/$third-party +||partner-ads.com^$third-party +||rek.www.wp.pl/vad.xml$script,xmlhttprequest,other,redirect=noopvast-2.0,important +||smartbn.ru^$third-party +||cdn.wasp-182b.com^ +||mobads.baidu.com^$third-party +###pc-cookie-notice +thenewstack.io##.tns-trending-stories-block.inline +literotica.com##.SAAWidget__container +||borneobulletin.com.bn/wp-content/banners/ +tvr.by##.middle-banner-row +publicdomainreview.org##.homepage__top-grid__newsletter +buckscountycouriertimes.com#?#.tp-modal:has(>.tp-iframe-wrapper > iframe[id^="offer-0-"]) ~ .tp-backdrop.tp-active +banjiajia.com##.register-ten +||abethow.com^ +caixinglobal.com#$#body { overflow: visible !important; } +||qavgacsmegav.com^ +||tubevintageporn.com/js/775eka341.js +psypost.org##.jeg_midbar +tousatu-ch.net##.widget:has(> div.textwidget > div[style] div[id^="blz_rss"]) +##.advertorialwidget +imagetostl.com##.nc +jitashe.org##a[href*=".makeding.com/"] +||bemobtrcks.com^ +startpage.com##.a-bg +joker004.blog.fc2.com###header-left +||dynad.net^$third-party +@@||ad.atown.jp/adserver/$domain=ad.atown.jp +gyanitheme.com,paid4.link,artipedia.id,miklpro.com##.blog-content +||smartphonehoesjes.nl/consent/ +||bckqdynigv.com^ +@@||a2zapk.com^$script,xmlhttprequest,third-party,domain=financemonk.net|rtxkeeda.com|houseofblogger.com|dropgalaxy.com|djxmaza.in|miuiflash.com|thecubexguide.com|jytechs.in +||8de5d7e235.com^ +||cdn.transcend.io/cm/*/airgap.js +highsnobiety.com#%#//scriptlet('trusted-click-element', '.tm-cs-layer--visible button.tm-cs-layer__accept-all') +eastday.com##.ssy_right +pikabu.ru##.pikman +###ad_overlay +freebinchecker.com#%#//scriptlet("prevent-setTimeout", "adsBlocked") +thetimes.com##.responsive__InlineAdWrapper-sc-4v1r4q-14 +||26ea4af114.com^ +||ktkvcpqyh.xyz^ +||static.kellartv.com^ +viz.com#$#html { position: static!important; overflow: visible!important; } +amater.as##.FixedIntroduction +##.adlateral +boyfriendtv.com##.live-cam-popunder +||www.gumanews.com^ +comss.ru##td[style="width:180px"] > div.block +||c0d05e4183.59aa4e4c1c.com^ +badmintoncn.com###bottomad_big +@@||myfilestorage.xyz^$stealth,media,domain=bflix.gs +conservativefiringline.com##.jtpp53 +||www.bestinterestings.com^ +||click-v4.expdirclk.com^ +shiachat.com##body > div#ipsLayout_header + center +2conv.com,flvto.biz,flv2mp3.by##.push-offer +kakto.pl#@#.cookie-modal +finance.sina.com.cn##div[id^="st01_cont0"] +antyweb.pl##.block.uppercase.font-bold.text-2xs.tracking-base:has(+ .banner--placeholder) +jbpress.ismedia.jp,5-fifth.com,spravochnick.ru##.m-popup +||2jmis11eq.de^ +@@||sdk.privacy-center.org^$domain=dhnet.be +||kicationandas.info^ +greatandhra.com##.great_andhra_main_local_rotator1 +||static.altitudemarketing.com^ +trixie.de#@#.cookie_accept +porntry.com,videojav.com##.video-side__spots +||news-tamumu.cc^ +||needlessnorth.com^ +bankstoday.net##.please-share +||trebleperfect.com^$third-party +fakings.com##.centrado[style="width:300px;"] +||desperateambient.com^ +pinkvilla.com###mainArticleSocialShare > div[style]:not([title]) +||jignairy.com^ +onecall2ch.com##iframe[src$="rss.html"] +||leaselink.pl/js/slide-button-shoper.js +##.ad-cover +realestate.com.au##.media-viewer__sidebar +fmovies.app#%#//scriptlet("prevent-setTimeout", "et(e") +vstroyka-solo.ru###cookieNoticePopup +@@||betterworldbooks.com/app/components/cookieNotice.js +||cleaneratwrinkle.com^ +##.adsmaintop +||allsportsflix.best^$popup +schnaeppchenfuchs.com##.sidebar-whatsapp +geinoukame.com##div[style*="width:100%;height:400px;overflow:auto;"] +wantedinafrica.com##.kn-widget-banner +crazymailing.com#$#body.download-pl { padding-top: 0!important; } +mylust.com##.content > .cs-bnr +||goodvpnoffers.com^$popup +@@/sensorsdata.$domain=36kr.com|binance.com|by56.com|canon.com.cn|chuanglan.com|fenbi.com|guancha.cn|imooc.com|kuque.com|modian.com|saicskoda.com.cn|shanbay.com|tianyancha.com|ttcdw.cn|xinrenxinshi.com|zzjiasuqi.com +||origin1266.fun^ +militarywatchmagazine.com##.followUs +estadao.com.br##div[title="Estadão Pílula"] +auto.ru##.ArticleFooterTelegram +||c114.com.cn^*/js/ad_load-new.js +##.footer-adrow +##.insert_ad_column +||nuttishstromb.shop^ +autolist.com##.jsx-2866408628 +||birdmedia.com^$third-party +||inscriptiontinkledecrepit.com^ +||xiaoma.com/kf.php?arg= +m.gamer.com.tw##div[class^="download-app_box"] +internxt.com#?##__next > div.group:has(> div.mx-auto > div.flex:contains(Secure passwords,)) +catho.com.br##div[class^="style__OverlayBlock-"] +pcauto.com.cn###PcPoPmarket +||flyingadvert.com^$popup +medsurgeindia.com#%#//scriptlet("prevent-setTimeout", "#send_enquery_popup_load") +2gis.*###root > div[dir="ltr"] > div[class] > div[class] > footer:has(a[href^="https://law.2gis."]) +##.gAdMobileTable +##.header-bannerad +##.opt > a[target="_blank"] > img[src*=".360buyimg.com"] +receive-sms-free.net#?#.layout > .casetext > .table-hover > .col-xs-12 > .mobile_hide:contains(/^ADS$/):upward(2) +thenextweb.com##.p-channel-subscribe +@@/needsharebutton.min.js$domain=leetcode-cn.com +##a[href^="https://offhandpump.com/"] +opencritic.com##.card ~ hr[style="display: none !important;"] ~ hr:not([class]):not(:nth-child(5n)):empty +||sternedfranion.shop^ +tiscali.it##.cnt_b_2 +lpgenerator.ru##.blog__content__entriesList__entryFull_footer +||worritsmahra.com^ +filmux.org#?##box-main > .box-rekbar:has(> noindex > div[id*="ScriptRoot"]) +@@||assets.jimstatic.com/cookieControl.js$domain=olivenholz-rauen.de +haokan.baidu.com##.landrightbanner +||vtubernews.jp/*link.js +||ssl.google-analytics.com^$domain=sportfacts.net|topsporter.net,redirect=nooptext +||scoredconnect.com^ +||b3949c73b6.80d42b11c9.com^ +m.bild.de##div[data-skinning="tr-textlink"] +||kithoasou.com^ +||scenbe.com^ +||valuerstarringarmistice.com^ +||se05.biz^$all +||fhzgeqk.com^ +divan.tv##.privacy-policy-message__wrapper +##.ad-fullbanner +fiveguys.co.uk#%#//scriptlet("set-cookie", "5g_cookies", "1") +||boxernightdilution.com^ +mansurfer.com##.footerbanner +###HeaderAdsBlock +@@||embed.ex.co^$xmlhttprequest,domain=espncricinfo.com +114la.com,78dm.net,chinairn.com,chinanews.com.cn,dav01.com,qncye.com,qzwb.com,silisili.in,silver.org.cn,solidot.org,ylmf.com##.adv +||yshhfig.com^ +||acdcdn.com^$popup +||ironicnickraspberry.com^$popup +@@||unian.net/player/$stealth +oneesports.vn#%#//scriptlet('prevent-setTimeout', 'userVisited') +dictionary.com##aside[id^="dcom-serp-"] +@@||szbdyd.com^$stealth,domain=bilibili.com +lm-us.com#@#.advertisement_above_footer +lancashiretelegraph.co.uk###bottom-expandable-wrapper +infodent24.pl##.topBelka > .right +porn4days.net##body .navbar-nav > li > a[rel="nofollow"] +turbopages.org#%#//scriptlet('json-prune', '*.blockId') +@@||c.amazon-adsystem.com/aax2/apstag.js$domain=foxnews.com +adguard.info,adguard.com,adguard.app##.hello_from_adguard_annoyances_mobileappbanners +||alicdn.com/img/ibank/*_794019354. +joom.com##div[class^="disclaimer_"][role="region"] + button[class^="root"] +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws##.pdp-psy.og-pdp +yyrtv.com##li[class*="baidu"] +||asserts.avple.tv/file/avple-asserts/ad.js +||jnnjthg.com^ +base64decode.net##.ad_right_300_250 +||js.mbidpsh.com^ +||prtydqs.com^ +||neogallery.xyz^ +exsites.pl##body > div[style^="display: block; box-sizing: border-box; padding:"][style*="font-weight: bold; font-size:"][style*="text-align: center; position: fixed;"][style*="z-index:"] +##.adv_160_600 +##.ad-cell +||programinsightplastic.com^ +evoload.io##.xadb-msg +###advertise-block +||fetishshrine.com/plugin.js +theatlantic.com##.liveblog__ad +newslab.ru##.digest-subscription +||headquarterscrackle.com^ +cdromance.com#?#.widget_custom_html > .widget-title:contains(/^Advertisements$/):upward(1) +###ww-cookie-information +||ckwvebqkbl.xyz^ +ebay.de#?#.srp-list > .s-item:has(> div > .s-item__info > a > div[style="display:flex;"] span[role="text"] > span:contains(A)) +sabishare.com,thenetnaija.net#@#.ad-slot +/cookie_legal_$script +fuyang.net###portal_block_474 +apexcharts.com##div[class*="sgpb-popup-"] +||imasdk.googleapis.com/js/sdkloader/ima3_dai.js$script,redirect=noopjs,domain=nick.com|nickjr.com|cc.com +ecopoznan.pl,codziennypoznan.pl,motopoznan.com,lifestylepoznan.pl##._ning_cont[data-bid] +||inskinad.com^$third-party +##.CookiePolicyBar +||vzmz.com/template/paody/aaaa/357.js +||cusilbwq.xyz +~houdask.com###kfivtwin +##.adframe_rectangle +||efd8d8a247.86e7d35526.com^ +###new-cookie +##.contentTopAdSmall +||ofslakotha.com^ +adler-farbenmeister.com#$#body { overflow: visible!important; } +###ads_big +animesanka.*###slot-ads-top-article +walloniebelgiquetourisme.be###block-wbt-block-domain-cookie +everythingrf.com##.headerblock +evomag.ro,romanialibera.ro###pushinstruments_popup +||loadshare.org/custom/*/tornadomovies_video.mp4$domain=tornadomovies.co +videohelp.com#%#//scriptlet('remove-node-text', '#text', '/.{0,10}(?:Visit our sponsors?!|and backup Blu-rays!).{0,10}\n?$/') +market.yandex.ru##div[data-apiary-widget-id="/content/header/headerAppDistributionBanner"] +sgcn.com,wangjing.cn##.fad +tproger.ru##.push-modal +.top/ads/ +||propellerpops.com^ +aktualne.cz##.medium-rectangle +@@||hwcdn.net^$domain=canyoublockit.com +@@||doubleclick.net/favicon.ico$domain=primetechieforum.com +zowa.app##.l-header__appInstall +##.AD_2 +citytv.com#%#//scriptlet('prevent-xhr', 'get_ad_targets_by_url', 'true') +jrzj.com##a[href^="http"]:not([href*=".jrzj."]) > img[src^="https://img."] +kirche-poppenbuettel.de##.rstboxCookieBar +greenbayphoenix.com#$#[class="component c-nav c-nav-sport"][role="navigation"] { top: 120px; } +||cntsgsd.top^ +###taboola-below-forum-thumbnails +glamour.ru##.sign-up-block +life.nv.ua##.content-grid > div.container:not([data-vr-zone]):has(> div.row > div > a[href][target="_blank"] > picture) +@@||pub.doubleverify.com/dvtag/$domain=time.com +kurashiru.com#$#.dly-modal-root { display: none !important; } +||1.yuexw.com^ +||readserv.com^$popup +##.pt_ad03 +||vastroll.ru^ +wecast4k.xyz##div[style^="position:fixed;top:0;left:0; width:100%;height:100%;z-index:100004;"] +onlinehacking.in#$##adblock_msg { display: none!important; } +freeomovie.to##.xtact +||getyourbitco.in^ +||surhaihaydn.com^ +||media.queenclub88.com/movie/ads_*.mp4/*.ts$xmlhttprequest,redirect=noopmp3-0.1s +||cimoghuk.net^ +catfly.com##.ad-slot-mb +vipcams.literotica.com##.LongBannerDesktop +hgitv.com##.xinwen_right_gg01 +nowymarketing.pl#$#.article-articleBody > .blured[style="filter: blur(3px);"] { filter: none!important; } +ezgif.com##div[style$="min-height:90px;display:block"] +rei.com###gdpr-cookie-banner-container +||img.stripst.com/*/previews$domain=xhamster.com +||inkstorulus.top^ +||appwtehujwi.com^ +||stileproject.com/boom/d-*.html +gpm-ipma.de#$#div[data-module="cookie-manager-dialog"] { display: none !important; } +emovies.si#%#//scriptlet('abort-current-inline-script', 'jQuery', 'ZoneId') +||chan.sankakucomplex.com/p/pre.js +||abmunnaa.com^ +@@||adservice.google.com/adsid/integrator.js$domain=next-episode.net +||67trackdomain.com^$document +###elGuestTerms +||fbmedia-ckl.com^$popup +iqiyi.com##.iqiyi-shangcheng +generacionretro.net###makingdifferentpopup +||xcafe.com/b/ +||sportrar.tv/js/cookiepop.js +@@||cdn.cookielaw.org/skins^ +||pornlist.tv/assets/b_in_p.css +||6506.cosmicnewspulse.com^ +dzbhdm.net##img[width="950"] +###commentAdWrapper +##.spt-footer-ad +androidpolice.com##.ap-post-footer-banner +###content_bottom_ad +###fb_300x250 +aiyumangascanlation.com##body > [src] > .wrap + div[id][class*=" "] +##a[href*="/tg.602.com/"] +/ads-250.$image +microchip.com##.mchp-cookie +blasternation.com###xobda +||lorenzourban.com^ +css-tricks.com##.footer-form-wrap +coinmarketcap.com##.cmc-cookie-policy-banner +@@||onetrust.com/scripttemplates/otSDKStub.js$domain=konami.com +||jokerlu.com/upload/vod/ +rgs.ru##.rgs-main-context-bar > div.container-rgs-context-bar:last-child +||vercanalestv.com/ad300.html$important +###cookies-modal +motorsport-total.com#?#.pull-right > div.teaser_container:has(> div.f1de-container > div.block-title:contains(Kostenlose Apps)) +greatist.com#?#.article-body > div:has(> form input[type="email"]) +||rtrhit.com^ +rentenbescheid24.de#%#//scriptlet('trusted-click-element', 'a[role="button"][data-order="0"]') +pianetafanta.it,wikitrik.com,duit.cc#@##divAdBox +@@||googletagmanager.com/gtm.js$domain=mdn.lol +fotka.pl,fotka.com#$#body { background: none!important; } +||excruciationhauledarmed.com^ +swatchseries.to##a[href^="http://takelnk.com/"] +||chouthep.net^ +sciencenews.org###emailConversion +fxpro.pl#$#body { overflow: visible !important; } +||cmadserver.de^ +tvn.pl#%#//scriptlet('set-constant', 'Berry.waitForScripts', 'noopPromiseResolve') +dunkindonuts.com##.alert-banner +##.advBox +iask.sina.com.cn###daily_topic_flnr +||cliencywast.top^ +||nevbbl.com^ +||io.fapnow.xxx^ +englishtorrent.co#%#//scriptlet("abort-on-property-read", "openPopunderInTab") +||yjcf360.com/ad. +||abc7.su/adx.xml +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=liner.hu +||pushomir.com^ +apothekerkammer.at#@##cookieConsent +||23.109.87.47^$popup +criticker.com##.cr_advert +szxx.com.cn###A1 +||307ea19306.com^ +nicelocal.com##.slot-service-top +||2989.4puuqeh41.com^ +@@/image/ad/*$domain=gashpoint.com +||s.grova.xyz^ +||wmv-dresden.de/ccm*/public/ccm*.js +@@||gdpr.privacymanager.io/latest/gdpr.bundle.js$domain=freundin.de +perekrestok.ru#?#footer div.delivery-notify-text:upward(1) +banco.bradesco#$#body.mobile div#topBar.headertopBar { display: none !important; } +||onstunkyr.com^$popup +noworries.news##.main-box-telegram-mobile +||wombat.buildrtech.com^ +||filter.nexrtb.com^ +thinkful.com##div[id^="overlay-popup-"] +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=vivo.sx +texterra.ru#$#body { overflow: visible!important; } +androidiani.com###sidebar > ul > #text-5 +||c4n.thefreejapaneseporn.com^ +aastik.in##.td-g-rec-id-sidebar +stooq.pl##div[onclick*="window.open('http://stooq.pl/ads/"] +arigus.tv##.mobile-footban +123pan.com##div[style="width:100%;position:fixed;bottom:25px"] +planet.fr##.viously-ui-container.viously-sticked-top-left +whoreshub.com##.spot-col +###side-ads-box +||zk.91post.com^ +icbc.com.cn#@#.adRight +||fastdmr.com^ +al.com,cleveland.com,gulflive.com,lehighvalleylive.com,masslive.com,mlive.com,newyorkupstate.com,nj.com,oregonlive.com,pennlive.com,silive.com,syracuse.com###below-toprail +zomato.com#?##root > div[class] > div[class]:has(> div[class] > div[class] > div[class] > h2:contains(Get the Zomato App)) +||cdn.vonkol.com^ +||hubristambacs.com^ +uiporn.com##.text-gray +||haberprofil.biz/assets/*/vast.js +suizhoushi.com##div[id^="sznew_ad"] +||questioningexperimental.com^ +revolution-energetique.com#?#section:has(> form.NLInfeed) +comparic.pl##.container13 +##.advert_wrapper +||npulchj.com^ +poczta.wp.pl##div[ng-if="CommonController.showBannerTop"] +||b70f0a4569.com^ +||praiseddisintegrate.com^$popup +||allfb8dremsiw09oiabhboolsebt29jhe3setn.com^ +||nicmisa.com^ +||f3eb26169e.1de34fcfeb.com^ +torggler.com##.wf-cookie-consent +||8355.833enmhob.com^ +/advrotator_banner_largo.htm$subdocument +||ape.smartplanschema.se^ +||szmnk.cn^ +car.rakuten.co.jp##.portal-floating-banner +gazeta.ua#?#.container div.w:has(> div#SinoptikInformer) +||haiyuer.com/didi +nikkansports.com#$#.tp-modal-open { overflow: auto !important; height: unset !important; } +||u0081.com^ +||cdbqmlngkmwkpvo.xyz^ +kickassanime.*#%#//scriptlet("set-constant", "ifmax", "true") +sonixgvn.net##div[id^="div-vi-"] +||paservices.tech^ +##.cookie-bar:not(body) +pmsarkarijob.com#%#//scriptlet('abort-on-property-write', 'AdbModel') +||adxfire.net^ +@@||my-bucket-s3-*-amazonaws.*.*/*.m3u8$stealth,domain=ibomma.* +glavcom.ua##.banner_amp +||d1j818d3wapogd.cloudfront.net^ +@@||tpc.googlesyndication.com/safeframe/*/html/container.html$domain=diep.io +bing.com##.b_adBottom +watergate.tv##.yes_scrollbox +||2ccc.com/images/show/ +@@||cdn.bluebillywig.com/apps/player/*/components/admanager.js$domain=eurogamer.net +||7e839b3296.98f68cf54e.com^ +baldursgate3.game,larian.com##.ciastko +|http://*.tw/ad/$domain=~ruten.com.tw +||pushnice.com^ +coinmarketcap.com,my.kaspersky.com##.js-cookie-policy-banner +5119.cn##div[class="downDz"] +@@||securepubads.g.doubleclick.net/tag/js/gpt.js$domain=gq-magazine.co.uk +sorcerers.net##td.right_nav > .nocontent ~ .nocontent ~ table.right_nav +##.dfp-wrapper +time.com##.X9rgC5Js +##.promoAds +||bannersnack.com^$third-party,domain=~bannersnack.dev +###rb-privacy +inform.kz#$#.cont_news_t { height: auto!important; } +||preoccupation3x.fun^ +readyforboardingblog.com,readyforboarding.pl#$#html { overflow: auto !important; } +||brief.pl/wp-content/uploads/*/*/*-Banner-*.gif +freeworker.*,electrobike.fi#$#.modals-overlay { display: none !important; } +yam.com###sns-desk +###taboola-homepage-thumbnails-desktop +##.js_adContainer +dzbank-derivate.de###screen-overlay +||ie8eamus.com^ +||bebohjhh.xyz^ +||switchjavgg124.fun^ +gry.pl#@##onetrust-consent-sdk +@@||img.ads.tvb.com^ +geoguessr.com##.game-layout__in-game-ad +spaziogames.it#$##wrapper > #main { padding-top: 0!important; } +||birgga.top^ +||sehlicegxy.com^ +timesofindia.indiatimes.com##.imageBanner +##.cookied:not(body):not(html) +hao.360.com#?#.cube-container div.cube-mod:has(span.adMark) +crazyimg.com###main > div.page > br ~ center +||lplimjxiyx.com^$popup +ndtv.com##.TpGnAd_ad-tx +||poshhateful.com^ +||adevbom.com^ +ratengoods.com###popup-policy +@@||sibboventures.mgr.consensu.org^$domain=ondacero.es +diariodecuyo.com.ar,independent.co.uk##.taboola-below-article +@@||webcam-hd.com/bower_components/angular-cookie-law/dist/angular-cookie-law.min.js +||pauewr4cw2xs5q.com^ +||goat.purposevisionfuture.com^ +1track.ru##.offer_app +*$xmlhttprequest,third-party,redirect-rule=noopjs,domain=asiaon.top|asiaontop.com +linternaute.com##.layout_right > .app_aside--nl +||xgdljiasdo.xyz^ +||2m3gdt0gc.de^ +||quiri-iix.com^ +||putwandering.com^ +||1200555.com^ +androidauthority.com##div[class]:has(> div[data-ad-type]) +||ext.bhol.co.il^ +svetmobilne.cz###main > article ~ .art-bottom +doodhwali.com,smutindia.com##a[href^="http://imlive.com"] +ezcast.com###cookie_noti +||cdn.cookiesuit.com^$third-party +||freshbooks.com/images/banners/ +||advmonie.com^$popup +skyscanner.com.tw##a[href^="https://skyscanner.onelink.me/"][href*="=app-banner"] > img +kissanime.com.ru,kissanime.co#%#//scriptlet('prevent-xhr', 'pagead2.googlesyndication.com') +mydigit.cn##.view-hover[channelid="aitao"] +/lenovo/pc/piaofu2.js +||glochatuji.com^ +##.adbox-bg.adscounter +###download_ads +baidu.com#?#.rec-item:-abp-has(> .vbox > div > .appad-relate-rectpl) +||peachybeautifulplenitude.com^ +||daniujiaoyu.com/js/zk +fandom.com##.top-ads-container +technoashwath.com#@#.largeAd +vogue.com.cn,powercolor.com##.Privacy +cr.mufg.jp##.l-bnrPOP +||qcohkm.xyz^ +||tilttrk.com^$popup +/modules/ad/*$~xmlhttprequest +wacul-ai.com#$#.modal-banner-cv_width-650 { display: none !important; } +||66wwvv.com/js/ +mm-cg.com##.ut1_img_content_js +||doubtslutecia.com^ +||exodsp.com^ +||vast.holmesmind.com^ +@@||googleads4.g.doubleclick.net^$domain=renfei.net +/adverts.$~script,domain=~0xacab.org|~adverts.ie|~adverts.org.ua|~github.com|~gitlab.com +blick.ch#?#header + div[class] > div[class]:has(> aside[id^="appnexus-placement-articleTextAd"]) +moonbit.co.in,moondoge.co.in,moonliteco.in,moondash.co.in##.flexAfter +rule34.xxx##.dp.leftside +remarkable.com#?#main > div[style] > article[class^="business-module"]:has(> div[class^="business-module"] > h2:contains(Stay in the loop)) +polbus.pl,dolnyslask.pl,invado.pl,georgeforemangrills.com##.cookie__notice +##.ads-wrap +||c39555d503.fa8133311d.com^ +portalochronysrodowiska.pl##.baner-horizontal +thesurfersview.com##.mid-section > .right-part +||oqpahlskaqal.com^ +spiceworks.com##.gp-standard-header +tohurt.pl,skin79.de,kicksmaniac.com##.cookie-button +diskpart.com##.promo-rightbox-mini +||dbnaked.com/ban^ +citynews.ca##body div.inter-module-ad +||sharpofferlinks.com^$popup +technopat.net#%#document.cookie='cmplz_consented_services={"youtube":true};path=/;'; +##.LeaderAd +redtube.com###live_models_row_wrap +||ebd.cda-hd.co/iw6JCQ3.js +||attractbestbonuses.life^$popup +ncore.cc#@#.text-ad-links +||qdtzbbh.xyz^ +@@||ads.viralize.tv^|$domain=automoto.it|moto.it +||mbalib.com/common/a_mbalib/ +##.footerAdslot +||keefeezo.net^$popup +mirrorace.*##.uk-text-center > a[rel="nofollow"] > img +businessinsiderbd.com##div[class="col-sm-10 offset-1 MarginTop20"] > a[target="_blank"] > img +||above.tw/blog/wp-content/plugins/popups/public/assets/js/public.js +dunelm.com#$#body { overflow: auto !important; } +||d36s9tmu0jh8rd.cloudfront.net^ +||apester.com^$third-party +@@||oishi-kenko.com/kenko/assets/v2/ads/$~third-party +||pocketenvironmental.com^ +loudwire.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +365direkte.no#$#body { overflow: auto !important; } +blackbelt.analyticsvidhya.com##.whatsapp-floating +facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##div[aria-label="Message from Facebook"] +||nahjzx.xyz^ +||receiverunfaithfulsmelt.com^ +allfoot.info,channelstream.club###html3 +genbeta.com#?#aside > div.aside-box:has(> form.newsletter-form) +||racingorchestra.com^ +shareus.io##.recent-purchased +verygayboys.com,me-gay.com,gaysuperman.com##.b-mobile-random-links +||45d31559c9.26fc91ec79.com^ +||111.90.159.132/wp-content/plugins/catfish-advert-banner/ +||url.rw/*&a=$popup +northern-scot.co.uk##div[class="DMPU"] +###ad-gutter-left +||mobiflys.com^ +forbes.com,surfshark.com##.sticky-cta +###page-advertising +###adSlot2 +browmart.ru#$#body { overflow: visible !important; } +moviehd2022.com##.list-banner-bottom +shrinkforearn.in#%#//scriptlet("prevent-window-open") +inews.hket.com##p > a[href^="https://dynamic.hket.com/article/Rbkv"] > span +w1mp.com##.col-video > #model_widget +||newsyour.net^$popup +@@||d.ibtimes.co.uk/imasdk/ads.js^ +##.cookies_yum +##.smartmag-widget-newsletter +ehftv.com##.blackPlayer +/AsyncChatWithUs.*.min.*$script,stylesheet,domain=footshop.ua +||nabgrocercrescent.com^ +hitoikigame.com#?#.p3_outline .plugin-freearea:has(td[style="display: none !important;"]) +whistleout.com.au##.has-hover +sport24.gr##div[id^="ros-300x250"] +||jingujie.com/public/js/*html.js +###AdvertText +lenta.ru##div[class^="announce-pop-200"] +||americascardroom.eu/ads/$popup,third-party +||player.twitch.tv^$domain=go.theconomy.me +remarkable.com##div[data-cy="cookiebar"] +em.com.br##nav.fixed-btn-uai +codewars.com###house-display +###adsense6 +||kurzycz.care^$third-party +trend.az###header > div > div[id^="TREND_slot"] +concursosnobrasil.com,fabianomidi.com,pciconcursos.com.br,shopxp.com.br,concursosnobrasil.com.br,gkinfostore.com.br###lgpd +||carp.spotonevent.no^ +dailykos.com##.ad__placeholder +||arsnivyr.com^ +/xxgg/book.js +hexnode.com##.popup_wrap +||rifjhukaqoh.com^ +videocelebs.net##.midle_div > div[style^="height:"][style*="position: relative;"] +||haimagla.com^ +citizen-times.com##.gnt_xbr +kuyhaa-me.com,meganei.net#%#//scriptlet('prevent-addEventListener', 'load', 'daadb_get_data') +||systemleadb.com^$popup +hm.com#$#body.cookie-notification { margin-top: 0!important; } +mobile01.com###_popIn_recommend_side +arhplyrics.in#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +shopch.jp###informApp +@@||fapality.com/1qbqp47kyhhh/advertisement.jsx +##.slider-ad[adid] +||nhjnw78.fun^ +dandy-house.co.jp###entryprompt_area +##.topadtara +lcpdfr.com#@##HouseAd +||mhamanoxsa.com^ +/strip_ngn_2020_august$script,domain=porcore.com +||roofprison.com^ +###ad-unit-top-banner +fuam.pl#%#//scriptlet('trusted-click-element', 'dialog a[role="button"][data-order="0"][id]') +mozinet.me#$?#iframe[srcdoc*="XMLHttpRequest"] { remove: true; } +forum.ragezone.com##.RZBannerUnit +||xxxiijmp.com^ +elektrotechnikautomatyk.pl##div[class^="GDPRCookieInfo_"] +||xindingwealth.com/js/39. +16888.com##.cardataclass +##.banner350 +@@||ads.alafish.cn^$~third-party +||yimemediatesup.com^ +notateslaapp.com##.vtwjhpktrbfmw +hidden-audio.de#%#//scriptlet('trusted-click-element', '.btn-c-pop-decline') +thefreethoughtproject.com##.social-icons-widget +comnet.com.tr#%#//scriptlet('set-local-storage-item', 'cookieСonsent', 'true') +magesypro.pro,magesypro.com,magesy.blog,majesy.org,magesy.eu,magesy.fr#%#//scriptlet("abort-current-inline-script", "onload", ".offsetHeight<=0") +freemodapks.com#%#//scriptlet("adjust-setInterval", "counter--", "*", "0.02") +||crudedelicacyjune.com^ +||cupulaeveinal.top^ +58.com##a[href*="to8to.com"] +ya.ru,yandex.*##.simple-popup__overlay_shown_true +novsport.com#?#.rounded-left:has(> div[class] > h1[class]:contains(Реклама)) +##.cookie-consent-content +###sidebar-ad2 +wrpo.wielkopolskie.pl###cookies-eu +##.hp_textlink_ad +||dandinterpersona.com^ +coursef.com##div[style="display:block; min-height: 250px"] +@@||imasdk.googleapis.com/js/sdkloader/ima3.js^$domain=blackbird.zoomin.tv +||tq.boardpress-b.online^ +foodmagazine.com.br#$#div[id="modalPopup"][aria-labelledby="myModalLabel"] { display: none !important; } +||cryptoecom.care^$third-party +||horse.zwei-bags.com^ +u.gg##.builds-page-promo +||avocetdentary.shop^ +fapnado.*##[class^="zpot-horizontal"] +a2zupload.com,unlockapk.com#$##adsenseimage { height: 1px!important; } +||thornrancorouspeerless.com^ +mensxp.com##.cont.blk + style:not([type]) + style[type="text/css"] + div[class] +/wp-content/plugins/snow-3d/* +||huaban.com^*/ads +||geo.dailymotion.com/player/x2ww.js$domain=letribunaldunet.fr +hetzner.com#$#main.has-cookie-banner { margin-top: 90px!important; } +www.tumblr.com##div[data-testid=scroll-container][style*=blog-title-color] div[style^="background-color:"]:has(footer[role="contentinfo"]) +entrepreneur.com###mainDomContainer > noscript + div.bg-gray-200 +||coincheck.com/images/affiliates/ +/300x250_ +||cdnquality.com^$popup +||lgad.cjpowercast.com.edgesuite.net^ +||jscdn.online^ +emonitoring.poczta-polska.pl###getbaner +||extension-ad-stopper.com^ +||xmlgrab.com^ +nv.ua##a.promo +dm010.com##a[href*=".apk"] +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=vidyome.com +dcfever.com##.col-md-right > div[style^="margin-bottom: 20px; text-align: center;"] +||antiscan.me/images/rat.gif +news18.com##.phtadd +||blog.livedoor.jp/ispachinkas/rss_ +enjoy4k.*#%#//scriptlet("prevent-window-open") +||apxlv.com^ +##.wide_ad_unit_top +||up-load.io/sw.js +##.consent-cookie +||buzzard.donotresearch.net^ +||gp123.cc/20*ad/ +||11livematches.com/images/watch_football.jpg +auto.ru##.ListingCars__c1Promo +##.flexad +||fixespreoccupation.com^ +insidebitcoins.com##.banner-cta-wrapper +||winter.aomg5bzv7.com^ +javmovs.com##a[href^="https://poisonencouragement.com/"] +elektroda.pl##.topic-box > div[class] > .sec-b > a[href]:not([href^="https://www.elektroda.pl/"]) > img +venturebeat.com##.sidebar-widget-featured-event +porn300.net,tokyvideo.com,pornburst.xxx,serviporno.com###overlay-video +||pushdusk.com^ +||fouwiphy.net^ +2ip.io,2ip.ru##.test-vpn +###ad-top +##.ads-3 +||subzerocuisse.top^ +msn.com##li[data-provider="outbrain"] +||djwf0dl2q9i99.cloudfront.net^ +||kogutcho.net^$popup +||imguur.pictures/allads/ +||dfiles.eu/pay/virgopass +moneysavingexpert.com###overlayTipbox +upfiles-urls.com,falpus.com,plknu.com,nexnoo.com,simana.online,efhjd.com,upfilesurls.com#%#//scriptlet('prevent-window-open') +gainward.com,palit.com###cookieok +letv.com##.vip_popBox +||1ny3r.icu^ +/js/cpv_fm_ +why-tech.it#%#//scriptlet('prevent-setTimeout', 'eb-fadeIn', '0') +@@||fs2017mod.com^$generichide +||clearancemadnessadvised.com^ +##.fixadheightbottom +###sidebar_ads +questaseratv.it#$#.gptslot { height: 0 !important; } +||sportstream.tv/img/big.gif +vivaldi.com###getviv +@@||img3.126.net/ntesrich/*/adControl-indexx-$script,domain=rjno1.com +||648db44857.5bdc059842.com^ +###sidebar_box_add +@@||api.adinplay.com/libs/aiptag/assets/loader-red.gif$domain=tetrads.io +howbuy.com##a[href^="https://www.howbuy.com/advertisement/"] +###rtveCookiePolicy +kitguru.net#$#body { background-image: none !important; } +foodxor.com,files.technicalatg.com###adb +||trustmaxonline.com^ +###table1[width="468"][height="50"] +celebmafia.com#?#div:has(> div[data-ad]) +heizung.de#$#.modal-open { overflow: auto !important; } +||d0.xcar.com.cn^ +||a.babezunknown.com^ +empik.com#%#//scriptlet('set-cookie', 'cc', '2') +||adarutoad.com^ +zdnet.com,download.cnet.com,globalnews.ca##.c-newsletterSignup +disk.yandex.*##.direct-public__bottom-direct-wrapper +||yiwckti.icu^ +purepc.pl#$#html > body.dark:not(#style_important) { background-image: none !important; background-color: #111 !important; } +esslinger-zeitung.de##.nfy-ar-detail > footer > .nachrichtendienst-outer +promoklocki.pl#?#header > div.mb-2:has(> a[href] > img.banner-top) +||torrentdownloads.theproxy.to/templates/new/images/titl_tag2.jpg +thothub.to#%#//scriptlet('abort-on-property-write', 'window.onload') +thehindubusinessline.com#$#.tp-modal { display: none!important; } +jav1080.com,sex-leaks.com,gay1080.com,javsister.com##.boxzilla-container +coinarbitragebot.com###screener +moneycontrol.com##.creScroe +constantin-film.de#%#//scriptlet("set-constant", "cookieLayer", "undefined") +cableabc.com##a[href*="/img1/"] +||9tour.cn/x2/images/czmf.jpg +bueromoebel-experte.de#@#.cookie-overlay:not(html):not(body) +physiotherapie-naurod.de#$#div[id^="chimpify-"] { display: none !important; } +apk.tw##.postlist > div > div[style="margin:0px 0px 0px 0px;width:300px;height:250px;overflow:hidden;"] +m.imgur.com##.AppBanner-container > *:not(.AppBanner-continueBrowsing) +citationmachine.net###unit-responsive +torisetsu.biz##.app_guide +##.widget_sponsored_content +seomagnifier.com#?##rightCol > .well > .sideXd:only-child > #Sidebar_Tab:only-child:upward(2) +mydrivers.com#?#li:-abp-has(>.titl+:-abp-contains(/推*广/)) +||shinesavage.com^ +reverso.net###rca +mcoc-guide.com#@#ins.adsbygoogle[data-ad-client] +dramanavi.net###block-97 +||yieldrealistic.com^ +||huya.com/leaf/*=vodadv&$redirect=noopmp3-0.1s,domain=huya.com +propratik.com.tr,otopratik.com.tr,kinesislastik.com.tr,brisa.com.tr,dayton.com.tr,lassa.com.tr,togg.com.tr###cookieBand +gazzetta.gr##a[rel^="sponsored"] +||brid.tv^$script,domain=67hailhail.com|deepdaledigest.com|forevergeek.com|geordiebootboys.com|hammers.news|hitc.com|molineux.news|nottinghamforest.news|rangersnews.uk|realitytitbit.com|spin.com|tbrfootball.com|thechelseachronicle.com|thefocus.news|thepinknews.com|washingtonexaminer.com +@@||challenges.cloudflare.com^$domain=download.megaup.net +thegfporn.com##.adcen +ac.qq.com##.in-hd-mod +||manysex.tube/soc/roll.js +games.dmm.com#$##webapp-top-app main + aside > a[href^="https://rcv.ixd.dmm.com/api/surl?urid="][target] { background: none !important; pointer-events: none !important; } +||iyisloo.top^ +parkiet.com###block-id-content-video-advert +||ck.chetsal.com^ +cmbc.com.cn#@#.adBox +e-lenovo.gr###consent-window +go.shareus.in#%#//scriptlet("set-cookie", "ad_opened", "true") +hamamatsu.com#$#.mfp-wrap { display: none !important; } +||tangsrimery.click^ +||ti.tradetracker.net^ +||gigacpmserv.com^ +||yochelbeant.com^ +@@||cdn.diggysadventure.com/*/video_ads.erik?ver=$domain=diggysadventure.com +funnelcockpit.com##.gdpr-cookie-notice-center-loaded::before +##.cbd_ad_manager +rawstory.com###piano-infobar-container +glike.de,skidki.academic.ru##.cookie-private +||cn846.com^ +digminecraft.com##.bccace1b +sportico.com##.o-email-capture-form +||homepig4.xyz^ +@@||cdn.cookielaw.org/opt-out/otCCPAiab.js$domain=tunein.com +aotter.net##.ag-revenue +||behavelyricshighly.com^ +slickdeals.net##.bp-p-adBlock +||19515bia.de^ +patrika.com##div[aria-describedby="popupBox"] +18183.com###gsBtn +java67.com##.sidebar > #HTML3 +||vanishedpatriot.com^ +||d2dkurdav21mkk.cloudfront.net^ +||4e7042dd58.817dae10e1.com^ +||mads-fe.amazon.com^ +###g-outbrain +cnyfertility.com#%#//scriptlet("prevent-addEventListener", "scroll", ".open()") +csoonline.com#%#//scriptlet('set-cookie-reload', 'nsdr', '1') +||s3.amazonaws.com^$domain=oko.sh|linkrex.net|youtubemultidownloader.com|fullypcgames.net|adpop.me|itdmusic.com|filescdn.com|katfile.com|nitroflare.com|uploads.to|cloudyfiles.co|bluemediafiles.*|dropgalaxy.com|bluemediafile.*|oxtorrent.sk|bluemedialink.online|bluemediaurls.lol|bluemediadownload.*|urlbluemedia.* +banki.ru##div[data-test="news-all-markdown"] > section > a[href^="https://www.banki.ru/products/"] +||kunpeng-sc.csdnimg.cn/?timestamp=$subdocument,domain=blog.csdn.net +yomahub.com##.sidebar-slot +cryptopolitan.com###sticky_sidebar_ads_parrent +taxi-point.co.uk#?##POPUPS_ROOT:has(iframe[title="Wix Get Subscribers"][src*="wixapps.net"]) +||affirmbereave.com^ +||vehosw.com^ +fizkult-nn.ru##.banner_right_bottom_popup +||sutiletoroid.com^ +||s.elnn12.com^ +raymond.cc##div[id^="snhb-sidebar"] +star-history.com##.fixed.right-0 +||plotrabbit.com^ +ps.hket.com#$#body { overflow: auto !important; } +linkjust.com#@#.banner-728x90 +||goatsnulls.com^ +||ff124d559b.81410d9609.com^ +mobile.facebook.com#@#div[data-sigil$="m-layer-root"][class$="accelerate"]:has(> div[data-sigil$="m-overlay-layer"] a[data-cookiebanner="accept_button"]) +@@||gelbooru.com^$generichide +||static-rtb2.affinity.net^ +@@||sellthing.co//?advertiserId=&platform= +||88448.com/images/appkai980x100.gif +||rbxtrk.com^$popup +||sogoucdn.com/nstatic/js/bottom_shopping. +theatlantic.com#$#.welcome-screen-open #site{-webkit-filter:none!important;-moz-filter:none!important;filter:none!important;} +||bosch-ebike.com/static/*/bosch-privacy-settings- +||premiumads.net^ +##.re-AdTop1Container +apkpure.com##.float-request-notification-permission-button +its.porn,jizzez.net##.oneBanner +@@||sdk.privacy-center.org^$domain=leboncoin.fr +##.dac__mpu-card +filesharingtalk.com##a[href^="http://affiliate.astraweb.com/"] +holzconnection.de#$#.popup_magazin_terminbuchung { display: none!important; } +||moviesland.xyz/js/jquery/*/jquery-*.min.js?v= +18h.avmimi.com##body > table[width="100%"]:nth-child(2) +||perpetratejewels.com^ +||skiingwights.com^ +@@||sendgrid.com/marketing_campaigns$document +###CookieReportsPanel +||acmdihtumpuj.com^ +||ctanet.cn/aqq/JS/ +||u22099.com^ +||vidazoo.com^$domain=blackclovermanga.com|readheroacademia.com|demonslayermanga.com +##.leaderboardAd +##.cookie-consent-banner-opt-out +myhome.ge##body > div.cookie_wrap +dugun.com###feedback-modal +||you4cdn.com^ +158.69.120.31##div[id^="previewBox"][style^="position: fixed;"] +paddle.com##.o-article__footer--newsletter +||g4y7uuk.com^ +||gd.189.cn/gz/promotion/$popup,third-party +rvlev.com,t66y.com#?#.tpc_content:-abp-has(>b:nth-child(n+40)>span>a[onmouseover="this.style.background='#DEF5CD';"]:-abp-contains(91TV)) > :nth-child(-n+45) +networkworld.com#%#//scriptlet('set-cookie-reload', 'nsdr', '1') +makefreecallsonline.com#$#body { overflow: auto !important; } +||jakescribble.com^ +123movies.gallery##.jw-logo-top-left[style^="background-image: url(\"https://123movies.gallery/addons/img/"] +point2homes.com,propertyshark.com###fixedban +northantstelegraph.co.uk##div[class*="piano"][class*="-banner"] +thebell.io##.ball +jeudegolf.org##img[class*="notopenmodal"] +||lemitsuz.net^ +hjenglish.com,hujiang.com##.lamu_banner +||cautiouscamera.com^ +||cdn.swellrewards.com^$third-party +||lycos.com/catman/ +||phomoach.net^ +||fohikrs.com^ +||storage.googleapis.com/adtags/ +pictoa.com##nav li[style="position: relative;"] +||piecreatefragment.com^ +last.fm##.lazy-recs-bar-full-width-wrapper +page.auctions.yahoo.co.jp##.idpfLPOpen +###bottom_adwrapper +blog.csdn.net##dl[id^="yd_a_d_feed_"] +gitlink.pro,aylink.co#%#//scriptlet('remove-attr', 'data-ppcnt_ads|onclick', '#main[onclick*="mainClick"]') +||fleshlightgirls.com^$third-party +boylove.cc##.dzxvovcm +tapahtumat.iijokiseutu.fi,tapahtumat.kaleva.fi,tapahtumat.koillissanomat.fi,tapahtumat.lapinkansa.fi,tapahtumat.pyhajokiseutu.fi,tapahtumat.raahenseutu.fi,tapahtumat.rantalakeus.fi,tapahtumat.siikajokilaakso.fi#@#.ad-popup +||kglqjacmqmns.com^ +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=hdblog.it +@@||advertisement.vg.no/1v*.js?v=$~third-party +fifetoday.co.uk##.iehxDO +||2510porn.com/wp-content/uploads/*/banner +||authognu.com^ +eurogamer.pl##.mpu +leechall.download#$#.asd { display: block!important; position: absolute!important; left: -3000px!important; height: 100px !important; } +||xatech.com/web_gear/chat/chat.swf +||bttrack.com^ +shockwave.com##.ympb_target_banner +##.cookieBan +||dozubatan.com^ +web.de#$#html.hasMessage #promoline { visibility: hidden!important; } +beko.az,beko.com,beko.com.ge,beko.co.id,beko.co.il,beko.com.kg,beko.mn,beko.lk,beko.co.th,beko.vn,beko.hr,beko.gr,beko.lu,beko-pt.com,beko-algerie.com,beko-egypt.com,beko.com.ng,beko.mu,beko.ma,beko.com.tn,beko.com.ar,beko.uy##.ntfCookie +mfor.hu###mfor_cikk_beuszo +||sex-techniques-and-positions.com/banners +-300x250.gif$domain=hentais.tube|igg-games.com|edu-profit.com|myreadingmanga.info|myreadingmanga.info|jugantor.com +milka.de###_CookieText +||gletchauka.net^ +||flirtatiousconsultyoung.com^ +challonge.com##.cake-unit +klingel.de,happy-size.de,meyer-mode.de,diemer.de##begl-chat +##a[href*=".labsda.com"] +###ad_rotator-3 +tempcover.com#$##CookieConsentFullscreenWrapper { display: none !important; } +###top_ads_container +@@||vlscppe.microsoft.com/fp/tags.js$stealth +||05pg9z.com^ +stol.it,t-hsn.com###block-message +||subjectscooter.com^ +haineshop.ro#$#body.overflow-hidden { overflow: auto !important; } +@@||sportsnet.ca/wp-content/plugins/bwp-minify/$domain=sportsnet.ca +@@||soup.io/ads.js +/:\/\/shatter-box\.com\/wp-content\/uploads\/[A-Za-z0-9]+\/[A-Za-z0-9]+\.js/$domain=shatter-box.com +||dstillery.com^$third-party +moviedee24.com##a[target="_blank"] > img[src*="/wp-content/uploads/"][src*=".gif"] +||cute-cursor.com^$popup +sunderlandecho.com##.taboola-bottomfeed +||gomez.pl/js/plugins/cookify.js +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=ctv.ca +||ientent.stre4mplay.one^ +thetoyinsider.com##.apb-adblock +||yhmhbnzz.com^ +##.adOverlay +##.ad-icon +||dapper.net^ +multiup.org##.well.success.text-center +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##.ecl-tg-content +freemaths.fr,inclusiscore.org,topchretien.com###rgpd +||fgn.cdn.serverable.com/common/images/nfr2ie0nd1s9^ +||dzhjmp.com^ +kickassz.com#?#.commentsLeftModule > style + div[id]:has(> div[id] > a[href="/k/?q=q"][target="_blank"]) +biedronka.pl###cookiepopupdiv +thuvienphapluat.vn##body > div > a[href="https://itunes.apple.com/vn/app/ithong/id1493253359"] +###theme_cookie +inconcertcc.com#$#.gdpr-cookie-overlay:not(#style_important) { display: none !important; } +warsztat.pl###baner199 +||warriorflowsweater.com^ +thetechgame.com##.ttg-ads +/plugins/easyazon-$script,stylesheet +slotrips.si###form_cookies_wrapper +||phaurtuh.net^$popup +suntory.co.jp#@##page_ad +malaysiastock.biz###sideBar > div[class^="RightPanel_Rectangle"] +slice.ca###ad-DoubleBigBox +||gfjn5.xyz^ +theverge.com##div[class^="adblock-allowlist-messaging"] +mangapark.net##.ad-page-3x +###innerad +||deliver.vkcdnservice.com/vast-im.js$script,redirect=noopjs,domain=meucdn.vip|yandexcdn.com|waaw.to|waaw1.tv|waaw.tv|czxxx.org|scenelife.org|hqq.tv +wcoforever.net,wcoforever.com#%#//scriptlet("set-constant", "isAdBlockActive", "false") +||iguana.delbaoliveira.com^ +metradar.ch###closeonaction +you-porn.com,youporngay.com###adblock_tooltip +picjumbo.com##.premium_float +mindler.com,doctorofcredit.com###text-14 +||221c2e9b83.2adf1530a3.com^ +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="job"] > .c-border +rule34hentai.net###main > div.blockbody +###AdSlot_megabanner +###left_up_float_ad +.wasabisys.com/adsjf/ +||bzzxyyh.xyz^ +hentai.tv##div[x-show="dvr"] +snippet.univtec.com,tapewithadblock.org,drivelinks.me,embedstream.me,socceronline.me,cricstream.me,lasprovincias.es,viprow.*,strikeout.*,zdopravy.cz,amc.com,nova.cz,informatikamu.id,mikl4forex.com,publicananker.com,heraldsun.com.au,tv2play.hu,discordbotlist.com,tutflix.org,lolbeans.io,goodfon.com,rodjulian.com,tny.so,aloegg.com,pennbookcenter.com,metro.co.uk,couriermail.com.au,ontiva.com,deportealdia.live,techgeek.digital,ephoto360.com,noticiasesports.live,trade2win.com,veneziatoday.it,7misr4day.com,forexforum.co,taste.com.au,elahmad.com,key-hub.eu,news.com.au,point-news.jp,nulledteam.com,life-n.jp,mailonsunday.co.uk,lookmovie.ag,grab.tc,engine.univtec.com,letfap.com,litecoinads.com,vaughn.live,t-rocforum.de,lumiafirmware.com,trentotoday.it,m.kuku.lu,inews.co.uk,zbporn.com,map76.com,tibiabr.com,tibiawiki.com.br,dooood.com,dood.yt,dood.re,dood.wf,dood.la,dood.pm,dood.so,dood.to,dood.watch,dood.ws,brofist.io,haddoz.net,fantasy.lu,porndroids.com,xkekos.tv,baritoday.it,peers.tv,asiatv.cc,amni8.com,royaleapi.com,oceanhero.today,ebookdz.com,sfchronicle.com,dailytelegraph.com.au,streamtape.*,wyborcza.biz,digitalstudiome.com,wyborcza.pl,onepiece-online-manga.com,key-hub.eu,turkrock.com,romatoday.it,desktopsolution.org,comparteunclic.com,nakedteens.fun,althub.club,dzone.com,sapixcraft.com,imintweb.com,newsmondo.it,verteleseriesonline.com,kollhong.com,foggiatoday.it,kelasdesain.com,9docu.org,freedownloadmanager.org,coinadster.com,controlc.com,webserver.one,apiplayers.boardgamesonline.net,daemon-hentai.com,palermotoday.it,mega-hentai2.blogspot.com,iptvspor.com,teenager365.com,mshare.xyz,ashemaletube.com,techacrobat.com,osxinfo.net,7news.com.au,coivl.net,thefastlaneforum.com,streamsforu.com,thememypc.net,md5hashing.net,theandroidpro.com,520call.me,orangespotlight.com,3dbrute.com,firefaucet.win,jnovels.com,claimfreecoins.io,dloady.com,sharing.wtf,nightwolfapk.com.br,luckybits.io,wibc.com,audio-sound-premium.com,lesmoutonsrebelles.com,6tek.org,the-man.gr,otomizu.work,dreamdth.com,13.cl,dutchycorp.space,zetflix.net,9now.com.au,ymso.net,yandexcdn.com,televisiongratishd.com,ciftklik.net,omglyrics.com,jbzd.com.pl,afolog.com,yandexsport.ru,scotsman.com,jbzd.cc,dailymail.co.uk,faucetcrypto.com,bitsfree.net,speakingtree.in,coinmonster.pw,stb.ua,player.starlight.digital,onlineinterviewquestions.com,audioreview.m1001.coreserver.jp,tv-onlinehd.com,pornflixhd.com,incredibox.com,alexgoldcheidt.com,tellmehow.co,pinsystem.co.uk,svipvids.com,synonymbog.com,techbii.com#$#.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links { display: block !important; } +ci-labo.com##.ecm-emailregistration +mhrs.gov.tr###native-app +||jads.co^$domain=avgle.com +##.widget_advwidget +||zelllwrite.com^ +##.google-adsense +trueachievements.com,ign.com#%#//scriptlet("abort-current-inline-script", "document.addEventListener", "isIframeNetworking") +###top-ads +||s.joypornyou.cc^ +||ondshub.com^ +@@||walletkeyslocker.me/?scode=*&stream=$stealth=referrer +||zootube1.com/magnn.js +||wholefreshposts.com^ +##script + #strl + div[style] +_images/ads/ +||231284.79j68qav2.com^ +###adsensewide +||pampergloriafable.com^ +home-barista.com###page-header-banner +||s.nowsrv.com^ +elconsolto.com##.leaderboardDiv +mega.io,mega.nz#$#.overlayed .main-blur-block { filter: none !important; -webkit-filter: none !important; } +spicyip.com##iframe[src="//www.lens.org/lens/embed/search"] +||e-evros.gr/banners/*.gif +||p0w2r.cyou^ +||cuyynol.com^ +||bigeagle.biz^ +jzzo.com,xxxvogue.net###parrot +||odrama.net/images/clicktoplay.jpg +movies2watch.tv##div[id^="gift-"] +||wogglehydrae.com^ +@@||ib.adnxs.com/opt$domain=wearemiq.com|infectiousmedia.com +/(?:com|net)\/[0-9a-f]{12}\.js$/$script,~third-party,domain=imgadult.com|imgdrive.net|imgtaxi.com|imgwallet.com +##.GoogleDfpAd-wrap +||1c447fc5b7.com^ +##a[href^="https://www8.smartadserver.com/"] +torrentgalaxy.to##a[href^="/hx?"] +thesportsupa.com##body > center +||agaue-vyz.com^$document +chedrives.com##a.btn.btn-success +@@||vk.com/vkpay$stealth +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,important,domain=almezoryae.com +chip.de##.fanpageTeaser +||23879858.xyz^$document,popup +||44e29c19ac.com^ +###ad-250x300 +cinnabon.com##.fcs-cookie-component +||zealousfield.com^ +dictionary.cambridge.org###ad_mpuslot +||udbaa.com^ +greekreporter.com##.td-all-devices > a[href][target="_blank"] > img +get.adobe.com###adChoice_div +||customernormallyseventh.com^ +||xywy.com/gk?a= +mcdart.de##.app-download-wrap +||ajxx98.online^$popup +||get.stoplocker.com^$popup +dzbhdm.net##a[href^="https://www.dzbhdm.com/news/"] > img[src^="https://www.dzbhdm.com/"] +||coffingfannies.top^ +||paishoonain.net^ +||wwhsxwow.xyz^ +mobil.nwzonline.de##.page-footer > a[href^="https://aktion.nwzonline.de/landingpages/whatsapp/?utm_source=off&utm_medium="] +newyorker.com##.paywall-bar--visible +||6pznpz.com^ +printedelectronicsnow.com##.globalOverlay +msn.com##.DisplayAdsWC +||3227.k3718qw08.com^ +wd-x.ru###social +||jorudan.co.jp/com/img/bnr/w685_ +||luminosoocchio.com^ +||sm-sp.followfollow.com^ +@@||th7.cn/sanda2015/css/ads.js +videostar.pl,pilot.wp.pl###gatsby-focus-wrapper > div[style^="min-height:calc"] > div[class*=" "]:has(> div[class^="sc-"]:only-child > div[class*=" "]:only-child > :is(a, button)[data-gtm-button="guest_create_account_bar"]) +-banner-ads-$~script +arch2o.com###text-85.widget_text +gamecode.win#%#window.open = function() {}; +@@||ad.doubleclick.net/ddm/ad/*$domain=twitch.tv,third-party +isohuntz.*,isohunt.*,isohunts.*,isohuntx.*,isohunthydra.*,isohunters.*,isohunting.*,myisohunt.*,isohunt.soy,isohuntx.com,isohunt.io,isohunt.bz,isohunt.how,isohunt.lol##.post-sidebar +||h-flash.com/data/image/mcs/chat +||fol9v.xyz^ +sshkit.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +strim.no##section[class^="_cookies_"] +||affmoneyy.com^$popup +techbloogs.com,tutwuri.id,lokerwfh.net#$##adblock-warning { display: none !important; } +rupornotube.me##.inline_el +||drawize.com/Scripts/ads234.js +||temp-mail.org/images/site-banners/ +shopify.com##.footer-signup +@@||icbc.com.cn/icbc/include/AD_ +##.ads-placeholder-inside +||cavebummer.com^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,domain=anidraw.net,important +||cdn.intergi.com/hera/tyche.js$script,redirect=noopjs,domain=tabstats.com +||stirdevelopingefficiency.com^ +olch.biz##.rssLink_03 +sejuku.net#$#@media (min-width: 1300px) { .post-template-default.single #main_content.l-mainContent.l-article .l-mainContent__inner { margin-top: 0 !important; } } +||ypojie.com/wp-content/uploads/*.js +||gibsuncap.shop^ +meduza.io#?#figure.EmbedBlock-cc:has(> div.EmbedBlock-object > div.EmbedBlock-wrapper > div.EmbedBlock-objectWrap > iframe[src^="https://meduza.io/digests/"]) +silicon.de##.wrap-contenus +||47.100.0.249/js/thea +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws##.ads-ad +@@||s.jacquieetmichelelite.com/assets/popunder.js +||zcfhi.cn.com^ +||100xuexi.com/CssModel/botad.js +duba.com##.ad_middleModal +||thoroughlypantry.com^ +||gbpkmltxpcsj.xyz +anspress.com##.ans-adv-block +||web.tmearn.com/ref-728.png +needrom.com###cookie_assistant_wrapper +###admpubottom2 +||openingmetabound.com^ +||squallchannel.*/RSSbottom.html +technewsworld.com###tnavad +@@||prussiabier.activehosted.com/proc.php?$domain=loja.prussiabier.com.br +||dpeqm8xv96fuc.cloudfront.net^ +###widgetwidget_adserve2 +||judgmentpolitycheerless.com^ +||honestlydeploy.com^ +udemyfreecourses.org#?#.container > center:has(> h3:contains(Sponsored ads)) +/assets/jquery/jquery-1.4.1.min.js?v=2&type=adult +||koi.henrydennis.dev^ +docs.roadrunner.dev,newsnn.ru,dust.tt,tagilcity.ru##.fixed.bottom-4 +||7xdown.com/idcgg/ +ruian.com##.ad_opera +hentaistream.com##.skin-hold +||maxi-pet.ro/Script/cookieseubox.js +bestproducts.com##.journey-container-wrapper +porn5f.com#?#.row:has(> div.col-lg-3 > div[style] > div.carousel-inner > p.ad-title) +/asset/default/player/plugins/vast-*.js +qq.com##.mod_float_banner +##.ad-module +##.adsinfo +||phuluzoaxoan.com^ +/wp-content/plugins/rdm-daac-notice/* +mercafe.com.br##footer > section:has(> div > form input#newsletterInlineName) +msn.com##div[class^="adsContainer-DS-EntryPoint"] +nyxcosmetics.com.tr,kiehls.com.tr,bauhaus.com.tr##.duyuru-camp +clearnotebooks.com#?#.grid-notes_container > div.base-component:has(> div.base-component > div.how-to-use) +svethardware.cz##div[data-rab*="svethardware.cz/article.jsp"] +izle.az###mediarek +||whizzco.com^$third-party +lovethemaldives.com##div[class*="-rectangle-"] +##.tips_advertisement +||psigozouns.com^ +##[data-ad-name] +semprot.com##.f_floating_div +@@||imasdk.googleapis.com/js/sdkloader/ima3_debug.js$domain=cbssports.com +||cifnews.com/common/js/d/d/tea.js +_ads.php? +freexcafe.com##.two300x250 +||shop.gadgetsnow.com/gsearch/gadgetsnow.php^$domain=m.gadgetsnow.com|timesofindia.indiatimes.com +protagon.gr##.subscrio +||satisfaction423.fun^ +instadp.com##.article > div[style="float:left; width: 100%; text-align: center;"] > a[href][target="_top"] > img +||iyyuvkd.com^ +clara.es##.content-newsletter +mywot.com##.app-stripe +||swerilxb.top^ +##.google_afc_ad +||35336.net/35336.jpg +||aixifan.com/apsdk/apsdk.js +||keenquill.com^ +estudyme.com##.thirdpartyads +mattressfirm.com#$#.modal-email-subscription + div.msc-modal__backdrop { display: none !important; } +ejje.weblio.jp###free-house-ad-on-load-modal-container +easyai.tech##.sidebar-inner > .widget_media_image:nth-child(n+2) +##.sponstop +##.adspanel +@@||it-actual.ru/wp-content/*/ads.png +||azvision.az/qafqaza/olke.php^$third-party +||premonitioneuropeanstems.com^ +festo.com#%#//scriptlet('set-cookie-reload', 'ckns_policy', '1') +simplelogin.io###hello-bar +##.ad-col +||yify-subs.xyz/dectector.js +||mhnzhlase.xyz^ +||watchsb.com/js/jquery/*/jquery-*.min.js?v= +||pjqchcfwtw.com^ +profile.ru##div[data-amp-original-style="width:100%;min-height:60px;background:#eee;text-align:center;margin-bottom:10px;"] +ytlarge.com#@#ins.adsbygoogle[data-ad-client] +@@||mf.advantage.as/if/imcreat.php$domain=mobilmania.cz +@@://*.xuk.ru^$stealth +medianews4u.com#?#.theiaStickySidebar > .jeg_wrapper > .wpb_text_column:has(> .wpb_wrapper > .mc4wp-form) +moddedguru.com#%#//scriptlet("adjust-setInterval", "countdown", "", "0.02") +||cloudfront.net/images/*-min.js$script,third-party +sexyandfunny.com###sexy-links +homebook.pl,abczdrowie.pl,autokult.pl,dobreprogramy.pl,echirurgia.pl,fotoblogia.pl,gadzetomania.pl,jejswiat.pl,kafeteria.pl,komorkomania.pl,luxlux.pl,medycyna24.pl,mixer.pl,money.pl,nocowanie.pl,o2.pl,open.fm,parenting.pl,pinger.pl,pogodnie.pl,pudelek.pl,samosia.pl,testwiedzy.pl,wp.pl#$#body { pointer-events: auto !important; } +igorslab.de##.herald-sidebar +kbb.com#?##kbbAdsMainCenterAd:upward(1) +t66y.com#%#//scriptlet('prevent-setTimeout', '/tpc.?[A-Z0-9].?tml/') +bitnova.info#$#body > .AdBar { display: block !important; } +watchmynewgf.com##body > section.bb +||counterfeitbear.com^ +||jingjs.top^ +||aliposite.site^ +vadimkravcenko.com##.custom-backdrop-show +skywardplus.jal.co.jp##.adbnr_related +tinhte.vn##.jsx-3663401058.main +romslab.com,lokkio.it,sharetheurls.com,opfanpage.com,canonrumors.com,flamecomics.me,repacklab.com,proserialkey.com,fullmatch.info,spielanime.com,torrentmac.net,game-repack.site,ispreview.co.uk,nxbrew.com,news.fidelityhouse.eu,poscigi.pl,environmentenergyleader.com,econostrum.info,repack-games.com,cryptopolitan.com,windowsactivators.org,asuratoon.com,chatgbt.one,njbeachcams.com,nokiapoweruser.com,tricksndtips.com,naijaremix.com,rockandrollgarage.com,firstcuriosity.com,bigbrothernetwork.com,flamescans.org,tech-latest.com,nintendoeverything.com,game-2u.com,ps4pkg.com,asurascans.com,anime7.download,netchimp.co.uk,howifx.com,9xflix.qpon,digitbin.com,coffeenerd.blog,nsw2u.*,thegeekpage.com,crewbase.net,watchseinfeld.cc,dandadanmanga.org,vgkami.com,tvtonight.com.au,lilymanga.com,pornstash.in,warsawnow.pl,silverspoon.site,asura.gg,getdroidtips.com,crackshere.com,watchasian.ac,qzlyrics.com,bollywoodhindi.in,marugujarat.in,linuxcapable.com,apkmb.com,techgeekbuzz.com,designcorral.com,otakukan.com,movies07.art,monsterspost.com,policeresults.com,mpnrc.org,browserhow.com,chromeunboxed.com,journeybytes.com,tutcourse.com,opportunitydesk.info,freecoursesites.net,tektutorialshub.com,fossbytes.com,borncity.com,profitableventure.com,guru99.com,whatisthemeaningofname.com,techpp.com,troypoint.com,bakabuzz.com,conservativebrief.com,xyzcomics.com,desiflix.club,jujmanga.com,myhealthgazette.com,cryptodirectories.com,secondlifetranslations.com,thewincentral.com,firmwarefile.com,bicfic.com##body .code-block +||izi.su/newa$all +ing.com.tr##.cookie-footer-warning +mangabz.com###cc2 +experts-exchange.com###topHeaderBannerWrap +rybnik.com.pl#%#//scriptlet("abort-on-property-write", "__loadnow") +||setoniale.com^ +##.adslot__ad-wrapper +||warehouseassistedsprung.com^ +||fa61d27a15.c6ec2f3763.com^ +mywebpc.ru#?#.textwidget > center > strong:contains(Подпишись) +zmina.info,elementy.ru,kurkul.com,slk.kh.ua,atbmarket.com,giveawayoftheday.com##.subscribe_block +||content.tupaki.com//*/news/Virupaksha-Movie-*.jpg +max.book118.com##.crm-re +||coolappland.com^ +||telugu.samayam.com/tggim/ +pinkvilla.com###__pv_first-optin +duckduckgo.com##.atb-button--faq +##.right-column-ads +||performrecentintenselyinfo-program.info^$popup +||preonesetro.com^ +||17house.com/zt/style/pc/js/zt_ +strtapeadblocker.art#@#.skyscraper.ad +||alleliteads.com^ +||1337x.vpnonly.site^ +@@||e.mail.ru^$stealth +cardu.com.tw##img[src*="/ad_images/"] +||d3iz6lralvg77g.cloudfront.net^ +encyclopedia.com###block-trustme-rightcolumntopad +wstream.video#?#body > div[id][style]:has(> center > * > a[href="https://wstream.video/premium.html"]) +clk.ink##div[data-captcha-enable] > div[id^="google-captcha-"] +gld.nl,omroepwest.nl,rtvnoord.nl#%#//scriptlet('trusted-set-cookie', 'consent-cookie-toggles', '[{"type":"social","value":3},{"type":"remaining","value":2}]') +fully-fundedscholarships.com##.theiaStickySidebar > div.widget_block[id^="block"] +||gvt2.com^ +##.js-taboola +thefreedictionary.com#$#.content-holder > div[class][style^="height:"] { position: absolute!important; left: -3000px!important; } +/^https?:\/\/(.+?\.)?ipatriot\.com[\/]{1,}.*[a-zA-Z0-9]{9,}\/[a-zA-Z0-9]{6,}\/.*/$image,domain=ipatriot.com +gz0668.com###framec32DR1 +###footerGoogleAd +||hiao.com/node/node_27508.htm +||filext.com/tools/fileviewerplus_b1/ +fantrax.com##side-ad > .placeholder--fluid +||feelresolve.com^ +||push.maribacaberita.com^ +timesofindia.com##div[id^="div-gpt-ad"] +||ankghgcgygyfi.com^ +||choptacache.com^ +||irisunitepleased.com^ +asheville.com##.injected-ads +||mobiflyc.com^ +tapatalk.com###relatedblogbar +moviesfoundonline.com##a[href^="https://www.purevpn.com/"] +dutafilm.*##body > a[href] > div[style^="position:absolute;"][style*="z-index:"] +||shnpetdn185.shop^ +||abc.douguo.com^ +||starjav11.fun^ +||weejaugest.net^ +modellbau-metz.com#@#.cookie-modal +lapagan.net##.i_300 +zhicheng.com##.sf_1 +||mqaoweu.icu^ +fastseduction.com,independent.co.uk###partners +||admeking.com^$popup +bioseptyl.fr##.nq-c-GdprBanner +mycinema.pro##footer > div > div +||affbuzzads.com^$third-party +apptractor.ru###custom_html-30 +||offersuperhub.com^$popup +##.adv-box-wrapper +##.ad_supersize +@@||hotcopper.com.au/ads.js +imagetwist.com#%#//scriptlet("abort-current-inline-script", "$", "window.open") +##.ad--sticky +traderepublic.com#$#.cookie-banner:not(body):not(html) { display: none !important; } +imgdawgknuttz.com#%#//scriptlet("abort-on-property-write", "atOptions") +||livejupiter2.blog.jp/rss_$subdocument +4sysops.com###custom_html-18 +||admission.net^ +@@||algolia.net/*/indexes/$stealth +||wlrjy.com/assets/images/tuidc.png +hongkiat.com##.sidebar-widget--subscribe +top10vpn.com##.boxCTA +marriedgames.com.br#%#//scriptlet("abort-on-property-read", "videoIds") +||cbfpiqq.com^ +hackr.io#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||gtbdhr.com^ +runews24.ru##a.button_type_link[target="_blank"][href] +allmusicitalia.it#$##inner-main-container { margin-top: 50px !important; } +/ggvip/*.js +@@||polizei-beratung.de/typo3conf/ext/codetris_propk/Resources/Public/JavaScript/main/cookie_consent.*.js +||flashtalking.com^$third-party,domain=~toggo.de +businessday.ng##.ad-container-silent +gadgetsnow.com#?##app > div[class] > div[id^="div-gpt-"]:upward(1) +migraine.com###secondary > .desktop-only +conservativebrief.com##a[href="https://conservativebrief.com/newsletter/"] +empflix.com##.mewZa +neff-home.com,bosch-home.*#$#.cookielaw-blur-background { overflow: visible !important; } +||ytzihf.com^ +||a7dfd3c64a.84f101d1bb.com^ +||enifdlaw.top^ +rule34.xxx###content > div.header > img +amateurfapper.com,iceporn.tv,pornmonde.com##.sources +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=noopjs,important,domain=1shortlink.com +podcastnotes.org##.mailing-list-cta-overlay +wroclawskisport.pl##a[href="https://superbet.pl/supergame"] > img +##.largeRectangleAd +tuivillas.com#$#html { overflow: auto!important; } +||kumparso.com^ +##.widget_ads +7news.az,ann.az##.sidebarbanner +||ariva.de/js/ariva_notification +||alkentinedaugha.com^ +cambay.tv#%#//scriptlet('set-constant', 'flashvars.adv_post_url', '') +||mantisadnetwork.com^$third-party +/alertcookie. +insidermonkey.com##.company-follow-email +||nowhern.com^ +grland.info,flash.pt,wackojaco.com,gpblog.com#%#//scriptlet('trusted-click-element', 'div[class^="qc-cmp2-buttons-"] > button[mode="primary"]') +neowin.net###desktop_after_3rd_article +||privacy-mgmt.com/mms^ +||gauwanouzeebota.net^ +wmj.ru#?#div[class^="layoutContent"] div:not([class]):has(> a[href][target="_blank"] p + span[href]:contains(Подписаться)) +sakshi.com#$?#.floating_video { remove: true; } +google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws##header[role="banner"] div[class^="gb_"][role="dialog"][style="behavior:url(#default#userData)"] +@@||liverail.com/swf/*/admanager.swf$domain=gametrailers.com +###midadvert +=ad_top_slider& +png.is,nohat.cc#?#.grid > .grid__item[style*="min-height: 250px; position: absolute;"]:has(> .adsbygoogle) +||up1app.com^ +/wp-content/plugins/amazon-auto-links/*$script,stylesheet +||thaickoofu.net^ +dictionary.com#?#p[class]:contains(Advertisement):upward(2) +metadata2go.com,pdf2go.com,video2edit.com,img2go.com,online-convert.com###qg-toast +||linkedprepenseprepense.com^ +samsoe.com#$#.modal-backdrop { display: none!important; } +||spitspacecraftfraternity.com^ +aarp.org###siteBannerText +##.CookieNotificationTopBar +||zhuashi.oss-cn-beijing.aliyuncs.com^$domain=~zhuashi.com +mobanwang.com##.box960x90 +||xmegadrive.com/player/html.php?aid=pause_html +ytcomment.kmcat.uk#%#//scriptlet('set-cookie', 'privacy', 'true') +ads.google.com,youtube.com#@#.video-ads +jooble.org###footerSubscribeContainer +zlotowskie.pl##.news > div[style^="min-height:"] +-cookie-law.js +doktorumonline.net##.doktorumOnlineCoocies +peacemakeronline.com###front_mid_right > center +hentai7.top###custom_html-6 +||r42tag.com^$third-party +forbes.com##.myFinance-widget +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=games.latimes.com +||sragegedand.org^ +dmhy.org##div[id$="_ad"] > a[onclick*="'ad'"][target="_blank"] +/blockblock/blockblock.jquery.js$script +wordcounter.icu#%#//scriptlet("prevent-eval-if", "__PPU_CHECK") +/rass7.$script,~third-party +@@||tpc.googlesyndication.com/archive/$image,subdocument,xmlhttprequest,domain=adstransparency.google.com +125.la##.forumlist_ad +tr.link#%#//scriptlet("set-constant", "xmlhttp", "noopFunc") +net.hr#?##might_be_interested_and_ad > div#desktopScaleDown:has(> div[class^="css-"] a[id^="placeholder_container_"]) +instacart.ca,instacart.com#%#//scriptlet('set-local-storage-item', 'homeExpressEmailSignupExitIntentModal', '1') +geeksforgeeks.org#$#body[class] { overflow: visible !important; height: unset !important; } +gamedrive.org###BR-Footer-Ads +##.ad-innr +||clickad.pl^$third-party +||woodenguardsheartburn.com^ +||cdntxt.com/m1/ +imyfone.com##.pop-up-box +finance.yahoo.co.jp##div[class^="AppBanner"] +@@||sinaimg.cn^$stealth,domain=weibo.com +||filter.fstsrv14.com^ +||ads4trk.com^ +||reedpraised.com^ +genius.com##div[class^="StubhubLink"] +sarvgyan.com##div[class^="sgn-top-bar"] +wiki.gg##div[class^="games-showcase"] +123animes.*,europixhd.pro,9xmovies.baby,vidhd.net,linksupto.me,ssrmovies.win,gdriveplayer.*,vidsrc.*,a2zapk.com,vidload.net,gomoviesfree.page,gomo.to#%#//scriptlet("abort-on-property-write", "glxopen") +wlos.com###js-SocialWidget-Container +save.ca##.leaderboardMainWrapper +kvador.com###fadeinbox +buero-bedarf-thueringen.de###bbtCookieBG +android.com.pl#%#//scriptlet('set-constant', 'isAdblockEnabled', 'false') +tianya.cn##.book-box +hejsweden.com#$#body { overflow: auto !important; } +@@||turnip.cdn.turner.com/top/auth/$stealth,domain=tbs.com +||smutty.com/n.js +||nanfleshturtle.com^ +navratdoreality.cz###snippet--banners-bot +inews.zoombangla.com##iframe[src="https://zoombangla.com/jamuna100/"] +||newagerevenue.com^$third-party +topsporter.net###fl-ai-widget-placement +scrabble-solver.com###Upper +studyinjapan.go.jp###js_cookie_modal +gas.goodlife.tw###widgets +||254a.com^ +||yg.coehornjobbet.com^ +veev.to##a[href^="https://t.ly/"] +||4126fe80.xyz^$document,popup +tiengnhatpro.net###HTML8 +@@||ads3.xumo.com^$domain=2vnews.com +yiyouliao.com#?#.yyl-weiruan-ads-list-item:has(> div#small1) +lilysilk.com#$#.subscribe-maskLayer { display: none !important; } +kingtalks.net#%#//scriptlet("adjust-setInterval", "counter", "", "0.02") +||clixco.in^$third-party +||mkiterx.top^ +gizmodo.com##.min-h-\[1000px\] +live.vodafone.de#$#html { overflow: visible !important; } +hotspotshield.com,zendesk.com,shopxp.com.br,4900.co.jp,wowjp.net,k-yoga.ru,disasterscans.com,mcgrp.ru,boehms-dax-strategie.de,lifeistravel.com.ua,inettools.net,thehackernews.com###ouibounce-modal +igrotime.ru##.modal-fortune +apasport.az##.header-rek +###cookieBlock +##.adpic +.fuse-cloud.com/ +shrinkme.*###imgAddDirectLink +||ad-balancer.net^ +||nytrng.com^ +###lower-ad-banner +i24news.tv##.column-ads +bfstrms.xyz##div[id^="webmodal"] +||trknext.com^$popup +##.ad-banner-container +||fetinhapinhedt.com^ +||be57a605f2.da066d9560.com^ +newia.ru,dns.pl,bel.ru#%#//scriptlet('set-cookie', 'cookie-accepted', 'true') +||leegaroo.xyz^ +||asverymucha.info^ +shortclicks.xyz#%#!function(){var f=function(a){for(var c=0;10>c;c++)try{a=atob(a);try{new URL(a);var d=!0}catch(e){d=!1}if(d)try{window.location=a}catch(e){}}catch(e){}};if(-1 div[style="text-align:center; margin-top:20px;"] +accuweather.com##.sidebar-telmet-promo +@@||doubibackup.com^$generichide +||ml.estellaeyelet.com^ +@@||travel-assets.com/ads/*/expadsblocked.js^ +shangyexinzhi.com##.img2text-adv_wrapper +/show-ad.js$script +vc.ru,dtf.ru##.header__app +dot.asahi.com##.leafs-pr-under +otopratik.com.tr#$#html[style*="overflow:"] { overflow: auto !important; margin-right: 0 !important; } +##.banner_300_250 +getitfree.cn##.top-footer > .call-action-unlogged +||structurecolossal.com^ +lbcgroup.tv##.ScriptDiv +pcmag.com#%#window.checkState = function() {}; +||hendehy.com^ +###medrec_middle_ad +timesnownews.com##[style="min-height: 181px;"] +coursefreedl.com#%#//scriptlet("adjust-setInterval", "downloadTimer", "", "0.02") +xxxbule.com,mybestxtube.com,nakedteens.fun#%#//scriptlet("abort-current-inline-script", "onbeforeunload", "popit") +||stat.ijinshan.com^ +obi-de.app.baqend.com,obi.de#$#.colorbox-cookiepolicy { position: absolute !important; left: -3000px !important; } +:8080/js/v2.1.js$third-party +||montent.powzers.lol^$popup +ecosia.org##.serp-cta-wrapper +||lasciviousregardedherald.com^ +##.l-article__ad +###block-cookie_policy-0 +||thatbeefysit.com^ +##.ad-line +/Amasty_GdprFrontendUi/* +###footer-ad +contactform7.com,ducumon.click###custom_html-5 +###ad-box-rectangle-2 +||tacopush.ru^$document +factory.pixiv.net##.agreement-to-last-term +||atala-apw.com^$popup +goldesel.to#?#body > div[class] > ul[class]:has(> li > a[href^="apps/windows/"] > img) +ukraine.com.ua###gdpr-banner-cookie +xchina.co##div[style*="width: 300px;"][style*="height: 455px;"] +gametower.com.tw###tableAD +||quiz.marquiz.ru^ +||statestockingsconfession.com^$popup +||pornogrund.com^$third-party +||openbook.net^$third-party +wnacg.com#@#.google-ads +focus.ua##.js-cat-required +tiempo.com#%#//scriptlet('trusted-click-element', '#btn-gdpr-accept') +||ptoangir.com^ +edition.cnn.com#$#.header__wrapper-outer:not([style]) { height: 40px !important; } +rottentomatoes.com#@#.page_ad +||coinvote.cc/user_data/premium_banners/ +zoxs.de#$##gdpr-dialog { display: none !important; } +||grojaigrerdugru.xyz^ +movie2z.com##.justify-content-md-center > div[class="col-2"] > a[target="_blank"] > img +||meltedacrid.com^ +||doublepimp.com^$popup +||speedporn.net/iamfront.js +||zhihucloud.xyz^ +streamlivenow.me##center > [style^="background:white;"][style*="max-width:"] +###cookies-information > .innerDiv +0597kk.com###kk_content1_left_ad1 +2345.com##div[class*="act-navspec"] +||storehighlystrongtheproduct.vip^ +||survey2you.com^ +@@||rakuten-bank.co.jp/rb/ams/img/ad/$~third-party +||dooloust.net^ +@@||wejhrtlhjkltvicuiuyd.b-cdn.net/adv/ads.js +jkforum.net##.jav-guest-login +kitploit.com##.post-footer > div[style="text-align:center;"] > a[target="_blank"][imageanchor][style]:not([href^="//www.kitploit.com"]) +||xml.re-media.info^ +||wyuwkbe.top^ +americanexpress.com###btiDisruptorBanner +paypayfleamarket.yahoo.co.jp###__next > div > aside:has(> div > div > div > div > a[href^="https://play.google.com/"]) +||egamersworld.com/uploads/bookmakers/ +cheathappens.com#$#.navbar.attn_shift { margin-top: 0 !important; } +||negxkj5ca.com^ +||vlr.gg/img/pr/ +asuracomics.com##a[href="http://story.alandal.com/necro"] +||bdasd.chdbook.cn^ +||l0ix1.site^ +guidelinecentral.com###cdp-gdpr-popup +||pimg2023.com^ +##.adInArticle +securityaffairs.com###vi-smartbanner +shop.apotal.de##footer::after +pravda.com.ua##.advtext +annualreviews.org##.ar-right-col > div.collections-arBuzz +||whereuponcomicsraft.com^ +||careerjavgg124.fun^ +||consensushistorianarchery.com^ +ultimate-guitar.com#$##advanced_search td.b.bdrunion[style^="display: block!important;"] { position: absolute!important; left: -3000px!important; } +virustotal.com,virustotalcloud.appspot.com###euConsent +ganji.com###recommend_storeg_div +vc.ru##.halloween-card +gslbsolutions.com#?##root > div[class]:has(> span > span > a[href="/privacy-policy"]) +@@||linkbucks.com/tmpl/$image,stylesheet +edziecko.pl###DFP_PREMIUMBOARD +odditycentral.com###sidebar > div[align="center"][class="boxcontent padding"] +ziekenhuis.nl#%#AG_onLoad(function() { setTimeout(function() {var check = document.getElementsByClassName('cookiewall')[0]; if (check){document.cookie = "acceptcookies=true"; location.reload();}; }, 300); }); +cochranenow.com,discoverhumboldt.com,portageonline.com,swiftcurrentonline.com##.inline-billboard +thehindubusinessline.com,thehindu.com##.entrySubs +##.adContTop +gmanetwork.com##crowdy-news > .crowdy-hldr +||publicsofa.com^ +||zooredtube.com/zr*.js +||uzelzfnj.xyz^ +@@||testufo.com^$generichide +##.Sailthru_Subscribe +||120askimages.com/ask/js/q +||log.mtime.cn^ +blog.csdn.net###kp_box_www_swiper_ban +||gayboystube.com/*/js/license.js +||cloudtraff.com^ +||fightsedatetyre.com^ +##img[src$="/img/tianbo.gif"] +pixiv.net#?#aside > section[class^="sc-"]:has(> div[class^="sc-"] > iframe[width="100%"]) +support.meduza.io##div[class^="GDPRPanel_root_"] +||qqfby.com^*ad +khmertimeskh.com##a[target="_blank"][rel="noopener noreferrer"] > img +||affmoneyy.com^ +openrice.com,aerobaticteams.net##.cookies-agreement +base.be,jimmobile.be##.cookie_flyout +kolesa.ru##.marked-post +@@||solvetube.site^$generichide +ottawacitizen.com#$#body { overflow:visible!important; } +guiltfree.pl,yasumi.pl,boards-sports.de,boards-sports.com,flowshop.pl,strefa998.pl##.x13eucookies +58.com#?#tr[sortid]:-abp-has(> .t > .ico.accurate) +aufladen.de###ConsentCookie +||o626b32etkg6.com^ +##.connatix-main-container +@@.php$subdocument,stealth=referrer,domain=/dizipal\d+.com/ +||mykneads24.com^ +onemanhua.com##div[id^="rn_ad_native"] +||t6.china-xian.com^ +/publicidad/*$~xmlhttprequest +||lootynews.com^$popup +||thaninncoos.com^ +conjugacao-de-verbos.com,conjugacion.es,die-konjugation.de,the-conjugation.com###header_pub +##.header-cookies +||elizaloosebosom.com^ +||d1j2jv7bvcsxqg.cloudfront.net^ +||grandwatchesnaive.com^ +ac-illust.com,photo-ac.com,silhouette-ac.com#?##eachDownloadedModal .ac-btn[href^="https://premium."]:upward(#eachDownloadedModal) +||pixfuture.com^$third-party +##.cookiePolicy-Modal +gay.bingo##.player-section__ad-b +readm.org##center[style="margin-top:25px; margin-bottom:25px; width:100%; height: 100px;"] +rynek-rolny.pl###fixedElement2 +##.pea_cook_wrapper +||combclover.com^ +@@||cdn.consentmanager.net/delivery/js/cmp*.min.js$stealth +||d29i6o40xcgdai.cloudfront.net^ +||param.com.tr/*dist/js/gdpr-cookie.js +@@||microsoft.com/*=wsign$stealth +###adv728x90 +herder.de###BottomNotification +||twinsrv.com^ +@@/playlist/*caxi.m3u8$xmlhttprequest,stealth=referrer,domain=methstreamer.com|crackstreamer.net|thestreameast.ai|1stream.soccer|streameast.app|1stream.eu|buffstreams.app|meth-streams.ai +wireless-bolt.hu###cookieusing +##.ad-aligncenter +||ecvjrxlrql.com^ +##.half_ad_box +nytimes.com#$#.pz-header-sales > .show-messaging { display: none !important; } +fofmyanmar.com##center > a[rel="noopener noreferrer"] > img +/jsAds-1.4.min.js$script +||anysex.com/assets/script.js +md.hkgolden.com#?##viewpage > .post:has(> :is(div[id^="div-gpt-"], .hkg-ad)) +||chokeweaknessheat.com^ +||yhlpshi.xyz^ +||gwogbic.com^ +discovermagazine.com#?#div[sizes^="[object Object]"]:contains(Sponsored) +voelkner.de##.footer_top__content_container +pekaofaktoring.pl###COOKIE +||burgea.com^ +@@||douyucdn.cn^*-share-master/ +||iprom.net^ +_468_60-$~script +modellbau-vordermaier.de#$##cookie-jar { display: none !important; } +||concerneddisinterestedquestioning.com^ +||rgddist.com^ +bitchesgirls.com##.ADDED +@@||infowars.com^$csp=script-src 'self' *.leadpages.net *.gstatic.com *.google.com *.googleapis.com *.playwire.com *.facebook.com *.bootstrapcdn.com *.twitter.com *.spot.im +/banner/html/zone?zid= +@@||pagead2.googlesyndication.com/pagead/js/*/show_ads_impl$domain=ff14angler.com|logi.im +infoplease.com###block-ipbtfad +reclameaqui.com.br##.brand-page +||price.com.hk^$domain=discuss.com.hk +||adtrace.org^ +taiwancall.com##.gad +onet.pl,plejada.pl,przegladsportowy.pl#$#.backToOnetBottomBar { display: none!important; } +||p.zol-img.com.cn^ +@@||genshuixue.com/??/*/counter/action_ +noticiasaominuto.com#$#.main-container.padding-top-sm-70 { padding-top: 0 !important; } +accuweather.com#%#//scriptlet('remove-attr', 'style', '.cnx-content-wrapper.cnx-float-transition') +||1cjzfyb.com^ +||otr-online.ru/__banner.php?location=sp_notify_prompt +syakouba.com##.ranking +/banner468x60_live173. +||api.plebmasters.de/v1/info/partners$xmlhttprequest,redirect=noopjson +@@||hbimg.huabanimg.com^$stealth,domain=huaban.com +||ebioweb.com/newsf/js/inpic.js +||ak.oalsauwy.net^$all +###dfp-ia02 +schwebheim.de#$#html > body.borlabs-position-fix { overflow-y: auto !important; } +coingraph.us##.e +play.anghami.com#@#.adsBanner +idw.de##.cookie-manager__overlay +videzz.net##.vjs-adblock-overlay +||infuriateseducinghurry.com^ +||pamelarandom.com^ +||bkxpph.xyz^ +||157.90.183.248^ +###cookieChoiceInfo +@@||short.goldenfaucet.io/*js/viewad.js +oneplusbbs.com,wstx.com,xiaot.com###diy4 +@@||maps.hereapi.com^$stealth=referrer +trannyvideosxxx.com###text-2 +##.acceptCookies +probusiness.io##.b-sbscr-popup +zavvi.com###productPromotionalMessage +/^https?:\/\/.*\.(club|xyz|top|casa)\//$popup,domain=databasegdriveplayer.co|dood.la|dood.so|dood.to|dood.video|dood.watch|dood.ws|doodcdn.com|fmovies.world|gogoanimes.to|masafun.com|redirect-ads.com|strtpe.link|voe-unblock.com +||trendmouthsable.com^ +||gd.189.cn^*.htm?SP=$popup,third-party +||code.ditiezu.net^ +###ad_160_600_2 +billboard.com#$?#.chart-list__ad { remove: true; } +eluniverso.com###ofertUserFirstView +||backedliar.com^ +fujifilm.com##.m-cookie-confirm +###AdColumn +||gdwudmv.icu^ +##.adsection_c2 +@@||cdn.cookielaw.org/scripttemplates/otSDKStub.js$domain=eatingwell.com +mtb-news.de###cb-outer-container > div[id][style*="height"][style*="background"] +mariogames.be#?#.gameinfo tr > td:has(> div > .adsbygoogle) +upgrad.com##.postcustom-section +||dissemblebendnormally.com^ +makemytrip.com##div[data-cy^="AdTechCard_"] +||bestonlinecasino.club^$popup +community.hackintoshshop.com##div[align="center"] > div[style="height:25px"] +||aaaf.info^$script +||chongdiantou.com/wp-content/uploads/2019/02/pzb.jpg +vidstreaming.xyz,boosterx.stream,filmcdn.top,moviesapi.club,vidlop.com,vectorx.top,mov18plus.cloud,forplayx.ink###video_player ~ div[id]:has(> div[style^="position:fixed;inset:0px;z-index"] > a[target="_blank"]) +nuvid.*##.video-options > div[style="position:relative;"] > span[style="width: 100%;text-align: left;display: inline-block;position: absolute;top: -12px;font-size: 10px;"] +ip-address.org##.aduns +azb-cuw.pl#@##cookies-modal +blog.hubspot.com###hs_cos_wrapper_blog_post_sticky_cta +||approved.website^$document +armedangels.com#$#.cookie-permission-modal { display: none !important; } +healthshots.com###newsletterPopupId +##.ad-5 +||heartlessrigid.com^ +##.ad-callout +||sooopu.com/js/contentad330.js +m4maths.com#?#.m4_footer_container:has(> div:contains(Advertisements)) +data.morsodifame.com#%#//scriptlet("adjust-setInterval", "waktu--", "", "0.02") +||adultcamfree.com^ +zakazany-humor.pl###ppsPopupBgOverlay +||86uk.com^$subdocument +retrogames.cc#?#div[style] > div[class^="ejs--"] > div[class^="ejs--"] > div:not([class]):not([id]) > div[class^="ejs--"][style*="!important"]:has(> iframe[src="https://www.emulatorjs.com/ad.html"]) +||baigh8eosmgie02.site^ +le.com#%#//scriptlet('set-constant', 'isAdLoaded', 'true') +life.saisoncard.co.jp###cvModal +||ca9246.xyz^$document,popup +||2619374464.com^ +/html/709/*.js +landkreis-sigmaringen.de###cCore_cookieNotice +jb51.net##p[style$="text-align: center; padding: 0px; margin: 20px 0px;"] +||adnanny.com^$popup,third-party +||wpush.biz^$third-party +##.headerAdContainer +||hkaphqknkao.com^ +||552f323934.f5e03754b3.com^ +@@||consensu.org^$domain=beachcam.meo.pt +emmenetonchien.com##.block-emmenetonchien-popup +||hy90.cn^ +tedi.com##.ratracker-stickyBar[data-cookie_lifespan] +##.store-ads +paryatanbazar.com##.ad--space +##.advert_text +##.ad-size-medium-rectangle-flex +||awejmp.com^$popup +files4you.org###posts div[id^="post_message_"] div[align="center"] > div[style^="height:"][style*="width:"][style*="position:"][style*="background:"] +forbes.com#%#//scriptlet('trusted-click-element', 'div[class*="ketch-"] button[aria-label="Accept All"]') +||delegatediscussion.com^ +qlwb.com.cn###scroll_box +||crumpet.xxxpornhd.pro^ +||churchkhela.site^ +seekingalpha.com##div[style^="--largeTopBannerBackground:"] +manhwadesu.me#%#//scriptlet("prevent-window-open") +##.index_ad_a2 +short-url.link#%#//scriptlet('adjust-setInterval', 'second', '1000', '0.02') +m.azonline.de##.social_media_block +||rebatelirate.top^ +/image/ad/*$image +||outofthecath.org^ +gillette.*#$#.fixed { position: static!important; } +###contentad-story-middle-1 +2daygeek.com##body > div[id^="spu-"] +maxqda.de###cookiecheck +onlinelibrary.wiley.com##.js-module.notification +tennistemple.com##div[id="300x250_premium"] +gigasport.at,gigasport.de,gigasport.ch#$#body { overflow: scroll !important; overflow-x: hidden !important; } +||caphrizing.com^ +||timsef.com^ +##.match-ad +##.adzbanner +auto-online.com.tw##div[style="width:336px;height:280px;margin:0;background:#000000"] +danyang.com###global-hd > div[align="center"] +||errors.house^ +||login.keenkale.com^ +appinn.com###sidebar > .widget:first-child +enterprisersproject.com###block-subscribetoournewsletter +pch24.pl##div[data-cookie-name="cs-show-pch24"] +||hilarlymckensec.info^ +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=thedailybeast.com +countrylifevitamins.com##.subscribe-overlay +chajiaotong.com##div[id^="cjtad_"] +comidinhasdochef.com##body .snp-builder +m.timesofindia.com##.newsletter_entertainment_widget +##.ads-outer +@@||duit.cc/favicon.ico# +||citysbs.com/no/*/1190x60- +###advertisement_block +razer.com#$#.modal-backdrop { display: none !important; } +||wheeptit.net^ +||descendantdevotion.com^ +###vidazoo-player +player.fm#$#.open-in-app-promo { display: none !important; } +##.box_ad_horizontal +24tv.ua##app-twitter-subscribe +news.hf365.com##.main-r > div:first-child +dailymotion.com##div[class^="NewWatchingDiscovery__adSection"] +77mh.nl###bdtopbot +fileproinfo.com###myNav +###comment_ad_zone +||oneadvupfordesign.com^$document +||oxkyaq.xyz^ +syri.net##div[id^="rekl-"] +mrwebmaster.it##.advmid +forums.imore.com###postlist > #posts > div[align="center"][style="padding:15px"] +||muddledaftermath.com^ +||203.195.121.$popup +||influenzathumphumidity.com^ +||if.bagnetfoxship.com^ +virustotal.com#%#//scriptlet('set-cookie', 'euConsent', '1') +nutricia.pl###cookie-first +lightnovelpub.com##.comment-wrapper > ul > li:has(> ins.adsbygoogle) +||d2nrdy2pg3k168.cloudfront.net^ +||randalls.com/abs/pub/xapi/search/sponsored-carousel? +marcelpaa.com#$##hustle-popup-id-25 { display: none !important; } +finanztip.de##.nl-overlay +||bemocksmunched.com^ +://www.*.js|$script,third-party,domain=159i.com|r3sub.com|thisav.com +##.cookie-compliance +:88/lighttpd/default/ +pixelpost.pl##.sidebar-inwrap > aside#text-4 +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_$domain=tvmovie.de +##.ads720x90 +##.gpt-leaderboard-banner +starwank.com#?#center:contains(Advertisement) +bethowen.ru##body > div[data-href$="/landings/season_sale/"] +###ad_fullbanner +||islandracistreleased.com^ +||litecoin-faucet.com/assets/img/static/ +maxppp.com#$#.cdk-overlay-container { display: none !important; } +iwara.tv##.contentBlock__content +vi.nl#@#.cookie-consent +penny.hu#@##cookie-message +.com/script/script.js$third-party +||6470.k3718qw08.com^ +1news.az##.topbanner +@@||gifans.com/wp-content/plugins/wp-safelink/assets/fuckadblock.js$domain=gifans.com +incredibleindia.org#$#.modal-backdrop { display: none!important; } +||voluumtrk.com^ +||eus.rubiconproject.com^ +matomo.org##div[data-widget_type^="matomo_newsletter"] +annualreviews.org##.ar-news-footer +inn.co.il##.taboola +blog.csdn.net##div[style="min-height:250px;"] +||fierymint.com^ +||viatechonline.com^$popup +nasezahrada.com##.leaderboard-banner +||gomo.cc^$popup +eplus.by#@#.cookies-container +youtg.net##.bannergroupskinbanner +autotrader.com#$#body { overflow: visible!important; } +apkboxdl.com##center > a[rel="nofollow noopener"] +##.ad-13 +bi-girl.net##.top_link_title +cardekho.com##.adHolderTop +atresplayer.com#?#div[class^="style__StyledGlobalWrapper-"] > div[class^="style__StyledGenericModal-"]:has(> a[title="Descargar la app"]) +##.blockAds +bolasport.com#?##content > div.content_wrapper:has(> div.news-list__list iframe[src^="https://embed.dugout.com/"]) +##.left_ad_160 +||nindscity.com^$popup +emojipedia.org,camelcamelcamel.com,adsoftheworld.com,flightconnections.com,smithsonianmag.com,thenation.com,lse.co.uk,knowt.com,gamerescape.com,myabandonware.com,androidheadlines.com,phoronix.com,virtualpiano.net,creaders.net,baeldung.com,titantv.com,thisisanfield.com,mouse-sensitivity.com,hostednovel.com,getemoji.com,concertarchives.org#%#//scriptlet('abort-current-inline-script', 'Uint8Array', 'getAndSetOverlay') +||azkrya.xyz^ +||wixstatic.com/media/*~mv2.gif$domain=taxi-point.co.uk +philips.com.au,philips.de##.dot-cc-wrapper +chubbyparade.com###regp_bg +||oldeststrickenambulance.com^ +@@||googleads.g.doubleclick.net/pagead/ads?ads$domain=gleanster.com +||npjhdunxxfhwgtv.com^ +.usercentrics.eu^$third-party +secretmag.ru##a[href="https://zen.yandex.ru/secretmag"] +||breakfastsinew.com^ +msn.cn#%#//scriptlet('json-prune', '*', 'list.*.link.ad list.*.link.kicker') +||bungingimpasto.com^ +down.fast-down.com##div[data-ad] +wirtualnemedia.pl##.partner-news-wrapper +||korusigorta.com.tr/Content/cookielawbar/cookie.js +mildom.com#%#//scriptlet('set-local-storage-item', 'has_popout_notification_dialog_recently', '1') +/^https:\/\/x?1337x\.(?:eu|g3g\.sbs|gd|to|se|unblockit\.name|st)\/(?:css\/)?(?:images\/)?[0-9a-z]+\.(?:gif|jpe?g|png)/$image,~third-party,domain=1337x.to|x1337x.eu|x1337x.se|1337x.unblockit.*|1337x.st +||flvto.biz/get-rtb-url +houstonchronicle.com##.package:has(> div > div[data-block-type="ad"]) +srvy.ninja#%#//scriptlet('prevent-xhr', 'adsbygoogle') +riemurasia.net###container > div[class^="slide_"] +||bruisesromancelanding.com^ +##.wrap + #midBox +||consensusindustryrepresentation.com^ +||estainuptee.com^ +||junckafa.top^ +carnegie.ru##.analytics-stay-in-the-know +geinoukame.com##div[style*="width: 822px;height:600px;overflow: scroll;"] +||meaningfunnyhotline.com^ +||bizrotator.com^ +||rguxbwbj.xyz^ +altadefinizioneita.co##noindex > center > a[target="_blank"][rel="nofollow"] > img +rei.com#$#.modal-open { overflow: visible !important; } +lostfilm.info#$#body { background: #000000!important; } +||aromaticunderstanding.pro^ +biztechmagazine.com##.hdr-btm +polarstern-energie.de#$#body { overflow: visible !important; } +||lagacetanewspaper.com/wp-content/uploads/banners/ +cnet.com#%#//scriptlet('remove-class', 'c-avLazyStickyVideo-sticky', '.c-avLazyStickyVideo-container') +||biserka.xyz^$popup +||pstnmhftix.xyz^ +||tutvp.com^$popup +||d12nvv2jqzsaax.cloudfront.net^ +iberostar.com,keurig.com###tDrkDiv +||fistevasionjoint.com^ +||shakytaste.com^ +/floatcaopron.js +###ads_160 +||fireworkadservices1.com^ +thehackernews.com##body > .google.cf +||moomenog.com^ +###taboola_side +||ressource.gdpr-banner.awsmpsa.com/js/tarteauxprunes.js +breitbart.com###accontainer +pcworld.hu##.ad-sticky_bottom +livehd7.io###adsx +spacehive.com#%#//scriptlet('trusted-set-local-storage-item', 'acceptedCookiePolicy', '1.4') +||putrefyeither.com^ +||wikihow.com/x/zscsucgm? +||9159f9a13d.com^ +||modsfire.com/img/ookfmx.png +##.ads_horizontal +||cam4.com^*&utm_source=$popup +||mydailynewz.com^$popup +||miniglobalcitizens.com^$popup +##.collapsed-ad +x.com,twitter.com###layers > div[class] > div[class]:has(> div[class] > div[data-testid="BottomBar"] a[href$="/privacy"]) +safe.elektroupdate.com#@#ins.adsbygoogle[data-ad-slot] +||5416461.4puuqeh41.com^ +image.baidu.com###imgCmsAdPart +topmusicarts.com###qab_container +douyu.com#?#.SharePanel:-abp-has(> .SharePanel-content > .SharePanel-contentTitle:-abp-contains(福利)) +||tiresomethunder.com^ +@@||stream*.freedisc.pl/*.mp4$stealth +||sina.com/rm/ +##.pwa-ad +###advertise2 +||speakeugene.com^ +fang.com,soufun.com##.add1200 +madeinvilnius.lt###custom_html-9 +1111.baidu.com,bdimg.com,live.baidu.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_search\/pagelet\/search_ad +##.divascookies +||catwalkoutled.com^ +||login.vola.ad^ +||adsfarm.site^ +coolmathgames.com#%#//scriptlet("set-constant", "google", "emptyObj") +||tendertest.com^ +##.adfooter +scambieuropei.info##.footerSearch > a.logo + form[action] +||awoudsoo.xyz^ +lyricsbox.com##div[class^="lai_"] +##.advertise_link +||23.109.87.213^$popup +||ziwane.uno^ +translate.com##h1.heroTitle + small.heroSubtitle +||cidianwang.com/js/right +||tuyiyi.com/tuyiyi/m.js +||sixassertive.com^ +||vlogerads.com^ +futuregaming.io##.ez-video-wrap +||hoverfly.dailyblocks.tv^ +gametop.com##.row > [class="large-4 medium-6 small-12 show-for-large columns"] +||nice-mw.com^ +||push.esputnik.com.ua^$third-party +||uduxztwig.com^ +||itc.*^prod=ad& +live.nicovideo.jp##a[class*="___premium-merit-appeal-banner__"] +filmweb.pl#?#.page__group > .filmWhereToWatchLinkSection > .page__container > .subPageLinkBlock:has(> .subPageLinkBlock__container > a[href^="https://pro.hit.gemius.pl/hitredir"]) +bip.warszawa.wsa.gov.pl#$#body.bip-cookie-modal-open { overflow: auto !important; } +||js.pngtree.com/a3/static/UseCookies.*.js +||sparrowfencingnumerous.com^ +##.thumb-ads +###top-not-ads +||styleui.ru^$third-party +##.before_playing_cctv.yc +##[data-m-ad-id] +discordservers.com#%#//scriptlet('set-session-storage-item', 'footer-notification', 'false') +||nan46ysangt28eec.com^ +blog.hubspot.com#?#.blog-post-body span > [style*="text-align: center;"]:has(> a[href^="https://offers.hubspot.com/"]):contains(Featured Resource:) +||push-pro.net^$third-party +24tv.ua##.subscribe-revolver-el +pizap.com#%#AG_onLoad(function() { window.showAdBlock = function() {}; }); +##.bannerAdSearch +||offersbid.net^ +||bhlom.com^$document +||securepubads.g.doubleclick.net/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=midomi.com,important +||storepoundsillegal.com^ +||nexvelar.b-cdn.net/videoplayback_.mp4 +thelines.com##.cta-content +@@||tntdrama.com/modules/custom/ten_libraries/reusedFrom*/adHelper.js$~third-party +/xiwang/fumeiti.js +||ameowli.com^ +||ca5f66c8ef.com^ +###layer_ad +###ad-side +17travel.net##.ui_adblock +17yy.com##.t2_3 +whatismybrowser.com##.fun-inner +ccleaner.com##.top-banner +##.taboola-block +fastweb.it###stdCookie +||i.adultgamestop.com/baners/ +||s0cool.net^$popup +goalnepal.com#?#.highlights > .items:has(> .boundary-box > .adsbygoogle) +eastbaytimes.com#$#body { overflow: visible!important; } +eltiempo.com##.barra-aviso-privacidad +||ambrosialsummit.com^ +||capacitygrid.com^$third-party +scores24.live#?#.__ProfileFeed > div > div.__CommonPane:has(> div > div > div[style="position:relative;"] > a[target="_blank"]) +gamesrepacks.com#$#html > body { overflow: visible!important; } +||mstkvnya.xyz^ +latest-files.com###blockedmessagewrapper +##a[href^="//go.eabids.com/"] +||l-iw.de^ +cocukludunya.com,iddaa.com,ciceksepeti.com##.policy-popup +winaero.com#%#//scriptlet('prevent-eval-if', '.style.getPropertyValue("display")') +###FooterAdBlock +longzhu.com##.pop-up-button +###adwallpaper +||7811.5clo0xmbf.com^ +blog.aboutamazon.de#$#body { overflow: auto !important; } +||shareae.com/im/*prefiles +dictionary.com,thesaurus.com##div[data-type="newsletter-module"] +hao.360.cn###festival_baijian +calovo.de##.ga-opt-in +vecer.com###prijava-na-novice +scienceabc.com##.desk-header-ad +@@||pub.doubleverify.com/signals/pub.json$domain=ladbible.com|unilad.com|unilad.co.uk|gamingbible.com|tyla.com|sportbible.com|uniladtech.com +@@||tubeninja.net/ads.js^ +||qydrwhhk.xyz^ +m.smutty.com##.ui-content .center[style*="margin-"]:not([id]) +||nstoodthestatu.info^$popup +forums.bluemoon-mcfc.co.uk,racedepartment.com,resetera.com,satelliteguys.us##.samCodeUnit +yad.com#%#//scriptlet('prevent-setTimeout', 'moneyDetect') +||zlink8.com^$popup +||eergithi.com^ +@@||newsletter.co.uk^$generichide +###adSqb +||streamtape.*/sw.js +capital.com##.stickyBar +||chaturgirl.com/affiliates/$subdocument,redirect=nooptext,important,domain=imgtorrnt.in +||fusion.sydsvenskan.se^ +||feelsoftgood.info^$popup +computerlexikon.com###eucookieconsent +healthing.ca##.sticky-ad-spacer-desktop +glitched.online##.elementor-widget-sidebar > .elementor-widget-container > #media_image-6 +||titlerwilhelm.com^ +##.ad-placeholder-wrapper-dynamic +porn-plus.com##.bottom_player_a +godisageek.com###custom_html-4 +||dangbei.net/img/db/downdangbei.gif +op.gg##header a[href^="https://itunes.apple.com/"] +@@||google-analytics.com/plugins/ua/ec.js$domain=mediamarkt.*,stealth,important +ruinedking.com,natgeotv.com###Newsletter +||dvaminusodin.net^ +||foldinginstallation.com^ +lavenir.net###box_cookie_advert +bravoteens.com##.a352 +multiup.eu###overview + #content-page > .alert.alert-success +pudelek.pl,o2.pl,moneyv.wp.pl,money.pl#?#div[class*="sc-"]:has(> img[src="https://i.wpimg.pl/O/56x45/i.wp.pl/a/i/stg/pkf/bg.png"]) +||groovyornament.com^ +##.vi-sticky-ad +aachener-zeitung.de##.abdunkler + div.overlay +volkswagen-group.com,volkswagen-newsroom.com#$#.cookie-dialog { display: none !important; } +online.no,telenor.no#$#.global-overlay { overflow: auto !important; } +||v.poki.com/*/advertisement*.mp4$redirect=noopmp4-1s +eachporn.com##.link-sponsor +||adsimilis.com^ +/Cookie-popup- +||glumtitu.net^ +ifeng.com##.newAdImg +||keewoach.net^ +wikitrik.com#$##download { display: block!important; } +||advertisingvalue.info^ +studytonight.com###body-content > div.layout_size +||hauchiwu.com^$popup +fiatclub.eu#%#//scriptlet('abort-on-property-read', 'gaFailedToLoad') +||5251.net^$third-party +||a.huocheba.com^ +@@||skelbiu-static.dgn.lt/static/css/inside_ad.css +spar.hu,alpenclassics.de#$#body { overflow: auto !important; } +||spike.itv.com/itv/tserver/size=*/viewid= +||90oo.com/tp/msn.jpg +@@||watchserieshd.tv/ajax-search.html?keyword= +nicelocal.com##.slot-service-2 +3g.qq.com##.template_gdt_div_blue +||hugfromoctopus.com^ +cnn.com##section[data-zone-label$="Paid partner content"] +||easyads28.mobi^ +tiger-algebra.com#%#//scriptlet("prevent-addEventListener", "DOMContentLoaded", "adsbox") +||comprehensionaccountsfragile.com^ +@@||mssl.fwmrm.net/p/nbcu_*/AdManager.js$domain=nbcsports.com +##.ad-alsorectangle +||acggd.com/4d22b/ +happywayfarer.com##.disclosure +||d3rxqouo2bn71j.cloudfront.net^ +||vdggsd001.com^ +trader-online.de#$#body { overflow: visible!important; padding-right: 0!important; } +||geniusdexchange.com^$popup +||smilingwaves.com^ +mobilenet.cz##.sys-alert +||shipsmotorw.xyz^ +||lab.blackpics.net^ +_800x100. +||sleeveturbulent.com^ +yifyhdtorrent.org#%#//scriptlet('set-cookie', 'direct_ads', 'true') +indiabusinessjournal.com##.cus-ad-img +spb-guide.ru##.snowdiv-modal +bremerhaven.de#@#.cookie-banner:not(body):not(html) +thelocal.ch##.article-single__content > .ml-manual-widget-container +##.ad_banner_div +##.ad_sponsor_fp +||chauckoo.xyz^ +||wifescamara.click^$document +||pornx.to/wp-content/uploads/ad*x*.png +||peachesevaporateearlap.com^ +unknowncheats.me#?#center + div:contains(/^sponsored/) +pobierzgrepc.com##a[href^="http://download-file.ml/"] +||sinaimg.cn/wap/project/blog_to_news_banner/ +keralatelecom.info##div.ai-viewports[data-insertion] +peth-wetz.com,impresa.italia.it##cookie-law-banner +||whoppercreaky.com^ +@@||reuters.com^$generichide +##.video-side__adv_title +||caubichofus.com^ +##.c-ads +youxi.youth.cn##.youth_gw +||203.195.121.1^ +strangesounds.org##.wp-image-281312 +onna.kr,tistory.com#%#//scriptlet("abort-current-inline-script", "document.addEventListener", "copyWithSource") +~h5.dilidili.wang,dilidili.wang#$#a[href*=".11h5."] img { position: absolute!important; left: -3000px!important; } +||bunquaver.com^ +##.header-banner-ads +||install-adblocking.com^$document +||kitapyurdu.com/catalog/view/javascript/firebase/fcm.js +vp.rambler.ru#%#//scriptlet('set-constant', 'Object.prototype.minPlayingVisibleHeight', '') +haaretz.co.il#$?##__next > div:has(> div > section > a[href^="/promotions-page?htm_source="]) { remove: true; } +medindia.net##.related-links > div[style="font-size: 11px;display: block;text-align: left; color: #c1c1c1; text-transform: uppercase;margin-bottom: 1px;"] +###ad-box-halfpage +||signingtherebyjeopardize.com^ +quillbot.com##.MuiGrid-root > div.MuiBox-root[style]:has(p > a[href="/privacy"]) +/tanad.js +gesund.de##.privacy-settings +@@||news.microsoft.com/wp-content/plugins/microsoft-oembeds/cookie-consent.js +medicalnewstoday.com##.article-body > form[novalidate] +||pajtll.xyz^ +||muchlivepad.com^ +multiup.org#@#.ADBAR +hostings.info##.pop-up-text-footer +###msg-cookie +||vacaneedasap.com^ +||jingdianlaoge.com/static/js/360-displaywindow-advert.js +||cobwebzincdelicacy.com^ +||2d5ae0d013.d8c04a25e8.com^ +mdy48tn97.com##div[style="position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; z-index: 2147483646;"] +e24.no#%#//scriptlet("set-constant", "__AB__", "noopFunc") +||credibilityyowl.com^ +secure.elu24.ee,secure.postimees.ee###pm-cookie-notif +###section-ad-bottom +||unskilfulwalkerpolitician.com^$popup +nivod5.tv,nivod8.tv##.qy20-h-carousel__li:nth-child(-n+2) +||pimpandhost.com^$subdocument +xhspot.com,xhwide5.com,xhchannel.com,xhchannel2.com,xhtotal.com,xhtree.com,xhwide2.com,xhlease.world,xhamsterporno.mx,xhxh3.xyz,valuexh.life,xhdate.world,xhtab4.com,xhbranch5.com,galleryxh.site,xhbig.com,xhaccess.com,xhofficial.com,seexh.com,xhamster42.desi,xhvid.com,xhtab2.com,xhamster20.desi,xhamster19.desi,xhwebsite2.com,xhamster18.desi,xhadult3.com,xhadult2.com,xhmoon5.com,xhwide1.com,xhamster3.com,xhplanet2.com,megaxh.com,xhamster16.*,hamsterix.*,xhamster.com,xhamster2.com,xhamster7.com,xhamster8.com,xhamster9.com,xhamster10.com,xhamster12.com,xhamster13.*,xhamster14.com,xhamster15.com,xhamster17.*,xhamster18.*,xhamster19.com,xhamster1.desi,xhamster2.desi,xhamster3.*,xhamster4.desi,xhamster20.com,xhamster22.com,xhamster23.com,xhamster25.com,xhamster26.com,xhamster27.com,openxh.com,xhamster31.com,xhamster32.com,xhamster34.com,xhamster36.com,xhamster37.com,xhamster38.com,xhamster5.desi,xhopen.com,openxh1.com,xhamster39.com,xhamster40.com,xhamster.one,xhamster.desi,stripchat.com##div[class^="popup-"][class*="withShadow"] +gizmodo.com.au,kotaku.com.au,lifehacker.com.au,aeroxplorer.com,fitforfun.de,golem.de##.subscribe-newsletter +||drawnperink.com^ +delovoymir.biz##.dmpr_bl_mini +favi.pl#$##cookie-wall { display: none !important; } +||mrtlisx.top^ +trademe.co.nz##tm-display-ad +||pntrac.com^$image,script +||viviendoefelizz.online^ +||my.zadarma.com/callbackWidget/js/main.min.js +##.medrectAd +portofoonwinkel.nl#@#.cookie-container +aranypiac.hu#@#.cookie-alert +###ad-sky +||cdn.britannica.com/mendel/curiosity/eb-mendel-curiosity-300x90c.png +###preminumAD +downkr.com##.address-right > div > a[target="_blank"] > img +battlefordsnow.com,cfjctoday.com,chatnewstoday.ca,everythinggp.com,huskiefan.ca,larongenow.com,meadowlakenow.com,nanaimonewsnow.com,northeastnow.com,panow.com,rdnewsnow.com,sasknow.com,vernonmatters.ca##.midcontent +||wdoshbe.top^ +hasunoha.jp##.oTextAd +audiobooksnow.com##.sticky_consent_footer +.co/ads/$popup +wsj.com##div[class*="WSJTheme--adWrapper"] +dhaomu.com##.ceo-footer-h +||noughttrustthreshold.com^$popup +anime4up.*##center > a[rel="dofollow"] > img +||picgd.com/images/*.gif +chickenkarts.io#%#//scriptlet('set-constant', 'blockedAds', 'false') +hotline.ua##.translation-box +motherless.com#%#//scriptlet('set-cookie', '_pre_js', '1') +###appad.cate +meteum.ai##div[id^="adfox_"] +planetf1.com#$#.ciam-article-pf1 > div[id^="pp-"] { display: none !important; } +||media.geeksforgeeks.org/wp-content/post-ads-banner/ +respawn.pl##a[href*=".adsrv.eacdn.com/"] +||www.34gwl8v1a.com^ +||trumpthisaccepted.com^ +||jdpower.com/sites/default/files/image/*/23_Auto%20Summit%20PR%20Ad_speaker%20gif.gif +||tuqnwz.icu^ +aydinlik.com.tr,medyaradar.com,haber3.com,paradurumu.com,teknolojioku.com,f5haber.com##.subscribe-google-news +castorama.pl##.background-overlay +allegrolokalnie.pl##header.masthead[class*="--app-view"][class*="-mobile-masthead"] a.topheader +vogue.com.au##div[class^="sc-"]:empty +||wnacg.*/1sdfdc1/ +.com/core/js/the_pf.js +||franeski.net^ +strictlylimitedgames.com,afp.com,aqua-fun.com,onlinetutorials.org,vawoo.co.uk,sabanciuniv.edu,uamodna.com,oggusto.com,beardandblade.com.au,theenglishshavingcompany.com,mebders.com,cactusvpn.com,kaplunoff.com#$#html { overflow: auto !important; } +google.com##.GC3LC41DERB + div[style="position: relative; height: 170px;"] +stash.sussy.moe#%#//scriptlet("set-constant", "checkAdBlock", "noopFunc") +ovagames.com###adter +##.advtitle +filmaga.filmarks.com##.js-ga-download +polskieszlaki.pl#$#.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links { display: block !important; } +bajeczki.org##.site-content > .vjs-ex-mcn-video +||niwluvepisj.site^$popup +||takarakuji.rakuten.co.jp/image/banner/other/external/r_mobile_ +bignox.com##.egg-section +||ygvqughn.com^ +||tvtoday.de/bundles/frontend/js/sourcepoint^ +nhanhoa.com#$#.mfp-wrap { display: none !important; } +||es.ylilauta.org^ +computer.org##.generalContent p[style^="text-align: center; color:"] > a[href^="https://www.computer.org/resources/newsletters/"] +/app/x12.js +cyberwaters.com##aside[id^="custom_html-6"] +/firebase-messaging-sw.js$domain=club.autodoc.* +||feeshoul.xyz^ +meteologix.com#%#//scriptlet("abort-on-property-read", "Object.prototype.autoRecov") +moviedee24.com##.ad_f1 +techmonitor.ai###relatedArticles +tieba.baidu.com##.tl_spread +##.consoleAd +||namesakedisappointmentpulverize.com^ +phoenixnap.com##div[class*="fixed-widget-container"] a[href^="https://phoenixnap.com/servers/flexservers?utm_source=banner-internal"] > img +###adv-text +@@||ad.ourgame.com^ +sbonline.net##a[href="appgoogle.php"] +piratedhub.com###blog_subscription-3 +||dbw7j2q14is6l.cloudfront.net^ +||sessfetchio.com^$document +##.adBtm +##.outerAdWrapper +##.adtext_white +supjav.com##.video-wrap > div.right +||milkywaynewspaper.com^ +ispazio.net##.entry-content > div[style="float:left;height:300px;"] +||banawgaht.com^ +tabletowo.pl##.tabad +bistum-muenster.de,vitos.de##.cc-tool +gruener-punkt.de#@##cookie-modal +||qqddc.com/homeSite/news/js/newsad.js +||tiscali.it/export/system/modules/it.tiscali.portal.homepage.v2/resources/js/shp-pasyc.js +||hjapi.com/v1/pageSoftText? +||celeritascdn.com^$popup +@@||thegay.com/assets//jwplayer-*/jwplayer.core.controls.js|$domain=thegay.com +glivice.pl,slazag.pl,bytomski.pl,piekary.info,twojknurow.pl,nowinytyskie.pl,ngs24.pl,24kato.pl,rudzianin.pl,zabrzenews.pl,chorzowski.pl,tarnowskiegory.info,24zaglebie.pl##.banner_top +$websocket,domain=wap.yushuwu.cloud +dmarket.docomo.ne.jp#$##tutorialModal { display: none !important; } +||goutong.baidu.com^ +||offoonguser.com^ +xxx-sex.fun##.fh-line +ichip.ru,playboyrussia.com,ivd.ru,lisa.ru##.disclamer +||spottedskarzysko.pl/images/data/*/UNINET-MAJ2.gif +||html-load.com/loader.min.js$domain=issuya.com|pravda.com.ua|lamire.jp|picrew.me|mydaily.co.kr|badmouth1.com|taxguru.in|sportsrec.com|reportera.co.kr|tweaksforgeeks.com|fourfourtwo.co.kr|flatpanelshd.com|wfmz.com|videogamemods.com|dziennik.pl|inven.co.kr|ff14net.2chblog.jp|eurointegration.com.ua|jin115.com|gloria.hr|etnews.com|carscoops.com|sportsseoul.com|onlinegdb.com|text-compare.com|winfuture.de|hoyme.jp|indiatimes.com|blog.esuteru.com|modhub.us|thatgossip.com|gazetaprawna.pl +cultofmac.com##.adblock-notification-wrapper +##.vswAdContainer +corp.sbishinseibank.co.jp##.ux_popup_cookie_warning +||58745.clicknplay.to^ +trudbox.com.ua###subscription-search-left-bottom +||163.com^*/boboData +dsdik.wroc.pl###mpopdw +app.bionic-reading.com#?#.MuiDialog-root:has(#cookie_svg__a) +frozenbyte.com##.moove_gdpr_cookie_info_bar +@@||snowfl.com/ads/*.js$~third-party +tvzvezda.ru##.cookie_messege +deutschlandkurier.de#$##sgpb-popup-dialog-main-div-wrapper { display: none !important; } +teslaoracle.com##.tdi_48 +altclick.ru##.marquiz-pops +lingea.sk#?#.container > div.col-sm-9 > div.bx-wrapper:has(> div.bx-viewport > div#promoCarousel) +||allsporttv.com^$popup +ingatlan.com#$#body { overflow: auto !important; } +/wp-content/plugins/dsgvo-tools-cookie-hinweis-datenschutz/* +##.ms-cookie-ok +xtits.com,xtits.xxx##.re-under-player +iqiyi.com##div[id^="div_theatre"] +##.advertising_hibu_lef +||trusty-research.com^ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=ottwow.com +game-tournaments.com##.yaadstracker +smallbiztrends.com###sb-container +pianetafanta.it,wikitrik.com,duit.cc#@##PageLeaderAd +gujaratexclusive.in##.td-post-content p > a[href^="https://t.me/"] +||qtuxulczymu.com^ +ebonyo.com#%#//scriptlet('remove-class', 'with-sidebar-ads', '.video-player-area') +||supersonicads.com^$third-party +||vupsnx.xyz^ +||wmptctl.com^ +||zn46.com/images/*0x +||1.201980.com^ +||smyw.org/smyw_anima_1.gif +||ashcdn.com^ +applegazette.com#?#.sidebar > section.widget:has(> div[class^="widget"] div[id^="bsa-"]) +||agisdayra.com^ +||hao123img.com/res/js/common/erjiAdv. +||uvklgw.xyz^ +||oquftwsabsep.xyz^ +akademiasmaku.pl,komerso.pl,socialpress.pl#$##rodoScreenBg { display: none !important; } +@@||delta.com^$stealth=3p-auth|ip|useragent|referrer +||duplicatepokeheavy.com^ +||480926c626.5661c81449.com^ +||wnmoobz.icu^ +wandhi.com##.table-bordered +||finedintersection.com^ +||ck.kyoodlehewe.com^ +@@||lmjvideocdn.*-cdn.net/*.mp4?hash=$stealth,domain=letmejerk.com +club-cs.ru#?#.p-body-content > div.p-body-pageContent > div.block:has( div.mySlides > a[href^="/members/"] > img[src^="/slider/"]) +cyberdaily.au##.b-mobile-navigator__top +##.ml_ad5 +##.ad_panel +||happydate.today^ +dontworkanotherday.com#?#body > .blue-bg:has(> .container > .row > .text-md-center > form[action$="/subscribe/post"]) +||blow.week1time.com^ +##body > #overover[style="position: fixed; width: 100%; height: 100%; background: silver; z-index: 2; opacity: 0.1; display: block;"] ~ #obrazek +||5d62055f0a.c1b891f5ff.com^ +||cashewsforlife208.com^ +/plugins/meks-easy-ads-widget/*$stylesheet +imdb.com#?##sidebar > div[class]:has(> span.ab_widget > div.ab_zergnet) +||segmentfault.com/sponsor/ +karnalguide.com##.two_third > .push20 +waskucity.com##.xxx +fakenamegenerator.com##.bcsw +voicy.jp##v-footer-introduction +xxxtik.com##.ad-modal__content +||woovoree.net^$popup +||acg.youku.com/webfile/*.jpg +/mrf4u/cmp/*/*.js?autoinit= +||somedaytrip.com^ +stadt-bremerhaven.de##body > .bst-panel-fixed +||agefans.top/js/wap2-jm-ms.js +wired.com##.journey-template--in-content +||dnhfi5nn2dt67.cloudfront.net^ +@@||widgets.trustedshops.com/reviews/tsSticker/tsSticker.js$domain=interpack.eu +msn.com#%#//scriptlet('json-prune', '*', 'list.*.link.ad list.*.link.kicker') +simplebits.io##iframe[src^="/ads/"] +worldsex.com##.dazone +||qcvf.ifeng.com^ +||vod.provider.plex.tv/ad?metadataId= +||zferral.com^ +||dizzyporno.com^ +||adventurefeeds.com^$third-party +||eeco.xyz^$document +audiencepool.com###interstetial-container +imagineforest.com#?##library_search_content > div.each_story.relative:has(> div.absolute ins.adsbygoogle) +||hixutb.xyz^ +alexa.cn##.importantList +elektroda.pl##a[href="https://itserwis.net/simplivity/"] > img +@@||assets.247sports.com/Scripts/SkyNet/Shared/ads.js +||eyereturn.com^ +||measlyglove.pro^ +@@||app.sendgrid.com$document +||xs213.javgg.club^ +codejie.net##.h--banner +###js-page-ad-top +shorterall.com#$#div[id^="42483"] { height: 11px!important; } +thenewstack.io###tns-post-newsletter +||ackcdn.net^ +lesechos.fr###app > footer + div +||hinet.net/radio/getAdcode.do +##.ad-circ +family.co.jp###sptabnemu +||xxxstreams.me/wfxfrontend_loader.js +||moviesflix4k.club^$popup +carnegie.ru##div[class="section banded padded"] +nordstrom.com#?#ul[style^="padding: 0px; position: relative;"] > li[class]:-abp-contains(Sponsored) +reebok.ru,adidas.ru##div[class^="footer-newsletter"] +stanley-pmi.com.br##.box-news +touzi.com##.pop720-box +###google_ads_frame3_anchor +linea.io###overlay +||photon.scrolller.com/scrolller/$media +@@||amazonaws.com/academo-assets/$image,stealth,domain=academo.org +yifysubtitles.me##a.btn-success[target="_blank"] +##a[target="_bank"] > img[src*=".360buyimg.com"][style="width:100%;height:auto;"] +soup.io##span[id*="_sidebar_ad_"] +||ptistyvymi.com^ +taoguba.com.cn###joinTGB +||copacet.com^ +2oceansvibe.com,pocketgamer.biz###skin +||adbooth.com^$popup +2345.com###sidel_lvy +@@||javb1.com/js/boxad.js +||im*-tub-ru.yandex.net^$domain=russian-porn.ru +auto.ru#$#.page_freeze { overflow: auto !important; position: static !important; } +||d3d0wndor0l4xe.cloudfront.net^ +||tumblebit.com^ +pharma.mynavi.jp##.footer-fix-navi +||pv4b.com^$popup +l-o-l.net##div[class^="live-rss"] +manualslib.es,manualslib.de,manualslib.com##.manualban +dwell.com#?#figure + div[class]:has(> div[class] > div[id^="div-gpt-ad-"]) +f1livegp.me##body a[href*="/tuname.php"][target="_blank"] +##.c-ad--adStickyContainer +||lw881.com/public/js/gw.js +2conv.com,flvto.biz,flv2mp3.by##.square-ads +cangku.moe##.slider +||properm.ru/*/panel_$script +tempsmss.com##div[id][class^="popup"][class$="wrap"][style] +||isolationoranges.com^ +pethelpful.com##.m-in-content-recommendation +flickr.com##.getty-widget-view +deine-tierwelt.de#$#.modal-backdrop { display: none !important; } +/cnil.js +nmac.to#%#//scriptlet("set-constant", "advanced_ads_ready", "noopFunc") +||rcvlink.com^ +@@||securepubads.g.doubleclick.net/gpt/pubads_impl_*.js$domain=forums.hardwarezone.com.sg +hackaday.com##.cookie-notifications +thedenverchannel.com##.module--email-widget +@@||imgadult.com/css/$domain=imgadult.com +chajia123.com##.foot_dybox +sputnik.ru##.b-cover__box > div.b-panel.js-panel[style="height: 60px;"] +tvoytrener.com###nogi +ecoursefree.com##.td-header-rec-wrap +||uploadev.com/mngez/images/banner +||sweepawejasper.com^ +qq.com,sogou.com##.cs_dropbox[pbflag="xialaresou"] +||inncreasukedrev.info^$popup +crocotube.com##.ct-advertising-footer +||diz4z73aymwyp.cloudfront.net^ +/160x400- +animenewsnetwork.com#$##canvas > div.top { display: none !important; } +||22pixx.xyz/l/ +@@||cdn.trustcommander.net/privacy/*/privacy_v*.js$domain=edeka.de +||ablkkukpaoc.com^ +gbnews.com##.breaking-banner__wrapper +||widgets.oddschecker.com^ +||kdoshbd.top^ +prosto.pl###id-rules +/wppas.min.js$script +read7deadlysins.com#@#.adBlock +agroxxi.ru##.b-gsubs +||iloacmoam.com^ +apkmonk.com##.col > div[class]:has(> ins.adsbygoogle) +||kuakao.com/index.php?m=content&c=index&a=show_ad +eater.com,polygon.com,racked.com,recode.net,sbnation.com,vox.com###chorus_notifiations +manhuaren.com###lb-win +||mikuclub.*/pub/ +gongkong.com###dull_left +||sexropter3.l5eamr17d.com^ +##.adcontainer300x250r +||peacto.com^ +##.ads-long +softpedia.com#$#iframe.swipebox-rightxd[id="relcontent"] { top: 60px!important; height: 535px!important; } +comick.fun##.float-right > .mx-auto > a[href^="https://comick.app/product/"] +##.mpu-top-right +||vladan.fr/wp-content/uploads/images/veeamskin3.png +||8961.jianbihua.com^ +###carbonads +||dfvlaoi.com^ +nysun.com##.mr-\[-50vw\] +||sdhiltewasvery.info^ +###eu-cookie-law +security.nl#$##header_container.cookie_consent { height: 112px!important; } +philstar.com###sponsored_posts +fctvlive.com#%#//scriptlet('abort-current-inline-script', 'document.createElement', 'adsbygoogle.js') +##[href^="https://www.herbanomic.com/"] > img +twitter.com,x.com##article[data-testid="tweet"]:has(path[d$="10H8.996V8h7v7z"]) +ndl.go.jp##.privacy-confirmation +||dw7vmlojkx16k.cloudfront.net^ +@@||tycoon.adspirit.net/adview.php^$domain=streetdir.com|roaddir.com +rawstory.com###rawstory_front_2_container +forums.crackberry.com##.mn_deals__widget +###ads-article-left +otoko-honne.com##.free_linkbox +||rotumal.com^$popup +||thenipslip.com/b6c0cc29df5a.js +||xpicj6.cc^ +##[href^="https://goldcometals.com/clk.trk"] +allthatsinteresting.com##.pbh_inline +/delivery/al.php +famousinternetgirls.com##.sidebar > div[id^="text-"][class="widget widget_text"] +||dotyruntchan.com^ +microsoft.com###wcp-consent-banner +||adroll.com^$third-party +1l1l.to###adholder +blic.rs##.banner-top +||nsstatic.net^$third-party +mariefrance.fr#?#.list-ms-item > aside.widget:has(> div.textwidget > div.widget_newsletter) +tempostorm.com#$#.bg-override {background-color: #1b141d!important; } +overclockers.co.uk###wallpaper +kinoafisha.info##.article_channels +ali213.net#@#.subscribe-container +||viippugm.com^$document +drogariaspacheco.com.br#?#.row > div.col-12:has(> form input[placeholder^="cadastre-se"]) +wizards.com##div[data-fetch-key^="TheCookiePrompt"] +||qxpwiqydg.com^ +||brighteroption.com^ +namify.tech##.suggestion-rows .suggestion__namify-partner +||tipphotographermeans.com^ +animax.*##[src*="//a.exdynsrv.com/iframe.php"] +@@||softwarebrother.com^$generichide +findagrave.com##.fg-prad +||kerryfluence.com^ +||jeetyetmedia.com^ +||sexad.net^$popup +quillbot.com#%#//scriptlet('set-local-storage-item', 'showPrivacyBannerNov2023', 'false') +click-or-die.ru#?#.post-content > p:has(> a[href="https://t.me/clickordie"]) +gihosoft.com#?#.page-conent > p:contains(/^Recommend for you:/) + div.post-btn +lifebursa.com##body div#notificationPopup +###cookietext +play3r.net#$#body { background-image: none!important; cursor: default!important; } +###ad-top-300x250 +/adsbanner/*$image +obserwatorlogistyczny.pl###top-rek +iusedtobeaboss.com#%#//scriptlet('prevent-addEventListener', 'mousedown', 'pop.doEvent') +###left_ads +ulifestyle.com.hk###Open-appLink-banner +nadeta.cz#$##inshopCookies { display: none !important; } +###top-skin-ad +/script/aclib.js$third-party +##.jg-ad-970 +belsat.eu##.baner-sep +||itselfheater.com^ +||bjmantis.net^ +tele2.nl#@##cookiePopup +schiphol.nl##.rw-cookie-notification +###sign-ad +||hammerhewer.top^$popup +||vupload.duowan.com^ +ifeng.com##.ad200-2 +||wuci1.xyz^ +||6ped2nd3yp.com^ +||altaicpranava.shop^ +||ax.helcoidpedicel.com^ +bluebyte.com###cookieNotificationBanner +||pengtu.cc^*.png +nikkei.com#$?#.tp-modal:has(iframe[src^="https://buy-ap.piano.io/checkout/template/cacheableShow?"]) { display: none !important; } +pornrewind.com##.thumbs-list > div[class="th "][data-item-id] ~ div[class="th "]:not([data-item-id]) +@@||xxxxx520.com^$generichide +##.hero-ad +gsmmaniak.pl###topMenu > #topMenu-wrapper[style^="width:"][style*="min-height:"] +game-tournaments.com##.dynban +.cz/bannery/ +dphotoworld.net##input[value="Мы в Google News"] +fontyukle.net##.reklam_alani +snowmagazine.com##.mod_banners +###adslot3 +||website.informer.com/img/sponsored.png +||doublemax.net^ +##a[href^="https://financeads.net/tc.php?"] +uploadmall.com#@#.AdSense +creativeuncut.com###abox-s_i +||outbrain.com^$domain=wenxuecity.com +mydirtyhobby.com###modals +||yefu365.com/rebo/function.js +nature.com##.leaderboard-or-billboard-container[data-container-type="banner-advert"] +baidu.com###spage-top-banner +||rozamimo9za10.com^$popup +vimeo.com#?#div[data-reactroot] > div[class*=" "][style^="position:"]:has( p[format="dark"] > a[href="/terms"]) +||photo.*/native?tk=$third-party +||jdipsuma.top^ +423down.com##.content > h3 > a[rel="external nofollow"][target="_blank"] +###ad_rotator-2 +@@||cdn.privacy-mgmt.com/wrapperMessagingWithoutDetection.js$domain=sky.it +m.aboutyou.de#$#.app-teaser { display: none!important; } +howtodeleteonline.com##.add-inner +revolvy.com###info_box_ad +nick20.com##table[width="702"][bgcolor="#D1DDAA"] +||growingtotallycandied.com^ +||hentaivn.net/js/abp.js +poinformowani.pl###EBCookies +||denetsuk.com^ +search.bilibili.com#?#.video-list > div.col_3:has(> div.bili-video-card a[href*="//cm.bilibili.com/"]) +bbs-tw.com##table[ondragstart="window.event.returnValue=false"] +@@||zive.cz/Client.Scripts/advertisment.js +||basicallyspacecraft.com^ +||entitledbalcony.com^ +||eulal-cnr.com^$popup +prothomalo.com##iframe[src^="https://service.prothomalo.com/campaigns/"] +so.com##.js-busi-item +freebitz.xyz##div[id*="Banner_"] +ksbbs.com,kshot.com##div[id^="read_ad_"] +||fromoffspringcaliber.com^ +pangleglobal.com##.CookieBannerComponent +hokende.com##.bottom_campaign_link +@@||alicdn.com^*/tanxssp.js$domain=dlkoo.com +||whazugho.com^ +||srv224.com^ +skinnyteenpics.com##.main > div.row.margin-top > div.text-center > a[target="_blank"] > img +byjus.com#?#.page > p:has(> a[href^="https://byjus.com/"] > img) +ccifp.pl,ccifrance-international.org,igbce.de#$#body.orejimeBody-WithModalOpen { position: static !important; overflow: auto !important; } +inoreader.com#%#//scriptlet("set-constant", "gn", "true") +||23.109.170.228^ +theboobsblog.com##.sidebar-content > div[id^="text-"][class$="widget_text"] +cinema-3d.xyz##.popSc +@@||ptah.m3pd.com/key=$media,domain=porntop.com,stealth=referrer +stocktwits.com##.Primis_container__KwtjV +||6079.5clo0xmbf.com^ +pling.com#?#.swiper-wrapper > .slide-item:has(> #iframe-container > div > a[href^="https://shrinkme.io/"]) +musescore.com#%#//scriptlet('set-cookie', 'courses_quiz_completed', '1') +komchadluek.net##.default-sticky-1 +||pushcentric.com^ +/wp-content/plugins/wccp-pro/* +dubznetwork.com###overlay2 +dailycal.org##div[class^="Newsletter_container"] +smclinic-spb.ru###callmeForm +avans.pl##div[data-component="cookieContent"] +||so.com/com/ads? +frankfurt-airport.com##.fra_js_app_banner +feedbax.de#%#//scriptlet('set-cookie', 'technicalCookieConsent', '1') +###middlead +tweakcentral.net#%#//scriptlet("set-constant", "checkBlock", "noopFunc") +||baccarat212.com^ +||137kfj65k.de^ +||sc4mh.cn^ +akindo-sushiro.co.jp,oceans-nadia.com##.l-footer__app +||telegraphunreal.com^ +###tarteaucitronRoot +qualified.io##consent-cookie-popup +fontyukle.net#%#//scriptlet("prevent-setTimeout", "adsbygoogle") +###dnn_ad_island1 +bulbapedia.bulbagarden.net##div[id^="med_rect"] +||suspicionssmartstumbled.com^ +||moreoverwheelbarrow.com^ +##.ad--rail +fusevideo.io#%#//scriptlet('prevent-xhr', '/prebid|ads\./') +||luxlnk.com^ +###adv-2 +||lapsebreak.com^ +psychologies.ru##.article-subscript-fixed +birdurls.com###link-view > center > p:not([style*="font-size:"]) +nltimes.nl##div[class^="r89-"] +territoris.cat##.widget-advise-bottom-wrapper +tutsgalaxy.net#%#//scriptlet("adjust-setInterval", "wpsafe-", "", "0.02") +audio.com.pl##body > .subpages-top +||princesinistervirus.com^$popup +utweb.rainberrytv.com##.ad-free-upsell-container +windowsreport.com##div[class^="refmedprd"] +media.moneyforward.com##.mp-recommends +##.dc-cookie-consent +||fastdntrk.com^$document +saudia.com#%#//scriptlet("set-cookie", "sv_gdpr", "true") +||youradexchange.com^$document +community.spiceworks.com#$#.community-content-banner > div[class^="community-content-banner-slot-"] > .community-content--ad_card { visibility: hidden!important; } +||n1goserch.com^$third-party +yts.unblockit.uno,yts.unblocked.name,yts.mx##.mgz-bered +||captivebleed.com^ +||implycollected.com^ +.cc/ad/ +climatempo.com.br##.alert-cookie._flex +xfreehd.com##.abk_msg +lightnovelworld.com##div[data-mobid] +crackwatch.com##.App .announcement +###app-follow-banner +||perch.matiasvad.com^ +||xml.mpds-smart1.online^ +/widget/js/przv.js +hsex.men##div[style="margin:0 auto 10px;width:900px;height:250px"] +||tiq.espritshop.pl^ +||m.youtube.com/get_midroll_$domain=youtube.com +||pattyheadlong.com^ +androidinsider.ru##.link-alert +||plannersavour.com^ +@@||player.odycdn.com/api/$xmlhttprequest,domain=odysee.com +||a.n4m5x60.com^ +/cookie-footer- +@@||consentmanager.mgr.consensu.org/delivery/cmp$domain=infranken.de|nordbayern.de +livemint.com#%#//scriptlet('set-cookie', '_hlm_skipCounter', '15') +timesofisrael.com##.modal-overlay.nlPopup +||eclipse-adblocker.pro^$popup +ausdroid.net#%#//scriptlet('set-constant', 'td_ad_background_click_link', 'undefined') +||bondagecoexist.com^ +daikin.com.tr,find.com.tr###KVK_Cerez +freebitcoin.io##div[class="d-none d-lg-block"][style^="position:fixed; bottom:0;"] +timeout.jp,digitalcamerawarehouse.com.au,marketrealist.com,columbiaspectator.com###PopupSignupForm_0 +###bsa_add_holder_g +primecurves.com##a[href^="https://srv.dropkickmedia.com/"] +unian.ua##.app-banner-yt +bt.cn,lotour.com##.btad +wenku.baidu.com##div[id^="html-reader-AD-"] +||hblarn.xyz^ +kickass.love#%#//scriptlet("abort-current-inline-script", "document.write", "VPN") +x2download.com#%#//scriptlet('abort-on-property-read', 'GeneratorAds') +google.ac,google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.by,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.jo,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.ru,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tn,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.ve,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hk,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.it.ao,google.je,google.jo,google.jp,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.ne.jp,google.ng,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tl,google.tm,google.tn,google.to,google.tt,google.us,google.vg,google.vu,google.ws##div[data-ads-title="1"] +||filexan.com^$third-party +digest.myhq.in#$#html { overflow: visible !important; } +onlymp3.to#%#//scriptlet('prevent-window-open', '!dropbox.com') +indaily.com.au##.CampaignType--floating +irishradiolive.com,myonlineradio.at,myonlineradio.de,myonlineradio.hu,myonlineradio.nl,myonlineradio.sk,myradioendirect.fr,myradioenvivo.ar,myradioenvivo.mx,myradioonline.cl,myradioonline.es,myradioonline.it,myradioonline.pl,myradioonline.ro,ukradiolive.com#$#.admngr { display: none !important; } +||jkzbjv.xyz^ +creepypasta.com#?##page > center:contains(Advertisement) +chromecastappstips.com#$#img[src*="opener-close.png"] { display: none !important; } +||b4dg.life/love/ +elke.uoc.gr###cookie-bubble +||guanjiabo.net^ +||marcoscrupulousmarks.com^ +v.shensgo.com##body > div[id][class*="animated"][style*="position"][style*="z-index"] +##.cookie-information-container +##.ad_headerbanner +||entangledivisionbeagle.com^ +xmegadrive.com#%#//scriptlet("abort-current-inline-script", "document.createElement", "ppu_main") +||d2qf34ln5axea0.cloudfront.net^ +##.ad-top-spacing +||sailorjav128.fun^ +mikrometoxos.gr##a[href*="utm_source=banner&utm_medium=mikrometoxos.gr&utm_campaign=banner"] > img +balticlivecam.com##.fp-sponsor +@@||bleepingcomputer.com/download/ads-spy/ +maxpark.com##body > div[id][style="display: block;"]:first-child +||indisputableulteriorraspberry.com^ +-*-*-*-*.alpha^$script,third-party +||routes.name^$popup +curseforge.com##.project-description [href^="/linkout?remoteUrl="][href*="scalacube.com"] > img +tokyvideo.com#?##related-videos > .fan--related-videos > div[id^="optidigital-adslot"]:upward(1) +sda.it###content-alert-cookie +computer.org##.adBlockBanner +@@||clksite.com/static/advertisement.js +ccl.org#?#.elementor-column-wrap:has(> div.elementor-widget-wrap > div.single_article_newsletter) +||rntdqwc.xyz^ +@@||cdn.carbuzz.com/*/scripts/ads.js.js +||codedexchange.com^$popup +cdnfinder.xyz###poster +||left-world.com^ +freepik.com##.banner-adobe +ab-in-den-urlaub.de#$#.reveal-overlay { display: none !important; } +||92e2e3e863.5a6c114183.com^ +wenshushu.cn##.cont-right a[href="https://www.wenshushu.cn/download"] > img +hindustantimes.com#@#.rgtAdSection +donostiakultura.eus###NLC_textLayer +||hjsvhcyo.com^ +||hbloveinfo.com^$popup +streambtw.com#%#//scriptlet('abort-current-inline-script', 'document.createElement', '.onerror') +tistory.com#$#img { pointer-events: auto!important; } +||melodramaticlaughingbrandy.com^ +czc.cz#$##cookies-popup { display: none !important; } +zhangxinxu.com##.hd_remind +levashove.ru,mywebpc.ru##.telegramim_button +hnonline.sk##div[class^="position_break_"] +flixhd.cc###vpn-top +btvsports.click#@##GoogleAd2 +||5718.79j68qav2.com^ +##a[href*=".sudun.com/"] +pc0359.cn,pc6.com##.ad-download +||hhklc.com^ +sextu.com#?#.wrapper > section:has(> div.__native_container) +pimpandhost.com##.ablock_yes +||salesmanago.pl/cf/*/Zapisy_na_newsletter_ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,xmlhttprequest,redirect=googlesyndication-adsbygoogle,domain=gameplay.icu +e23.cn##div[id*="adv"] +brushes8.com##.zjianad +##.ads-block-panel-tipo-1 +||forhavingartistic.info^ +||luxuriousannotation.com^ +||digikey.*/-/media/Designer/EnavGDPR/JS/consent.js +||premonitioninventdisagree.com^$popup +setlist.fm##.prmtnMbanner +||peekvids.com/away/pop$redirect=nooptext +##.topAdsWrappper +outdoor-broker.de#@##cookie-disclaimer +###adzone_content +verstka.media##.wp-site-blocks div.verstka-mobile-topbar +@@||tv.sanook.com/assets/js/ads*.js +terraria.wiki.gg##[href^="https://store.steampowered.com/app/"] +paycell.com.tr#$#.has-smartbanner #navbar:not([style^="top: -"]) { top: 0 !important; } +||1677.5clo0xmbf.com^ +cenyvaptekah.ru##.alert-first-usage +@@||cdn.conversant.mgr.consensu.org/gdpr/cmp/config/m/e/mentalfloss.com/config.js$domain=mentalfloss.com +/rss/rss.html$subdocument,~third-party +zeebiz.com##.cookieScreenOverlay +||ihhmh.com/mg/show +||rouhavenever.com^ +douxie.com##.ndxBanner +##.warningCookieWrap +||txzqw.me/attachment88txzqw/*.gif +||adultcamchatfree.com^ +||afodreet.net^$popup +||0092.5clo0xmbf.com^ +||tsyndicate.com/*/vast?$redirect=nooptext,important,domain=hentaiworld.tv|myreadingmanga.info +e0575.com##.tg1 +##.adboxTopBanner +||stream2watch.org/images/hd-option.png +||fortcratesubsequently.com^ +fjav.top##.ad-parent +rotterdam.nl#?#body > div[class^="styles_grid__"]:has(> div[class*="styles_cookieContentWrapper__"]) +||img.appledaily.com.tw/pay/js/minisite/paywall.js +@@||cdn.jsdelivr.net/gh/video-dev^ +futurezone.at#%#//scriptlet('trusted-click-element', '#didomi-notice-agree-button') +gpm-ipma.de,aok.de#$#body { overflow: visible !important; } +||tom.com/adsender/ +@@||widgets.jobbio.com^*/display.min.js$domain=interestingengineering.com +||a1.tbuz.com.cn^ +kinopoisk.ru##.film-thin-teaser +||pviewer.site/element_view/adblock_detected.html +adrenalinecyber.ru##.wrapper > main ~ div > div[class^="_"] +@@||staticxx.facebook.com/connect/xd_arbiter/*.js?version=$domain=jkanime.net +||oarswithdraw.com^ +jable.tv#?#div.col-6.col-sm-4.col-lg-12:has(> div.video-img-box > div.img-box > a[href*="?banner="]) +||2529.com^$third-party +kijiji.ca##.gqNGFh +sozialversicherung-kompetent.de#$#.cc-window[aria-label="cookieconsent"] { display: none !important; } +mamibuy.com.tw##.content-ad-spa +||4ffecd1ee4.com^ +||pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$script,redirect=googlesyndication-adsbygoogle,domain=laptrinhx.com,important +.xyz/o.js +||cm.baidu.com^ +||ancestortrotsoothe.com^ +estadao.com.br##div[class^="styles__Tag-"] > div[class^="styles__Tag-"]:has(> div[class^="styles__Container-"] > a[href="https://meu.estadao.com.br/newsletter/"]) +mapsofworld.com##.ad970 +||molokerpterion.shop^ +##div[style="position: fixed; top: 0px; overflow: hidden; z-index: 2147483647; background-color: rgba(0, 0, 0, 0.5); height: 110%;"] +jre-travel.com##.mailmag_box +||playvideoclub.com^ +||romiyee.icu^ +||adaptationbodilypairs.com^ +||crjpingate.com^ +@@||coinpayu.com/assets/ads_$domain=coinpayu.com +###politykaprywatnosci +animespirit.tv#$##wrapper { margin-top: 0 !important; } +||linsaicki.net^ +flightradar24.com###elementor-popup-modal-20189 +scmp.com##div[data-qa="ArticleHeaderAdSlot-Placeholder"] +raider.io##div[style="width:320px;height:180px;overflow:hidden"] +||intporn.com/js/chaturbatebest.js +kbjfree.com#%#//scriptlet('prevent-element-src-loading', 'script', '/cloudflareinsights\.com\/beacon\.min\.js|ccmiocw\.com|doubleclick\.net|tapioni\.com|wpadmngr\.com|wyhifdpatl\.com|wbilvnmool\.com|cloudfront\.net\/\?|\/scripts\/popad\.js/') +@@||consent.cookiebot.com/uc.js$domain=continente.pt +||adsensecamp.com^ +goshow.tv##.ac-home.ac-native +motonet.fi###cookienotify +mesto.de#$#.cookiebanner:not(body) { display: none !important; } +sac.net.cn###rightDiv +yasir252.com#%#AG_onLoad(function(){setTimeout(function(){var a=document.querySelector(".onp-sl-content");if("function"===typeof jQuery&&"object"===typeof bizpanda.lockerOptions&&a)try{a=0;for(var c=Object.keys(bizpanda.lockerOptions);a .article-body__section > p + div[style*="text-align: center;"][style*="display:"][style*="!important"]:not(p):contains(Advertisement) +||notify.rocks^ +###advertWrapper +vportal.ctu.cz#%#//scriptlet('trusted-set-cookie-reload', 'AppAnalytic', 'off') +||16sucai.com/images/*0 +page.auctions.yahoo.co.jp###fltbnr +||a1.syfj.net^ +@@/advert.js|$domain=yenigolcuk.com|hedefgazetesi.com.tr|eldedemokrasi.com|afyonhaberturk.com|nehaberankara.com|mansetburdur.com|bolgesellig.com|telgrafgazetesi.com|burokratika.com|balikesirartihaber.com|ajansbalikligol.com|karar67.com|gazetemalatya.com|vansesigazetesi.com|kocaelisabah.com|antalyadanhaberler.com|aydinyeniufuk.com.tr|yerelvanhaber.com|a2teker.com|kibrishakikat.com|izmirtime35.com|sancakplus.com|marasfisilti.com|burdurgazetesi.com|zeytinburnuhaber.org|denizli20haber.com|akdenizdeyeniyuzyil.net|ulakci.com|egegundem.com.tr|haberimizvar.net +thestival.gr###custom_html-28 +@@||moly.cloud/*/*.m3u8$stealth +||supervisionprohibit.com^ +||trblocked.com^ +greatist.com,healthline.com,medicalnewstoday.com,psychcentral.com##[data-empty] +||d21rpkgy8pahcu.cloudfront.net^ +/jquery.bs.gdpr.cookies.min.js +||tradedoubler.com^$third-party +||0gfu89wsm9j9mg2z.seponews.com^ +||pwbuhb.xyz^ +||ltbyw.top/data/images/*.gif +##.ads-custom +filmibeat.com###recommended_video +||Kmspi.co^$all +##.script-ad +||a4bj6.xyz^ +ifeng.com#?#.box_list:-abp-has(.tuig) +||securepubads.g.doubleclick.net/gpt/pubads_impl_$domain=shinden.pl,redirect=nooptext,important +ya.ru,yandex.*##.dist-overlay__popup_type_edge +||treesoft.de/typo3temp/assets/compressed/waconcookiemanagement- +||slimopinion.com^ +reopen.europa.eu##.ecl-language-list +||oophijassaudral.xyz^ +dict.leo.org###adv-drectangle1 +##.ecommerce-ad +##.ad-slot-banner +clickhole.com,lifehacker.com,splinternews.com,avclub.com,deadspin.com,gizmodo.com,jalopnik.com,jezebel.com,kotaku.com,qz.com,theinventory.com,theonion.com,theroot.com,thetakeout.com##.js_post-content > div[class] > p:has(> strong + em + span > a[rel*="sponsored"]) +||trackad.cz/adtrack.php$script,other,redirect=noopjs,domain=claplivehdplay.ru +time.com##.campaign-four_red-border +informer.com##.block_ad1 +||walkerbayonet.com^ +||tagmai.xyz^ +##.ad.size-300x250 +cocomanga.com#%#//scriptlet('prevent-setTimeout', 'loadErrorTip') +||akamaized.net/mr/popunder.js +@@||j2apps.s.llnwi.net/assets-origin/static/js/mx-prebid-ads.js$domain=mxplayer.in +yahoo.com##div[data-content="廣告"] +||lfooldjzuyfhae.com^ +||cattle.eprc.tools^ +||muoizbtl.xyz^ +||zdw.w8.com.cn/p.ht? +hao123.com###leftbannerv2 +||unusuallyswam.com^ +cookingchanneltv.com,discoveryplus.*,go.discovery.com,investigationdiscovery.com,go.tlc.com,sciencechannel.com#%#//scriptlet('json-prune', 'data.attributes.ssaiInfo.forecastTimeline data.attributes.ssaiInfo.vendorAttributes.nonLinearAds data.attributes.ssaiInfo.vendorAttributes.videoView data.attributes.ssaiInfo.vendorAttributes.breaks.*.ads.*.adMetadata data.attributes.ssaiInfo.vendorAttributes.breaks.*.ads.*.adParameters data.attributes.ssaiInfo.vendorAttributes.breaks.*.timeOffset') +lcpdfr.com##span[style="margin-bottom: -20px;"] > div[style="height: 250px;"] +||finized.co^ +ingles.com,spanishdict.com##.video-ad +easyicon.net##.page_big_adv +burusoku-vip.com##.article-body-more > span[style="font-size: 18px;"] +||partieseclipse.com^ +##.rekl-right +||bcaakxxuf.com^ +travel.rakuten.co.jp##.downloads-in +bilyoner.com#%#//scriptlet('set-cookie', 'smartbanner-closed', 'true') +||levelbehavior.com^ +biletix.com#$#div[aria-describedby="adddialog2"] { display: none !important; } +||cmp.dreamlab.pl/static-v*/cmp.bundle.js +##.ad_300_250_2 +||pupudy.com/images/wxrj.gif +/ads728x90.$image +||9191*.*/skin/frontend/default/js/layer/layer.js +||europe-discounts.com^ +||itmsc.cn^*ad0 +||paradisenookminutes.com^ +###headerad_large +englishlightnovels.com##.sidebar-right p > a[href^="https://loot.cr/"] +couponscorpion.com#%#//scriptlet('prevent-xhr', 'pagead2.googlesyndication.com') +||foranetter.com^ +newsday.com#$#body.modal-open .modal-scrollable + .connext-modal-backdrop { display: none!important; } +/assets/banners/600x100/* +||monismartlink.com^ +5184.com##.fixed_bgg +/sponsors/ads/*$image +||labourcucumberarena.com^ +||thale-ete.com^ +@@||cdn.bootcss.com/fuckadblock/3.2.1/fuckadblock.min.js$domain=share1223.com +||keran.co/js/check.js +||ngdxvnkovnrv.xyz^ +||allporncomic.com/*-*/?_= +||rtb1bid.com^ +||affilist.com^$third-party +pacman.io###priv_notice +@@||strmrdr*/index.php?id=$stealth +sojson.com##a[href^="https://www.sojson.com/ad/"] +propolski.com##body > div[id][class][style*="z-index: 9999"] + div[class][style*="z-index: 9999"] +||kafuzcxr.xyz^ +||convertfiles.com^$csp=script-src 'self' '*' 'unsafe-inline' +ctc.ru##.widget.special-block[data-trackable] +kuncomic.com#%#//scriptlet('adjust-setInterval', 'countdownTime', '1500', '0.001') +tranquilidade.pt##.app-cta +||eresultedinncre.info^ +datarobot.com,bessarabiainform.com##.news-bar +||intolerableshrinestrung.com^ +||uczfl.com/data/content +jabank-tokushima.or.jp#@#.top_ad +||lunchvenomous.com^ +tommy.com##.privacypolicymessagebox_header_cookies +.com/ad/$~image,third-party,domain=~mediaplex.com +cwtv.com#%#//scriptlet("set-constant", "wc.pid", "") +zeenews.india.com#%#(()=>{let e,t=!1;const n=function(){},o=function(t,n){if("function"==typeof n)try{window.KalturaPlayer?n([]):e=n}catch(e){console.error(e)}};let r;Object.defineProperty(window,"PWT",{value:{requestBids:o,generateConfForGPT:o,addKeyValuePairsToGPTSlots:n,generateDFPURL:n}}),Object.defineProperty(window,"KalturaPlayer",{get:function(){return r},set:function(n){r=n,t||(t=!0,e([]))}})})(); +refurbed.at,refurbed.de,refurbed.dk,refurbed.fr,refurbed.ie,refurbed.it,refurbed.nl,refurbed.pl,refurbed.se#$#section[x-data^="CookieBanner"] { display: none !important; } +reverso.net##.rightResult > .vda-section +||btpnative.com^ +##.Normal-add +##.player-tt-rm.rm-list +||unwartortlean.com^ +##.adswitch +jjdong4.com##div[style="width: 80%; text-align:center; margin-left: auto; margin-right: auto"] +@@||vk.payservice.io^$stealth +ebizfacts.com##.wp-block-group__inner-container > div.subscribe-form-wrapper +||ba9ee99d4f.9d9a354450.com^ +acfun.cn##.right-activity +##a[title="WhatsApp Newsletter Marketing"] +infotel.ca###desktopBannerTop +||medianews.az/export/*.php +||lsjxs.cc/js/html +##.paveCookies +bestlittlebaby.com#?#.row > div[class]:has(> div.info-box > div:contains(/^Advertisement$/)) +##.eu-cookie-nag +ddlvalley.me##.pb > h2:has(> a[rel="bookmark"][href^="https://www.ddlvalley.me/get-more"]) + div.post +yxdown.com###highdown +||qafqazinfo.az/milliaz.html +hanime.tv##.subtext + div.event-container +||lightboxcdn.com/vendor/$domain=deadline.com|csmonitor.com +watchpornfree.info##aside > #execphp-2 +niotv.com##.right_ad1 +9animes.ru#%#//scriptlet('prevent-xhr', 'pagead2.googlesyndication.com') +||ggxwb.miguvideo.com^ +@@||monova.*/fonts/ +||ewituhinlargeconsu.com^ +||xiaopi.com/statics/new_js/15.js +@@||destyy.com^$generichide +lkslodz.pl#%#//scriptlet('set-cookie', 'modal_rss', 'true') +||scenegaitlawn.com^ +anisearch.com###rrightX +||05f80459be.910de7044f.com^ +||saabsunited.com/wp-content/uploads/*banner +docs.sentry.io#?#.sidebar > div.tracking-widget:has(> p > a[href="https://sentry.io/privacy/"]) +##.view-site-ads +ulule.com#?##react-ulule-header > div[class^="sc-"]:has( > p > span > a[href="https://www.ulule.com/about/cookie-policy/"]) +||cloudfront.net/transcode/storyTeller/$media,domain=amazon.ae|amazon.ca|amazon.cn|amazon.co.jp|amazon.co.uk|amazon.com|amazon.com.au|amazon.com.br|amazon.com.mx|amazon.com.tr|amazon.de|amazon.eg|amazon.es|amazon.fr|amazon.in|amazon.it|amazon.nl|amazon.pl|amazon.sa|amazon.se|amazon.sg +||sieglinde22.xyz^ +belsat.eu##a[href="https://t.me/belsat"] +||s.asvsm.com^ +||components.justanswer.com^$third-party +wiki.fextralife.com#@#.ad-sidebar +||igniterads.com^$third-party +||bealanews.com^ +||23.109.87.101^$popup +tophentai.biz##[src*="hentaileads/"] +/300x250b. +||notiksio.com^ +movies07.co##.sidebar > ul > #custom_html-3 +||eoof.net/PicZone/qzgg +dataguru.cn###bg +||turbanmadman.com^ +airfactsjournal.com###media_image-3 +###div_ad_leaderboard +keithrainz.me#?#.inside-right-sidebar > aside.widget:has(> figure[class] > a[href]) +aol.com##.m-partner +headlines.yahoo.co.jp###peronArea .dressUp.tracked_mods +romsgames.net##.mmad +douyu.com##.tab-content.promote +||static-td*.stfucdn.com/contents/content_sources/*/*DevilsFilm_*-Banner_*.jpg +||chapseel.com^ +woiden.id#@#.ad-wrapper +###storyAd +||googletagservices.com/tag/js/gpt.js$script,redirect=googletagservices-gpt,domain=downdetector.it +mirror.co.uk##reach-nav-share ~ div.social-sites +###ad-300x250-2 +||sinnerobtrusive.com^ +||gibaivoa.com^ +||nextclick.pl^$third-party +||izjzkye.com^ +regionedanubio.it,regiondunaj.cz,donauregio.nl,donauregion.at#@#.cc-banner +||1.feihua.net.cn^ +anycodes.com##.sls_pop +stoodnt.com##.ct-sidebar > #custom_html-26 +||sociallytight.com^ +||caterpilla.ibon.live^ +sexwebvideo.me##.uk-navbar-nav > li > a[href^="https://p.hecams.com/"] +tw.yahoo.com###abu-live +||resugovex-1.co^ +joyn.at#%#//scriptlet('set-local-storage-item', 'uc_user_interaction', 'true') +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com###content_left > div[class][style]:not([id]) +###cookies-policy-wrapper +||776.jstatic.xyz^ +||94597672.xyz^$document,popup +sankaku.app#$#body { overflow: auto !important; } +||pornhost.com/*.php?js=*&cache= +apkpure.*##.safe-link > .dl-ref +essential.com###footerNotice +||danorenius.com^$third-party +glavred.info#?#.newsfeed > div.newsfeed__item:has(> div.newsfeed__tg) +||dnarynkow.pl/wp-content/uploads/*/1080x1920-18.png +||eazyleads.com^ +||y1jxiqds7v.com^$popup +||same.chinadaily.com.cn^ +###sidebar-adspace +mapio.net###backpicx > div[id^="__estate_"][style] +##.adcontainer_big +brightside.me##.inread-container +youwatchporn.com##a[href^="http://gohillgo.com/out"] +autohome.com.cn##.vocalcon-btn +##.ad-disclaimer-container +||lukeexposure.com^ +mwrf.net##.uc1_focus_pics +##.ads336_280 +||pumpbead.com^ +||adglare.net^$document +2ip.me##.menu_banner +sex.com#@##cookie-modal +mysocceraustralia.com##div[style="text-align: -webkit-center;margin-bottom: 20px;min-height: 250px;"] +afkgaming.com##.o-yqC +##.pdpads_desktop +||orbxiul.xyz^ +||22lmsi1t5.de^ +@@||lngtd.com/ehftv_ros.js$domain=ehftv.com +||alsindustratebil.com^ +###related-news-1-bottom-ad +navbharattimes.indiatimes.com##.ads_default +gocmod.com#%#//scriptlet('prevent-addEventListener', 'blur', 'event.dispatch.apply') +||chubun.com/uploads/pic/img +pulshr.pl#@#[class$="-ads"] +||histock.tw/ad/ +###cookieChoiceBanner +||antcixn.com^ +||xml.clouback-3.online^ +rpp.pe##.setup-newsletter +||scootloor.com^$third-party +||mosquito.zero.io^ +|http://$script,subdocument,third-party,xmlhttprequest,domain=jkanime.net,badfilter +@@||quantcast.mgr.consensu.org/choice/*/einthusan.tv/choice.js$domain=einthusan.tv +flowwow.com#%#//scriptlet('set-cookie', 'closed-black-banner', '1') +||public1266.fun^ +comparic.pl###tdi_55 +toy-people.com##.article_insertAD +||numista.com/*/banners/$image +aptoide.com#$#div[class^="cookie-notice_"] { display: none !important; } +##.sidebar_ads_left +upshrink.com,kiktu.com,techcyan.com#%#//scriptlet("prevent-addEventListener", "DOMContentLoaded", "/_0x|\\x|google_ads_iframe/") +audioz.download###leaderboard > li > a[href] > [src^="/templates/Default/img/promotional/"] +rondoniaovivo.com###dadoscookie +||yueipaoo.xyz^*.gif +avepdf.com###notif-cookie-consent +||myadsserver.com^$popup +||dfejqmh.cn^ +||webdisk.email.aomg5bzv7.com^ +@@||googletagservices.com/tag/js/gpt.js$domain=wp.pl|dobreprogramy.pl|o2.pl|pudelek.pl|so-magazyn.pl +###wpd-bubble-wrapper +starbaby.cn###top_ad_show +whatismyip.net#?#.container > div.panel:has(> div.panel-body > ins.adsbygoogle) +||loanxas.xyz^ +##.b_pr +acfun.cn##.pause-display +thestival.gr###custom_html-30 +||cnzz.trafficmanager.net^ +||hubhubhub.name^ +shoppersdrugmart.ca##.module-promo-sign-up__wrapper +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_couplet +inselberlin.de##div[class^="Cookie__Container-"] +||illscript.com^ +3dprint.com##.lap-block-items +dein-ip-check.de##footer > div.inside > div.ncoi---behind +||britishgrease.com^ +##.toy52_outer +||3987.com/skins/*201 +||purposeparking.com^ +||adxoo.com^$third-party +||drivercontinentcleave.com^ +baidu.com##.rightAd-skin +||advertisementafterthought.com^ +youdao.com##div#ServiceBox1 +||isky.ltd/skin/js/ad.js +lifeinkrakow.pl#?#.page-content > p:has(> .adsbygoogle:only-child) +||d13kjxnqnhcmn2.cloudfront.net/AfcDesignCentre/js/DC_CookiePolicy.js +||content.gallup.com/ux/gcb/gcb.en-us.min.js +web2.0calc.com#%#//scriptlet('set-cookie', 'precmp', '2') +||360buyimg.com/babel/jfs/t1/209256/22/21888/60206/627b7a6aEa5f2d78b/219868beb169203f.jpg +mojanorwegia.pl##.animatedA +||husky-tomorrow.pro^ +captaincoupon.de#@#.cookie-modal +||webgains.com^$third-party +||qiossrwine.xyz^ +lazimbana.com##.lazim-cookie-alert +||dalyai.com^ +||celeritascdn.com^ +||a.medriz.xyz^ +media.moneyforward.com##.home-ranking +||complete-afternoon.pro^ +||chaospace.fun/wp-content/uploads/*/tg- +animeindia.in,codedosa.com,semesters.in#%#//scriptlet('set-constant', 'disableSelection', 'noopFunc') +eikaiwa.weblio.jp##.sideButton +||770.th2mbxzqe.com^ +f.ua##.callback_buttons +||ip-secrets.com/img/nv +@@||proton.me/static/*/google-ads-blog.webp +hentai-foundry.com,kodi-tutorials.uk##iframe[name="banner"] +||cdn.cuty.io/fps.js +||morict.com^ +||diena.lt/sites/default/files/Vilniausdiena/Vartotoju%20zona/Eisvinas/kd_prenumerata_optimize.gif +tellymix.co.uk###sidebar > div[style] +||widgetbucks.com^ +freshauto.ru##.wrapp-cookie +||rkymfevzeq.com^$third-party +||alicdn.com/img/ibank/*_1794478205. +jobthai.com#%#//scriptlet('set-local-storage-item', 'website-visit-date', '1') +@@||vidsrc.*/embed/$stealth=referrer +||static.gaomaer.cn^ +||geocanabis.com/banner +dahuasecurity.com##.float_tips > div.partner +||clickadu.com/apu.php$redirect=nooptext,important +iqiyi.com###middle_banner_ad_bk +||ruqwgb.icu^ +ixbt.com##.b-blockadblock +ice.hockey##.flex_container_werbung +||d3skqyr7uryv9z.cloudfront.net^ +realtime-chart.info##.osn_base +gd.ru#$#body[style^="overflow:"] { overflow: auto !important; } +wealth.com.tw#?#div[class]:has(> div[class] > div[class^="rytass-ad-manager-"]:only-child) +rawkuma.com#%#//scriptlet("prevent-addEventListener", "mousedown", "shown_at") +searchenginejournal.com##.sej-banner-section +||stiflepowerless.com^ +gramwzielone.pl#?#div.right-column > section.gwz-box:has(> div > a > div:contains(Reklama)) +ekoplaza.nl#$#div[id^="cookie-prompt-modal_"] { display: none !important; } +shine.cn###pdfModal +truthout.org#$#.fun-widget-backdrop-holder { display: none !important; } +||venueitemmagic.com^ +perchance.org#%#//scriptlet('prevent-setTimeout', 'adIframesExist') +lenovo.com##.containerCookies +campbellsci.com#$#.modal[aria-labelledby="cookieSettingsModalLabel"] { display: none !important; } +mirror.co.uk##.shopwindow-advertorial +||tapioni.com^ +.com/a_d/ +flac24bitmusic.com##a[target="_blank"][rel] > img[src*=".gif"] +sheshaft.com##.player-info > .under-player +||trksmorestreacking.com^ +||albatross.ohseesoftware.com^ +kotaro269.com###content-top-news +facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion##.aclb > div._4b-b +askpaccosi.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +seirsanduk.com#%#window.canRunAds = true; +@@||googleads.github.io/videojs-ima/node_modules/videojs-contrib-ads/dist/videojs.ads.min.js$domain=rmfmaxxx.pl +||miluwo.com^ +@@||8muses.com^$generichide +thueringer-allgemeine.de#$#.tp-modal { display: none!important; } +send-anywhere.com#$#.receiving-ads { display: none !important; } +||vipbox.lc/partytown/ +versus.com##.PrimeBadge__root___1mHM7 +||donkparty.com/left.js +sportowefakty.wp.pl#@#body > .content ~ iframe + div[class]:not([id]) +||mail.ru/manifest.json +myanimelist.net##div[data-koukoku-width] +##.SecondaryAdLink +xakep.ru##.snp-fb +app.element.io##.mx_AnalyticsToast +||sofseo.cn^$third-party +@@||cdn.cookielaw.org/scripttemplates/otSDKStub.js$domain=tvguide.com +||login.hueads.com^ +umicore.com#$#.cookieconsent { display: none !important; } +||otbuzvqq8fm5.com^ +nhac.vn##.ft-scroll-content +sportsnet.ca###leaderboard_master +##a[id][href*="/?aff="] +||mbreviewer.com^ +@@/adx.$domain=tanx.com +digiforum.space##.wordpress-fire-push-popup +simplehuman.com#$#.SiteOverlay { display: none !important; } +zing.me,reformagkh.ru,aspiegel.com,swish.nu,coeur-de-lion.org,enroll.virginpulse.com,taschenkaufhaus.de,golotto.de##.cookie-banner-container +||888promos.com^$popup +||adorx.store^$document +||amnioteunteem.click^$popup +newzpanda.com#?#.theiaStickySidebar > .stream-item-widget:has(> .widget-title:contains(Advertisement)) +solarisbank.com,risingstack.com##div[class^="CookieConsent__Container"] +||jsdelivr.*/npm/@bootcss/*/assets/img/aliyun +###jumper_cookies +||contagiousbookcasepants.com^ +sina.com.cn##[data-info^="ad_"] +poczta.interia.pl##div.ad[nxt-ad-place] +||adhash.com^$third-party +landkreis-kronach.de#$#html { overflow: visible!important; margin-right: 0!important; } +vikingfile.com##[href^="/fast-download/"] +turna.com##.cookie-policy-dialog +debugbear.com##main > div[class^="container_"]:has(> form#mc-embedded-subscribe-form) +dramaclub.com.br###dtw_socialbox-7 +||summerboycottrot.com^ +||thcdy.co/baidu2/foot.js +||fqtljn.xyz^ +||gstatic.com/firebasejs/9.6.10/firebase-messaging.js$script,redirect=noopjs,domain=smallseotools.com +delfi.lv#$##trySubscriptionIntroductionPopup { display: none !important; } +||restedsoonerfountain.com^ +||popularpillcolumns.com^ +law.justia.com###newsletter-subscription-aside-widget +||teachleaseholderpractitioner.com^ +tripadvisor.*##.ppr_priv_document_cookie_banner +store.shopping.yahoo.co.jp###smlmdl +kurashiru.com##.SpRoot-topBannerWrapper +hamivideo.hinet.net#%#//scriptlet("set-constant", "myPlayer.adDisplay", "undefined") +loudtechie.com#$#html { overflow: visible !important; } +promobit.com.br#%#(function() { try { if ("undefined" != typeof localStorage) { localStorage.setItem("leave_blog.out", "true") } } catch (ex) {} })(); +juejin.cn##.sidebar-bd-entry +##.gads +herfamily.ie,sportsjoe.ie###div-gpt-top_page +~zagojeni.pl##.rodo-overlay:not(body):not(html) +||dynpaa.com^ +my0511.com###duilianleftdiv +drugs.com##.sideBoxPillApp +||bestproducttesters.com^$popup +||tocometentage.shop^ +girlonthenet.com#?#.audio-hub-list + div > h2:contains(Subscribe) +prozis.com##.site-needs-cookies +||adskeeper.com^ +/js/aa.htm$script +||4e8bjpldk.com^ +knowledgehut.com##.blog-subscribe +nd.edu###network_notice +||dmzj.com/js/m_BtmApp.js +techporn.ph##a[href][target*="blank"] +##.mntl-leaderboard-header +ahaan.co.uk##.sticky-side-ad +uinterview.com#$#body.modal-open { overflow: visible!important; } +||xianzhenyuan.cn/data/attachment^$image +livelaw.in###header_ad_mobile +@@||key-hub.eu/js/prebid-ads.js +wsj.com#@##footer-ads +||vamsoupowoa.com^ +24sata.hr##.admiral_widget +popporn.com#@#.block-ad +||modoodeul.com^$popup +||j6mn99mr0m2n.com^ +##.top_header_ad_inner +||23.109.170.255^ +sparheld.de##.newsletterSubscribe +tf1.fr##div[aria-describedby^="max-banner-"] +allmonitors24.com,streamable.com##.bottombanner +multitran.com##td[valign="top"] > div.myjustify > iframe +###wrapper-AD_L +hao123.com###shortcut-box > .tip +||extraconventional.com^ +louwman.nl#@#body #cookie-policy +/rhododendron/css/rhododendron-popup.css$domain=abctygodnik.pl|wgospodarce.pl|wpolsce.pl +||biberonmacers.shop^ +||secretbehindporn.com^$third-party +cnblogs.com##.c_ad_block +||eergortu.net^ +bitchute.com##.rcad-container +opentools.ai###newsletter-popup-overlay +||7692.5clo0xmbf.com^ +||br3azil334nutsz.com^ +kion546.com##.viafoura > div[data-test="tray-trigger-root-element"] +saas.360.cn#$#.productIntroduce { top: 60px !important; } +cineman.pl,tv-trwam.pl#%#//scriptlet("set-cookie", "ARE_REQUIRED_COOKIES_ACCEPTED", "true") +||wibbitz.com^$domain=gamerevolution.com +geocanabis.com###sidebar2 +||huimg.cn/e/hd.e.wap. +khanacademy.org##div[data-test-id="hack-ignore-focusable-not-visible-test"] +||midtermbuildsrobot.com^ +||tietuku.com/b975a9f7c494738b.gif +myshopify.com##.appify_rcc_row +foodmate.net##.m[style="height:40px;"] +###ad-rectangle1-outer +||3464d03874.2de65ef3dd.com^ +hurriyet.com.tr##.app-redirect +||d13gni3sfor862.cloudfront.net^ +||desabrator.com^ +###ad-shop +techymedies.com#%#//scriptlet("adjust-setTimeout", "/gotoo|pop-button|stickyadin/", "*", "0.02") +||blastcahs.com^ +###adposition +fcinternews.it###masthead +##.ad160_r +atv.az##[style*="margin-top: 10px"] > object[height="102"] +||onxeacj.cn^ +/cookie_notification/bar.js$domain=velocitytechsolutions.com +manchestereveningnews.co.uk##.container > div:empty +||renewmodificationflashing.com^ +farmina.com###cookieslayer +laptopmag.com###responsive_ad +||cfcloudcdn.com^ +||pages.etoro.com/widgets/$third-party +##.self-contain-cookie +javeng.com,clk.ink##iframe[src*="/ads/"] +||nationsencodecordial.com^ +##.cookiealert.show +###adChannel +||nanoadexchange.com^$popup +||dm.zuowenku.net^ +ariva.de###bottomWarnings +##.adinjwidget +||whileinferioryourself.com^ +.pl/ajax/getCookieConsent.php +uteka.ru##.app-discount-mini-banner__inner +###taboola-bottom +y2meta.tube,koreliscans.com,capo4play.com,lulu.st,cinema-3d.xyz,emovies.si,animeflv.ac,hayalistic.com.tr,swiftload.io,teamoney.site,nossoprato.online,noxscans.com,movieshubweb.com,dattebayo-br.com,caroloportunidades.com.br,superembeds.com,kenitv.me,vidsrc2.*,lrepacks.net,totalsportek.pro,1ststream.shop,olalivehdplay.ru,vivosoccer.xyz,noromax.my.id,gdflix.cfd,pahe.plus,qqwebplay.xyz,lookmovie2.to,hdtodayz.to,xn--algododoce-j5a.com,uqload.ws,gdrivelatino.net,bakashi.tv,ads.dblink.us,0123movies.live,myflixer.is,ogladajanime.pl,moviesnation.win,9anime.pe,movies4u.*,mp3.pm,vudeo.ws,hdtoday.cc,viwlivehdplay.ru,putlocker.vip,itopmusics.com,streamed.su,libre.futbol,topcartoons.tv,hdtoday.tv,japscan.lol,watchcartoononline.bz,hitsports.pro,chrisellisonllc.xyz,arcasiangrocer.store,1qwebplay.xyz,faselhds.*,faselhdwatch.*,dlhd.so,lewblivehdplay.ru,mlwbd.*,file-upload.org,androidonepro.com,gdrivelatinohd.net,cineplus123.org,nxbrew.com,cinemitas.org,onepiecepower.com,fstream365.com,gidplayer.online,rahim-soft.com,downarchive.org,cricstream.me,olympicstreams.*,streambtw.com,buffsports.me,smashy.stream,movieuniverse.li,kisscartoon.sh,ridomovies.tv,filecrypt.*,arcasiangrocer.store,faselhd-watch.shop,bongsport.com,chatgptchatapp.com,mywatchseries.cyou,telepisodes.org,yuramanga.my.id,bongsports.stream,redditsoccerstream.online,myflixertv.to,footybite.to,flixhq.to,freetvspor.lol,furher.in,yu2be.com,lulustream.com,f1box.me,mlbbox.me,mlbbox.me,mmastreams.me,nbabox.me,nflbox.me,nhlbox.me,tennisonline.me,veev.to,projectfreetv.cyou,16bit.pl,majorscans.com,hianime.*,theflixertv.to,hdtoday.to,filecrypt.co,d000d.com,anitaku.to,luluvdo.com,mangasusuku.xyz,animetak.top,animtap.shop,uqload.to,d0000d.com,cocolamanhua.com,soccerinhd.com,limpaso.com,harryaudiobooks.net,do0od.com,mangaokutr.com,coolrea.link,aniwatchtv.to,faselhd-embed.scdns.io,tranimaci.*,online-filmek.ac,uzaymanga.com,yeppuu.com,afroditscans.com,ruya-manga.com,forum.release-apk.com,kkiste.tel,filmesonlinexhd.biz,stbemucode.com,megacloud.tv,aniwatch.to,likemanga.io,freewsad.com,mangareader.to,ds2play.com,french-stream.moe,shinden.pl,online-filmek.me,myflixerz.to,webdramaturkey.com,watchop.live,streamvid.net,embed4u.xyz,akw.cam,vidstream.pro,dlhd.*,swatchseries.is,foot2live.cc,exego.app,doods.pro,animeunity.to,bolly2tolly.wiki,serielatinobobesponja.com,fakedetail.com,gotaku1.com,exeo.app,temps-mail.com,uqload.io,playertv.net,mega4upload.com,123chill.to,lilymanga.net,hexupload.net,ak.sv,animeunity.cc,9animetv.to,akw-cdn1.link,ssyoutube.com,stakes100.xyz,arb-softwares.com,up-4ever.net,youpit.xyz,tapewithadblock.org,leercapitulo.com,projectlive.info,piraproxy.page,animerigel.com,goku.sx,dooood.com,solarmovies.video,watchtvseries.bz,dopebox.to,jockantv.com,niadd.com,bflix.gg,mgnetu.com,streamlord.com,streamcloud.*,ak4ar.*,seegames.xyz,hinatasoul.com,mundoprogramas.net,animeblkom.net,akw.to,xn--mgba7fjn.*,f123movies.com,flexyhit.com,vipleague.*,seufilme.net,ak4eg.*,atglinks.com,torrentdosfilmes.se,instamod.net,khsm.io,eurekaddl.mom,bacakomik.co,crackstreams.*,shahiid-anime.net,uqload.co,series4pack.com,iptvxtreamcode.blogspot.com,sportcast.life,henaojara2.com,youtubevanced.com,hesgoals.top,gameshdlive.xyz,worldstreams.watch,skincarie.com,financerites.com,watchseries1.video,universanime.co,cimaa4u.*,torrentmac.net,shaheed4u.*,nolive.me,govad.xyz,vidshar.org,vadbam.com,myoplay.club,yt-download.org,animefenix.tv,123ecast.me,gocast123.me,comando.la,gocast2.com,manga1001.su,gogohd.net,viprow.nu,kickassanime.ro,exee.app,fmoviefree.net,exep.app,myoplay.club,betteranime.net,asianplay.*,charexempire.com,kat.mn,footyhunter3.xyz,vumoo.to,exe.app,sports-stream.*,theflixer.tv,mrpcgamer.co,crackstreamshd.click,komikindo.id,sockshare1.com,liveply.me,daddylivehd.*,bakotv.com,sflix.se,boost.ink,animehditalia.it,720pstream.me,adslink.pw,cuevana3.*,mangapt.com,wupfile.com,uqload.com,turkish123.com,pelisplus.uproxy.page,waploaded.com,streamsport.*,animesup.*,kingdomfiles.com,forex-trnd.com,allosoccer.com,mangarawjp.*,novelroom.net,jkanime.video,bitcomarket.net,ngomik.net,pelismartv.com,yseries.tv,hds-streaming-hd.com,hh3dhay.xyz,roms-download.com,freeromsdownload.com,roms-hub.com,animesultra.com,anime-sanka.com,animes.vision,vudeo.net,animeflv.cc,tinymkv.net,milfzr.com,miraculous.to,uploadmaza.com,uptomega.me,9tsu.*,pelispoptv.com,kissmovies.io,mangaraw.*,starlive.xyz,123moviesfree.*,filmvilag.me,voiranime.stream,putlockers.*,gdplayer.*,cool-etv.net,fmovies2.cx,modsfire.com,atomohd.*,ouo.press,yugen.to,buffstreams.*,apkmody.io,mycima.cloud,couchtuner.show,kimoitv.com,gdtot.*,cuevanahd.net,anavidz.com,2embed.*,armagedomfilmes.top,movieskafanda.xyz,streamingcommunity.*,s.to,atomixhq.*,anitube.*,ymovies.to,manhuascan.*,dembed1.com,file4go.net,file4go.com,hothit.me,sflix.to,animesanka.*,cima4u.*,shrink.*,divicast.com,manhwa68.com,filma24.*,mp3yeni.org,upload-4ever.com,futebolplayhd.com,witanime.com,thetodaypost.com,hentaizm.fun,hitmovies4u.com,embedflix.net,moviesjoy.*,animespank.com,hhdmovies.*,short.katflys.com,hindilinks4u.*,topflix.*,flixtor.gg,upvid.*,mangas-raw.com,bbb.fm,clipconverter.cc,megafilmeshd20.pro,watchseries.*,animesonline.cz,superflix.*,kick4ss.com,jpscan-vf.com,rawkuma.com,pobreflix.top,losmovies.*,123movieshub.*,seriesflix.top,intereseducation.com,vizer.re,123movies-official.site,querofilmehd.*,gogoanime.*,animixplay.to,dood.yt,dood.re,dood.wf,dood.la,dood.pm,dood.so,dood.to,dood.watch,dood.ws,anime4up.*,watchmovie.*,myflixer.*,filmyzilla.*,megafilmeseseriesonline.com#%#//scriptlet("abort-current-inline-script", "document.createElement", "break;case $.") +thediplomat.com###td-share-bar +4kdownload.com#$#.remodal-overlay { display: none!important; } +||baseballrabble.com^ +linuxblog.io##.hayden-widget_top_1 +||check-prizes-now*.life^$redirect=nooptext +spiegel.de###html_civey +pornvalleymedia.net###media_image-82 +gearslutz.com###crawler +||foldingclassified.com^$popup +electronics.semaf.at,offresasaisir.fr,e-herbapol.com.pl,zaugg.swiss,audioteka.com#$?#html.force--consent.show--consent { overflow-y: unset !important; } +gsch.tfmwish.com##.rssti +||bzydilasq.com^ +||infomoney.com.br/wp-content/plugins/infomoney/front/assets/js/components/services/service-webpush-firebase.js +||bc84617c73.com^ +||qdoeki.xyz^ +starsandstripesfc.com,polygon.com##div[class^="adblock-whitelist-messaging__"] +||stoveword.com^ +||sympathizecopierautobiography.com^ +finance.sina.com.cn##.f_app_screen_wrap +||1.yac8.net^ +##.ad_contain +||pushpush.net^ +expert-security.de#$#.modal-backdrop { display: none!important; } +parabola.cz##.zpravicky_sdeleni +hog.*,sexu.*##.player-block__square +##.ResponsiveAd +kommersant.ru##.new-subscription-popup +djljz.cn###toolbar +hasepost.de#$#.pum-overlay { display: none!important; } +download.hr##.ad_unit_label +it165.net##.adv728b +xxxsm.vip##.ad280x165 +obserwatorgospodarczy.pl###tie-wrapper > .stream-item-above-header > a[target="_blank"] +dogeen.xyz#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||onelivetra.com^ +delo.si###bar24 +||kloperd.com^ +||itponytaa.com^ +extratv.com##.js-track-link +||to8to.com/assets/wap//common/widgets/appGuide/appGuide. +exawarosu.net##.l-rss-top +behindthesteelcurtain.com##.adblock-allowlist-messaging__article-wrapper +kbb.com##div[data-cy="lockedAdContainer"] +temp-mail.org##.topStickyBanner +||innovid.com/media/encoded/*.mp4$redirect=noopmp4-1s,domain=ktla.com +zaycev.fm##div[class^="soft-promo"] +fulltv.com.mx,fulltv.tv##.social > div[class]:has(iframe[src*="fulltv.video/"]) +||shaidolt.com^ +cnet.com##article div.shortcode.-mini +||intermediatelattice.com^ +||khatexcepeded.info^ +||aircraftairliner.com^ +||flourishinginnovation.com^ +theloadstar.com###lc-cookie-bar +landernitemons.monster,dedutcoatheng.monster##.notifyjs-corner +||m.yhdm.so/bar/yfgg.js +@@||suntory.co.jp/beer/kinmugi/img/ad/$image,~third-party +phimmoi9.net###_AM_POPUP_FRAME +zootube1.com#%#AG_onLoad(function(){document.querySelectorAll('a[href^="/zoo/play.php?hd="]').forEach(function(a){var b=a.getAttribute("href").split("/zoo/play.php?hd=");a.setAttribute("href",b[1])})}); +###topleaderboardad +||18tlm4jee.de^ +theverge.com#?#.duet--layout--river > div.border-b:has(> div > a + div > div:contains(/^AD$/)) +||api.adultsclips.com^ +||203.195.121.72^$popup +howbuy.com##.topBigAd +||ddbhm.pro^ +###adcontainer3 +blog.prepscholar.com###free-sat-tips +||mixclckchat.net^ +##.widgetContentIfrWrapperAd +amazon.*###customer-survey_feature_div +||imagebam.com/csb.html +||rghptoxhai.com^ +developernation.net#$#body { overflow: auto !important; } +msn.com##.fbpopup-container +||antenta.site^ +miniwebtool.com###videoad +dnd-compendium.com,langeloudspeakers.com,rallyfans.info,uniquebible.app,sites.google.com##div[data-cookie-path] +||dc-rotator.com^ +zetporn.com#%#//scriptlet('prevent-window-open') +owllink.net#%#//scriptlet("prevent-window-open") +||9947.5clo0xmbf.com^ +||howsliferightnow.com^$popup +||pornokeep.com/content2/lib/ +||banetabbeetroot.com^ +||51.89.187.138^ +wsip.pl##.cookieinfo-wrapper +||boostclic.com^ +||disillusionromeearlobe.com^$popup +anonymousemail.me#$#.adsbygoogle { height: 1px!important; width: 1px!important; } +||mj-king.net/img/bnr/bnr_*_300x200.gif +meming.world#$##memingsubscription-popup { display: none!important; } +gesundheitsfrage.net,gutefrage.net,finanzfrage.net#$#gf-shortened-block.is-short { max-height: none!important; } +bigbtc.win#%#//scriptlet("set-constant", "canRunAds", "true") +lilymanga.net##.reading-content > .chapter-warning:has(> p > span > strong > a[target="_blank"]) +bobs-tube.com,tubsexer.*##.sponsored_top +||127.net/external/js6public126_ +meczyki.pl##div[id^="screeningBackground"] +techrum.vn##.sidebar_ads_img +bunnyhop.de,funktionelles.de,futspo.de###cookie-jar +wtatennis.com,einstieg.com##.nl-footer +progress.org.uk##body > div[style*="width: 100vw; height: 100vh; position: fixed;"][style*="z-index:"] +||uetlwst.top^ +iis7.com###QTGG +||commandsorganizationvariations.com^ +polskieradio.pl##div[id*="_ContentPlaceHolder"] > div[style^="display: block; font-size:"] +||jygotubvpyguak.com^ +msn.cn#%#//scriptlet('json-prune', '*.*', 'adFeedbackData adType adServedUrls') +guides.gamepressure.com##.guide19-app-cc +###cc-cookie-law +fril.jp##.campaignBanners +videogameschronicle.com##.vgc-podcast-promo +||atgenesecton.com^ +mitsubishi-motors.com.tr##.kvkkDisplay +mybet.com##div[class^="indexstyles__CookiesPanel-"] +###playerJsvLayer.jsv-layer +##.ad-defer +stereogum.com#$##sg-ad-block-notice { display: none !important; } +-480x60/ +||bibleatlas.org/botmenu +sheva7.co.il##.maavaron +||mmtalk.net/images/banner +blendersecrets.org,pixelsurplus.com##div[class^="sqs-cookie-banner"] +princesshighway.com.au,uniqlo.com,tvkinoradio.ru,sport.ua,naturalmedicinejournal.com,maximonline.ru##.subscribe-popup +momondo.com##.rrc +happypenguin.altervista.org#$##cookieModal { display: none !important; } +arcane.no#$#body[data-noscroll="true"] { overflow: auto !important; } +||scalpworlds.com^ +||js.onclckinpg.com^ +compuland.de,compuland-city.de,mindfactory.de###bCookieSlide +###netease_mail_footer +dumetschool.com##.modal-promo-popup +||lorswhowishe.com^ +@@||anonigviewer.com/assets/js/*.js +isystemy.pl##.cookie-div-main +||holahupa.com^ +unige.ch##solidify-cookie-consent-banner-container +||baijs07.shop^ +||behalfpagedesolate.com^ +||affiliate.juno.co.uk^ +||dggaenaawxe8z.cloudfront.net^ +news247.gr##body .ad-widget +bmw-connecteddrive.de##cookie-drawer-container +||0575bbs.com/updateimeags/ +||tu3921276844.cc^ +onlinepngtools.com,onlinetools.com#%#//scriptlet('set-cookie', 'discountPrice', 'true') +lifewire.com#$#main#main { margin-top: 0px !important; } +downloadhub.fans##.code-block > a[href][target="_blank"] > img +ehealth.gov.gr#%#//scriptlet('set-cookie', 'cookieconsent_status', '1') +hamamatsu.com#%#//scriptlet('remove-class', 'State--CountrySelectorModal', 'html') +tvspielfilm.de##.widget-box.mail-abo +watch.impress.co.jp##.amazon-aff +streamable.com##nav ~ div[class]:has(> a[href$="page-video-ad"]) +familyporner.com#%#//scriptlet("set-constant", "canRunAds", "true") +||jackao.net^ +postbank.de#$#body.overflowHidden { overflow: auto !important; } +seomagnifier.com##.xd_top_box +vivre.*#%#//scriptlet('trusted-set-cookie-reload', 'cookies_consent', '1,~5,~6') +||cycyw.com/qdj/ +||leapretrieval.com^ +###dfp-ad-mpu2 +||horse.hookrelay.dev^ +||pbhrwhehnyibit.com^ +umicore.com#@#.cookie-banner:not(body):not(html) +javb1.com#%#//scriptlet('set-constant', 'cRAds', 'true') +||tagtoo.co^$third-party +##.ad-3 +||pornleep.com^$third-party +journaldunet.com#?##jSidebarSticky > div.sticky-zone:has(> div.sticky-element span[class]:contains(Newsletter)) +||disablepovertyhers.com^ +||bdad.123pan.cn^ +||rtbinternet.com^ +||dailyalienate.com^ +milfnut.com#%#//scriptlet("prevent-window-open") +waranote.livedoor.biz##.article-body > iframe[width="660"][height="780"] +||xghylt.com/api.php?mod=ad&adid= +||talcingartarin.shop^ +defenseworld.net##.sidebar-section > div[style*="min-height:"]:has(> .adsbygoogle) +spotify.com#@#.m-ad +savefrom.net##.smart-app-br-body +||chaintopdom.nl^$popup +##.footer-advert-large +||cdn.emarat-news.ae/wp-content/cache/min/1/wp-content/uploads/pum/pum-site-scripts.js +tp-link.com###tp-cookie +baj.media,ua-cinema.com,makeagency.ru,sakhaday.ru,golos.ua,kinogo.*##.telegram +planetminecraft.com###box_pmc_300btf +emmenetonchien.com##.cookieCnilCustom +##.lg-ads-635x100 +||atthewonderfu.com^ +||entjgcr.com^ +windowsreport.com##div[class^="refmedprod"] +##.spon-img[src*=".alicdn."] +||engage.wixapps.net/chat-widget-server/ +arrival.com#$#body { overflow: auto !important; } +maisgasolina.com#?#.banner > a[href^="https://play.google.com/store/apps/"] +informator.news##.link--telegram-group +read.engineerscodex.com##.subscription-widget +itc.ua##.partner-posts +@@||media.jd.com/static/*/ad +##.ccmcss_oic +asiro.co.jp,tech-blog.rakus.co.jp##.floating_cta +##.ajdg_grpwidgets +||correspondaspect.com^ +||widgets.trustedshops.com^$third-party +jembut.us#%#//scriptlet('set-constant', 'disableAds', 'true') +pnp.ru##.full_width_hr:has(> a[onclick^="dataLayer"][onclick*="'social'}"]) +||rsvvfx.xyz^ +meditation-portal.com#$##goodbyepopup { display: none!important; } +||htl.bid^ +voicy.jp##.leftmenu-app-leading +||luckyforbet.com^$popup +tk.de#$#.is-show-stickyconfirm .m-navigation { top: 0px!important; } +||syurabahazard.com/js/middlelink.js +yoshare.net#%#AG_onLoad(function(){var a=document.querySelector("#yuidea-snp");"function"===typeof yuidea&&yuidea.toString().includes("YuideaLink")&&a&&yuidea()}); +neuseeland-haus.de#@##notice-cookie-block +||libraryglowingjo.com^ +thescore.com##div[class^="PrivacyPolicyPopup__privacyPopupContainer--"] +/cookie-terms. +qingdaonews.com##.da66050 +nordlb.de,letyshops.com##.b-cookie-banner +##.adHeaderAdbanner +intercityfilo.com,quickpharm.net#%#//scriptlet('set-cookie', 'cookieAgreement', 'false') +/ads?zone_id= +?key=$popup,domain=verystream.com +||zewkj.com^ +quora.com##.dom_annotate_ad_promoted_answer +||hulichuang.mobi^ +##.advert-image +/FduttjAlivqpo/* +||sneakwind.com^ +kontrolkalemi.com###XGT-AdBlock-etkin +flogas.co.uk##.cookie-banner-shroud +||loveshang.com/api.php?mod=ad&adid=custom_ +r10.net###inlinemodform > ul > li.thread > a[href="/reklam/"] +bolasport.com##.ads +vivads.net##form ~ .row > .col-sm-4 +||cdn.galacg.me/img/*.jpg +investmap.pl#%#//scriptlet('set-cookie', 'rodov2', '1') +freepornsiterips.com##div[id^="pum-"] +gamebanana.com##.BannerModule +###divCookieNotify +coinmarketcap.com##.js-platform-alert +||2ccc.com/images/sdo.jpg +armypowerinfo.com,artoffocas.com,bhugolinfo.com,bhugolinfo.com,cxissuegk.com,gknutshell.com,godstoryinfo.com,laweducationinfo.com,makeincomeinfo.com,rsfinanceinfo.com,rsgames.xyz,savemoneyinfo.com,vichitrainfo.com,workproductivityinfo.com,worldaffairinfo.com,rseducationinfo.com,rsinsuranceinfo.com,rsadnetworkinfo.com,rsfinanceinfo.com,rshostinginfo.com,rssoftwareinfo.com#%#//scriptlet('abort-on-stack-trace', 'document.getElementsByTagName', 'adsBlocked') +store.voicemod.net#?##root > div[class]:has(> div > p > a[href="https://www.voicemod.net/cookies-policy/"]) +##.gnt_em_vp_c[data-g-s="vp_dk"] +@@||happyride.se/img/admarket/ +@@||imasdk.googleapis.com/js/sdkloader/ima3.js$domain=sondakika.com +/?redirect&placement=$popup +uktvplay.co.uk,uktvplay.uktv.co.uk#%#//scriptlet('prevent-fetch', 'v.fwmrm.net') +people.com#$?##onetrust-consent-sdk { remove: true; } +##.skyAdvert2 +freedomfirstnetwork.com##.freed-1 +||24-sportnews.com^ +modrinth.com##.normal-page__content [href^="https://minefort.com/"] > img +###adposition1 +kinoart.ru###issue_banner +m.aboutyou.de##div[data-testid="appInstallTeaserContainer"] +weihnachtsmaerkte-in-deutschland.de,adventskalender-gewinnspiele.de,happy-spots.de##body > #cono +faroutmagazine.co.uk,hitc.com##[dock="#primis-dock-slot"] +/manduan-dev.oss- +||3fb4026cec.ffbd26c481.com^ +domodi.pl#?#article div[data-t][class]:has(> div[data-model*="wpId"]) +investsocial.com###pb-wrapper +/60x468. +@@||api.privacy-center.org/v*/events$domain=programme-television.org +fratelliguzzini.com#$#.newletterModal { display: none !important; } +##.app_ad_unit +||d1pvpz0cs1cjk8.cloudfront.net^ +kids-in-mind.com,telecompetitor.com,boardingarea.com,digitalic.it,diariosanrafael.com.ar##.et_bloom_optin +||drda5yf9kgz5p.cloudfront.net^ +@@||ad.doubleclick.net/ddm/ad/*$domain=wiltshiretimes.co.uk|gazetteandherald.co.uk|theboltonnews.co.uk|oxfordmail.co.uk|swindonadvertiser.co.uk|southwalesargus.co.uk +||vkprime.com/player*/vast.js +sylt.de,gelbeseiten.de,gasag.de##div[class^="cmpbox"] +||media-us.amillionads.com/*.mp3$media,redirect=noopmp4-1s,domain=spotify.com +||jillsclickcorner.com^ +severpost.ru#?##content div.col:has(> div[style] > form[action="/subscribe.php"]) +bmlink.com##.Tg_190x70 +javdb.com##.app-desktop-banner +screenrant.com#@#.w-adsninja-video-player +r.gnavi.co.jp##.js-appealPointToast +##.ad-filmstrip +||strangeclocks.com^ +||10desires.com^ +qianhua.biz###framelzHoHY +cartoonpornvideos.com,youngpornvideos.com##.ads-mobile +/wp-content/plugins/noadblock-nice-message/* +||egadfe.xyz^ +e-hotelarz.pl###page > .pws-reklama+ br +||finalizeforce.com^ +@@||cdn.lib.getjad.io/prebid/$domain=purepeople.com +##.adbetweenarticles +rajapack.hu,rajapack.de,rajapack.de,rajapack.*,raja.fr#$#.nanoModalOverride { display: none !important } +||coursewimplongitude.com^ +pr0gramm.com##.side-wide-skyscraper +otoko-honne.com,kijolifehack.com##.osusume_box +@@||static.adsafeprotected.com/skeleton.gif?*adunitid= +skidrowcodexgame.com##.footer-sticky +||libertystmedia.com^ +tempmail.plus##.main-mob-top-horizont +||laleggepertutti.it/wp-content/themes/llpt-child/images/banner/ +||thukimoocult.net^ +littletravelsociety.de#$#.exit_intent { display: none !important; } +||hentai2w.com/templates/default/js/ab.functions.js +||gt.yy.com^ +||adxchg.com^ +||xqeoitqw.site^ +home-series.to###bt-ads +gbnews.com##div[style="display: none !important;"] + p[style="display: none !important;"] + p:has(> br:only-child) +||chengzijianzhan.cc^$subdocument,third-party +##.outbrain-content +careeraddict.com##.sticky-share-box-outer +$cookie=adb,domain=iprima.cz +||cgeckmydirect.biz^ +||daybreakarchitecture.com^ +indiansexstories2.net,issstories.xyz#%#//scriptlet("set-constant", "history.pushState", "noopFunc") +&pbsubid=*&noads=$all +5-tv.ru##.pageBranding +||fdyacma.icu^ +imdb.com##.cornerstone_slot +##.advertisement_box +infranken.de##.cc_banner-wrapper_FB +aksam.com.tr###bottomrightside > a[href*="/app"] +legit.ng##div[class^="l-adv-branding__"] +###gadsOverlayUnit +cannondale-bikes.hu,cannondalebikes.pl,cannondalebikes.sk,cannondalebikes.cz###cookie_eu_bar +@@||cdn.consentmanager.mgr.consensu.org/delivery/cmp_*.min.js$domain=blastbrigade.com +||abasshowish.guru^ +||federalcertainty.com^ +frag-mutti.de###signup-popup +||doscarredwi.org^ +||astrill.com/bnrs/ +upornia.com,upornia.tube##.wcccswvsyvk +58pic.com##.activitySettings-Fixed +||loadshare.org/custom/VideoID-*/*.mp4$domain=fusionmovies.to +@@||p.d.1emn.com^$script,domain=hotair.com +@@||gogoplay*.com/streaming.php$domain=kickassanime.ro +vice.com,wccftech-com.cdn.ampproject.org,m-businesstoday-in.cdn.ampproject.org##.amp-ad +@@||sc2casts.com^$generichide +||cba.cda-hd.co^ +||walla.co.il/cdn/swordfish.js +krebsonsecurity.com###sidebar > div[style="margin-left:0px;"] +||mouesdefaces.click^ +||bephungoagno.com^ +||stat.ts.cn^ +igrit.pl##.section-inside-py +.com/2?z=$script,third-party +tabelaofert.pl#$#body:not(.ReactModal__Body--open) { overflow: auto !important; position: static !important; } +new-123movies.live#?#script + div[class] div[id]:has(> a[href="/user/profile/premium-membership"]) +gamesindustry.biz##.jobs-widget +||serinuswelling.com^ +@@||static.ak.crunchyroll.com/versioned_assets/js/components/ads_enabled.ac6fa3aa.js +neeva.com##div[class^="app-layout__column"] > div[style="--group-height:238px;"] +||8544.5clo0xmbf.com^ +##a[href^="https://voluum.prom-xcams.com/"] +##.ads_box_type1 +||absoluteroute.com^$popup +radio.at,radio.de,radio.dk,radio.es,radio.fr,radio.it,radio.net,radio.pl,radio.pt,radio.se##div[class] > div[class]:has(> div[class] > div[id^="RAD_D_"]) +##.mobile-ads +||neekstore.com^$third-party +iqiyi.com##:not(.qy-index-page) > div[id^="100000"] +british-birdsongs.uk#%#(function(){var b=window.setTimeout;window.setTimeout=function(a,c){if(!/\]\.bab\(window/.test(a.toString()))return b(a,c)};})(); +||juiceadv.net^ +freeomovie.to#%#//scriptlet('abort-current-inline-script', 'String.fromCharCode', 'shift') +world4.eu##.protectionOverlaytext +||ttdpxh.xyz^ +lavozdegalicia.es##.newsletter_advice +||mrmnd.com^ +||delivery49.com^ +||physicaldividedcharter.com^ +heliasport.cz###js\:cookies\:barInitWrapper +@@||www.google.*/search?$generichide +||faulterdeplume.com^ +icegay.tv#?#.b-secondary-column__randoms > div.b-head > h3:contains(Sponsored) +###ad-r +||assbwaaqtaqx.com^ +||contextads.live^$third-party +||hentaiboner.com/wp-content/uploads/2022/07/hentai-boner-gif.gif +91.230.121.24#$#html { overflow: visible!important; } +||turtle.geshem.space^ +.php*&sadbl=$domain=vipbox.* +hannaford.com#?#.header-2:-abp-contains(Sponsored Suggestions) +nomura.co.jp##.sns_follow +||messengers.insales.ru/widget/script.js$domain=xn--80aaadf9a6agjohr9n.xn--p1ai +##.ad-inline-article +teachinghand.com##.actions__wrapper +||datedate.today^$popup +3hentai.net#%#//scriptlet("prevent-window-open") +tw.myrenta.com#%#//scriptlet('set-constant', 'DisableDevtool', 'noopFunc') +##.ad-links +||sbboppwsuocy.com^ +wired.com##.consumer-marketing-unit--cm-footer +asda.com##.co-product-list[data-module-type="HookLogic"] +||staureez.net^ +erecipe.woman.excite.co.jp##.appdl_container +community.spiceworks.com#$#.join-login-wrapper.join-login-alt--six-second[data-alt-modal] { display: none !important; } +||frictionterritoryvacancy.com^ +||sirwcniydewu.com^ +159i.com##.aa +m.odds.am###cookies-menu +lodzkisport.pl##div[class^="zajawka-"] +||0542cd0873.94a1b78c82.com^ +||hghit.com^ +epinv.com##A[href="http://www.epinv.com/post/10450.html"] +||rtbadsmya.com^ +sportano.*##body.cookie-overlay-active::after +geeksforgeeks.org##.text > h3[style="text-align:center"] +netbardh.com##.js-static[data-position="3.3"] +@@||bookwalker.com.tw/images/p_img/pc_ad*.png$~third-party +##.sponsoredlink +||titan007.com/js/indexshow. +theatlantic.com#@#.sponsored +||lifeimpressions.net^ +||aoji.cn/static/js/pushadv.js +###aom-ad-top +weblium.com##a[href*="&utm_campaign=banner_make4hour"] +###dfp_ads_5 +||212ehae.fun^ +games4king.com#?#.top_container > #home_right > .adsbygoogle:upward(1) +||tartator.com^ +||audioknigi.club/templates/skin/aclub/js/m/bgd.js +la-croix.com###batchsdk-ui-alert-container +infographicjournal.com#?#.et_pb_module:-abp-contains(Partners) +||deiformnael.click^ +##.cookieBarContainer +tennistemple.com#$##header_height[style="height: 110px;"] { height: 50px!important; } +cheater.ninja#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +fitdynamos.com##body > a > img +##.post-title + .metadata + .entry > div > div > a[href^="/"][href$="/"] > img +skyracing.com.au##img[src^="/assets/website_images/images/Advertisements/"] +##.adslotleft +||refilmsbones.top^ +airchina.com.cn,volvocars-partner.pl,stalirov.lawyer,billetter.drammensbadet.no,subtleartmovie.com,contexto.io,twojpsycholog.pl##div[class^="cookies_"] +||1.y2sysv81v.com^ +bizjournals.com##div[data-dev="AppFade"] +forbes.com##.rtb-top-wrapper +||manga18fx.com/tkmo2023/ +factcool.com#%#//scriptlet('set-cookie', 'cookieconsent_dismissed', 'yes') +@@||edghst.me/*.m3u8$stealth +||738atf.xyz^ +||bilibilijj.com/image/right_bottom.gif +speakingtree.in,m.gadgetsnow.com##.amazon-box +cgm.pl##.bsaPopupWrapperBg +###adrights14 +||sravga.xyz^ +||04-f-bmf.com^ +amurmedia.ru##.position-fixed.bottom-0 +||bollyocean.com^ +||9i8i.com^ +||losespiritsdiscord.com^ +spaldingtoday.co.uk,stratford-herald.com,granthamjournal.co.uk,fenlandcitizen.co.uk,cambridgeindependent.co.uk,advertiserandtimes.co.uk,northern-scot.co.uk,suffolknews.co.uk,kentonline.co.uk#$#.mpu { position: absolute !important; left: -3000px !important; } +##.col-ad +salonsecret.ru##div[class^="Cookie_root__"] +||omgt4.com^$popup +drop.com#%#(function() { try { if ("undefined" != typeof localStorage) { localStorage.setItem("lastTriggeredSignUpType", "triggered_pdp") } } catch (ex) {} })(); +||singapore.aomg5bzv7.com^ +||imgadult.com/ea2/ +@@||cdn.privacy-mgmt.com/wrapperMessagingWithoutDetection.js$domain=cielotv.it +##.bannerAdSidebar +||fv77e.icu^ +h5.17k.com#$#body { overflow: visible!important; } +keepvid.com##div[style="width:728px;text-align:left;padding:0px;margin:0px auto;"] +winfuture.de#$##container { margin: auto auto!important; } +repertuarim.com##.warning.cookie +||modsfire.com/js/alt/gjd3a12.js +||zcaadfl.com^ +||cpm.saroadexchange.com^ +||skdaj.cn^ +avxhome.in##a[href^="http://www.airbnb.ru"] +solintel.com.br###lgpd_floating +onitsukatiger.com###tealiumCookieBanner +##.blogroll_wrapper3 +||junmediadirect1.com^$popup +privado.com##.sponsored-mainline +||xoilactvcj.cc^$document +people.com.cn##.ipc_none +||fhsmtrnsfnt.com^ +newser.com###DivStoryAdContainer +@@/ad-provider.js$xmlhttprequest,domain=veev.to +@@||static.elfsight.com^$third-party,domain=cafemarta.ch|trestlebrewing.com|taube-rankweil.at|savearizonafund.com|avproedge.com|spiceandcurry.ca +yingav.net##.offer_intro +||prettyincash.com/premade/ +||instancesflushedslander.com^ +@@||concertads-configs.vox-cdn.com/sbn/verge/config.json$domain=theverge.com +campbellsci.com#@##cookie-consent +politico.com##.content-heading:has(> div > h2 > a[href="https://www.politico.com/newsletters"]) +scienceabc.com##.code-block-5 +||tv7oehyiet9c7dnw.833enmhob.com^ +||locust.ausrebellion.earth^ +timesofindia.indiatimes.com##a[href="https://recipes.timesofindia.com#newsletter"] +fijivillage.com#?#.contentleft > p > small:contains(/^ADVERTISEMENT$/) +||caranddriver.com/inventory/ +||203.195.121.34^$popup +wired.com##.sponsored-stories-component +||flakeschopped.com^ +mydown.yesky.com##.leftGg +||3mhg.online^ +||shen4club.com/style/*.js?v= +||thanksgivingdelights.name^ +qyer.com###zpui-head-ad +||www.l5eamr17d.com^ +tieba.baidu.com,wapp.baidu.com##a.fixed_bar +#@#.ad-space +prohardver.hu###center >.cntcolumn > .anyag.hir > div[class*=" "] > h4 + [style^="width: calc("][style*="height: calc("] +||vinelethoner.com^ +healthline.com##.css-15wdjsy +iqos.com#@#.cookies +revuestarlightre.com###sidebar-scroll +audiokarma.org##.message > center b +||ye120.com/swt.js +||whitehalfabrr.club^$all +fonepaw.com##.widget + div[class*="promotion"] +||guhai.com.cn/AD/ +##.adtc +moemax.de#@#.cookie-bar +coinsrev.com#%#//scriptlet("abort-current-inline-script", "decodeURIComponent", "_0x") +bbc.com###leaderboard-aside-content +erogazoo.net##header > div#t_area +##.ad_bgskin +||vertoz.com^$popup +tiktok.com##div[class*="DivCookieBannerContainer"] +52youpiao.com##div[style^="position:fixed; right:40px;"] +lk21official.shop##.notice +bhaskar.com,divyabhaskar.co.in#?#div[class][style^="position:"] > div[class]:has(> a[href^="https://play.google.com/store/apps/details?id=com.ak.ta."]) +acronymfinder.com##img[style="max-width:728px;width:100%"] +||zlyk.com/Runtime/Js/m_footer_top.js +||beegrenugoz.com^ +||shark.getplayback.com^ +rule34.paheal.net##section[id$="main"] > .blockbody:has(> div[align="center"] > ins) +||player.daznservices.com/player/releases/v*/unfilled/popup.chunk.js$domain=goal.com +||spacenine.biz^$third-party +##.ad_side_box +hltv.org##.gen-firstcol-box +||4438x*.com/Runtime/js/ +###fc_foot > #f_skyf +teufel.de#$#.data-privacy-layer-visible { overflow: auto !important; } +numbuster.com###page_cookie_menu +###bottom-adhesion +||searchencrypt.com/public/amzBanner.png +cmp-sp.torgauerzeitung.de#%#//scriptlet('remove-attr', 'disabled', 'button.sp_choice_type_SAVE_AND_EXIT') +gem.cbc.ca#%#//scriptlet('set-cookie', 'gem_cookies_usage_production', '1') +||0d785fd7.xyz^$document,popup +online-stopwatch.com##div[class^="publift-"] +volt-index.ru#%#//scriptlet("abort-current-inline-script", "jQuery", "oncopy") +designevo.com##.cookie_ban +ch3plus.com##.home-lightbox +toro.it#%#//scriptlet('remove-class', 'vjs-floater-parent|vjs-top-parent-mobile', '#iol_player_container') +||a0905c77de.com^ +||publicdomaintorrents.info/grabs/hdsale.png +comparitech.com##.ct089 +breathofthewild-link.com#?#div[id^="cc-matrix-"] > div.j-htmlCode:has(> ins.adsbygoogle) +||nabauxou.net^ +||pless-intermedia.pl/public/slajdy/html/*.html$subdocument,domain=bielskiedrogi.pl +||yonsandileer.com^$popup +edurev.in##.dsk_ftr_lgn_gp +||178.com/glr.js +jiwasoku.com###pcpc-rss +###ad-ads +||dipodesoutane.shop^ +malijunaki.si#$##cookies { display: none !important; } +||rtklive.com/sq/marketing/files/$image +itscybertech.com#%#//scriptlet("adjust-setInterval", "btn", "", "0.02") +||grasshusk.com^ +ruanyifeng.com##a[href*=".kaikeba.com"] +||xu5ctufltn.com^ +||cjekfmidk.xyz^ +||tq-eu.starvalue-3.online^ +||player.twitch.tv^$domain=aetherhub.com +dongknows.com##.dkt-amz-deals +##.after-intro-ad +||sciadopi5tysverticil1lata.com^ +bannedbook.org###header_1_2 +||studyguideindia.com/support/images/placead.png +r-bloggers.com#?#.sb-right > div.sb-widget:has(> h4:contains(Sponsors)) +##.c-ad-flex +booking.com#?#div[data-testid="property-card"]:-abp-has(span:-abp-contains(Promoted)) +informer.com##.b-content-btm > table[style="margin-left: -5px"] +##.site-cookies +economictimes.indiatimes.com###googleshowbtm +||utclient.utorrent.com/offers/mac-ut-adfree/i18n/en/offer.json +@@||wejhrtlhjkltvicuiuyd.b-cdn.net/ads/ads.js +lspdfrcn.com###cancms_float_bar_fixed_bottom +##.U210-adv-column +usatoday.com###acm-ad-tag-lawrence_dfp_desktop_arkadium_after_share +aol.com#@#.topAd +||adserve.bongocdn.com^ +up-4ever.org##center > a[type="button"][onclick] +pepco.cz,pepco.pl###js-pepco-cookies +||tigershark.vandevliet.me^ +||lavatoryhitschoolmaster.com^ +rule34.xxx##.nutaku-mobile +mangatale.co##.blox > a[href*="?ref="] > img +fwwang.cn###n_s_300250 +||wnacg.*/data/ds/ +||hj.faggotbovidae.com^ +investing.com#?#.wrapper div > div.OUTBRAIN:upward(1) +@@||wisr.tech^$stealth +saiyasune.com#?#div[class]:has(> div[id]:contains(アプリ版なら)) +byrdie.com#$#.mntl-leaderboard-spacer { min-height: 0 !important; } +scores24.live#?#body > div#root > div:last-child:has(> div > a[href*="/p-rules"]) +||wuxlvvcv.com^ +grammarcheck.me##.lasso-display-table +ask.fm#$#.app-store-banner{ display:none!important; } +##.ad--mid +ati.su##div[data-app="splash-screen"] +||identityrudimentarymessenger.com^ +kentonline.co.uk#$##meterNagBG { display: none !important; } +edeka.de#$#.touchevents {margin-top: 0!important; } +||special-offers.online^ +||mariannestanding.com^ +sporcle.com###quiz-right-rail-unit +||eclipse-adblocker.pro^ +baidu.com##div[id^="toast"] +tripadvisor.com#?#.tkvEM:-abp-contains(Sponsored) +livecamcroatia.com##section[class^="newsletter_wrap"] +lance.com.br##div[class*="newsLetterContainer"] +/videoad. +ifeng.com##div[class^="slideBannerBox"] +||existenceprinterfrog.com^ +||10d01c2460.3dba238763.com^ +lamiareport.gr##.head728 +/wp-content/plugins/automatic-social-locker/* +scanner.thetimetube.com#%#//scriptlet("set-constant", "gadb", "false") +blunt-therapy.com#?#.elementor-popup-modal:has(> div[class] div.elementor-field-type-email) +||likemore-fe.go.mail.ru^$domain=mhealth.ru +logicool.co.jp#$#.email-subscription-modal { display: none !important; } +slashdot.org##.deals-wrapper +##.Ad-label +##.jsv-layer > .image > a[href^="http"] +/cookies-directive. +||owkmmo.xyz^ +##.wp-block-xwp-newsletter-subscription +ipv6.baidu.com,www.baidu.com,www1.baidu.com,xueshu.baidu.com##div[tpl^="ecl_health"] > .c-border +||wroteeasel.com^ +gbnews.com##.video-inbody +housing.com##.ad_pushup_subtitle +||onosyej.icu^ +##.sqs-popup-overlay +atlas.ru#?#body > div[id="__next"] > div[class]:has(p > a[href="/rules"] ~ a[href="/privacy"]) +glosbe.com##div[id*="Trufle"] +||kaoyan.com/__pub/shop_book.html +||hb.yahoo.net^ +sportowefakty.wp.pl##.section__separator +||ynfxxbp.xyz^ +||magicallyitalian.com^ +@@||yastatic.net/yandex-html5-video-player-bundles$stealth +shineads.in#$#body { overflow: auto !important; } +pictoa.com##a[href="https://www.pictoa.com/o/live-footer.html"][rel="nofollow"] +traum-ferienwohnungen.de#%#//scriptlet('trusted-set-cookie', 'cookie_preferences', '{"necessary":true,"functional":true,"analytics":false,"marketing":false}') +##.mb-list-ad +##.in-text__advertising +eduelo.pl###purePopupWrap +fitatu.com###cc_div > div[id="cm"][role="dialog"][class^="bar"] +courseforfree.net,coursecatalog.us,uygunpencere.com##.wptwa-container +||dahe.cn/indiboy/ads/ +##.content_left_advert +nbcnews.com##.video-container > div.jw-flag-floating > * +||diametersunglassesbranch.com^ +||hornet.amandaheal.com.au^ +||xhamsterpremium.com^$third-party +slidehunter.com##.sticky > .ad +livsmedelsverket.se#$#body.lock-scroll { overflow: auto !important; } +||mtb-news.de/news/*/Radon_ +||maxcdn.dmm-video.online^ +||ad-back.net^ +###wrapper_sponsoredlinks +bbva.es#$#html > body { opacity: 1 !important; } +||psapailrims.com^ +/img_ad/* +||creojnpibos.com^ +@@||ddys.*/wp-content/plugins/hashbar-wp-notification-bar/assets/js/analytics.js$xmlhttprequest +||hpacdn.bestadload.com^ +360game.360.cn##[class*="banner"] +###right-ads-rail +tuivillas.com#$##cookie-consent-extended { display: none!important; } +||depressedchamber.com^ +||vitalpoint.cz/static*/cookie/ +novel.prcm.jp##app-web-to-app-campaign-banner +||vkspeed.xyz/*/vast.js +investing.com##.ad-free-stripe +##.partialViewSlider-outerwrapper +||bnmjjwinf292.com^ +||oundhertobeconsi.com^ +instacart.com##.shoppable-list-a-las2t7 +ge-soku.com##.mainbottom-widget +apps.jeurissen.co##.cja-landing__content > .cja-sqrimage +xcar.com.cn###show_car +receive-a-sms.com#@#ins.adsbygoogle[data-ad-client] +||uqmmfpr.com^ +jav720.net##.video-player-area > center +##.adsense300x250 +||199.180.100.185/love44^ +||roqiwno.com^ +||signingdebauchunpack.com^ +||lemida.xyz^ +egamersworld.com##.forecast-btn +skousen.dk,skousen.no,whiteaway.com,whiteaway.no,whiteaway.se#%#//scriptlet('trusted-click-element', '#cookie-information-template-wrapper .coi-button-group > #declineButton') +udn.com###ec +logitechg.com,legit.ng,mobileplanet.ua,babychakra.com,games.mail.ru,citydog.io,citydog.by,rusplt.ru,skyeng.ru##.email-subscription +ddooo.com#?#span:-abp-has(>p:-abp-contains(高速)) +@@||github.com/AdguardTeam/ +thecrownestate.co.uk##.pop-up-banner +gucheng.com##a[href*=".liaogu.com"] +finam.ru##.arni-button-container +||bestreceived.com^$document +||adcentrum.net^ +itweb.co.za##.itw-ad +javsex.vip,pornsexxxer.com##.prefix-player-promo-col +thelallantop.com##.deaktop-header-ad +squallchannel.com,2chnewsblog.blog.jp##.article-body-more > a[target="_blank"] +dasding.de###modal-whatsapp + .modal-backdrop +||cdn.stray228.com^ +holymanga.net##.svl_ads_right +portalsamorzadowy.pl##.sad +etxt.biz##.mod-cabinet__sidebar-adv +pcwdld.com###ct-popup +axar.az##.smartbee-adv +zerohedge.com##.left-rail +||dialling-abutory.com^ +##.ads-top-fixed +timeout.com##div[class^="_overlay"][data-component="popup-newsletter"] +curseforge.com##.project-description [href^="/linkout?remoteUrl="][href*="bisecthosting.com"] > img +||mybjx.net/theme/default/js/common/bjx_service_ +||afgr1.com^ +||flockinjim.com^ +||zm232.com^ +eoshop.cz##.coonfirmoptout +||8472fcb80c.cb57b3bd09.com^ +duit.cc#$##ignielAdBlock { display: none !important; } +4shared.com##.sideRekl +terra.com.br##div[data-button-url="#cookies"] +||bc.coupons.com^ +forum.mobilism.me#?##pagecontent > table.tablebg > tbody > tr[class^="row"]:has(> td.profile td.postdetails:contains(The Advertiser)) + tr[class^="row"] +renfei.net#$#.ant-modal-root { display: none !important; } +||icalnormaticalacyc.info^ +newindianexpress.com##.morefrom +winaero.com###content p:has(~ ins.adsbygoogle) +5555op.com,router.houzi-blog.top##.img +lifehack.org##body .adsbygoogle +||jianxun.io/ad/ +hltv.org#%#//scriptlet("remove-attr", "data-href", "body") +###adSenseWrapper +veporn.com##.sidebar > div.widget_text +xxxmovie.link##.sidban +sitepoint.com##._ap_apex_ad-container +||shauladubhe.com^$popup +||bt1.patexplorer.com^ +solarmovie.one,solarmovie.cr##.fkplayer +docsmall.com#$#body { overflow: auto !important; } +dovolena.cz##div[class^="Cookies_wrapper"] +||8po6fdwjsym3.com^ +||cdn.turboviplay.com/ads.js +@@||webmail.smartlinkcorp.com/dotrans_20160909.php +###taboola-below +@@||st.pussyspace.com/style/10/img/logo.png| +||wp.com/i.imgur.com/O9R5Ahq.gif +smashystream.com#%#//scriptlet('prevent-addEventListener', 'DOMContentLoaded', '__Y') +torlock.com##article > .table-responsive:has(> table > tbody > tr > td > div[style] > a[rel]:not([href*="torlock.com/"],[href^="/"])) +##.top-adspace +||cache.picxxxhub.com^ +||s.xintube.us^ +||sutekinakijo.com/js/kijinakashitamigi.js +||adlux.com^$third-party +cartoon18.com,pornbest.org,ptt.sex###links +||feintelbowsburglar.com^ +searchenginejournal.com##div[id^="Top_Dekstop_"] +||mndvjhg.com^ +videocardz.com##.google-sidebar +theweek.in##.pay-ad-box-wrapper +beef1999.blogspot.com#?##boz_av_bottom +sussexexpress.co.uk##.cIffkq +onlymen.cz#$#.adsbygoogle { position: absolute!important; left: -3000px!important; } +pimpandhost.com##.aablock +||toffeebigot.com^ +curseforge.com##.rev-container +camwhores.tv##.fh-line +epicload.com###popconlkr +1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.j_l_post:not([data-field]) +videolike.org###mgid +videohelp.com#?#div[id] * > a[href^="https://go.nordvpn.net/aff_c?"]:upward(1) +9koala.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +@@||cloudfront.net^$domain=postype.com,stealth,image +||jeperdee.net^ +||static.livingmagonline.com^ +||ungiblechan.com^$document +##.bump-ad +erostopics.net##.head-under +||cdn.2024jphatomenesys36.top^ +||hangnailamplify.com^$popup +||findromanticdates.com^ +aajtak.in##.stoybday-ad +:99/js/ads/ +/cmp/cmp.js +tigtag.com##div[id^="Home942x70_"] +alchetron.com###alchetronFreeStarVideoAdContainer +24nyt.dk##.tnp-leads-topbar-show +hellomagazine.com##.-variation-robapaginas +inbank.pl,klett.de#$#body { overflow: visible!important; padding-right: 0!important; } +||trafficman.io^$third-party +bsh-group.com#$#body { overflow-y: visible !important; } +medal.tv##div[class^="StyledGrommet-sc-"] div[class^="sc-"]:has(> div[class^="sc-"] > div[class^="sc-"] > [class^="sc-"] > button > div[class^="StyledBox-sc-"][style="margin-inline-end: 10px;"]) +###ad-head +||75616927db.6096db9a2b.com^ +onmpeg.com,some.porn##.fluid_html_on_pause_container +majorgeeks.com##.geekycolumn > b > font[color="#000000"] + a[rel="nofollow"] +||uproarglossy.com^ +interia.pl#$#div[class^="box ad box"] { position: absolute !important; left: -3000px !important; } +||jodl.cloud^ +||getarrectlive.com^$popup +/assets/jquery/jquery-1.4.3.min.js?v=2&type=adult +nftnow.com##.sidebar__newsletter +diag.pl###cookie-agreement-window +||taozi888.com/a*.js +oemdtc.com###sidebar > .ai_widget > .code-block > a[href][target="_blank"] > img +##.ad300Block +||donkstar2.online^$document +||scripts.pubnation.com/tags/gdpr/ +stackoverflow.blog###teams-promo +crowdfox.com##.cookie-banner-info +instagram.com#$?#div[class]:has(> div[class]:first-child > a[href="/explore/people/"]) { position: absolute !important; left: -3000px !important; } +tubagliwic.pl#%#//scriptlet("abort-current-inline-script", "$", "adshowed") +||jingyanlib.com/home/data/getAdOnlineList? +||burntarcherydecompose.com^ +safelink.miuipedia.com#%#AG_defineProperty('safelink.adblock', { value: false }); AG_defineProperty('safelink.counter', { value: 0 }); +focus.de#$#.cls_videoRecoCT > div > div[style*="width: 360px; position: fixed;"] { position: unset !important; } +firefox.com.cn,firefoxchina.cn##.sd-promote +||bkill.com/css/js/abcbl.js +accuweather.com#@#.connatix-player +stackabuse.com##.sidebar a[ga-event-category="Sponsorship"] +||creative.live.javhdporn.net^ +m.blog.naver.com,filmzone.com,habuteru.com,allaboutshaving.kr,pcprogramasymas.net,panda-novel.com,legionscans.com,toonvideos.net.in#$#html { -webkit-touch-callout: default !important; -moz-user-select: text !important; -webkit-user-select: text !important; -ms-user-select: text !important; -o-user-select: text !important; user-select: text !important; -khtml-user-select: text !important; } +nanoreview.net##article > div[style^="margin-bottom:"] > div[style*="height:"] +||fksnk.com^ +winfuture.de#?##rightWrap > div.rightBx:has(> div.rightBx_btm > a[href="/beispielnewsletter.html"]) +||pepperunmoveddecipher.com^ +beautyass.com##.g-link +||owl.gymme.nl^ +kinomax.ru#%#//scriptlet('trusted-set-local-storage-item', 'banners', 'true') +##.ad_text_links +enerjisa.com.tr###fhr-cookie-bar +guelphmercury.com##.offcanvas-inner > .tncms-region +88448.com###ad_forum_banner +ecvip.pchome.com.tw,24h.m.pchome.com.tw#$##smartbanner[class*="shown"] + #WRAPPER .block_H { top: 0 !important; } +||bvnjeqa.xyz^ +||hxsxw.com/hx8899/$image +g.pl###banP99_DFP +||interclics.com^ +||fidelius.cn^ +||15223102.xyz^$document,popup +gtv.com.pl#@#.panel_cookie +||adcheck.about.co.kr^ +ncsoft.jp###ncCookieAlert +||viewsoz.com^ +||redirectlinker.com^$popup +||ugricmoist.com^ +pherotruth.com##.headerad +tipsport.cz##div[class^="Consentstyled__Banner"] +memexie.com##div[style^="width:9"][style$="#C8E4F0"] +||isabellagodpointy.com^$popup +megagames.com#%#//scriptlet("set-constant", "jQuery.adblock", "false") +/dy_66jjss/* +||avvelwamqkawb.top^ +thefix.nine.com.au##.latest-feed__ad +colorescience.com##.gobot-overlay +||c1km4.com/mobile/app.js +iogames.space##.banner-ad-contain +||goal.az/uploads/promotion/ +||crackshash.com/dc.php?$popup +||darkerprimevaldiffer.com^ +||umwcyw.xyz^ +||beead.co.uk^$third-party +sporcle.com##.main-content-unit-wrapper +theinternetpatrol.com##.adsbygoogle ~ table[width="350"] +||admin.redpathmedia.com^ +tubedupe.com##.fp-ui-inline+div[style] > iframe +kp.ru##.serial-content__subscribe-wrapper +||dz4ad.com^ +ladyblog.me###block-25 +||iceporn.com/player_right_ntv_ +||described.work^ +memoryhackers.org#%#//scriptlet("set-constant", "adsbygoogle.length", "undefined") +2ip.io,2ip.ru#$#.advMenuTab { visibility: hidden !important; } +###cookie_notice +##.searchAds +||widget.hireaiva.com^$third-party +##.gnm-adhesion-ad +lenouvelliste.com#%#//scriptlet('prevent-fetch', 'pagead2.googlesyndication.com') +||tinypass.com^$domain=ynet.co.il +||evidentoppositepea.com^ +@@||cdn.nlark.com^$image,stealth,domain=yuque.com +pornhub.com##a[href^="https://www.uviu.com"] +ghoffice.com,ksbbs.com,kshot.com##[id^="ads_"] +||abc.hkepc.net^ +||blueseed.tv^$third-party +chartoo.in,chartoo.de,chartoo.com##aside#ej +shareae.com###dle-content > div.block > center > a[target="_blank"] > * +||wsj.com/assets-proxy/intdoaq +###homepage-header-ad +pureinfotech.com##.top-rvzone +@@||nvidia.cn^*-300x250- +alibabacloud.com##.b-alicloud-bottom +||ewxufqs.cn^ +teamliquid.net##div[style="margin-top: 2px; margin-bottom: 2px; height: 250px"] +extra.cz#%#//scriptlet('set-constant', 'windowWidth', '300') +rising.cn###pageflip +||adultadworld.com^$third-party +mentoday.ru##.app-popup +pcgamer.com###article-body > .future__jwplayer--carousel +sohu.com#?##allseeList > .allsee-item.bd-wrap:has(> div > script) +##[href^="http://www.mypillow.com/"] > img +forum.release-apk.com##div[data-phpbb-ads-id] +hentaiporn.tube,naughtyhentai.com##.friends +||epacash.com^ +||basisvoting.com^ +||cdn.munilf.com^ +rynekzdrowia.pl#?#.right > div[class^="box-"]:has(> small:contains(PARTNER)) +||rememberdiscussion.com^ +governing.com#%#//scriptlet('trusted-set-cookie', 'adTakeOver', 'seen') +eastday.com##.news-promote +radio-canada.ca##.g-alert-cookie +lowfuelmotorsport.com#?#elastic-dashboard-socials div:has(> small:contains(powered by)) +||chnvgdkw.xyz^ +h2-mobile.fr##.modal-backdrop +interior-hirade.co.jp#@#.ad_bg +mountathletics.com,nltimes.nl##.ath-viewport +@@||scyts.com^$generichide +chomikuj.pl##div[id^="acceptChomikujTerms"] +||wenoolgo.icu^$all +yandex.*##.b-page__content > div.prevention +thegreekz.com###purr-container +habr.com###effect-sidebar +###footer_adv +##.outbrain-ad-slot +||voluumtrk3.com^$popup +@@||cdn*.vb*rexhammond.pw/stream*/cdn*$stealth +||zlclgzs.cn^ +||gamecocksonline.com/*/adblock-modal.js +/js/wlfloat.js +||strivesquirrel.com^ +||subduegrape.com^ +ukutabs.com###howtoreadbutton +||upload.cc^$domain=141jj.com|mizhiav.com +##[href^="https://mystore.com/"] > img +||tcaochocskid.com^ +jbzd.com.pl#?##content-container > .article:has(> .article-avatar.hidden + .article-content > .article-details > .article-info > .article-author > strong:contains(/^Reklama$/)) +blogtruyen.vn##div[style*="position: fixed;"][style*="z-index: 2147483647;"] +||idevaffiliate.com^$third-party +||sponsor-v2.lebtown.com^ +||cfdvd779.fun^ +||3dmgame.com/templets/common/show_js/show_js.js +||ocxihhlqc.xyz^ +@@||googletagservices.com^$script,domain=creaders.net +canalplus.com#%#//scriptlet('set-cookie', 'adsAllowed', 'false') +||d3tjml0i5ek35w.cloudfront.net^ +||shortssibilantcrept.com^ +||flower1266.fun^ +||whitesaas.com^$third-party +tv2.no##.tv2-ad +||*/ad/$redirect=noopmp3-0.1s,domain=huaren.tv +||rayonnesiemens.shop^ +###CNIL +||lancaster.aomg5bzv7.com^ +motor.es#%#//scriptlet('trusted-click-element', '#rejectAllConsent') +pelikone.fi#%#//scriptlet('trusted-set-cookie-reload', 'consentUUID', '21ad958f-7582-49b3-b243-b637a91e292c_25') +1password.com##div[data-testid="alert-banner"] +navitime.co.jp###app-invite-frame-renew +##.clearfix.col5.row > #listBox +||bbtta91.shop^ +avito.ru##div[class^="personal-discount"] +||kanoodle.com^$popup +baltnews.lt###policy-warning +@@||p.sky.com^$domain=wowtv.de,stealth=referrer +lidea.today##.linksFix__balloon +###ad-container1 +||adsforindians.com^ +sportsnavi.ht.kyodo-d.jp,sports.yahoo.co.jp,baseball.yahoo.co.jp,soccer.yahoo.co.jp##.sn-modBanner +||confrontationdrunk.com^ +||imgfeedget.com^ +||lemmaheralds.com^ +||cuisineomnipresentinfinite.com^ +latest-ufo-sightings.net##.wp-block-image a[href][target="_blank"] +###mpuWrapperAd2 +||n0355.com^ +###ad-top-banner +||mumoartoor.net^ +||aesxgy.xyz^ +viet-jo.com##div[style="width:99.5%;text-align:center;min-height:200px;height:auto"] +###medium-ad +elamigos-games.com##a[href^="https://track.wg-aff.com/"] +###adfooter_728x90 +###pub728x90 +||audiblereflectionsenterprising.com^$popup +javadecompilers.com#?#.row > .col-xs-12.col-md-5:has(>.row > .adsbygoogle) +@@||pjtra.com/b/$image,domain=extrarebates.com +||plusone8.com/ardexaae.php^ +||monetag.com^ +softasm.com##.the-ad-break +mhktricks.org##aside[id="text-3"] +###advertising_top_container +||vwdtyjygxap.com^ +##.desktop-ad-banner +###adzonebanner +||monstelenius.com^$third-party +||wtyusie.top^ +###advert_right1 +||willalland.info^$third-party +||acgshenshicha.cn^$third-party +||fuzzyincline.com^$popup +||okdigital.me^ +ksl.com#%#//scriptlet('set-constant', 'isSearchBot', 'falseFunc') +joe.ie##div[id^="div-gpt-joe"] +@@||upstreamcdn.co/hls/$stealth,domain=upstream.to +lista.mercadolivre.com.br##.brand-wrapper-desktop-new +wowcircle.com,wowcircle.net##.banner-corner +@@||wuyou.com.cn/Js/ad.js +hometheaterreview.com#?##page-sidebar > .ct-div-block:has(> .ct-code-block > div[id^="homet-ad"]) +$script,redirect-rule=noopjs,domain=insurancegold.in +m.airchina.com.cn###full-page > div.am-cf:has(> div#cookiesTips) +##style + .topd + .bottomd +||watchesthereupon.com^ +||acridtwist.com^ +thepiratebay.org#%#//scriptlet('remove-attr', 'href', '#home > header a[href^="https://"]') +hdpornlove.net##.player > div.play[onclick] +||onetouch22.com^$popup +jooble.org##.gdpr-consent-banner +||lambingsyddir.com^ +||ydstatic.com/dsp_website/ +||mabtcaraqdho.com^ +backup4all.com##.toast-bottom-right +||masontotally.com^ +||ekb-tv.ru^ +golem.de##.remp-banner +||rlittleboywhowas.com^ +totalav.com##.modal--free-download ~ div.modal__overlay +author.today#$#.page-content { -webkit-user-select: text !important; -moz-user-select: text !important; -o-user-select: text !important; user-select: text !important; } +vogue.com.au#?#div[class^="sc-"]:has(> div[style="display: none !important;"]) +cloudb.me##span[id^="ads"] +||prefecturecagesgraphic.com^ +||d2cq71i60vld65.cloudfront.net^ +@@||3d66.com/??*ad- +weatherpro.com,wordfinder.yourdictionary.com##.leaderboard-wrapper +||aiyuke.com/position_js*_*_ +##.footer-text-ads +kwejk.pl#$#.pub_300x250.pub_300x250m.pub_728x90.text-ad.textAd.text_ad.text_ads.text-ads.text-ad-links.adsbygoogle { display: block!important; } +dmarge.com##.post-infinite-ads +||update-mac.com^$all +###ad_banner_728x90 +anjuke.com##div[class$="-poster"] +||harusuki3.sakura.ne.jp/rss_reader.html +###below_content_ad_container +dictionary.com##.otd-widget__form +hindustantimes.com###divshopnowRight +||fakeporn.tv/js/z123.js +facebook.com,facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion#%#!function(){var e=new MutationObserver(function(){document.querySelectorAll('div[id^="substream_"] div[id^="hyperfeed_story_id"]').forEach(function(e){var n=e.querySelectorAll(".userContentWrapper > div[class] > div[class] > div[class]"),o=e.querySelectorAll(".userContentWrapper > div[class] > div > div span");if("display: none !important;"!=e.getAttribute("style")){if(0