├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── cjx-annoyance.txt ├── cjx-ublock.txt ├── cjxlist.txt └── issue_template.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | *.txt auto linguist-language=AdBlock linguist-detectable 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # ========================= 18 | # Operating System Files 19 | # ========================= 20 | 21 | # OSX 22 | # ========================= 23 | 24 | .DS_Store 25 | .AppleDouble 26 | .LSOverride 27 | 28 | # Icon must end with two \r 29 | Icon 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | **cjxlist说明**
3 | ---- 4 | **一、在电脑过滤广告的快速指引**
5 | 6 | **1、浏览器可选择:**
7 |   火狐正式版 [https://www.mozilla.org/zh-CN/firefox/all/](https://www.mozilla.org/zh-CN/firefox/all/)
8 |   火狐测试版 [https://www.mozilla.org/zh-CN/firefox/beta/all/](https://www.mozilla.org/zh-CN/firefox/beta/all/)
9 |   基于Chromium的Edge [https://www.microsoftedgeinsider.com/](https://www.microsoftedgeinsider.com/)
10 |   Chrome(需梯子) [https://www.google.com/chrome/](https://www.google.com/chrome/)
11 | 12 | **2、过滤工具可选择:**
13 |   安装浏览器后一般点右上>附加组件/扩展程序,然后搜索安装下面扩展:
14 |   Adblock Plus(ABP)、Adblock(ADB)、ublock origin(ubo)等。
15 | 16 | **3、规则方案建议:**
17 |   EasyList + Easylist China + EasyPrivacy + CJX's Annoyance List + chinese.txt或CJX's uBlock list (另外,如选择Adblock Plus请保留ABP filters.如选择ublock origin请保留"内置"栏目规则)
18 |   ABP用户: 请点击浏览器右上角的ABP图标>齿轮>高级>如果有 EasyList China+EasyList (compliance) 就点击右侧的垃圾桶取消订阅,再依次点击下面链接并确定。 19 | 20 |   **(1) EasyList (反广告主规则列表。主要面向英文网站,包含大量通用规则)**
21 |   [ABP ADB 点此订阅EasyList](https://subscribe.adblockplus.org?location=https://easylist-downloads.adblockplus.org/easylist.txt&title=EasyList "EasyList")
22 | [https://easylist-downloads.adblockplus.org/easylist.txt](https://easylist-downloads.adblockplus.org/easylist.txt)
23 | 24 |   **(2) Easylist China (反广告主规则列表的补充。主要面向中文网站)**
25 |   [ABP ADB 点此订阅EasyList China](https://subscribe.adblockplus.org?location=https://easylist-downloads.adblockplus.org/easylistchina.txt&title=EasyList%20China "EasyList China")
26 | [https://easylist-downloads.adblockplus.org/easylistchina.txt](https://easylist-downloads.adblockplus.org/easylistchina.txt)
27 | 28 |   **(3) EasyPrivacy (防隐私跟踪挖矿规则列表)**
29 |   [ABP ADB 点此订阅EasyPrivacy](https://subscribe.adblockplus.org?location=https://easylist-downloads.adblockplus.org/easyprivacy.txt&title=EasyPrivacy "EasyPrivacy")
30 | [https://easylist-downloads.adblockplus.org/easyprivacy.txt](https://easylist-downloads.adblockplus.org/easyprivacy.txt)
31 | 32 | ### FYI 33 | 34 |   **(4) CJX's Annoyance List (反自我推广,移除anti adblock,防跟踪规则列表)**
35 |   CJX's Annoyance List是"EasyList China+EasyList" & "EasyPrivacy"的补充。2015.2.4发布,过滤烦人的自我推广,移除anti adblock,并补充EasyPrivacy隐私规则.
36 | 37 |   推荐AdGuard提供的镜像.国内可用
38 | [https://filters.adtidy.org/extension/ublock/filters/220.txt](https://filters.adtidy.org/extension/ublock/filters/220.txt)
39 | 40 |   [需梯子.ABP ADB 点此订阅CJX's Annoyance List](https://subscribe.adblockplus.org?location=https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt&title=CJX "CJX's Annoyance List")
41 | [https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt](https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-annoyance.txt)
42 | 43 |   **(5 ABP专用) ABP小脚本 (CJX's Annoyance List的补充。不能订阅,看下文操作.)**
44 |   需要ABP 3.5.2以上,订阅无效,只能自定义.请访问上面网址,复制所有规则,再点击ABP图标 > 齿轮 > 高级 >`我的过滤列表`下粘贴.
45 | [https://cjx82630.github.io/cjxlist.html](https://cjx82630.github.io/cjxlist.html)
46 | 47 |   **(5 ubo专用) CJX's uBlock list (CJX's Annoyance List的补充。)**
48 |   这是"EasyList China+EasyList" & "EasyPrivacy" & "CJX's Annoyance List"的补充。2020.2.13发布.
49 | [https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-ublock.txt](https://raw.githubusercontent.com/cjx82630/cjxlist/master/cjx-ublock.txt)
50 | 51 | **二、在手机过滤广告的快速指引**
52 | 53 | **1、安卓平台:**
54 |   安装火狐及ubo需梯子:
55 |   安装火狐正式版 [https://www.mozilla.org/zh-CN/firefox/android/all/](https://www.mozilla.org/zh-CN/firefox/android/all/)
56 |   或安装火狐beta版 [https://www.mozilla.org/zh-CN/firefox/android/beta/all/](https://www.mozilla.org/zh-CN/firefox/android/beta/all/)
57 |   安装后点右上图标>附加组件>浏览全部Firefox附加组件>搜索安装ublock origin
58 | 59 | **2、规则方案建议:**
60 |   EasyList + Easylist China + EasyPrivacy + CJX's Annoyance List (另外,ublock origin请保留"内置"规则)
61 |   同上
62 | 63 | **3、iPhone和iPad:**
64 |   任选一个 [https://itunes.apple.com/cn/developer/eyeo-gmbh/id1015653329](https://itunes.apple.com/cn/developer/eyeo-gmbh/id1015653329)
65 | 66 | **三、如果有问题,请联系 `994722209@qq.com` 或 `cjxlist@gmail.com`**
67 | 68 | 69 | ### ELC 70 | *Adblock Plus用户可以往下阅读,能获得更多信息*
71 | 72 | **Easylist China中文列表说明**
73 | ---- 74 | **一、ABP过滤视频广告的问题**
75 | 76 |   因拦截视频广告在国内变得明显不合法,国内用户的默认规则列表不过滤视频广告,如需过滤请(点击ABP图标>齿轮>高级),删除EasyList China+EasyList (compliance),再(通过URL添加)两个过滤列表:
77 |   [ABP ADB 点此订阅EasyList](https://subscribe.adblockplus.org?location=https://easylist-downloads.adblockplus.org/easylist.txt&title=EasyList "EasyList")
78 | [https://easylist-downloads.adblockplus.org/easylist.txt](https://easylist-downloads.adblockplus.org/easylist.txt)
79 | 80 |   [ABP ADB 点此订阅EasyList China](https://subscribe.adblockplus.org?location=https://easylist-downloads.adblockplus.org/easylistchina.txt&title=EasyList%20China "EasyList China")
81 | [https://easylist-downloads.adblockplus.org/easylistchina.txt](https://easylist-downloads.adblockplus.org/easylistchina.txt)
82 | 83 |   还需自定义小脚本规则,请查看 [https://cjx82630.github.io/cjxlist.html](https://cjx82630.github.io/cjxlist.html) 复制内容到自定义(点击ABP图标>齿轮>高级>我的过滤列表下文本框)
84 | 85 | **二、EasyList China介绍**
86 | 87 |   在安装Adblock plus后会默认订阅EasyList China+EasyList。约1.5M,规则全面。EasyList是主规则,主要面向英文网站并包含EasyList China必须的通用规则。EasyList China,简称ELC,面向中文网站,是EasyList的中文补充规则。EasyList China在2014.3.21由Adblock Plus官方发布,主要包含原ChinaList、原cjxlist。原ChinaList在2008.4.24第一次发布,随后成为EasyList的中文补充列表。在2014.3.26停止维护。原cjxlist由CJX在2014.1.3发布,作为ChinaList的补充列表。在2014.3.21停止维护。
88 | 89 | **三、反馈广告或问题**
90 | 91 |   **反馈前必读:**
92 |   Easylist China为ABP扩展定制,部分规则在其它过滤工具上可能无效。
93 |   360,QQ等国产浏览器使ABP在部分网站失效,可试试换浏览器,比如火狐 [https://www.mozilla.org/zh-CN/firefox/all/](https://www.mozilla.org/zh-CN/firefox/all/) 或Chromium版Edge [https://www.microsoftedgeinsider.com/](https://www.microsoftedgeinsider.com/)
94 |   试试手动更新规则:点击ABP图标>过滤规则首选项>右键点击规则选更新;
95 |   有奇怪的弹窗或英文广告等:可能你电脑感染了恶意扩展(插件)或病毒木马.下载[AdwCleaner](http://www.bleepingcomputer.com/download/adwcleaner/)或者[malwarebytes](http://www.malwarebytes.org/antimalware/) 查杀.
96 |   出现弹窗:请返回出现弹窗的页面点击ABP图标反馈,而不是在弹出的窗口反馈。
97 | 98 |   **反馈途径:**
99 |   反馈中文网站的广告或误拦问题,请点击浏览器右上角的红色ABP图标,选择“报告问题”,会得到及时的回应。注意,某些多语言网站不以中文为主的,不属于中文网站,如twitch,youtube等
100 |   反馈给CJX个人`994722209@qq.com`或QQ群`233902062`
101 |   反馈英文网站或EasyList或EasyPrivacy或Fanboy's Social Blocking List的问题:请将网址发到`easylist.subscription@gmail.com`并英文描述
102 |   反馈非中英文网站的问题:请查看对应的语言列表[https://adblockplus.org/zh_CN/subscriptions](https://adblockplus.org/zh_CN/subscriptions)
103 |   如被"Malware Domain"规则列表误拦(此列表不属于ABP维护),反馈到`malwaredomains@gmail.com`
104 | 105 | ### Q&A 106 | 107 | **四、一些其他问题**
108 | 109 | **1、Easylist China有没有广告的白名单?**
110 |   Adblock Plus中文规则列表Easylist China致力于反广告,每天频繁更新以提高用户体验,不包含可接受广告的白名单,其存在于另一个规则列表,可手动关闭,即进入ABP设置,取消勾选“可接受广告”.
111 | 112 | **2、我的网站需要展示广告,怎么办?**
113 |   可以申请"白名单",请查看:[https://adblockplus.org/zh_CN/acceptable-ads#get-whitelisted](https://adblockplus.org/zh_CN/acceptable-ads#get-whitelisted) 可以自我推广;也可以用不影响阅读的方式提醒用户取消拦截。
114 | 115 | **3、如何撰写规则?**
116 |   [https://adblockplus.org/zh_CN/filters](https://adblockplus.org/zh_CN/filters)
117 | 118 | **4、为什么存在Fixed EasyPrivacy,Fixed Fanboy's Social白名单?**
119 |   有时EasyPrivacy会引发问题, 例如dwz.cn不能登录, taobao.com打不开等. 因为反馈给国外的维护者会耗费时间, 快则几小时, 慢则几天. 所以如果加白名单没影响过滤广告, 会在中文列表添加修正EasyPrivacy的规则. Fixed Fanboy's Social Blocking List同理
120 | -------------------------------------------------------------------------------- /cjx-annoyance.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Version: 202505251816 3 | ! Title: CJX's Annoyance List 4 | ! Last modified: 2025/05/25 18:16 +0800 5 | ! Expires: 4 days (update frequency) 6 | ! Homepage: https://github.com/cjx82630/cjxlist 7 | ! 8 | ! License: https://github.com/cjx82630/cjxlist/blob/master/LICENSE 9 | ! Supplement for "EasyList China+EasyList" & "EasyPrivacy" 10 | ! Removed Annoyances, Self-promotion & Privacy Protection on Chinese Websites 11 | ! Email (cjxlist@gmail.com) 12 | !--------------------------General blocking filters---------------------------! 13 | /wiseatom/banner/pack_ 14 | /bbs/include/javascript/adblock. 15 | /template/bingfeng/statics/js/pingbi.js 16 | -bobo_recommend_ 17 | /3dmgamegzh.png 18 | =mumumoniqi-piaochuang- 19 | /dongaogg/* 20 | /template/conch/asset/js/hlhtml. 21 | /live800. 22 | /loooyu.js 23 | /shenmago_download_app_ 24 | /source/plugin/yw_alertlogin/* 25 | /tb/_/video_frs_head_ 26 | /tencentvideo/script/webtips/* 27 | /tianya_recommend? 28 | /to8to_pc/chunks/slide_and_popup_ 29 | /wp-content/plugins/upprev/* 30 | /yksmartbanner. 31 | /z.zolapp. 32 | =Ad_ZPlusGoods& 33 | =window.awall.adblockwalltemplatefetchdef& 34 | !------------------------General element hiding rules-------------------------! 35 | ###doyoo_mon_mask 36 | ###doyoo_monitor 37 | ###recommend-float + .footer + .popup 38 | ##body.page > .popup 39 | ###rm-float + .popup 40 | ##.popup + .shortcuts-mobile-overlay 41 | ##.siteAnn1 42 | ###SOHU_MAIN > .module-cmt-float-bar 43 | ###appBottomIn 44 | ###appIn 45 | ###appqrcode 46 | ###bottomApp 47 | ###bottom_qr_code 48 | ###login_wp.foot_flwp 49 | ###qrcodeDownloadBar 50 | ###qrcodeWrap 51 | ###sign-ad 52 | ###upprev_box 53 | ###windlocation 54 | ##.s.u.m.o.me.scrollbox-popup 55 | ###pop_hongbao 56 | ###bgframe[style^="position: fixed;"] 57 | ##.wwads_abp 58 | !-----------------------------Union&third-party-------------------------------! 59 | ||fundingchoicesmessages.google.com^$third-party 60 | ||7moor.com^$third-party 61 | ||2005net.net^$third-party 62 | ||3jia5.com^$third-party 63 | ||5251.net^$third-party 64 | ||53kf.com^$third-party 65 | ||54kefu.net^$third-party 66 | ||5etv.com^$third-party 67 | ||bobo.com^$third-party 68 | ||cir-smart.baidu.com^ 69 | ||bjmantis.net^ 70 | ||crs.baidu.com^ 71 | ||goutong.baidu.com^ 72 | ||kuaishang.cn^$third-party 73 | ||live800.com^$third-party 74 | ||looyu.com^$third-party 75 | ||lxbjs.baidu.com^$third-party 76 | ||meiqia.com^$third-party 77 | ||miduoke.net^$third-party 78 | ||mylikechat.com^$third-party 79 | ||openinstall.io^$third-party 80 | ||pop800.com^$third-party 81 | ||qiyukf.com^$third-party 82 | ||soperson.com^$third-party 83 | ||tawk.to^$third-party 84 | ||webfunny.cn^$third-party 85 | ||tui.cnzz.net^$third-party 86 | ||wpa.b.qq.com/cgi/wpa.php? 87 | ||zoosnet.net^$third-party 88 | ||zoossoft.cn^$third-party 89 | ||easyliao.com^$third-party 90 | ||outbrain.com^$third-party 91 | !---------------------------Popups--------------------------------------------! 92 | !--------------------------Specific blocking filters--------------------------! 93 | ||025yimei.com/templets/default/js/swt.js 94 | ||100xuexi.com/CssModel/botad.js 95 | ||115img.com/static/pc/d_ 96 | ||126.net/caipiao/js2/dialog.js 97 | ||126.net/caipiao/js2/index/homePop.js 98 | ||163.com/special/*/bobo.html 99 | ||163.com^*/boboData 100 | ||17173.com/actapi/qiyu/ 101 | ||17173cdn.com^*/js/task/src/task/live/greenhand/ 102 | ||21sq.org/js/downloadbanner.js 103 | ||360doc.com/js/index7/mask_index_yc.js 104 | ||39.net/PictureLib/A/f76/20160825/org_749281.png 105 | ||51credit.com/bbs/js/bbs-end-layer.js 106 | ||51cto.com/iframe/get-station-ads 107 | ||51liucheng.com/js/dialogLogin.js 108 | ||51zxw.net/netclass/images/*_top.jpg 109 | ||6pan.cc/ps/vip.jpg 110 | ||a6.hujiang.com^$domain=~class.hujiang.com 111 | ||ad.qn.img-space.com^ 112 | ||ali213.net/js/3g/newsdetail.js 113 | ||alicdn.com/mtb/lib-smartbanner- 114 | ||aoji.cn/default/looyu/ 115 | ||asp300.com/2017images/kefu.js 116 | ||autohome.com.cn/news/$script 117 | ||autohome.com.cn/vr/*?pvareaid= 118 | ||autoimg.cn/Space/help/HelpRdTask.js 119 | ||baidu.com/cms/lemmaconfig/baikeDynamic. 120 | ||baidu.com/cms/lemmaconfig/navbarAd. 121 | ||baidu.com^*/app/banner_ 122 | ||baidu.dj/u/upan/you.html 123 | ||baike.com/newtop/news.html 124 | ||bdstatic.com/searchbox/icms/searchbox/img/*.jpg 125 | ||bdstatic.com/tb/img/icon_coo_operation_ 126 | ||bendibao.com/weixin_ 127 | ||bestpush.pconline.com.cn^ 128 | ||betteredu.net/js/pop_tuiguang_ 129 | ||bilibili.com/html/ads-index.js 130 | ||bjsxt.com/statics/js/bjsxt/js.js 131 | ||bjwj2y.com/JS/LsJS.aspx 132 | ||blog.sina.com.cn/lm/mini/ 133 | ||bobo.com/special/mod-follow/ 134 | ||c-ctrip.com/ResUnionOnline/R3/float/floating_normal.min.js 135 | ||caixin.com/file/content/js/mobile_news_app_banner.js 136 | ||cctvpic.com/photoAlbum/templet/common/*/game_ 137 | ||chazidian.com/all/gg_ 138 | ||china.com/images/milapp 139 | ||chinaacc.com/lamu/piao 140 | ||chinacloudsites.cn/api/promotion? 141 | ||chinanews.com/fileftp/2016/06/2016-06-13/U194P4T47D35171F967DT20160613093733.jpg 142 | ||chinanews.com/fileftp/2016/08/2016-08-04/U194P4T47D36220F967DT20160804155100.jpg 143 | ||chinatimes.com/ads/ 144 | ||cndns.com/incs/js/website_mobile.js 145 | ||con-article.hjapi.com/v1/txs/ 146 | ||cpu.baidu.com^$third-party 147 | ||ctfile.com/img/*ssp 148 | ||daf-rs.com/imageViewer/wpAd 149 | ||dahe.cn/indiboy/ads/ 150 | ||dangbei.net/img/db/downdangbei.gif 151 | ||dilidili.wang/uploads/allimg/171227/1_1520203421.png 152 | ||dmzj.com/module/js/float_code.js 153 | ||dmzj.com/public/js/app_banner.js 154 | ||docin.com/building/getAdvById. 155 | ||duba.net/skins/2009/images/db300_250.gif 156 | ||dwstatic.com^*/newsPopup/ 157 | ||dwstatic.com^*/sidebar.js 158 | ||easteat.com/templets/default/images/media-top.png 159 | ||eastmoney.com/Extends/GetReferralLinkJavaScriptObj 160 | ||eastmoney.com/js/*Share.js 161 | ||eastmoney.com/public/ad.tools. 162 | ||eic.org.cn/api/Popup? 163 | ||eic.org.cn^*/analytics 164 | ||enet.com.cn/counter.php 165 | ||ettoday.net/style/mobileweb2014/js/smartbanner/jquery.smartbanner. 166 | ||ettoday.net/style/video-ad/ 167 | ||fengbuy.com/recommend-new. 168 | ||fh21.com.cn/js/passport/createQuickMenu.js 169 | ||forex.com.cn/index.php/Invoking/tanchukuang 170 | ||forex.com.cn/statics/images/ewm.jpg 171 | ||fydisk.com/images/showvip.gif 172 | ||goodcome.com.tw/block/ad/rndtopad.php 173 | ||gtimg.com/finance/js/st/p/news_ad_ 174 | ||gtimg.com/gamezone/2014index/images/600x75.jpg 175 | ||gtimg.com/pingjs/ext2020/dc2017/dist/m_tips/tips.js 176 | ||gz-chengkao.com/js/duo.js 177 | ||hahamx.cn/images/banner/ 178 | ||hao123img.com/v4/MB/xU/jy/VY/YX/MBxUjyVYYX.js 179 | ||heiguang.com/_r/2015/js/hrBottomBar. 180 | ||hexun.com/2017-11-07/191534592.jpg 181 | ||hexun.com/inc/popbox.aspx 182 | ||hexun.com^*/appDplus 183 | ||hjapi.com/v1/pageSoftText? 184 | ||hjfile.cn/lib/hui/footer/0.1.0/footer.js 185 | ||hjfile.cn/lib/uzhi/uzt. 186 | ||hjfile.cn/site/hj-lzs/ 187 | ||hjfile.cn/site/js/pop_gift_plugin.js 188 | ||house365.com/js/fixWin.php 189 | ||howbuy.com/subject/js/jquery.blockUI.js 190 | ||howbuy.com/subject/js/layer/layer.js 191 | ||hujiang.com/Web/tx.ashx 192 | ||iask.sina.com.cn/s-b/mxbg 193 | ||iciba.com/static/images/download_banner.png 194 | ||ifeng.com/uploadfiles/main_blog/main_child/v3_block 195 | ||ifengimg.com/auto/js/*enquiry 196 | ||ifengimg.com^*/red2018icon. 197 | ||igo.cn/liuxue/js/slideBar 198 | ||imall.cctv.com^ 199 | ||imall.cntv.cn^ 200 | ||ithome.com/block/headerline$subdocument 201 | ||ithome.com/images/productgif/pcmaster.gif 202 | ||ithome.com/images/v2.1/downsoftmaster.gif 203 | ||jc001.cn/img/yhj.gif 204 | ||jc001.cn/indexnew/js/yuyue.js 205 | ||jia.com/js/common/jia-common.js 206 | ||jia.com/js/tuku/footBanner_ 207 | ||jia.com/js/zixun/news.js 208 | ||jia.com/js/zixun/zixun_ 209 | ||jianshe99.com/lamu/ 210 | ||kaoyan.com/__pub/shop_book.html 211 | ||kaoyan.com/global/js/backtopnew.js 212 | ||kaoyan.com/school/final_class.html 213 | ||kaoyan.com/school/js/yz.school.packed.js 214 | ||kekenet.com/images/*/app 215 | ||kgimg.com/public/root//images/hardware.jpg 216 | ||kongzhong.com/style/newindex/js/tad.js 217 | ||koolearn.com/v2/js/*AD.js 218 | ||koolearn.com/v2/js/wxewm.js 219 | ||koolearn.com/www/subject/script/subject_form.js 220 | ||koolearn.com/zt/poster_js/$domain=~www.koolearn.com 221 | ||kuakao.com:6053/floatcard? 222 | ||kuwo.cn/static/swf/xctg.swf 223 | ||lofter.com/blogPhotoAd? 224 | ||lofter.com/mailEntry.do?blogad 225 | ||longzhu.com/i/api/videos/dailyRecommend? 226 | ||me360.com/swt/swt.js 227 | ||meilele.com/js/mll/baiduLabelRecommend. 228 | ||mianwww.com/wp-content/uploads/2014/05/insigmaedu1.gif 229 | ||mitbbs.com/img/app 230 | ||mnks.cn/jk/appAD_ 231 | ||mtime.cn/library/*/ECommerce/GoodsAndFeatureCtrl.js 232 | ||naajie.com/float.js 233 | ||netease.com/f2e/auto/modules/float-ask-price/ 234 | ||netease.com/fz/interface/frontend/fz.do?pos=tongyong- 235 | ||netease.com^*bobologo 236 | ||neuralstemcell.com.cn/img/js.js 237 | ||ntce.com/images/js/ntce_public.js 238 | ||offcn.com/index.php?m=dbsource&c=call&a=get&id=75 239 | ||offcn.com/offcnewm/ 240 | ||ol-img.com/channel/tuku/js/tukuPopup.js 241 | ||pcauto.com.cn/forum/1508/intf7631.js 242 | ||pcauto.com.cn/forum/autobbs/clubtl/ 243 | ||pchome.com.tw/js/fancybox/ 244 | ||pconline.com.cn/intf/hot_ 245 | ||pinggu.org/api/bbsgg. 246 | ||pstatp.com/growth/mobile_list/image/bonus_ 247 | ||pstatp.com^*/bannersdk/ 248 | ||qhimg.com/static/5dcd236fc857be9c,5b391c33a0748022.js 249 | ||qidian.com/Images/990x40_ 250 | ||qudao.com/common/minisite.js 251 | ||qyer.com/qcross/home/ajax?action=banner 252 | ||qyerstatic.com/common/models/common/component/footerBanner/ 253 | ||rjzxw.com/temp/index.files/logo2.gif 254 | ||rrjc.com/home/seo/ad/ 255 | ||shejiben.com/common/libs/layer.js 256 | ||shejiben.com/common/widgets/ui/*zb.js 257 | ||shopping.udn.com/mall/cus/cat/OutWebAd.do? 258 | ||showguide.cn/templets/*/qqcenter.js 259 | ||showguide.cn/templets/*/sg-ad.js 260 | ||sina.com.cn/1016/getPhones- 261 | ||sina.com.cn^*/energypop. 262 | ||sinaimg.cn/finance/*/hqMainTopBanner.js 263 | ||sinaimg.cn/finance/*/sideQR 264 | ||sinaimg.cn/finance/app2018/js/appbar.js 265 | ||sinaimg.cn/finance/hq_finapp_ad/ 266 | ||sinaimg.cn/finance/ny_live*.js 267 | ||sinaimg.cn/finance/wanghong_ 268 | ||sinaimg.cn/large/a518ed97jw1eu4mxubbe6j209q01e3ys.jpg 269 | ||sinaimg.cn/mw690/005uyUwYjw1eocc98cbgag30gk02ygm9.gif 270 | ||sinaimg.cn/tech/*/sidebar.js 271 | ||sinaimg.cn^*/everyoneReading.js 272 | ||soft4fun.net/wp-content/themes/arthemia/js/common_footer_min.js 273 | ||soso.com/wenwen/i/ad/ 274 | ||soufunimg.com/common_m/m_public/js/wa 275 | ||sp.qf.56.com^ 276 | ||taobao.com/api/data/v2/d9543feac7c9433a98bc85be3ba856b1.js 277 | ||taobao.com/js/smartbanner/ 278 | ||tfg2.com/images/upfile/banner/ 279 | ||tianya.cn/shang/*/index.shtml 280 | ||tianyaui.com/cms_fragments/res/*/bbs_include_mod.js 281 | ||tianyaui.com/global/dashang/vip_seat/js/ds_vip_seat.js 282 | ||to8to.com/assets/wap//common/widgets/appGuide/appGuide. 283 | ||to8to.com/yezhu/zxbjWidget. 284 | ||to8to.com^*_bottom_ 285 | ||toutiao.haotui.com/data/js/0.js 286 | ||tq.cn/floatcard? 287 | ||tsdmw.net/img01/MP3/pm_ 288 | ||tuyiyi.com/tuyiyi/m.js 289 | ||tv002.com/img/down1_ssp1.gif 290 | ||upaiyun.com/wp-content/uploads/2016/12/wenzhangyouce 291 | ||w3cschool.cn/attachments/image/20170919/1505817817281252.jpg 292 | ||wanwan.sina.com.cn/kb/ 293 | ||wanwan.sina.com.cn/sinasupersport/back/ 294 | ||wbiao.cn/common/adapi/ 295 | ||wbiao.cn/common/newsbannerAds/ 296 | ||wbiao.co/src2/js/expand/fudong/ 297 | ||webservice.360doc.com^ 298 | ||wingontravel.com/Static/headerfooter/Content/js/masterpage. 299 | ||wumii.cn/ext/relatedItemsWidget 300 | ||wuxibus.com/Image/title 301 | ||xcar.com.cn/bbs/adfocus.js 302 | ||xiaoma.com/kf.php?arg= 303 | ||xiaoma.com/xiaoma/www/js/article_right 304 | ||xnimg.cn^*/liveinc/rightlive.js 305 | ||ye120.com/swt.js 306 | ||ye120.com/zool.js 307 | ||youdao.com/market/banner/banner 308 | ||youdao.com/www/banner.html 309 | ||zhiyoo.com/mplus/images/banner.jpg 310 | ||zndsssp.dangbei.net^ 311 | ||zol-img.com.cn/star/image/star-banner2.gif 312 | ||zol.com/index.php?c=ZolShopIndex 313 | ||zp365.com/newhousered/hb-index-pop- 314 | ||zuoyebang.cc/static/question/question/resource/QRCode_ 315 | ||zuoyebang.cc/zyb_4953cbb8a9a2332469592196c056a906.jpg 316 | ||yuedu.baidu.com/hybrid/wkrec/search? 317 | ||zhan.com^*/middle_ad_modal.js 318 | ||dealmoon.com/build/js/www/home/activity-pop/index. 319 | ||zglww.net/jsnew/pfkf.js 320 | ||ld0766.com/index.php?m=call&id=10 321 | ||sina.com.cn/other/src/app/SFANewVersionPop.js 322 | ||qq.com/inc/utf8/nav/ad.htm 323 | ||gtimg.com/finance/js/st/p/cms/ce56e2f3303d17b6.js 324 | ||gtimg.com/finance/js/st/p/quotpage/maxcard_ 325 | ||med66.com/lamu/ 326 | ||51cto.com/edu/blog/*box.js 327 | ||taisha.org/statics/js/pc2.0/common/form.bottom. 328 | ||autoimg.cn/club/v1Content/images/heycar 329 | ||china.cn/js/common/daniel_pop/ 330 | ||chinaacc.com/lamu/*dl- 331 | ||chinaacc.com/lamu/*piao 332 | ||xhd.cn/topic/leyu-piaofu/ 333 | ||zol.com.cn/index.php?c=Api_JumpApi& 334 | ||jjwxc.net/adsmanage. 335 | ||sinaimg.cn/tech/zcapp2018/zcapp.js 336 | ||233.com/js/side.htm 337 | ||soufunimg.com/homepage/new/*/buttomLayer.js 338 | ||vuetifyjs.com/notify.json 339 | ||qhres.com/static/b4f92ac067a4768b/v4/modules/footer.js 340 | ||daniujiaoyu.com/js/zk 341 | ||daniuxuexiao.org.cn/js/zk 342 | ||weiyun.com/proxy/domain/boss.qzone.qq.com/fcg-bin/fcg_get_multiple_strategy? 343 | ||aoji.cn/static/js/pushadv.js 344 | ||aoji.cn/static/js/yiliao/ad_common.js 345 | ||zx123.cn/templates/zx123cs/theme-2015/js/right_xh.js 346 | ||people.com.cn/rmrb/tplimg/new.js 347 | ||appledaily.hk/banners/subscription/ 348 | ||bilibili.com/x/web-interface/archive/special/recommend?aid= 349 | ||lancdn.com/tmp3/GG_Notice.png 350 | ||zhangzishi.cc/cdn-cgi/apps/ 351 | ||macx.cn/js/blockadblock.js 352 | ||bestqikan.com/static/js/swt.js 353 | ||51cto.com/js/activity_pop.js 354 | ||kuakao.com/index.php?m=content&c=index&a=show_ad 355 | ||qinxue100.com/qinxue/pc/js/add_js.js 356 | ||hujiang.com/ciku/getDetailSoftText/ 357 | ||hujiang.com/ciku/getLesson 358 | ||zbcdn.net/__uvjgyw/slb.default.js 359 | ||sina.com.cn/other/src/sfc_app_sidebar.js 360 | ||sinaimg.cn/cj/finance/forex/res/searchCallup.js 361 | ||tsdm.live/weibo.html 362 | ||28.com/public/js/w3c_float.js 363 | ||kmf.com/da/do 364 | ||daiyanbao.com/flash/md 365 | ||banzou.name/qq/qq2.js 366 | ||5888.tv/Js/topBanner.js 367 | ||dfcfw.com/zndh/ 368 | ||jsdelivr.net/npm/live2d- 369 | ||51offer.com/mod/public/talk/ 370 | ||51offer.com/pageData/getDataByModuleIdandKey.html?leadkey=adList& 371 | ||chinalawedu.com/js/weixin/weixin.js 372 | ||chinalawedu.com/js/zxkf.js 373 | ||baidu.com/xpage/form/getform?id=wk_pc_skin 374 | ||aixifan.com/static/*/appGuide/ 375 | ||icourse163.org/dwr/call/plaincall/CommonBean.obtain.dwr 376 | ||3158.cn/min/webim. 377 | ||3158.cn/static/js/fixbtm/ 378 | ||house365.com/im_show/imshow.js 379 | ||qixin007.com/webbanner/ 380 | ||gamersky.com/wap/js/gs/gsAllOpenAppBtn. 381 | ||meiju22.com/new/Public/gg.js 382 | ||heibaizhibo.com/_nuxt/87a5efd04908651591f7.js 383 | ||ymlykj.com/nuxt/static/liveBanner.jpg 384 | ||jin10.com/assets/img/sites/index/vip_ad 385 | ||jin10.com/news_service/static/config/details.config. 386 | ||jmw.com.cn/m_v2/js/active.js 387 | ||dyhjw.com/Public/v3/appdown/images/AppEntrance.png 388 | ||chazidian.com/statics/images/wangke.jpg 389 | ||sinaimg.cn/sports/20214c6d/20181128/880_110.png 390 | ||cifnews.com/common/js/d/d/tea.js 391 | ||cifnews.com/yuguo3.0/live_dynamic/js/live_dynamic.js 392 | ||cifnews.com/ajax/adrequest/ 393 | ||7k7k.com/api/position/ 394 | ||7k7k.com/js/bg-img.js 395 | ||6080.tv/public/js/m/uaredirectformobile.js 396 | ||gliacloud.com/player/adgeek_teep 397 | ||365xuet.com/assets/web/js/main.jsr_ 398 | ||17house.com/zt/style/pc/js/zt_ 399 | ||y3600.cc/20 400 | ||zupulu.com/scripts/app/app.js 401 | ||yunzhan365.com/resourceFiles/js/weixin-share.js 402 | ||127.net/m/*/promPic.jpg 403 | ||xyj321.com/static/xyj/js/foot_slide_bar_ 404 | ||xyj321.com/static/zx/js/zx-con-jsq_ 405 | ||sinaimg.cn/wap/project/blog_to_news_banner/ 406 | ||zikao365.com/upload/js/pfgg/ 407 | ||gaosan.com/js/b.js 408 | ||igo99.cn/js/freetest.js 409 | ||huobaowang.com/meeting/js/hbchat. 410 | ||chinaacc.com/upload/*_mjy_ 411 | ||music.163.com^$domain=mvcat.com 412 | ||offcn.com/index.php?m=dbsource&c=call&a=get&id=77 413 | ||yizhibo.com/special/h5corner.html 414 | ||feedou.com/nzq/style/pc/js/zt_bottom.js 415 | ||66zhuang.com/public_2017/js/count-gou.js 416 | ||xuexila.com^*-xxl.js 417 | ||sogoucdn.com/translate/ssr/static/img/banner- 418 | ||cls.cn/v2/web/ad? 419 | ||aisixiang.com/images/*-20 420 | ||yiihuu.com/assets/common/yh/js/yh.ad. 421 | ||guokr.com/apis/flowingboard/item/guokrapp_ 422 | ||csdnimg.cn/common/redpack/redpack.js 423 | ||w3cschool.cn/index/*Advert 424 | ||sinaimg.cn/news/diversion/index2/static/js/index. 425 | ||sinaimg.cn^*/pushDiversion*.js 426 | ||msstatic.com/huya/main3/widget/DiyActLayer/DiyActLayer_*.js 427 | ||iviewui.com/v1/*?name= 428 | ||sinaimg.cn/news/article/article_qcode 429 | ||niuacc.com/static/common/js/145.js 430 | ||yyetss.com/static/modal.js 431 | ||pcauto.com.cn/zt/*_dialog/cjx-pc-half_ 432 | ||thepaper.cn/bottomBanner_ 433 | ||iiikefu.com/wp-content/plugins/halfdata-green-popups/js/lepopup.js 434 | ||51cto.com/home/web/js/new_login/iframe.js 435 | ||sinaimg.cn/large/007drMcOly1gfnqzv8a7ij30xc02nwfr.jpg 436 | ||mydrivers.com/2021/www/nianhuojie.png 437 | ||sinaimg.cn^*/yyy_pop 438 | ||tiexue.net/pic/tx_1220.jpg 439 | ||gushiwen.org/getTicket.aspx 440 | ||51cto.com/edu/center/js/interaction_iframe.js 441 | ||jishulink.com/images/content/visitor-footer- 442 | ||jishulink.com/images/activity/invite_ 443 | ||codenong.com/c1.js 444 | ||zhenbuka*/statics/js/toastr/jquery.toast.js 445 | ||iqiyi.com/js/common/mars_v.js 446 | ||jsdelivr.net/gh/huang545/huang1111@1.0/bottom.png 447 | ||pstatp.com/origin/137370002e7fbe11b296a 448 | ||qcjycg.com/template/conch/asset/js/hl 449 | ||above.tw/blog/wp-content/plugins/popups/public/assets/js/public.js 450 | ||zhihu.com/sku/km_resource?token=feed-right-banner 451 | ||sinaimg.cn/finance/stock/hq/src/popuptoapp.js 452 | ||to8to.com/to8to_pc/common/modules/bottom_up_slide/ 453 | ||pconline.com.cn/global/footer/index.html 454 | ||ali213.net/news/kx/ali213-kx-data.js 455 | ||cnki.com.cn/cnki/js/adimgdetail.js 456 | ||cnki.com.cn/cnki/js/adrightdetail.js 457 | ||mydrivers.com^*/xianshitehui.png 458 | ||mydrivers.com/m/images/v1/kkjapp_down.gif 459 | ||ydstatic.com/fanyi/fanyi-ad-place/ 460 | ||feedou.com/nzq/style/pc/js/popbig.js 461 | ||feedou.com/nzq/style/pc/js/zt_bottom.js 462 | ||nxhh.net/gw/gw.js 463 | ||kuaishang.com.cn^ 464 | ||docer.org/static/utils/jquery.min.js 465 | ||terrynow.com^$csp=script-src 'self' * 'unsafe-eval' 466 | ||kf.qingwk.com^ 467 | ||ypojie.com/wp-content/uploads/*.js 468 | ||yxdm.*/js/ddetector.js 469 | ||eng24.com/js_new/copyright_float. 470 | ||gedu.org/js/meiqia_pc_groupmarket. 471 | ||guozh.net/wp-content/plugins/eazy-ad-unblocker/ 472 | ||gdmm.com/api.php?mod=js&bid=2188 473 | ||jlwz.cn/js/xf*.js 474 | ||book118.com^*/js/crm. 475 | ||book118.com^*/showRecommend. 476 | ||lotuscard.cc/online/ 477 | ||kuke99.com/static/home/js/index/index.js 478 | ||fulitech.com.cn^*/float.js 479 | ||huanqiucdn.cn/huanqiu/js/www/common/detected_block. 480 | ||yaozh.com/Public/js/widget/dbAdDownload. 481 | ||kandaju.net/js/js2. 482 | ||biancheng.net/templets/new/images/index_pc/fudaoban_ 483 | ||3dmgame.com/page/js/indexalert_ad. 484 | ||nicelinks.site/ad-block- 485 | ||djljz.cn/Plugins/Template/XJLY/js/app. 486 | ||infogram.com^$domain=hk01.com 487 | ||letvcdn.com/lc02_live/201803/18/23/40/1521387641261new. 488 | ||tencent.com/developer/api/common/getAds 489 | ||tencent.com/developer/api/common/getOneAds 490 | ||10086.cn/together/s?func=together:getAdvertInfos& 491 | ||bttt11.com/ad. 492 | ||fanyi.baidu.com/pc/config 493 | ||fanyi.baidu.com/ait/config/cms/list? 494 | ||3dmgame.com/static/image/common/pc_tg3dm. 495 | ||fc.3dmgame.com^ 496 | ||caiyunapp.com/lingoCloud/banner/home-bottom-banner. 497 | ||linovelib.com/modules/article/scripts/ 498 | ||bilinovel.com/scripts/m7lk48m5hgztxn. 499 | ||uiadmin.net/uview-plus/assets/js/3.1b3a95a0. 500 | !------------------------Specific element hiding rules------------------------! 501 | 500.com##.floatLayer-container 502 | 500.com##.pc_odds_fenxi_banner 503 | douyu.com,~wan.douyu.com##a[href*="g.wan.douyu.com"] 504 | jin10.com##.top-poster 505 | jin10.com##.activity-side 506 | flowus.cn##footer .swiper 507 | bilibili.com#?#.is-rcmd:-abp-has(>div:not(div:-abp-has(div))) 508 | csdn.net###asideWriteGuide 509 | haokan.baidu.com##.page-top-rightinfo-popover 510 | baidu.com##.invoke-app-san-container 511 | baidu.com##.invoke-app-floating-tips 512 | thwiki.cc###a-carousel 513 | baidu.com##.index-module_drawerHand__aRhcO 514 | bilibili.com##.extension-tips 515 | 77mh.nl###bdtopbot 516 | 77mh.nl###bdbottop 517 | youdao.com##.banner 518 | cnki.net##.banner-main 519 | caiyunapp.com##.active-imgContainer 520 | baidu.com##.player-pause-code 521 | baidu.com##.landrightbanner 522 | 51cto.com##.right-fixadv 523 | 51cto.com###advCanvas 524 | 7k7k.com##.pendant 525 | 7k7k.com###flashAds 526 | yisu.com##.coupon-get-link 527 | on.cc##.appinstall 528 | 36kr.com##.app-track-card 529 | fnjiasu.com##.sidebar_download 530 | fnjiasu.com##.layui-layer 531 | fnjiasu.com##.swiper-container 532 | crsky.com##.adowGright 533 | 17173.com##a[href^="https://gtv."] 534 | gamer.com.tw,~buy.gamer.com.tw##a[href^="https://buy.gamer.com.tw"] 535 | kdocs.cn##.business-list-wrap 536 | tencent.com##.cdc-commercial-swiper 537 | focus.cn##.module-common-float-im 538 | focus.cn##.shequn-code-img 539 | easylearn.baidu.com##.feedback-icon 540 | easylearn.baidu.com##.vip-banner-cont 541 | djljz.cn###djl_hdhb 542 | djljz.cn###toolbar 543 | djljz.cn##.bottom_slide_box 544 | djljz.cn##.left_fixed_ad 545 | csdn.net##.csdn-common-logo-advert 546 | a9vg.com###qrcode 547 | a9vg.com##.a9-back-top_qrcode 548 | huya.com##.end-ab-banner 549 | investing.com##div[class*="overlay_overlay"] 550 | investing.com##div[class*="adBlock"] 551 | sina.com.cn##DIV[class^="side-btns-jifen"] 552 | 3dmgame.com##.mb30.warp_f 553 | tianqi.com##.xcx_erweima 554 | chinagwy.org##.ewm0610 555 | 360kuai.com##.novel_galery_icon 556 | iciba.com##div[class^="Kyad_"] 557 | yahoo.com###module-appPromoBanner 558 | findlaw.cn###wlcommonbot 559 | huanqiu.com##.right-box > article-other-template 560 | 3dmgame.com##.dj_warp_e 561 | a9vg.com###guide-download 562 | bilibili.com##A[href*="cm.bilibili.com"][data-target-url*=".biligame."] 563 | bilibili.com##A[href*="cm.bilibili.com"][data-target-url*=".biligame."] + .bili-video-card__info 564 | bilibili.com##.adblock-tips 565 | map.baidu.com###message-panel 566 | ghxi.com##div[style^="padding:10px;position: fixed;bottom: 0;left: 0;right:0;z-index"] 567 | manmanbuy.com##.app-activity-download 568 | bilibili.com##.desktop-download-tip 569 | edrawsoft.cn##.activity-banner 570 | edrawsoft.cn##.bottom-banner-activity 571 | zhibo8.cc###popautoapp 572 | docsmall.com##.modal-connection.show 573 | alibabacloud.com###carousel-whois 574 | alibabacloud.com##.b-alicloud-bottom 575 | alibabacloud.com##.hmod-alicloud-contact-sales-support 576 | autohome.com.cn##.activity-coin-layer 577 | php.cn##.wwads-cn 578 | autohome.com.cn##.activity-app-layer 579 | autohome.com.cn##DIV[id^="popautoapp"] 580 | shengxinwang.net###floatDivBoxs 581 | kuke99.com##.index-dialog-mask 582 | aura.cn##.suspension 583 | aura.cn##.foot-xcx 584 | aura.cn##.left-zc 585 | aura.cn##.tc1 586 | w3cschool.cn##.abox-content 587 | sina.com.cn###ad 588 | guancha.cn##.g_swiper_container 589 | fantuan.tv##.app-guide 590 | dm010.com##a[href*=".apk"] 591 | qianzhan.com##.qqonline 592 | qianzhan.com##.kfonline2 593 | csdn.net##.el-dialog__wrapper + .activity 594 | aiqicha.baidu.com##.float-banner 595 | qingwk.com##.c-footer-banner 596 | jingyan.baidu.com##.task-panel-entrance 597 | jingyan.baidu.com##.wgt-cms-banner 598 | jingyan.baidu.com##.activity-entrance 599 | luogu.com.cn##.side > div:last-child:not([class]) 600 | sonkwo.hk##.store-ad-waist 601 | 360kuai.com###task__modal__container 602 | 360kuai.com##.taskbar 603 | bjd.com.cn##.screenad 604 | sina.com.cn##A[href="https://touzi.sina.com.cn/"] 605 | weimob.com###active-entrance 606 | pconline.com.cn##.fixLeftQRcode 607 | cheetahfun.com##.guide 608 | mydrivers.com##.ab 609 | mydrivers.com##.bb 610 | meijumi.net##.couplet_app 611 | cnki.com.cn##.adList 612 | cnki.com.cn##.ad-right-default 613 | cnki.com.cn##.mainboxconbanner 614 | edrawsoft.cn##.publicity-entrance 615 | edrawsoft.cn##.new-year__cn__master 616 | 9game.cn##.guide-app-fix 617 | csdn.net##.passport-login-mark 618 | edrawsoft.cn###bottom-banner-activity-md 619 | baidu.com##.bottom-right-dsp-ad-wrap 620 | epinv.com##A[href="http://www.epinv.com/post/10450.html"] 621 | sina.com.cn##.side-btns-game2021 622 | ssuip.com###mask 623 | baidu.com##.school-promotion-pop-wrap 624 | zuoyebang.com##div[class*="moreDialog_"] 625 | zuoyebang.com##div[class^="answerAnalyzeAd_"] 626 | zuoyebang.com##img[class^="bottomBanner_"] 627 | zuoyebang.com##DIV[class^="questionQRCodeWrap_"] 628 | zuoyebang.com##div[class^="adCard_"] 629 | baidu.com##.app-side-banner 630 | sg169.com##.Mappdiv 631 | sg169.com##.jy-pos-3 632 | jianshu.com##.aside > div[aria-label="3rd-ad"] + div:last-child 633 | tuliu.com###red-envelope 634 | tuliu.com###siderbar-join-form 635 | tuliu.com###vFloat 636 | tuliu.com##.info-recommend 637 | zhangxinxu.com#?#:-abp-properties(display: block;*width: 336px;) 638 | baidu.com##.experience-card-bar-wrap 639 | ifeng.com###qrCode 640 | juejin.cn##.recommend-box 641 | juejin.cn##.activity-recommend 642 | csdn.net##.toolbar-redpack-advert 643 | 360kan.com##.eb-mini 644 | 66law.cn##.consult-bottom-fixed 645 | ifeng.com,~mall.ifeng.com##A[href*="mall.ifeng.com"] 646 | tgbus.com###guide-download 647 | pcbaby.com.cn###jpopWinBottom 648 | zhideqiang.com##A[href*="quan.zhideqiang.com"] 649 | 5ykj.com##.ls-b-large-margin 650 | pptjia.com##.alert2_wrap 651 | jishulink.com##.invite-code-dialog 652 | zhenbuka.com##.jq-toast-wrap 653 | fx361.com###k_s_ol_chatWin 654 | fx361.com###k_s_ol_chatWinSm 655 | fanyi.sogou.com##.img-banner 656 | fanyi.sogou.com##.survey 657 | huaban.com##.hb-ad 658 | ifsp.tv##.video-page-right 659 | meijumi.me###app_left 660 | baidu.com##.opening-season-dialog 661 | iqihang.com##.xf_right 662 | qianlima.com###bg 663 | qianlima.com##.seo400 664 | to8to.com##.layer-red-box 665 | tvbs.com.tw##.smart_banner 666 | wenku.baidu.com##.header-wrapper > .fixed-activity-bar 667 | faayoo.com###footer_fd 668 | faayoo.com##.qr_code 669 | gebi1.com###fwin_dialog 670 | gebi1.com###fwin_dialog_cover 671 | gebi1.com##.offical-account 672 | infoq.cn##.live-fixed-bar 673 | infoq.cn##.widget-slide-weekly 674 | sina.cn##.js-voice-yyy 675 | sina.cn##.module-finance-client3 676 | sina.com.cn##.f_app_screen_wrap 677 | sina.com.cn###commonSideBar 678 | sina.com.cn##.yyy-wrap-2021 679 | sina.com.cn##.cj_app_left 680 | banjiajia.com##.register-ten 681 | banjiajia.com##.register-box 682 | ke.qq.com##.bottom-bar 683 | 699pic.com###landlord 684 | 699pic.com##.springtime-floatLink 685 | 699pic.com##.springtime-pop 686 | 699pic.com##.winpopbg 687 | tuchong.com##.float 688 | baidu.com##.desktop-guide 689 | bilibili.com##.video-page-game-card 690 | ldmnq.com##.dialog-game 691 | hupu.com###game-center-entrance-container 692 | hupu.com##DIV[class^="game-center-"] 693 | sina.cn###j_toTop ~ .fl_suspension_template 694 | sina.cn##.zhidi 695 | sina.cn###j_gotop ~ .fl_suspension_template 696 | sina.cn##.sw_c0.fix_top 697 | niuacc.com##.masks 698 | niuacc.com##.yure 699 | niuacc.com##.botLm-container 700 | sina.com.cn##.fl_feedFous 701 | sina.com.cn##.tab_related_app_imglink 702 | nipic.com##.vip_show 703 | nipic.com##.vip_homeshow 704 | baidu.com##.guide-to-univer-app-root 705 | baidu.com##.pop-manager-view-containter 706 | wendu.com##.foot_adv 707 | wendu.com##.head-banner 708 | baidu.com##.search-box-wrapper + .pager-container 709 | baidu.com##.fufei-activity-bar 710 | 360doc.com##.floatqrcode 711 | xueqiu.com##.widget__download-app 712 | 123.com.cn##.bottom-ylink 713 | 123.com.cn##.fixed-top 714 | douyu.com##.index-common-1-rrh 715 | chsi.com.cn##.zx-axvert 716 | xdf.cn##.popup-wrap 717 | sina.com.cn##.redPacketCont 718 | offcn.com###offcn_yx 719 | 3dmgame.com##.modAD 720 | 21ic.com##.appxb 721 | csdn.net##.toolbar-advert 722 | cnitpm.com##.erweima 723 | iviewui.com##.ivu-alert 724 | sogou.com##.aside-qcode 725 | sogou.com##.trans-side-banner 726 | gas.goodlife.tw###widgets 727 | mati.hk##.banner_middle 728 | 720yun.com##DIV[class^="Ads_ads_"] 729 | baidu.com###copyright + .banner 730 | whcykj.cn###BDBridgeInviteWrap 731 | whcykj.cn###InviteContainerl 732 | whcykj.cn##.swt_bottom 733 | qiaobutang.com##.fixed-footer-wrap 734 | fanyi.baidu.com###app-read 735 | pan.baidu.com##.phone-banner 736 | epubee.com##.reader-to-vip 737 | news.163.com##.mod_netes_origina 738 | news.163.com##.mod_pageh5 739 | egame.qq.com##.lurk-dialog 740 | egame.qq.com##.pop-widget 741 | 16rd.com###diy_bbs_list_right IMG 742 | 16rd.com###quick_pub_form 743 | 16rd.com##.c1c2_b1b2_adbx 744 | 16rd.com###diy_ad_article_right IMG 745 | ifeng.com##.slideImg-lGG7Uta- 746 | yizhibo.com###J_reg_guide 747 | poedb.tw#?#div[id]:-abp-contains(ad blocker) 748 | qq.com##.notice[class^="jsx-"] 749 | qq.com##.elevator[class^="jsx-"] 750 | qq.com##.wrap[class^="jsx-"] 751 | php.cn##.layui-show > UL > .top-img 752 | offcn.com##.jlstc 753 | chinakaoyan.com##.side-wx 754 | neets.cc#?#div[class]:-abp-has(> div > .home_p) 755 | 51zhishang.com###kyzb_layer 756 | 51zhishang.com##.zhezhao 757 | mafengwo.cn###banner-con-gloable 758 | douyu.com##.ActPayDialog 759 | baidu.com##.reader-pop-manager-view-containter 760 | jingyingjiajiao.com##.bdgg 761 | jingyingjiajiao.com##DIV[style="width:auto;border: 1px solid #aaaaaa; position:fixed; bottom:1px; right:1px;z-index:2000"] 762 | baidu.com##.app-side-ad 763 | kanman.com###\5f _acgn-virtual-coin__ 764 | ifeng.com##a[class^="bookrack-"] 765 | ifeng.com##section[class^="fixSlide-"] 766 | ifeng.com##div[class^="silde_box-"] 767 | yun.cn##div[class*="ad-block"] 768 | pcccp.cn##DIV[id^="xydl"] 769 | douyu.com##.PrivilegeGiftModalDialog 770 | igo99.cn##.adBG 771 | danzhaowang.com##.qxzx_scho 772 | redocn.com##.big_vip_gg 773 | redocn.com##.small_vip_gg 774 | yutu.cn###botfocus-res 775 | edutt.com##.foot-fixed 776 | bjx.com.cn##.layer_right2 777 | dyhjw.com##.index_luckdraw 778 | rrys2020.com###indexNav1 779 | rrys2020.com##.corner > LI > A[href*="yyets."] 780 | acfun.cn##.pause-display 781 | examw.com###kefu_in 782 | examw.com##.acitvieLeftBox 783 | examw.com##.activeBottomBox 784 | dailiantong.com##.appDwn 785 | kankan.com###adv_box 786 | kankan.com###modal-adv 787 | kankan.com##.tuiguang_position 788 | xyj321.com##.foot_alert_wrap 789 | doc88.com##.dk-side-gif 790 | ltn.com.tw##.evt.e22 791 | epubee.com##.vipNoteBar 792 | 58cam.com###append_parent 793 | 58cam.com###huyou_nologin 794 | ximalaya.com##.dl-pc 795 | 4399.com##BODY[bottommargin="22"] > TABLE[width="100%"]:first-child 796 | taptap.com###bottomBanner 797 | laohu8.com##.top-recommend 798 | laohu8.com##.app-button 799 | 365xuet.com##.cd-items 800 | 911cha.com##.adbox 801 | 911cha.com##.sideqr 802 | 911cha.com##.sideqr_left 803 | 911cha.com##DIV[style^="width:200px;overflow:visiable;position:fixed;"] 804 | igo.cn###NewigoBox 805 | igo.cn##DIV[class^="leyuBg"] 806 | weather.com.cn##A[style="position:fixed;top:220px;left:50%;margin-left: -625px"] 807 | dapengjiaoyu.com##.toUnfold 808 | dapengjiaoyu.com##.upload-app 809 | tongzhuo100.com###gold_banner 810 | coolpc.com.tw##TD[onclick="cancelBubble()"] 811 | 360game.360.cn##.advertising 812 | 360game.360.cn##[class*="banner"] 813 | tobosu.com##.tbs-bottom-order 814 | tobosu.com###alert_order 815 | dyhjw.com##.guessEntranceOpen 816 | jmw.com.cn##.coupon 817 | 3d66.com##.botfocus 818 | jiagle.com##.bannergroup 819 | zybang.com##.question-below-text 820 | zybang.com##.related-question-below-text 821 | baidu.com##.ts-qrcode 822 | sblunwen.com###popupService 823 | sblunwen.com##.c11 824 | zhangxinxu.com##a[href*=".taobao.com"] 825 | gamersky.com##header[class^="ymw-header20"] 826 | news.163.com#?#div[ne-module="/modules/slide/slide.js"]:-abp-has(.ad_hover_pic) 827 | dm5.com##.index-side-code 828 | qixin.com##.web-diversion-container 829 | 17ce.com##a[href="/site/api"] 830 | hxsd.com##.left_side 831 | gitee.com##.register-guide 832 | gamer.com.tw##.goAPP 833 | yahoo.com##div[id$="-Banner-Proxy"] 834 | jiemian.com##.app-open 835 | znds.com###diy_mobanbus_view_right2 836 | meijuxingqiu.com##.fixed-bottom-bar 837 | iqiyi.com##.m-hotWords-bottom 838 | 3dmgame.com##A[href^="http://web.3dmgame.com/h5/game?"] 839 | ifeng.com##DIV[class^="enquiry_bottom"] 840 | ifeng.com##div[class^="bottom_box"] 841 | ifeng.com##div[class^="bottomSlide"] 842 | jinti.com###mei 843 | jinti.com##.fix-kefu 844 | huanqiu.com##.r-hqFashion 845 | house365.com##.home-new-user 846 | house365.com##.leftfixed_box 847 | blog.csdn.net##.t0 848 | so.com##.newsfeed-popup 849 | feng.com##.header 850 | sogou.com##.recommend-pop 851 | sm.cn##.oab-ball-wrap 852 | zhidao.baidu.com##.doodle-container 853 | baidu.com##.icon-bdad 854 | 5ewin.com##.erweima 855 | 5ewin.com##.jjb-slide 856 | mail.126.com,mail.163.com##.gWel-bottom 857 | csdn.net##.blog-column-pay 858 | qidian.com,~game.qidian.com##A[href*="game.qidian.com"] 859 | zuhaowan.com##.zhw-bottom-ad 860 | tmtpost.com##.open-app 861 | kuman.com##.guide-download-footer-box 862 | baidu.com##.guidetowkOperationwg-root 863 | hamibook.com.tw##.custom-banners-cycle-slideshow 864 | sina.com.cn##.pc-tui-coupon 865 | 360doc.com###btn_freeread 866 | qingwk.com##.c-meiqia-Air 867 | qingwk.com##.c-meiqia-wrapper 868 | qingwk.com##.l-index-activity-entrance 869 | qingwk.com##.l-red-packet 870 | 51offer.com###rightFu 871 | baidu.com##.bottom-guide 872 | 5888.tv###code_img 873 | 5888.tv##.footer_fixed 874 | 99meijutv.com##.follow-qrcode 875 | tianya.cn##.barcode-float 876 | imooc.com##.redrain-bg-shade 877 | weather.com.cn##A[href*=".tmall.com"] 878 | ruten.com.tw##.act-promo 879 | pconline.com.cn##.twentieth 880 | 100bt.com##.aolasidebar__ad1 881 | bitauto.com###dyAdv 882 | banzou.name###ads_1 883 | banzou.name###ads_2 884 | banzou.name###appfu 885 | banzou.name###daiyan 886 | firefoxchina.cn##.side-shping 887 | taoguba.com.cn###tbgzInstall 888 | taoguba.com.cn###tbgzInstallBG 889 | fwxgx.com##div[id^="tuiguang"] 890 | 96weixin.com###lifelong 891 | kmf.com##.g-kmf-906banner 892 | dujiaoshou.cn###ad1 893 | tuwan.com##.Player-zan 894 | guancha.cn##.member_recruit_index 895 | line.me###install_line 896 | aliyun.com##.aliyun-delivery-view-container 897 | acfun.cn##.app-guide 898 | mmbang.com##.footer_adver-warp 899 | tsdm.live###ts_sidebar_base 900 | m.qu.la#?#ul:-abp-has(> li > a[href*=".bcebos."]) 901 | m.qu.la#?#:-abp-has(> a[href*=".bcebos."]) 902 | sanhao.com###reg-bar 903 | lenovo.com.cn##.game-bd 904 | gameapp.qq.com##.act-tips 905 | zybang.com##.navigationBar-below-banner 906 | m.07073.com##.new_heads 907 | m.07073.com##.new_heads_bg 908 | blog.csdn.net##SCRIPT[src^="https://csdnimg.cn/release/phoenix/vendor/linkCatcher/linkCatcher.js"] + .t0 909 | 9312.net##.pop-up 910 | gdmm.com##img[width="1200"] 911 | ifeng.com##div[class^="qrCode"] 912 | mafengwo.cn###float-pannel-gloable 913 | mafengwo.cn###smartGuideFeng 914 | bigbigwork.com##.pinterestbox 915 | kuakao.com##.addTQBar 916 | renren.com###videoAd12 917 | weather.com.cn##.tuiguang 918 | douyu.com##.video-info-download 919 | docer.com##.popup 920 | voachinese.com##.slide-in-wg 921 | gitee.com##.gitee-stars-main-widget 922 | ooopic.com##.fix-newUser 923 | itheima.com##.nav1 924 | thmz.com###floatdivids 925 | soyoung.com###pubWideBanner 926 | soyoung.com##.cash_back 927 | soyoung.com##.pop_center_box 928 | 163.com##.redpacket-footer 929 | 163.com##.redpacket-subbox 930 | worldve.com###fdkDiv 931 | worldve.com###img 932 | zybang.com###bottomBannerLink 933 | ludashi.com##.div_text 934 | ludashi.com##.div_mask 935 | 7k7k.com##.page-right-side-btns-img-link 936 | ttmeiju.me##DIV[style="float:left;margin-bottom:27px;margin-top:27px;"] 937 | 4399.com###ads1_1 938 | xitonghe.com##.sidebar-wx 939 | chinaacc.com##.leftBox 940 | 58pic.com##.activitySettings-Fixed 941 | 58pic.com##.activitySettings-fixedBottom 942 | gdmm.com###diy3 943 | cnblogs.com###div_digg 944 | cnblogs.com###xiaociguai 945 | nowcoder.com###jsSideTopicList 946 | mafengwo.cn###ad1 947 | mafengwo.cn###ad2 948 | taobao.com##.rb-op 949 | eastday.com##.drain_app 950 | pconline.com.cn###JnoLoginFixedBottom 951 | kankanmi.com##.listnewli 952 | epwk.com##.collect-info-icon 953 | epwk.com##.collect-info-wrap 954 | epwk.com##.head_banner 955 | jd.com###m_common_tip 956 | taobao.com##.J_smartBanner 957 | appledaily.com###ebBannerTopDiv + A[href^="http://bit.ly/"] 958 | tianyancha.com###banner_web 959 | vdianying.cc##div[style^="display:block !important;"] 960 | kuaibao.qq.com##.slider-box 961 | aoji.cn##.xiaoxi_phone 962 | gaodun.com###LRdiv1q 963 | 51cto.com##DIV[id^="topbanner"] 964 | 3d66.com###botfocus-soft 965 | meijuniao.com###widget-weixin 966 | meijuniao.com##.player-ad1 967 | wiseway.com.cn##.float-kefu 968 | ixigua.com##.banner-section 969 | jiakaobaodian.com##.com-footer-flex-panel 970 | btime.com##.shop-guid 971 | csdn.net##.blog_star_enter 972 | ganji.com##.footer-b 973 | evget.com###popelevencenter 974 | sac.net.cn###ad 975 | sac.net.cn###leftDiv 976 | sac.net.cn###rightDiv 977 | ibaotu.com##.bg-feedback 978 | wantgoo.com###FixModal 979 | csdn.net##.post_recommend 980 | zuowen.com##.dialogP 981 | mcmod.cn###McmodDonate 982 | pupudy.com##.asst-post_header 983 | pupudy.com##.sidebar 984 | view.inews.qq.com#?#div[class^="_"]:-abp-has(>div[data-action-id]>div>.react-swipeable-view-container) 985 | douyu.com###js-room-activity 986 | gdmm.com##a[href="http://www.gdmm.com/appdown/"] 987 | kingkong.com.tw##.public-activity 988 | kingkong.com.tw##.room-banner-wrap 989 | xhd.cn##.xinad 990 | 163.com##.gkk_bj_yw 991 | 163.com##.gkk_default_yw 992 | jianshu.com###note-fixed-ad-container 993 | jianshu.com###web-note-ad-1 994 | 776dm.com,qiqidongman.com##.topAA 995 | liepin.com##DIV[id^="nodetpl_g_"] 996 | med66.com##.coach_pic 997 | kekenet.com###bottomlink 998 | download.csdn.net##.quake-slider 999 | china.cn##.ltp_box 1000 | qidian.com##div[style="background: rgba(0,0,0,0.4);position: fixed;left:0;right:0;top:0;bottom:0;z-index:9999;"] 1001 | qidian.com##div[style^="width: 426px; height: 644px; background:"] 1002 | qidian.com##span[style^="display: inline-block;width: 150px; height: 291px;"] 1003 | zhufaner.com###dist_footer 1004 | zhufaner.com##.book 1005 | qq.com##.mod-download-tips 1006 | 91wenmi.com###xiezuo 1007 | 91wenmi.com###xzsp 1008 | 91wenmi.com##a[href^="http://www.91wenmi.com/xiezuo/"] 1009 | med66.com##.banner 1010 | 9game.cn###btInfo 1011 | youku.com###bt-banner 1012 | ld0766.com###diy4 1013 | tw.yahoo.com###tabTemplate 1014 | aliyun.com###yq-a-r-bottom 1015 | aliyun.com##.yq-ads-blog 1016 | aliyun.com##.yq-main-left > a:first-child 1017 | csdn.net##.fourth_column 1018 | taoguba.com.cn###joinTGB 1019 | jin10.com##.jin-popularize 1020 | zglww.net##.tool 1021 | zhongyiju360.com###bottom-float 1022 | zhongyiju360.com###bottom-float2 1023 | dianping.com##.QQlink 1024 | dianping.com##.bao-jia-form 1025 | dianping.com##.button_bao-jia 1026 | dianping.com##.layer-container[data-view-bid="b_njcmobox"] 1027 | dianping.com##.weixin1 1028 | smzdm.com##.foot-banner 1029 | itheima.com##.tanchang 1030 | house365.com###AD-coup-left 1031 | cheaa.com###AD002 1032 | cheaa.com###ADText 1033 | bing.com###BottomAppPro 1034 | ck365.cn###Dmids 1035 | baidu.dj###ETE 1036 | setn.com###FBAnchor 1037 | alipay.com###J-cooperant-banner 1038 | letv.com###JS_banner01 1039 | letv.com###JS_banner02 1040 | tmall.com###J_BottomSmartBanner 1041 | sina.com.cn###J_forAutoShow 1042 | qq.com###J_inner_tips 1043 | pconline.com.cn###JtlBestA 1044 | zhiding.cn###MgBox 1045 | pcauto.com.cn###PcPoPmarket 1046 | qidian.com###QDCode_float 1047 | zuoye.baidu.com,zybang.com###QRinside 1048 | gov.cn###ZhiXuwFloatWindow 1049 | mmonly.cc###\32 vm_box 1050 | soku.com###\5f xbox_ad 1051 | ifeng.com###a_code 1052 | tianya.cn###a_qiu 1053 | mydrivers.com###a_showhotnews_list_dia 1054 | tw.yahoo.com###abu-live 1055 | zhidao.baidu.com###act-link-banner 1056 | baidu.com###activateGuidePopupOuter 1057 | 8591.com.tw###active_enter 1058 | dongao.com,zgsyz.com###ad 1059 | fengniao.com###ad-head 1060 | 4399.com,sxrtv.com,yundaex.com###ad1 1061 | 4399.com,sxrtv.com,zgsyz.com###ad2 1062 | bitauto.com###advCarsumType1 1063 | rrjc.com###alertBox 1064 | 5253.com###android-qr 1065 | sohu.com###apkBanner 1066 | pconline.com.cn###app-ewm-tg 1067 | neihanshequ.com###appDownload 1068 | qidian.com###app_download_blank_show 1069 | zuoye.baidu.com,zybang.com###aside 1070 | jpwind.com###asideNav 1071 | bilibili.com###b_app_link 1072 | 58.com###banjiaAD 1073 | m.youku.com###banner 1074 | 3g.baidu.com,m.baidu.com,m5.baidu.com,www.baidu.com###banner_call + div[id] 1075 | tianya.cn###bbs_login_div 1076 | pcauto.com.cn###bgbao 1077 | bing.com###bingBrand 1078 | 163.com###bobo 1079 | zhiyoo.com###body-bg 1080 | sogou.com###bottom_appad 1081 | haosou.com,so.com###bottom_ask 1082 | so.com###bqPromote 1083 | zol.com.cn###btmLoginLayer 1084 | golinksworld.com###btn_download 1085 | lvmama.com###centerDialog 1086 | ifeng.com###client-spread 1087 | ichunqiu.com###cnzz168_Login 1088 | ck365.cn###content_login 1089 | yahoo.com###crazyad_mask 1090 | 9miao.com###deanrlc22 1091 | news.baidu.com###detail-HotScrollNews-wrapper 1092 | zhiyoo.com###dialog1 1093 | fx168.com###diaochaBg 1094 | fx168.com###diaochaBox 1095 | tw.yahoo.com###discount 1096 | douguo.com###dlayer 1097 | kongzhong.com###dn 1098 | btime.com###download 1099 | ibm.com###dw-regbar 1100 | xcar.com.cn###eMeng 1101 | udn.com###ec 1102 | 51cto.com###edu_adver 1103 | 58.com###erweimaAd 1104 | guancha.cn###ewm_app 1105 | baidu.com###exp-fixed-bottom 1106 | sina.com.cn###f_ask 1107 | 51cto.com###f_close_box 1108 | news.baidu.com###favoriteTips 1109 | zhidiy.com###festival_float_bottom 1110 | ci123.com###fixed-recom 1111 | bilibili.com###fixed_app_download 1112 | yesky.com###flayer 1113 | 7808.cn###float-chat 1114 | 163.com###floatLayer 1115 | x-mol.com###floatWindow 1116 | qianlima.com###float_mask 1117 | scsjgjj.com###floatinfo 1118 | mayi.com###floatingLayer 1119 | tw.beanfun.com###flybeanfun 1120 | ofweek.com###flybox-db 1121 | miercn.com###foot_return_foot 1122 | xtuan.com###foot_zhaobiao_bar 1123 | smzdm.com###footer_layer 1124 | 7808.cn###force-popup 1125 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###forum_recommend 1126 | eastmoney.com###fp1 1127 | house365.com###ft-login 1128 | goodcome.com.tw###fulljad 1129 | eastmoney.com###fundtg-fb 1130 | ifeng.com###g_code 1131 | yesky.com###gfapp1 1132 | guancha.cn###goapp 1133 | haosou.com###haosou-banner-left 1134 | thepaper.cn###head_ask_app_down 1135 | zhiyoo.com###header_app 1136 | finance.sina.com.cn###hq_main_top_tgWrap 1137 | 51zxw.net###idSlider 1138 | youth.cn###identifier-pannel 1139 | zol.com.cn###iframe_zmall 1140 | las.ac.cn###img 1141 | dditblog.com###income_div 1142 | pptv.com###installApp 1143 | gov.cn###ippad01 1144 | gov.cn###ippad02 1145 | gov.cn###ippad03 1146 | study.163.com###j-newpeople 1147 | fwxgx.com###jPpo_sc 1148 | goodcome.com.tw###jad-float 1149 | goodcome.com.tw###jad-right 1150 | goodcome.com.tw###jad-top 1151 | douyu.com###js-fix-download 1152 | douyu.com###js-live-room-recommend 1153 | 163.com###js_a_bobo 1154 | ifeng.com###js_red 1155 | 0439.com###kanfang 1156 | 163.com###layout-bobo 1157 | 163.com###layout-love 1158 | 163.com###layout-shop 1159 | fh21.com.cn###lbzxM 1160 | lvmama.com###leftDialog 1161 | instrument.com.cn###leftFlash 1162 | 66rpg.com###left_overlay 1163 | duba.net###login_alert 1164 | tianya.cn###login_mask 1165 | zhibo8.cc###m_adv 1166 | zhidao.baidu.com###main-content > div[class]:first-child > a 1167 | house365.com###marryD 1168 | goodcome.com.tw,sporttery.cn###mask 1169 | meitu.com###meipaiFixed 1170 | ifeng.com###minefields_bottom 1171 | neihanshe.cn###mobile_client 1172 | qq.com###mod_float_box 1173 | stc.gov.cn###mov 1174 | aoshitang.com###msg_win 1175 | so.com###msocomBottomBanner 1176 | sporttery.cn###newDiv 1177 | baike.com###newsfix-on 1178 | finance.sina.com.cn###ny-link-r 1179 | finance.sina.com.cn###ny-link-r0 1180 | autohome.com.cn###packetsWrap 1181 | neihanshequ.com###pageletBottomBanner 1182 | neihanshequ.com###pageletTopBanner 1183 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###pagelet_frs-aside\/pagelet\/hottopic 1184 | kaopu001.com###pokemon 1185 | 52wmb.com###popContent 1186 | wbiao.cn###popupImgCorner 1187 | acfun.cn###prompt-box 1188 | infoq.com###psa-note 1189 | hao.360.com###pushbar-festival 1190 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###questionnaire_bg 1191 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###questionnaire_contianer 1192 | blog.163.com###r_m163news 1193 | blog.163.com###r_mlofteriframe 1194 | blog.163.com###r_mlofteriframe2 1195 | yy.com###rbappend 1196 | 15w.com###rec 1197 | mydrivers.com###recommend 1198 | tv.sohu.com###referr_bd_box 1199 | hjenglish.com###regscrollcontainer 1200 | 66rpg.com###right_overlay 1201 | eastmoney.com###rightadvert 1202 | pchome.net###rightbar 1203 | cskaoyan.com###scanWxQrCode 1204 | wasu.cn###scan_qrcode 1205 | po.baidu.com###shareBoxBlank 1206 | xcar.com.cn###show_car 1207 | hao123.com###slidetoolbarContainer 1208 | suning.com###sn-sidebar-change-code 1209 | haosou.com###so_feb 1210 | sogou.com###sogou_vr_21222401_wrap_0 1211 | ifeng.com###swiper_bottom 1212 | msn.com###taboola-above-homepage-thumbnails 1213 | sina.com.cn###tg_app_w 1214 | auto.qq.com###tips 1215 | jd.com###toolbar-qrcode 1216 | 17173.com###topAlert 1217 | blog.163.com###topbar_gachaArea 1218 | blog.163.com###topbar_lofterDldArea 1219 | blog.163.com###topbar_yxpArea 1220 | ifeng.com###upApp1 1221 | ifeng.com###upApp2 1222 | 51cto.com###upopbox_bot 1223 | 51cto.com###upopbox_mid 1224 | tw.yahoo.com###util-top-promotion 1225 | fydisk.com###vbox 1226 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###video_aside 1227 | ithome.com###wapddfda21 1228 | qudao.com###wechat 1229 | 360.cn###weishi-alert 1230 | kekenet.com###weixinwz 1231 | kekenet.com###weixinwz1 1232 | taoguba.com.cn###wrap_footer > div[style^="width: 957px;"] 1233 | ganji.com###write_resume_id 1234 | ifeng.com###wx 1235 | bendibao.com###wxbox 1236 | anjuke.com###xajk_down_new 1237 | muchong.com###xd_popbox 1238 | wenmi114.com###xiezuo 1239 | 163.com###yjj_pop_wrapper 1240 | youku.com###ykBottomBanner 1241 | house365.com###youXFsmall 1242 | gmw.cn###ysp_gmrbAppLayer 1243 | 1010jiajiao.com###yueyu3 1244 | appchina.com###yyh-bottom 1245 | qyer.com###zpui-head-ad 1246 | ithome.com,zhihu.com##.AdblockBanner 1247 | zhihu.com##.AppMagicBanner 1248 | zhihu.com##.HitQrcode 1249 | qq.com##.J_hot_game 1250 | zhihu.com##.KanshanDiversion 1251 | 3d66.com##.King_Chance_LayerCont 1252 | douyu.com##.PaladinPop 1253 | goodcome.com.tw##.Phase2_BigAdbox 1254 | newsmth.net##.Smthtwenty_float 1255 | zhihu.com##.Sticky > .Card[data-za-detail-view-path-module="ContentList"] 1256 | pcgames.com.cn##.aFollowb 1257 | infoq.com##.ab_detect 1258 | auto.ifeng.com##.acquire_1 1259 | apowersoft.cn##.activity-poster 1260 | huaban.com,zcool.com.cn##.ad 1261 | to8to.com##.ad-commom 1262 | iciba.com##.ad-sign 1263 | igo.cn##.adBG 1264 | pcauto.com.cn##.ad_onlyone 1265 | pixiv.net##.ads_anchor 1266 | medsci.cn##.adv1201 1267 | 2cto.com##.adv980 1268 | 2cto.com##.adv980box 1269 | 8264.com##.advSection__wrapper 1270 | eastmoney.com##.advertisement 1271 | cngold.org##.ag_fwindow_ywp 1272 | jiankang.com##.all_eye 1273 | tmall.com##.app-download-popup 1274 | baidu.com##.app-guide 1275 | qq.com##.app-qrcode 1276 | qidian.com##.app_download_ad 1277 | qidian.com##.app_download_ad02 1278 | loldk.com##.appfix 1279 | baidu.com##.apphint 1280 | uisdc.com##.archive-pm-top 1281 | sina.com.cn##.article-bottom-tg 1282 | itmo.com##.aside-game-icon-box 1283 | to8to.com##.ask_side_opa 1284 | yaofangwang.com##.bad 1285 | fwxgx.com##.baibaoxiang 1286 | baidu.com##.baiduapp-ad-container 1287 | baike.baidu.com##.baike-dynamic-wrapper 1288 | 51cto.com,chinaacc.com,yidianzixun.com##.banner 1289 | baidu.com##.banner-active 1290 | m.toutiao.com##.banner-top 1291 | taobao.com##.banner.row 1292 | pinggu.org##.banner2015 1293 | 55haitao.com##.bbs-bottom-popup 1294 | sina.com.cn##.blk_APP_JSl 1295 | sina.com.cn##.blk_APP_JSr 1296 | 163.com##.bobo-area 1297 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.bonus_forum_aside 1298 | tianya.cn##.book-box 1299 | douban.com##.bottom_ad_download 1300 | to8to.com##.bottom_slide_box 1301 | shejiben.com##.bottom_zb_box 1302 | sogou.com##.bottombar 1303 | to8to.com##.btm-float 1304 | ck101.com##.btn_dw_app 1305 | uuu9.com##.c_box 1306 | iciba.com##.cb-downmask 1307 | zuowen.com##.cj 1308 | hao123.com##.cjcard2017Container 1309 | mumayi.com##.clientBox 1310 | php.cn##.close_id 1311 | m.youku.com##.cmt-more 1312 | m.youku.com##.cmt-more-cont 1313 | qq.com##.code-content 1314 | miercn.com##.color-box 1315 | ibaotu.com##.comVip-tg 1316 | baidu.com##.commentEmbed-backHomeCard 1317 | to8to.com##.common-tender-wrapper 1318 | ithome.com##.con_2 > .img_listbox 1319 | kaopu001.com##.coupleBannerAdv 1320 | rrjc.com##.coupletbox 1321 | yahoo.com##.crazyad 1322 | taoguba.com.cn##.ct_app 1323 | youdao.com##.dialog-guide-download 1324 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.dialogJ.umoney-promotion-dialog 1325 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.dialogJmodal 1326 | youdao.com##.dict-dl 1327 | 163.com##.doc-footer-wrapper 1328 | douyu.com##.double-festival-pop 1329 | finance.sina.com.cn##.downLink 1330 | taobao.com##.downapp 1331 | caijing.com.cn##.downdiv 1332 | m.youku.com##.download 1333 | baidu.com##.download-app-parent 1334 | kdnet.net##.download-bar 1335 | 2.taobao.com##.download-layer 1336 | gfan.com##.downs 1337 | taizhou.com.cn##.duilian 1338 | taizhou.com.cn##.duilian2 1339 | csdn.net##.edu-promotion 1340 | cw.com.tw##.emailorder 1341 | dajie.com##.envelop_layer 1342 | ettoday.net##.etvideo_collect_1 1343 | baidu.com##.eye-catching-tpl-container 1344 | ifeng.com##.fhsd 1345 | baidu.com##.first-card-container 1346 | douyu.com##.firstpay-modal 1347 | xiushuang.com##.fix_app 1348 | hjenglish.com##.fix_questionnaire_btn 1349 | pcauto.com.cn##.fix_sinup_box 1350 | 1010jiajiao.com##.fixed-bar 1351 | ye120.com##.fixed_bottom 1352 | 1010jiajiao.com##.fixedbox2 1353 | autohome.com.cn##.fixqbot 1354 | letv.com##.fl_app_bot_wrap 1355 | letv.com##.fl_app_wrap 1356 | ganji.com##.fl_pop 1357 | to8to.com##.float 1358 | www.163.com##.float-bar 1359 | gitee.com##.float-left-box 1360 | kaoyan.com##.floatQrcode 1361 | fwxgx.com##.float_ad 1362 | ifeng.com##.foot_top_box 1363 | xdf.cn##.footadv 1364 | m.zhanqi.tv##.footer 1365 | me360.com##.footer-booking-open 1366 | miaopai.com##.footer_banner 1367 | 51cto.com##.footer_mask 1368 | nen.com.cn##.for3gagzy 1369 | tmall.com##.fp-lazyload-con[data-path*="/floor-ad-"] 1370 | it168.com##.fu1020_box 1371 | eastmoney.com##.fund-pop 1372 | 55haitao.com##.global-dialog 1373 | 1kkk.com,dm5.com##.guide 1374 | baixing.com##.guide-video-app 1375 | ifeng.com##.h_top_box 1376 | huke88.com##.hand-once 1377 | hao123.com##.hao123-search > .notice-fixed 1378 | m.youku.com##.hdwrap 1379 | jiemian.com##.header-container > div > section[style="width: 100%;"] 1380 | setn.com##.header-left-banner 1381 | setn.com##.header-right-banner-b 1382 | ucptt.com##.hidden-sm 1383 | baidu.com##.home-app-promotion 1384 | miercn.com##.hongbao 1385 | mafengwo.cn##.hotel-banner 1386 | huize.com##.hz-bottom-reserve-link 1387 | zhcw.com##.hzg60 1388 | 163.com##.imglist-bobo-app 1389 | ac.qq.com##.in-hd-mod 1390 | focus.cn##.index-app-download 1391 | heirui.cn##.index711-mask 1392 | aiyuke.com##.index_app_down_ad 1393 | iciba.com##.info-product 1394 | m.taobao.com##.install-app 1395 | 58.com##.invokeApp 1396 | 17173.com##.js-lol-pop 1397 | lofter.com##.js-promote-itm 1398 | pconline.com.cn##.juletao 1399 | 163.com##.kaola-ad 1400 | to8to.com##.kgjr-wrap 1401 | zhcw.com##.khdpc 1402 | v.youku.com##.laifeng 1403 | hjenglish.com,hujiang.com##.lamu_banner 1404 | yidianzixun.com##.layer-download 1405 | house365.com##.left_fudong_ad 1406 | xiaoma.com##.leftewm_topa 1407 | 17173.com##.list-beauty 1408 | baixing.com##.listing-fixed-bottom-promo 1409 | duowan.com##.lolboxapps-qrcode 1410 | ltn.com.tw##.ltn_ad 1411 | ifeng.com##.luckybag 1412 | eic.org.cn##.lx-btm-box 1413 | 163.com##.m-adv 1414 | hupu.com##.m-app-info 1415 | iqiyi.com##.m-downApp 1416 | blog.163.com##.m-regGuideLayer.f-trans 1417 | 163.com##.m-slider-footer 1418 | pclady.com.cn##.mdxyAppEnter 1419 | xdf.cn##.middleadv 1420 | qq.com##.mod_float_banner 1421 | ifeng.com##.mr_top_box 1422 | maiziedu.com##.msg 1423 | pinggu.org##.mui-mbar-tabs 1424 | tmall.com##.mui-mbarp-qrcode 1425 | 3g.163.com##.ne_rps 1426 | koolearn.com##.news_pf 1427 | hao123.com##.newskin-tip 1428 | letv.com##.newyear_red_bot_wrap 1429 | letv.com##.newyear_red_wrap 1430 | douyu.com##.noble-up-guide 1431 | 163.com##.ns-side-qrcode 1432 | ithome.com##.open-app-banner 1433 | baidu.com##.openAppCarsouselTpl 1434 | baidu.com##.openAppCommonTpl-100 1435 | baidu.com##.openBox-shareEntry 1436 | csdn.net##.p4course_target 1437 | mobile.baidu.com##.p_fixed_lb 1438 | csdn.net##.padb0 1439 | yamol.tw##.panel[style="text-align:left;width:100%;padding:0px;background-color:white"] 1440 | csdn.net##.panel_body > div[style^="position:fixed;bottom: 0;"] 1441 | iciba.com##.pc-entry 1442 | douyu.com##.pendant-wrap 1443 | jikexueyuan.com##.pewm2 1444 | jikexueyuan.com##.pewm3 1445 | mumu.163.com##.pic-con 1446 | 17173.com##.pic[href*="Room"] 1447 | 96weixin.com##.pop 1448 | youku.com##.pop-prompt-box 1449 | longzhu.com##.pop-up-button 1450 | touzi.com##.pop720-bg 1451 | touzi.com##.pop720-box 1452 | ifanr.com##.popup-app-download 1453 | uisdc.com##.post-pm-content 1454 | zhiyoo.com##.prompt 1455 | qq.com##.public-banner 1456 | csdn.net##.pulllog-box 1457 | qq.com##.qGirl-wrap 1458 | qdmm.com,qidian.com##.qdRead_client 1459 | qdmm.com,qidian.com##.qdRead_redscan 1460 | tianya.cn##.qhb-Box 1461 | focus.cn##.qhb-fixed 1462 | wasu.cn##.qp 1463 | kuwo.cn##.qr_wrapper 1464 | 163.com##.quickmark 1465 | to8to.com##.quoted-outside 1466 | m.youku.com##.recommend 1467 | news.baidu.com##.recommend-animate 1468 | m.babytree.com##.recommend-brand 1469 | m.babytree.com##.recommend-img-box 1470 | news.baidu.com##.recommend-mask 1471 | longzhu.com##.recommend-pop-up 1472 | m.toutiao.com##.recommendation-container + div[class] 1473 | oschina.net##.recruitment 1474 | p2peye.com##.red-box 1475 | baixing.com##.red-package 1476 | baidu.com##.redenvelope-small 1477 | dajie.com##.register_layer 1478 | blog.51cto.com##.relatedArt.box 1479 | 163.com##.rg_ad 1480 | itmo.com##.right-side-pop 1481 | setn.com##.rightFloat 1482 | baidu.com##.rmb-carsousel-position-bottom 1483 | baidu.com##.rmb-growth-common-tpl-1-wrapper 1484 | baidu.com##.s-news-banner-wrap 1485 | baidu.com##.s-tutorial-tip 1486 | baihe.com##.scrollULeft 1487 | baihe.com##.scrollUpf 1488 | koolearn.com##.show_ad 1489 | sina.com.cn##.side-btns-2wm 1490 | firefox.com.cn,firefoxchina.cn##.side-mod[track-key="side_tpth"] 1491 | babytree.com##.side-text-slider 1492 | hexun.com##.side618 1493 | sogou.com##.side_adv_wrap 1494 | tianya.cn##.slider_box 1495 | 56.com##.sohu-app 1496 | ctfile.com##.speedydown-info-box 1497 | jingyu.com##.stream-app 1498 | douyu.com##.summer_enter 1499 | co188.com##.suspen 1500 | 51cto.com##.suspend 1501 | news.baidu.com##.swipe-backflow-container 1502 | miaopai.com,renren.com##.swiper-container 1503 | touzi.com##.tck-cover 1504 | sogou.com##.tg-box-1 1505 | zhcw.com##.tgtc 1506 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.thread_recommend 1507 | jiankang.com##.three_hot 1508 | jianshu.com##.top 1509 | 163.com,zybang.com##.top-banner 1510 | btime.com##.top-bar 1511 | sogou.com##.top_adv_wrap 1512 | zybang.com##.top_download 1513 | 1111.baidu.com,jump.bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.topic_list_box 1514 | renren.com##.toplive 1515 | 163.com##.topnav_ad 1516 | kuwo.cn##.tuiguang 1517 | hao123.com##.tvtip 1518 | 163.com##.txt-bobo 1519 | yd.baidu.com##.ui-distribution-bar 1520 | 51cto.com##.upopbg 1521 | letv.com##.vip_popBox 1522 | nen.com.cn##.w610 1523 | wbiao.cn##.wb-panel 1524 | jrj.com.cn##.wbyy 1525 | cnbeta.com##.wdj_box 1526 | hehagame.com##.webad_bottom 1527 | hehagame.com##.webad_right 1528 | kdslife.com,pchome.net##.weixin 1529 | to8to.com##.whan-ad 1530 | w3cschool.cn##.widget-main 1531 | m.babytree.com##.wrap > section[class*="0"],.wrap > div[class*="0"] 1532 | m.babytree.com##.wrap > section[class*="4"],.wrap > div[class*="4"] 1533 | m.babytree.com##.wrap > section[class*="9"],.wrap > div[class*="9"] 1534 | m.autohome.com.cn##.wrapper > section[class^="box_"] 1535 | yahoo.com##.wrapper-border > .Pos\(r\) > .VideoPlayer.D\(b\).Pos\(r\) 1536 | 56.com##.x-download-panel 1537 | 1010jiajiao.com##.xiti_content + .xiti 1538 | 56.com##.xiu_mm 1539 | ifeng.com##.yc_con_r 1540 | qq.com##.yscoin-box 1541 | 8264.com##.zhidemaibox 1542 | zol.com.cn##.zolapp 1543 | 1905.com##.zx-pic 1544 | 1905.com##.zx-small-pic 1545 | m.babytree.com##a[class$="-join"] 1546 | m.56.com##a[data-statkey="newad_banner"] 1547 | loldk.com##a[href$=".html?from=video_right"] 1548 | ifeng.com##a[href*=".app"] 1549 | 163.com##a[href*=".kaola.com"]:first-child:last-child 1550 | sina.com.cn##A[href*="/comfinanceweb."] 1551 | crsky.com##a[href^="http://count."][href$=".exe"] 1552 | ~laifeng.youku.com,youku.com##a[href^="http://cps.laifeng.com/"] 1553 | ~laifeng.youku.com,youku.com##a[href^="http://cps.laifeng.com/"] + .bg + img 1554 | 163.com,~love.163.com##a[href^="http://love.163.com/"] 1555 | ltn.com.tw##A[href*="draw.ltn.com.tw"] 1556 | baidu.com#?#.rec-item:-abp-has(> .vbox > div > .appad-relate-rectpl) 1557 | baijiahao.baidu.com,feed.baidu.com##body > div[id$="-container"]:last-child 1558 | cnbeta.com##div[id][style^="position: fixed; bottom: 0px;"] 1559 | cnbeta.com##div[style^="display:block !important;"] 1560 | dongao.com##div[class^="fu_"] 1561 | ifeng.com##div[class^="h"] > div[class$="-main"] 1562 | thenewslens.com##div[class^="help-tnl-container-"] 1563 | cntv.cn##div[class^="tchmk_"] 1564 | eastmoney.com##div[id^="em_important_"] 1565 | finance.sina.com.cn##div[id^="st01_cont0"] 1566 | ci123.com##div[onclick^="window.location="] 1567 | subhd.com##div[style="position:fixed;bottom:20px;left:20px;"] 1568 | 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;"] 1569 | fmdisk.com##div[style="width: 960px; margin: 0 auto; height:900px; color: #F00; font-size: 14px; text-align:left;"] > p 1570 | 2cto.com##div[style^="float:left;width:300px;"] 1571 | ithome.com##div[style^="width:960px;height:60px;"] 1572 | iqiyi.com##div[style^="z-index: 4200; position: absolute; left:"] 1573 | iqiyi.com##iframe[style^="z-index:"]:last-child 1574 | m.babytree.com##script + a[class] 1575 | !---------------------------------CSS Whitelist-------------------------------! 1576 | !---------------------------------URL Whitelist-------------------------------! 1577 | @@||th7.cn/sanda2015/css/ads.js 1578 | @@||lancdn.com/landian/public/js/ads.js 1579 | @@||qbox.me/static/js/ads.js$domain=linux.cn 1580 | @@/adview_pic_$domain=doutula.com|fastadmin.net|toolfk.com|xclient.info 1581 | @@||fm.ipinyou.$domain=ipinyou.com.cn 1582 | @@||fm.p0y.cn^$domain=ipinyou.com.cn 1583 | !--------------------------------Tracking Systems-----------------------------! 1584 | ||xuan5.com^$third-party 1585 | ||com.day^ 1586 | ||tongjiniao.com^$third-party 1587 | .com/js/o.js$domain=qdmm.com|qdwenxue.com|qidian.com 1588 | ||3158.cn^*_analyser. 1589 | /analytics.js$domain=qunar.com 1590 | /cp2.gif?*=qc_ 1591 | /hunter/alog/* 1592 | /js/soku-analytics.js 1593 | /mysql/count/*$script,domain=ts.cn 1594 | /scriptonline.js?uin= 1595 | /soku/giantstar/js/youlog.js 1596 | /tb/img/hg/hg.gif? 1597 | /v.gif?logtype= 1598 | /yesky/js/counter/* 1599 | /zcool-analytics.js 1600 | ||aizhantj.com^ 1601 | ||lzp.plus^ 1602 | ||wujiupic.com^ 1603 | ||video.qq.com/checktime? 1604 | ||cdn-data-cloud.com/history/ 1605 | ||s.ssl.qhres2.com/ssl/ 1606 | ||pstatp.com^*/push.js 1607 | ||pv.cheshi.com^ 1608 | ||tracking.kdnet.net^ 1609 | ||lnd.com.cn/sys/real_calc.js 1610 | ||sogou.com/dr/p1.gif 1611 | ||stat.jc001.cn^ 1612 | ||ip.tianqiapi.com^ 1613 | ||count.nuanyuehanxing.com^ 1614 | ||pconline.com.cn/ipJson. 1615 | ||develenv.com^$third-party 1616 | ||syzjxz2018.cn^ 1617 | ||gog.cn/sys/online_calc.js 1618 | ||ip.ws.126.net^$domain=~fxingw.com 1619 | ||dhgxl8qk9zgzr.cloudfront.net/js/log.js 1620 | ||optimix.cn^$third-party 1621 | ||bdp.cn^$third-party 1622 | ||126.net^*analysis 1623 | ||zol.com.cn/pvn/ 1624 | ||map.baidu.com^$domain=laosiji.com 1625 | ||laosiji.com/static/js/lib/od_statistics.js 1626 | ||100bt.com/dc?Url 1627 | ||113.105.248.169^ 1628 | ||115img.com/static/115tj.js 1629 | ||123cha.com/counter.js 1630 | ||218.30.15.193/phpstat/count/ 1631 | ||28.com/count.js 1632 | ||28.com/countnew.js 1633 | ||39.net/js/wt.js 1634 | ||51.la^$third-party 1635 | ||5173.com/__tra.gif? 1636 | ||51la.net^$third-party 1637 | ||58cdn.com.cn/resource/xxzl/xxfw/ 1638 | ||8cnd.com^ 1639 | ||91160.com/nykj/f=static/v4/common/tj.js 1640 | ||a-m-s.adnonstop.com^ 1641 | ||a.tbcdn.cn/s/ac.js 1642 | ||a.tbcdn.cn/s/atp.js 1643 | ||a.tbcdn.cn/s/tb-tracer-min.js 1644 | ||abab.com/pv.js 1645 | ||acookie.*.gif? 1646 | ||analy.tuniu.cn^ 1647 | ||analyse.weather.com.cn^ 1648 | ||analysis.chinaiiss.com^ 1649 | ||analytics-union.sandai.net^ 1650 | ||analytics-union.xunlei.com^ 1651 | ||analytics.21cn.com^ 1652 | ||analytics.techweb.com.cn^ 1653 | ||analytics.tv189.cn^ 1654 | ||api.cupid.qiyi.com/etx? 1655 | ||api.cupid.qiyi.com/track2 1656 | ||apistat.gao7.com^ 1657 | ||apistat.wasu.cn^ 1658 | ||apple.www.letv.com/env/? 1659 | ||ark.letv.com/t? 1660 | ||atpanel.com^$image 1661 | ||autohome.com.cn/risk_fp_log? 1662 | ||autoimg.cn/bi/mda/ahas_body. 1663 | ||baidu.com/4.gif? 1664 | ||baidu.com/smalllog/ 1665 | ||baidu.com^*/w.gif? 1666 | ||bdstatic.eastmoney.com^ 1667 | ||bendibao.com/js/count.js 1668 | ||bitauto.com/bglog.gif? 1669 | ||bshare.cn/bshare_view?Callback= 1670 | ||bt.ktxp.com/iframe/statistics.js 1671 | ||btdb.in/beacon.html 1672 | ||btime.com/api/weblog? 1673 | ||bytecdn.cn/ta/resource/v0/analytics.js 1674 | ||ca.cbsi.com.cn/rpv? 1675 | ||carstat.bitauto.com^ 1676 | ||cbjg.cqnews.net^ 1677 | ||cbsi.com.cn/js/mlt.js 1678 | ||ccoo.cn/mystat.asp 1679 | ||cdnlog.zhenai.com^ 1680 | ||cheshi-img.com/js/pv.min.js 1681 | ||chinatimes.com/analytics/ 1682 | ||chouti.com/js/tingyun-rum.js 1683 | ||cig.com.cn^$third-party 1684 | ||cjyun.org/assets/js/analytics.js 1685 | ||click.tianyaui.com^ 1686 | ||cnfol.com/Count.html 1687 | ||cnmo.com/pv.js 1688 | ||cnpc.infzm.com^ 1689 | ||comm100.cn/livechatserver/chatbutton.*&res= 1690 | ||count.candou.com^ 1691 | ||count.enet.com.cn^ 1692 | ||count.iyaxin.com^ 1693 | ||count.pcauto.com.cn^ 1694 | ||count.pcgames.com.cn^ 1695 | ||counter.pcauto.com.cn^ 1696 | ||counter.tianjimedia.com^ 1697 | ||countpage.sznews.com^ 1698 | ||cpms.now.com^ 1699 | ||damai.cn/phpstat/ 1700 | ||data.xici.net^ 1701 | ||dcs.conac.cn/js/ 1702 | ||dfcfw.com/libs/js/counter.js 1703 | ||dianping.com/hippo.gif? 1704 | ||dig.qbao.com^ 1705 | ||doc88.com^*/count.js 1706 | ||dp3.qq.com/qqcom/ 1707 | ||duba.com/static/*/js/min.pop.js 1708 | ||dw.xcar.com.cn^*.gif? 1709 | ||ea3w.com/pv.js 1710 | ||eastmoney.com/analysis/ 1711 | ||ejieban.com^ 1712 | ||fcm.baidu.com^ 1713 | ||fengniao.com*/pv.js 1714 | ||fjsen.com:81/mysql/count/ 1715 | ||frame.enet.com.cn/a.php 1716 | ||fx678.com/htcount/count.js 1717 | ||gridsumdissector.cn/gs.gif? 1718 | ||guahao.cn/blank.gif? 1719 | ||hao123img.com/res/js/track.js 1720 | ||hc360.com/js/module/common/logrecordservice. 1721 | ||hdslb.com/js/bfd.js 1722 | ||hexun.com/js/att_count.js 1723 | ||hiido.com^$third-party 1724 | ||hm.baidu.com/mkt.js 1725 | ||hupu.com/_dace.gif? 1726 | ||house365.com/js/analyze.js 1727 | ||hz.youku.com/red/ 1728 | ||iciba.com/web/static/scripts/kds2_record.js 1729 | ||icon.zol-img.com.cn/mainpage/js/click.js 1730 | ||ifengimg.com^*/sta_collection 1731 | ||img.kuai.xunlei.com/js/statistics.js 1732 | ||imp.zol.com.cn^ 1733 | ||iqiyi.com/etx? 1734 | ||iqiyi.com/js/pingback/ 1735 | ||iqiyi.com/track 1736 | ||isdspeed.qq.com^ 1737 | ||it168.com/pv.js 1738 | ||itc.cn/cache/lib/v2/odvmonitor/ 1739 | ||itc.cn/hdpv.js 1740 | ||itc.cn^*/tracker.js 1741 | ||itsmore.cn^$third-party 1742 | ||js.passport.qihucdn.com/11.0.1.js 1743 | ||kaipuyun.cn/count/ 1744 | ||kkpgv2.xunlei.com^ 1745 | ||l.ykimg.com^ 1746 | ||ll.hudong.com^ 1747 | ||log.daqi.com^ 1748 | ||log.mtime.cn^ 1749 | ||log.music.baidu.com^ 1750 | ||log.vdisk.cn^ 1751 | ||log2.mtime.cn^ 1752 | ||lotour.net/analytics/statsv2.js 1753 | ||mafengwo.cn/uva/i.gif? 1754 | ||mlog.aipai.com^ 1755 | ||msg.ettoday.net^ 1756 | ||msg.iqiyi.com^ 1757 | ||msg.video.qiyi.com^ 1758 | ||msn.ynet.com/c/tj_comm.js 1759 | ||news.cn/pc-log? 1760 | ||newspage.xilu.com/model/visitlog.js 1761 | ||nmgnews.com.cn/sys/online_calc.js 1762 | ||nsclick.baidu.com^ 1763 | ||olpv.onlylady.com^ 1764 | ||optaim.com^$third-party 1765 | ||other.v.duowan.com^ 1766 | ||p0y.cn^ 1767 | ||p2p.v.yyclouds.com/crossdomain.xml 1768 | ||pconline.com.cn/count.php? 1769 | ||pcpop.com/pv/pv.js 1770 | ||playstats.v.duowan.com^ 1771 | ||push.zhanzhang.baidu.com/push.js 1772 | ||pv.zhiding.cn^ 1773 | ||pvtest.zol.com.cn^ 1774 | ||qdp.qidian.com^ 1775 | ||qhimg.com/clk.gif? 1776 | ||qhimg.com/js/iwt.js 1777 | ||qunar.com/js/ga.min.js 1778 | ||qunar.com/render/ga.jsp? 1779 | ||qunar.com/render/googlesem.jsp 1780 | ||qyer.com^*/base_beacon_ga.js 1781 | ||qzwb.com/phpstat/ 1782 | ||record.kuai.xunlei.com^ 1783 | ||reportlog.dftoutiao.com^ 1784 | ||runsky.com/phpstat/ 1785 | ||s-msn.com/portal/js/vendor/manto/ 1786 | ||s.btime.com^ 1787 | ||s.so.360.cn^ 1788 | ||s.union.360.cn^ 1789 | ||sina.cn*/view? 1790 | ||sohu.com/mail/pv/ 1791 | ||stat.2u.com.cn/ol_2u.js 1792 | ||stat.baike.com^ 1793 | ||stat.cnmo.com^ 1794 | ||stat.cqwb.com.cn^ 1795 | ||stat.cutv.com^ 1796 | ||stat.download.xunlei.com^ 1797 | ||stat.ea3w.com^ 1798 | ||stat.game.yy.com^ 1799 | ||stat.hebnews.cn^ 1800 | ||stat.hkwb.net^ 1801 | ||stat.house365.com^ 1802 | ||stat.ijinshan.com^ 1803 | ||stat.img-space.com^ 1804 | ||stat.mql5.com^ 1805 | ||stat.pchome.net^ 1806 | ||stat.timedg.com^ 1807 | ||stat.ts.cn^ 1808 | ||stat.v.17173.com^ 1809 | ||stat.xgo.com.cn^ 1810 | ||stat.yunfan.com^ 1811 | ||static.gridsumdissector.com^ 1812 | ||static.youku.com/*/index/js/iresearch.js 1813 | ||static.youku.com/*/js/cps.js 1814 | ||static.zongheng.com^*/ad_click.js 1815 | ||static.zongheng.com^*/adClickStat.js 1816 | ||static.zongheng.com^*/logger.min.js 1817 | ||statis1.mama.cn^ 1818 | ||stats.766.com^ 1819 | ||stats.v.duowan.com^ 1820 | ||suning.cn/javascript/sn_da/sa.js 1821 | ||sxrb.com/front/stat/ 1822 | ||ta.trs.cn^$third-party 1823 | ||tajs.qq.com^ 1824 | ||tcss.qq.com^ 1825 | ||tingyun.com^$third-party 1826 | ||tj.21ic.com^ 1827 | ||tjj.com^ 1828 | ||trends.com.cn/k.js 1829 | ||tw.rd.yahoo.com^$image 1830 | ||uedas.$domain=qdmm.com|qdwenxue.com|qidian.com 1831 | ||uuu9.com/photolog.html 1832 | ||vm.aty.sohu.com^ 1833 | ||wlxww.com/html/analytics/ 1834 | ||xgo.com.cn/pv.js 1835 | ||xls.go.sohu.com^ 1836 | ||xs8.cn/qreport? 1837 | ||xunlei.com/api/stat/rt/js? 1838 | ||yaolan.com/ylk.mini.js 1839 | ||ynet.com/c/js/manto.min.js 1840 | ||youdao.com/ctlog? 1841 | ||youdao.com/rlog.php 1842 | ||youdao.com/tl? 1843 | ||ysont.cn^ 1844 | ||zdnet.com.cn/js/pv.js 1845 | ||zdw.w8.com.cn/p.ht? 1846 | ||zhulang.com/zlpv.php 1847 | ||zol.com.cn/cgimp/zc.js 1848 | !----------------------------------The End------------------------------------! 1849 | -------------------------------------------------------------------------------- /cjx-ublock.txt: -------------------------------------------------------------------------------- 1 | [uBlock Origin] 2 | ! Title: CJX's uBlock list 3 | ! Expires: 4 days 4 | ! Homepage: https://github.com/cjx82630/cjxlist 5 | ! Licence: https://github.com/cjx82630/cjxlist/blob/master/LICENSE 6 | ! 7 | ! Supplement for "EasyList China+EasyList" & "EasyPrivacy" & "CJX's Annoyance List" 8 | ! Removed Ads,Anti-adblock,Annoyances,Self-promotion & Privacy Protection on Chinese Websites 9 | ! Filters optimized for uBlock 10 | ! Email (cjxlist@gmail.com) 11 | !--------------------------General blocking filters---------------------------! 12 | !------------------------General element hiding rules-------------------------! 13 | !-----------------------------Union&third-party-------------------------------! 14 | !---------------------------Popups--------------------------------------------! 15 | !--------------------------Specific blocking filters--------------------------! 16 | youminggu.com,yemancomic.com,zkk78.com,jinbaodm.com##+js(acis,document.write,location.href) 17 | youminggu.com,yemancomic.com,zkk78.com,jinbaodm.com##+js(nostif, location.href) 18 | yemancomic.com##+js(aopr,randoms) 19 | 1010jiajiao.com##+js(aopr,jdrand) 20 | 3g.163.com##+js(set,specialHideAd,true) 21 | 3cinfo.net##+js(acis,eval,split) 22 | 4399.com##+js(aopr,defaultbackgroundimg) 23 | 1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com##.special_conf_skin .wrap1:style(background:none !important;) 24 | 1111.baidu.com,bdimg.com,tieba.baidu.com,tieba.com,xingqu.baidu.com###plat_recom_carousel[style$="380px;"]:style(height:80px !important;) 25 | 233tw.com##+js(acis,onload) 26 | ahri8.top##+js(acis,document.querySelectorAll,popMagic) 27 | baomidou.com##+js(set, _AdBlockInit, true) 28 | bingfeng.tw##+js(nostif,newtag) 29 | chinaz.com###imgbd:style(background:none !important;) 30 | chinaz.com##.CCtop:style(margin-top:10px !important;) 31 | chinaz.com##.CClose 32 | cocomanhua.com##+js(aopr,jQuery.fn.html) 33 | cocomanhua.com##+js(aopr,__cad.cpm_popunder) 34 | cocomanhua.com##+js(aopr,__ad) 35 | ddrk.me,ddys.tv,ddys.art##+js(aopr,Object.prototype.ads.isInAdMode) 36 | dlkoo.com##+js(acis,setTimeout,testad) 37 | fpbsnc.com,lsntzzy3.com##+js(set,ps,noopFunc) 38 | ||huya.com/leaf/*=vodadv&$redirect=noop-0.1s.mp3,domain=huya.com 39 | ip.cn##img[src*="/img/"]:style(height:101px !important;) 40 | juxia.com##.mian_body:style(background-image:none !important;) 41 | itdog.cn##+js(aopr,alert) 42 | league-funny.com##+js(aopr,onload) 43 | 52bdys.com##+js(aopr,onload) 44 | 52xkdy.com,fydy8.com##+js(set,jsok,true) 45 | 939394.xyz##+js(acis,atob) 46 | bde4.icu##+js(aopr,onload) 47 | !https://bbs.kafan.cn/thread-2180923-1-1.html 48 | nfmovies.com##+js(set,initAd,noopFunc) 49 | nfmovies.com##+js(set,adTime,0) 50 | nfmovies.com##+js(acis,$myui,probe) 51 | nfmovies.com###adright:style(margin-right:9000px !important;) 52 | bbs.pcbeta.com##div[style="width:998px;height:75px;border:1px solid #cdcdcd;border-top:3px solid #009ad9;margin:0 0 10px 0;background:#fff;"] + style + div[class]:style(height:270px !important;) 53 | pincong.rocks##+js(aopr, AWS.alert) 54 | qq.com##+js(json-prune,ad) 55 | rjno1.com##+js(acis, setTimeout) 56 | rjno1.com##+js(acis, onload) 57 | rjno1.com#?#div:-abp-has(> p:-abp-contains(ad block)) 58 | ruanyifeng.com##+js(aopr, setTimeout) 59 | tingfm.com##+js(set, canRunAds, true) 60 | !#Novels 61 | biquge.ac,zhuoshuge.com##+js(aopr,setTimeout) 62 | haijiaobooksw.top,bqug8.com,biqudd.com,biquge345.com,dingdian365.com,dingdian888.com,nicmar.net,xianguke.net,ykxs.cc,zhuoshuge.com,zuizhong.net##+js(acis, document.write, style) 63 | !------------------------Specific element hiding rules------------------------! 64 | !---------------------------------CSS Whitelist-------------------------------! 65 | !---------------------------------URL Whitelist-------------------------------! 66 | @@||tanx.com/ex?i=$script,domain=dlkoo.com,badfilter 67 | @@||bingfeng.tw^$generichide,badfilter 68 | !--------------------------------Tracking Systems-----------------------------! 69 | !https://raw.githubusercontent.com/uBlockOrigin/uAssets/master/filters/filters.txt 70 | ||cibntv.net/youku/*$media,redirect=noopmp3-0.1s,domain=youku.com 71 | ||valipl.cp31.ott.cibntv.net^$media,redirect=noopmp3-0.1s,domain=youku.com 72 | youku.com##+js(nano-stb, , ,0) 73 | @@||valipl.cp31.ott.cibntv.net^$xhr,domain=youku.com 74 | *$image,redirect-rule=1x1.gif,domain=youku.com 75 | !----------------------------------The End------------------------------------! 76 | -------------------------------------------------------------------------------- /cjxlist.txt: -------------------------------------------------------------------------------- 1 | [Adblock Plus 2.0] 2 | ! Version: 202012080856 3 | ! Title: CJX's EasyList Lite 4 | ! Last modified: 2020/12/08 08:56 +0800 5 | ! Expires: 10 days (update frequency) 6 | ! Homepage: https://github.com/cjx82630/cjxlist 7 | ! Licence: https://easylist-downloads.adblockplus.org/COPYING 8 | ! 9 | ! This is a lite version of Easylist.Filters triggered only on Simplified Chinese websites. 10 | ! If you only visite Simplified Chinese Websites.You can replace "EasyList China+EasyList" with "EasyList China+CJX's EasyList Lite" . 11 | ! Fork of EasyList https://easylist-downloads.adblockplus.org/easylist.txt 12 | ! Email (cjxlist@gmail.com) 13 | /api/ads? 14 | /popunder1000. 15 | /adspaces. 16 | /300x250. 17 | /crazyad. 18 | ###ad900 19 | ##.advert-card 20 | ##.topAd 21 | ##.ad_btn 22 | ##.ad_two 23 | ##.ad_right 24 | ##.ad-body 25 | .one/ads/ 26 | /ad/images/* 27 | /adshow/* 28 | /new/ads/* 29 | ##.right-ad 30 | .com/ad1/ 31 | /ad_common. 32 | /pop_ads. 33 | ?ad_type= 34 | /static/ad- 35 | /new/ads/* 36 | /getad.$domain=~getad.pl 37 | ##.area_ad 38 | .net/adv/ 39 | ##.lt_ad 40 | ##.adv_img 41 | ##.ad_90 42 | /newAd/* 43 | /adsjs/* 44 | /AdsShow. 45 | /v2/ads/* 46 | ##.lyad 47 | ##.w_ad 48 | ##.content-ads 49 | ##.adInfo 50 | ###floatAd-left 51 | ###floatAd-right 52 | ###footAd 53 | ###bgad 54 | .pw/ads/ 55 | ###left_top_ad 56 | ##.bottom-adv 57 | /ad.php? 58 | .php?ad= 59 | /728_90. 60 | ###TopAdvert 61 | dm5.com###a1 62 | ###ad-box 63 | ###adBody01 64 | ###adBody02 65 | ###adBody03 66 | ###adBody04 67 | ###adBody06 68 | ###adUn_1 69 | ###adUn_2 70 | ###adUn_3 71 | ###ad_1 72 | ###ad_banner 73 | ###ad_bottom 74 | ###ad_box 75 | ###ad_left 76 | ###ad_link 77 | ###ad_right 78 | ###ad_text:not(textarea) 79 | ###adjs_id 80 | ###adleft 81 | ###adright 82 | ###ads_inner 83 | ###ads_left 84 | ###ads_right 85 | ###adsense 86 | ###advert_1 87 | ###advertisement_box 88 | ###advt 89 | ###bannerAd 90 | ###bottom-ads-container 91 | ###bottomAd 92 | ###bottomad 93 | ###content-ad 94 | tgfcer.com#@##content_adv 95 | ###flashad 96 | ###floatAD_l 97 | ###floatAD_r 98 | ###googleAd 99 | ###googlead 100 | ###head_ad_area 101 | ###header_ad 102 | ###homead 103 | ###leftAD 104 | ###left_ad 105 | ###left_adv 106 | ###leftad 107 | ###playerAd 108 | ###player_ad 109 | ###rightAD 110 | ###right_ad 111 | ###rightad2 112 | ###slide_ad 113 | ###slider_ad 114 | ###sponsored_links 115 | ###textad 116 | ###top-ad 117 | ###top-ads 118 | ###topAdv 119 | ###top_ad_box 120 | ###topad1 121 | &ad_type= 122 | &adsrc= 123 | -728-90. 124 | -728x90. 125 | .728x90. 126 | ##.AdTop 127 | msn.com##.ad 128 | ##.ad-300x250 129 | ##.ad-300x600 130 | ##.ad-5 131 | ##.ad-6 132 | ##.ad-area 133 | ##.ad-banner 134 | ##.ad-block 135 | ##.ad-cell 136 | ##.ad-desktop 137 | ##.ad-group 138 | ##.ad-left 139 | ##.ad-mod 140 | ##.ad-r 141 | ##.ad-right 142 | ##.ad-section 143 | ##.ad-text 144 | ##.ad-top 145 | ##.ad01 146 | ##.ad02 147 | ##.ad03 148 | ##.ad04 149 | ##.ad1000 150 | ##.ad250x250 151 | ##.ad300 152 | ##.ad300x250 153 | ##.ad728 154 | ##.ad960 155 | ##.ad980 156 | ##.adBanner 157 | ##.adDingT 158 | ##.adLink 159 | ##.adNone 160 | ##.ad_1000x90 161 | ##.ad_250x250 162 | ##.ad_300250 163 | ##.ad_336x280 164 | ##.ad_640x90 165 | ##.ad_960 166 | ##.ad_banner 167 | ##.ad_bar 168 | ##.ad_bg 169 | ##.ad_box 170 | ##.ad_content 171 | ##.ad_hover_href 172 | ##.ad_mod 173 | ##.ad_news 174 | ##.ad_notice 175 | ##.ad_text 176 | ##.ad_top 177 | ##.ad_wrap 178 | ##.ad_zone 179 | ##.adboard 180 | ##.adbottom 181 | ##.adclass 182 | ##.adline 183 | ##.adlist 184 | ##.ads-1 185 | ##.ads-2 186 | ##.ads-content 187 | ##.ads-item 188 | ##.ads02 189 | ##.ads03 190 | ##.ads1 191 | ##.ads3 192 | ##.ads4 193 | ##.adsbygoogle 194 | .adsense. 195 | .adserver. 196 | ##.adspace 197 | ##.adtable 198 | ##.adtop 199 | ##.adtxt 200 | ##.adv-300-250 201 | ##.adv250 202 | ##.adv_left 203 | ##.adv_right 204 | ##.advert_nav 205 | ##.article_ad 206 | ##.b_ad 207 | ##.bg_ad 208 | ##.bottomAd 209 | ##.box-ad 210 | ##.c-ad 211 | .cc/ads/ 212 | .co/ads/ 213 | ##.col-ad 214 | .com/ad.$~script,domain=~ad-tuning.de 215 | .com/ad/$~image,third-party,domain=~mediaplex.com 216 | .com/ad/$~third-party,domain=~blogs.technet.microsoft.com|~channel4.com|~mediaplex.com 217 | .com/ads. 218 | .com/ads/$image,object,subdocument 219 | .com/ads? 220 | .com/ads_ 221 | .com/adv/ 222 | .com/adv? 223 | .com/adx/ 224 | .com/js.ng/ 225 | .com/js/ads/ 226 | ##.ct-ad-article-wrapper 227 | .eu/ads/ 228 | ##.flash_ad 229 | ##.footer-ad 230 | ##.hd-adv 231 | ##.head-ad 232 | ##.head_ad 233 | ##.headad 234 | .hk/ads/ 235 | ##.house-ads 236 | ##.hp_textlink_ad 237 | ##.html5-ad-progress-list 238 | .html?ad_ 239 | ##.imgad 240 | .info/ads/ 241 | ##.item-ad 242 | ##.leftAd 243 | ##.long_ad 244 | .me/ads/ 245 | ##.mid_ad 246 | ##.mks_ads_widget 247 | ##.mod-ad 248 | ##.mod_ad_text 249 | ##.mod_ads 250 | ##.mod_index_ad 251 | .net/ad- 252 | .net/ad/$~object-subrequest 253 | .net/ads/ 254 | .net/adv/ 255 | .org/ad/ 256 | .org/ads/ 257 | .php?zoneid= 258 | ##.r-ad 259 | ##.r_ad 260 | ##.rightAD 261 | ##.rightAd 262 | ##.right_advert 263 | ##.rightadv 264 | ##.side-ad 265 | ##.side_ad 266 | ##.sidead 267 | ##.sidebar-ad 268 | ##.sponsor_image 269 | .swf?clicktag= 270 | ##.text-ad 271 | ##.textAd 272 | ##.textad 273 | ##.top-ads 274 | ##.top_ad 275 | ##.topad1 276 | ##.topads 277 | ##.trc-content-sponsored 278 | .tv/ads/ 279 | ##.ui-ad 280 | ##.widget-ad 281 | ##.widget-ads 282 | ##.widget_ad_rotator 283 | ##.widget_ads 284 | ##.widget_adsensem 285 | ##.widget_advert 286 | /160_600_ 287 | /300_250_ 288 | /300x250- 289 | /300x250. 290 | /300x250_ 291 | /468_60. 292 | /728-90. 293 | /728_90_ 294 | /AdPreview/* 295 | /Api/Ad. 296 | /GetAdForCallBack? 297 | /ad-specs. 298 | /ad.gif| 299 | /ad.php|$popup 300 | /ad/article_ 301 | /ad/files/* 302 | /ad1. 303 | /ad1_ 304 | /ad2. 305 | /ad3. 306 | /ad5. 307 | /ad_display. 308 | /ad_footer. 309 | /ad_footer_ 310 | /ad_header. 311 | /ad_home_ 312 | /ad_iframe. 313 | /ad_img/* 314 | /ad_left. 315 | /ad_right. 316 | /ad_tag. 317 | /ad_top_ 318 | /adbanner/* 319 | /adbox/* 320 | /adcode. 321 | /adcode/* 322 | /adcomp. 323 | /adfile. 324 | /adfiles/* 325 | /adfront/* 326 | /adfshow? 327 | /adhads. 328 | /adhtml/* 329 | /adimg. 330 | /adimg/* 331 | /adjs. 332 | /adjs/* 333 | /adkingpro- 334 | /adkingpro/* 335 | /adlink. 336 | /adload. 337 | /adloader. 338 | /adman. 339 | /admonitor. 340 | /adpic. 341 | /adpic/* 342 | /adpolestar/* 343 | /adproxy. 344 | /adright. 345 | /ads-arc. 346 | /ads.js? 347 | /ads.php 348 | /ads/ad_ 349 | /ads/ads. 350 | /ads/js/* 351 | /ads2/* 352 | /adsame. 353 | /adsame/* 354 | /adsame1. 355 | /adscpv/* 356 | /adscript. 357 | /adsence. 358 | /adsense. 359 | /adsense/* 360 | /adservice.$domain=~adservice.io 361 | /adshow. 362 | /adspace. 363 | /adsrich. 364 | /adsservice. 365 | /adstatic/* 366 | /adswrapperintl. 367 | /adsys/* 368 | /adsystem/* 369 | /adtest/* 370 | /adunits/* 371 | /adv.php 372 | /adver. 373 | /advert. 374 | /advert/* 375 | /advert2. 376 | /advert_ 377 | /advertise/* 378 | /advertise_ 379 | /advertisement. 380 | /advertisement/* 381 | /advertisement_ 382 | /advertising/*$~xmlhttprequest,domain=~temple.edu 383 | /advideo.$domain=~advideo.pro 384 | /adview_ 385 | /advs/* 386 | /adx.$domain=~adx.uk.com|~adx.wowfi.com 387 | /afr?auid= 388 | /ajax/ad/* 389 | /ajs.php? 390 | /banner-ad. 391 | /banner468. 392 | /bannerad. 393 | /bottomad/* 394 | /cdn/adx/* 395 | /chinaadclient. 396 | /common/ad. 397 | /common/ad_ 398 | /contentAd. 399 | /css/ads. 400 | /data/ads/* 401 | /default/ads/* 402 | /delivery/afr. 403 | /delivery/al.php 404 | /file/ads/* 405 | /flashad. 406 | /floatadv. 407 | /footer_ad. 408 | /fullad. 409 | /getads? 410 | /ggad/* 411 | /googleads. 412 | /home/ad_ 413 | /html.ng/* 414 | /html/ad/* 415 | /iframe/ad/* 416 | /image/ad/* 417 | /image/ads/* 418 | /images/ad/* 419 | /images/ads/* 420 | /img/ad- 421 | /img/ad. 422 | /img/ad/* 423 | /img/ad_ 424 | /img_ad/* 425 | /include/ad/* 426 | /include/ad_ 427 | /includes/adv/* 428 | /info/ads/* 429 | /js/ads- 430 | /js/ads. 431 | /js/ads_ 432 | /js/adv. 433 | /js_ad_utf8. 434 | /jsad/* 435 | /mobile-ad. 436 | /onead_ 437 | /pagead2. 438 | /pages/ads 439 | /plus/ad_ 440 | /pubads. 441 | /rightad. 442 | /rightad/* 443 | /script/ad. 444 | /script/ads. 445 | /scripts/ads. 446 | /securepubads. 447 | /service/ad/* 448 | /show_ads.js 449 | /showadcode. 450 | /sidebar_ad_ 451 | /skin/ad/* 452 | /spcjs.php 453 | /static/ad/* 454 | /topad. 455 | /topad_ 456 | /topads. 457 | /txtad. 458 | /upload/ads/* 459 | /uploads/ads/* 460 | /videoad. 461 | /viewad. 462 | /web_ads/* 463 | /www/ads/* 464 | /www/delivery/* 465 | /wwwads. 466 | /xhfloatAdv. 467 | 728x90.jpg| 468 | ://a.ads. 469 | ://ads. 470 | ://adv.$domain=~adv.ru|~forex-tv-online.com 471 | ://affiliate.$third-party 472 | ://banner.$third-party 473 | ?ad_ids= 474 | ?adunit_id= 475 | ?adunitid= 476 | ?adzone= 477 | ?file=ads& 478 | @@||cctv.com/js/cntv_Advertise.js 479 | _300_250. 480 | _300_250_ 481 | _300x250. 482 | _468.gif 483 | _728_90. 484 | _728_90_ 485 | _ad.php? 486 | _ad01. 487 | _ad1.$~stylesheet 488 | _ad2. 489 | _ad3. 490 | _ad6. 491 | _ad_bottom. 492 | _ad_iframe. 493 | _ad_images/ 494 | _ads.js? 495 | _advert. 496 | _bannerad. 497 | _box_ad_ 498 | ##a[href^="http://ad-apac.doubleclick.net/"] 499 | ##a[href^="http://ad.doubleclick.net/"] 500 | ##a[href^="http://affiliate.godaddy.com/"] 501 | ##div[id^="div-gpt-ad"] 502 | ||778669.com^$third-party 503 | ||ad.doubleclick.net^$~object-subrequest,third-party 504 | ||adf.ly/js/$third-party,domain=~j.gs|~q.gs 505 | ||adnetworkperformance.com^$third-party 506 | ||adsame.com^$third-party 507 | ||alimama.com^$third-party 508 | ||allyes.com^$third-party 509 | ||amazon-adsystem.com^$third-party 510 | ||bbuni.com^$third-party 511 | ||bidvertiser.com^$third-party 512 | ||china-netwave.com^$third-party 513 | ||dazhantai.com^$third-party 514 | ||exoclick.com^$third-party 515 | ||googlesyndication.com/safeframe/$third-party 516 | ||jiawen88.com^$third-party 517 | ||kkddlt2f.site^$third-party 518 | ||kukuplay.com/upload/*.swf 519 | ||oclasrv.com^$third-party 520 | ||partner.googleadservices.com^$third-party 521 | ||pixfuture.net^$third-party 522 | ||revsci.net^$third-party 523 | ||teads.tv^$third-party 524 | ||topqualitylink.com^$third-party 525 | ||yu0123456.com^$third-party 526 | !----------------------------------The End------------------------------------! 527 | -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- 1 | ### 列出存在问题的网址 List the website(s) you're having issues: 2 | 3 | 4 | ### 什么问题 What happens? 5 | 6 | 7 | ### 列出你启用的列表 List Subscriptions you're using: 8 | 9 | 10 | ### 你的设置 Your settings 11 | - 系统/版本 OS/version: 12 | - 浏览器/版本 Browser/version: 13 | - 过滤工具/版本 Adblock Extension/version: 14 | 15 | ### 附注(列出有问题的规则,截图,建议等) Other details: 16 | 17 | 18 | --------------------------------------------------------------------------------