forked from hui21/xwhyc-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lazy.txt
10353 lines (10353 loc) · 483 KB
/
lazy.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
! -----更新时间: 2018-01-04 22:07:59 by:xwhyc-----
00kxs.com##.gg
00sy.com##div.dahengfu,div.header,div.ad360,p[class="tl pd8 pd10"] + ul
00sy.net##.dahengfu,.ad360,[style*="height:250px;"]
01ny.cn##.cl[style],[style^="width:980px;height:70px;"],#Tab9_1,.topadv,[href^="http://f2.01ny.cn/ad/"]
020.com##div.a_pt,div.a_mu
022net.com###aotao
0372.cn##div.pic1.pic_hd
0379home.com##div.ad,div[id^="ad_"]
0439.com##DIV.m_ggad,DIV.ad155,.banner,.download
05096.com##.rightSiderAD,.playerDownAD
0517w.com##div#diyad
0575bbs.com##div[class="tac mb5"],[src*="updateimeags/"],#tk_box_1,div[id^="ads_"]
0579.cn##.adv
0597kk.com##img[src^="http://pic.0597kk.com/pic/"],li.mobile_download,div.kk_ad,embed[src^="http://pic.0597kk.com/pic/"],div#kk_content1_left_ad1,div#cool_fixed,[id^="ads_c_"],div.radioBox,table#bbsTopBanner,img[width="370"][height="30"],div.ad-text,div#kk_oTransContainer2,img[src^="http://pic1.0597kk.com/attachment/pushpic/"],.lyhux_mu,.a_pt,[altname="lai_tourism-adtop"],#kk_head_ad,#kk_redianhuodong,[id^="kk_under_"],.a_pr,#qrcodeDownloadBar
0597ok.com##div.div_ad,embed[src^="http://f.0597ok.com/ilike/597/"],div.zyflnews,div.divtop,div.btnleft,div.btnright,img[src^="http://f.0597ok.com/ilike/597/"]
0598yu.com##.ad
05sun.com##[style="margin-top:10px;float:left;"],.ad-r
060s.com##div#header4,ins.adsbygoogle,div[style="border:1px solid #cccccc"],#ad_baidu980,#googlead,#PfLB300a
07073.com##div#top_ads0,div[rel="code211"],td.fadSideLink,.xAd1,.xAd20,.xAd2,div.thisAd100,div.thisFullyad,DIV.cont_ad,DIV[class^="cont_right_ad"],div.this_view_top,div.this_view,a#view_bg,div.this_win1,div[class="nav_tuijian c1"],div#outer_gread,.fmt16,.w_ad,.tanchuang_flash,[style="height:250px"]
0830bbs.com##DIV[id^="comiis_19bad0"]
1000fr.net##div#ad_text.ad_text
10078777.com###top_left,#top_right,[width="985"][height="250"],[height="92"]
100ksw.com##[src^="/images/ad/"]
100shuai.com##.bf_bottom_gg ,.lol_ad
100yangsheng.com###i728,#i300,#a_title336,#i300-600,.bodybottom
1010jiajiao.com##.adsbygoogle,[id^="div-gpt-ad-"]
1024down.com##._ggs,[height="75"]
104.com.tw##.ad_box,.sider_ad,[class^="ad_"],[class^="right_box ad_"]
107cine.com##[src^="http://107cine.qiniudn.com/ads/"]
10jqka.com.cn##DIV.subbanner,DIV.wbanner,div.side_ad,DIV.banner:first-child,DIV.art_ad,div.imgWrap,IFRAME[src^="http://fund.10jqka.com.cn/public/stock/"],a.J_waphexin_ad,div.ad,div.onead,div.taobao,div.linead,div.bt-ad,div#realbottom,.acthq,.contgg,#zs-txt-ad
10minutemail.net###leftover,#right
10pan.cc###dl_addr,#down_box{display:block!important;}
10pan.cc###dl_tips,#b1
10pan.cn###down_box{display:block!important;}
10pan.cn##[style="height:60px;"],#r1,.adsbygoogle,#b1
111cn.net##div[id^="c_ads"],.v_ad,.r1,.left_iframe
111ttt.com##.ad250,#g_250,#tid1
115.com##div.sub-qcode.bottom-qcode,div.top-banner,div.bottom-banner,DIV.banner-box,div[class^="code-tv"]
120ask.com##div.h-top-pic,.test_b,#top_img_bd
12306.cn##div#myfix_yh,.adLoadError
1234567.com.cn##.ulbugao
123456bt.com##[height="70"][width="960"]
123cha.com##div.n_ads_box,img[src^="./2568"]
123du.cc###fgg2,#fgg1,#divtop2,#divtop1,[style^="height:252px;"],[style="height:200px;"]
123kubao.com##[width="960"][heigh="90"],.listforum
123wzwp.com###down_box{display:block!important;}
123wzwp.com##[align="absmiddle"]
123yq.com##DIV.con_ad,DIV.ad250left,INS.adsbygoogle
126.com,163.com##[id$="_dvPrmot"]
12999.com##[height="100"]
1396me.com##DIV.business,DIV.w223,DIV.w245,DIV.w660
155175.com##.adsbygoogle,.gooo
158pic.com###gaosu
160.com##.ban_head,.tmall_ad,div#ad_index,div.bran_90
1616.net##div#cproIframe2002CloseBtn,div.lf_ad,div.rt_ad,div#cproIframe2002CloseBtn1,div#lf_adrs,div#rt_adrs
163.com##.fixed_foot_ad,.tie-ad-bar,div.btm-ad,iframe#btm_ad_taobao,div.postadlayer.nbw-win,DIV.gg200x300,div.footer.clearfix,DIV[class$="_header_gg"],DIV.gg300,div[class^="gg-"],iframe[src^="http://g.163.com/r?site="],div#adao,IFRAME[src^="http://x.jd.com/exsites?spread_type=2&ad_ids="],div.ggarea,div.ep-header-side,div.through_line,div.area_top_ad,div.area_brand_ad,div.list_ad,div.ad_960_a,iframe[src^="http://img1.126.net/channel7/"],img[width="278"][height="69"],div[lzrd-class="lzrd-ad-external"],div.float-bar,div.youdao,div.ls-inner,div.ep-header-main,div[id^="banner"],img[width="560"][height="100"],div.layout-shoping,.m-sidead,#j-sidead,#backadframe,[class^="u-index-ad"],.J_adcontrol,.banner-ad,.post_adtop_main,.top-banner,.index_top_ad,.post_end_ad,.post_right_ad,[class="mb35"] > div[style],.topad,.top_ad,.idx_top_ad,.idx_tonglan_ad,a[href^="http://g.163.com/a?CID="],.mod_ad_r,.ad300,.right_originalcolumn_ad,.ad_hover_href_top,.rg_ad,.hp_textlink_ad,.head_ad,.mod_ad_text,.mod_index_ad,.mod_r_ad,.kaola_ad,.store_lottery,[src^="http://static-alias-1.360buyimg.com/jzt/tpl/"],.index_bottom_ad,.topnav_ad,.bottomad,.top-gg-area,[src^="http://money.163.com/special/gegu_"],[adtype="infoAd"],[id$="-bottom-banner"]
1688.com###cpm-ad,#cpm-ad-2
168xs.com##.bd980
16sucai.com##div.pindao_ad2,tr[height="100px;"],[style*="height:90px;"]
170mv.com##.tmall-left
17173.com##DIV[class^="ad-pn"],DIV.top-background-adv,DIV.middel_advers,.win17173,div[class^="banner"][class$="0"],iframe[src^="http://www.17173.com/if/x/"],div.ad-rt,div.ad-lt,[class^="ad0"],[class^="dloadArea"],[class^="tg-h-"],[class^="pn pn-tg ad17173"],.img-placeholder,[class^="pn pn-tg-avatar ad17173carousel"],[id^="Youliang_"],.pn-tg,.pn.pn-rss
17173.tv.sohu.com##div.list-beauty,div#playAdLeftTop.adbox,DIV.win17173.maximize
171hd.net##.Rcloud_signleTop_ad
178.com##div.ad_gg,div.adBox
178448.com###BannerAD,.wp.a_t
17ce.com###tab_banner,.adsbygoogle,[id$="a_wrap"],[class^="add_"]
17jiaoyu.com##.sy_ad,.adsbygoogle
17jita.com##.adsbygoogle
17k.com##DIV[class^="b950 m_t"],DL[id^="ad0"],DIV[style="clear:both;width:950px; height:60px; margin:5px auto; overflow:hidden;"],div#ad04,.baiduBox,.Banner_ad,.RBAD
17ok.com##div.t-bann,.footfixed
17sucai.com##.tb960x90,.tb300x250
17yy.com###load_ad,.t2_3,.t3,.t2r_3,#web_yx,#close
18183.com###leftspringgg,#bottombar,.topwap_frame,.btns,.bottomwap_frame,#bgindex_bgflad,.ad,.ad_top,.ad_min,.ad_long
186s.cn##DIV#adtop1
188bifen.com##.adv_box
18board.com##[height="60"],[height="70"],[height="80"],[height="500"],[src^="http://dioimg.net"],[href="http://www.554400.com"],[href="http://zdpdfb.co/"],[href="http://mws3032.tk"]
18p2p.com##[href*="/?Intr="],[href*="/?Extend="],[href*="/?intr="],[src^="http://diopic.net/images"],[href^="http://www.yin6666.net/"],[href^="http://pj555716.net"],[height="60"][width="340"]
18qiang.com##.imgbanner,.bottom_khdxz
1905.com###mobileAdPromote,.adlogo-flash,.ad-content
192ly.com##.adsbygoogle,.ad-site
19lou.com##DIV.head-ad,DIV.dongxi-banner,DIV.float-ad-wrap,DIV.ad-cycle,DIV.pop-ad,UL.ad-190x60,div.ad-980x90,IFRAME[src="http://www.19lou.com/topic/html/2014/0630ad.html"],.ad-300x30,.radio-mod,.lazyImage,.ad650-60
19lou.tw###AdsT,.adtext
19xa.xyz##[src^="./img/ad/"],[src*="sinaimg.cn/"]
1haza.com##.ct,[height="100"],#buffer,[height="120"],.vmb_fix
1kkk.com##.adform_2,.adform_1
1m3d.com###klp_adtop,.disnonepcad,.a_f
1ydt.com###R_headGG,.adsbygoogle,#head
2000fun.com##div[id^="div-gpt-ad-"],div.single-box
21cn.com##DIV.xuantu,DIV.embedHzh,DIV.h-gg,iframe[src^="http://shows.21cn.com/ashow?js="],div.popularize,a[href="http://k.21cn.com/"]
21cs.cn##[width="80"][height="150"],.cssDLoff,.cssTL950x80,#docPF001,[width="950"][height="80"],#docTopAD,.cssSlide[style]
21ic.com###IC2008Ad,.appxb-con,.banner950,.ad_210,.ad_468,[height="60"],.topbanner,.seminar,.cont_leftad
2200book.com##div.read_banner
2258.com##.rbananers,.content_ad_300,.topbananer,.idx-ad1,[src^="http://yule.2258.com/ad/ad_"]
22ccaa.com##[src*="sinaimg.cn/"],[href="/sp.html"],.top1_box.box,.DaKuang,#bdshare
2324av.com##.wrap.mt20.clearfix,.top_box
2345.cn###adv_div
2345.com##div#ivy-taobao,div.baiduHotWordsR.mt10.clearfix,div.ivyBaidu,div.ivy240.mt10,div.ivy940.mt10,div.ivy940_82.mt10,div#corner_div,div#J_cj,div#J_tip_stopXP,div#tools-gameTmp,div.tip_stopXP,div.J_topicBanner,div.mod.event1.event1-hasList,div#globalTopbannerContent,div.headIvy230,div#J_acts12_bfix,div#BAIDU_DSPUI_FLOWBAR,#topHf,#secondFlashAds,.ad_countdown,.baiduSearchIvy,.rowIvy,.adMainBg_1440,.s11-logowall,.activity-skin-trig,.item-lvy,.adMainBg
23txt.com##.con_ad,[height="90"]
23zw.me##div#ptopad,div#pbtad,#tbad
2500sz.com##div.tl-focus,div#wx,a[href="http://www.szaist.cn/zhuanti/lama/?mcgg"],div[class^="aline-"],div[class^="banner-"],div#js_ads_banner_top_slide,DIV.tl,embed[src^="http://www.2500sz.com/site/"]
25xt.com###baidu680,.baiduad700,.forum-20150311101555,.adbox
262s.com##DIV.ad[style$="width:950px"]
263y.com##.view_abc
265g.com##.free_inner_top,.phone_bgban,DIV.g_box,DIV.ggimg,DIV.wrap.h60,div.play_fmt,.back_figure,[href="http://kf.265g.com/index.php?tp=rand"],.fmt,.flash,.bgban,.mban
28188.com##.couplet_ad,img[src^="http://59.36.101.209"]
2btu.com##.adgr
2ccc.com##[height="90"]
2chcn.com##ins.adsbygoogle,img[height="280"][width="336"]
2kandy.com###xinnxi,.a_f,.a_cn,.a_cb
2liang.net##.adsbygoogle,.wangyoudi
2mi.tv##[height="95"]
2mm.tv###xt
2mmei.com##div#xm.xm
310v.com##[id^="id_ad"],img[width="310"][height="60"],td[id^="idad_"]
31wxw8.com##.content_ad,.ggad,.adsgg,.ad250left,.bdad
324324.cn###header
32xs.com##.bd980
33lc.com##.ggwbox
34nh.com,84pb.com##.DaKuang,[height="79"],[height="70"],[height="60"],[height="65"],[href="/sp.html"]
360.cn##div#wifiAnywhere,#left-fixed,.article-ad,.ad-timer,.generalize.grid-2c1,.bottom-ad,#side-ad,#banner
360che.com##.ggbanner,.advertising,[class^="adver"],#thapp,[class^="ad-"],[class="wrapper hot-model config-rec"],.m-ad-item
360doc.cn##.overAnner
360doc.com##DIV#ADAboveArtContent,DIV#artrightad1,DIV.both[style="padding-top: 10px; height: 260px;"],#youlikead,#underZcommondAd,[class="f_left"][style],div[style^="height: 90px;"],#divunderZcommondAd,#divyoulikead,.clear360doc[style],iframe[src^="http://www.360doc.com/ajax1/"],ggwz
360jk.com##div.download-app
360kad.com##div.adbox,div.right_ad,div.p_ad,div.ad_position,.Advisory
360kan.com##.s-topad,.p-ys-ad,.b-ifradjx,div.p-ad-two,.p-ad,.topbar-ad,.detail_ad
360shuoshuo.com##.index-ad-tl
365if.com##.P_NavA,.fg,.mb-a
365kl.net##.a_h,#eis_pad1,#eis_pad2,.yb_banner,.a_pb,.a_f
36dm.com##a[href="http://www.acgsou.com/"]
36kr.com##section.sidebar-ad,section.sidebar-liepin.cf,div.zhongchou-ft-container,.right_ad_img1,.baidu_ads_cell
37bjw.com##.nav_ding_ad,.introNews
39.net##div.tonglan,div.box_m,div.cust210,div.cust430,span.art_tl,div.art_lmgz_wrap,iframe[src^="http://dpvc.39.net/adpolestar/door/;ap="],iframe[src^="http://app-g.39.net/rel/k13.php?adid="],.mAds
3987.com##.bottom_footer,.tables_li_box,.show_pin_top_box,.and_ad_box,.show_btn,.down_show_left_box.mt20,.main_mid_ad,div.banner.fl,div.rightad,div.logo_top,#b_downfile,.topadbox,.tongyixzq,.xiazai_bj,.pic_yd_a_box,.fixd_box
3dezu.com##div#diynavtop,div[style="margin-bottom:-10px; overflow:hidden;"],div.bm.a_c,div.a_pt,div.a_pb,#login_alert,.a_f
3dmgame.com##DIV.QZmainR > DIV.R1,.ad_top,.adad,[class^="youdao"],[id^="clickbg"],.dowl-rgg,#box.box
3dpianyuan.net##div#frameWu92km,div#djscontent,div[style="float:left;margin-top:5px"]
3g.163.com##.m_pbpb_img,.m_pbpb_m1,.m_pbpb_m0,[id^="yx-"],div.a_topad,.article_ad,div.bottombanner-contain,div.fuck-qq-1,.a_adtemp,.m_papa_m1,.m_papa.papa-item
3g.ali213.net##.common-3g-block
3g.cn##.oppv,ul[class="module_list adv"]
3g.ifeng.com##a#gotobaidu,div#footer_baidu
3g.news.cn##.Topadlink
3g.qq.com##[id^="feed-omgad-"],.show-gdtad ,#omgad-wechat-bigpic,#image_ad,[href^="http://c.gdt.qq.com/gdt_"],#header-mlcz,.art-video
3gsc.com.cn##.ad,.advbox,.banner,#right_ad
3lc.com##.sort_list dl[class="clearfix"]
3sjt.com##div.a_mu,div.a_pb,div.wp.a_h,div.a_pr,div.a_fl.a_cb,div.a_fr.a_cb,div[class="portal_block_summary"]
3xgd.com###video_left_adv
400gb.com,pipipan.com,ctfile.com,bego.cc##a[id^="__lgUnion_a__"],div#advLeft,div#advRight,div[id^="cproIframe"][id$="holder"],DIV[id^="BAIDU_DUP_wrapper_"],DIV.viewfile_content_main_r,DIV.downpage_r,DIV.widget-main.ad_area,.adsbygoogle
40407.com##div#tcdgg,div.top_banner,.bg_l,.bg_r,div.gg,div[class$="_gg"],.tui
4399.cn##div.cn-app_guide
4399.com##.banner2,.topad,.w980.ban,.hvideo,.r_ban,[class^="l-ad"],.c-ad,.ins-ad
43aq.com##[width="990"][height="70"],[width="990"][height="60"]
446655.com##[id^="playtop_ad"],.lingiframe,.adsbygoogle
4493.com##.ibox,.iboxline
45fan.com##.botad1,.adz
4667.com##.bg-content,[class="m-wl row adw1000"],.a-d-time,.f-adxg
47473.com##[class*="ad"]
4k123.com##.comeing_wad,.a_pb
4ktt.com##.a_mu
4kzw.com,quanxiong.org,dijiuzww.com##[style="width:770px;height:260px"]
500.com##div.jSemFloat,div.topad,div.middle-ads,div.page-ads
5011.net##div.ad,div.iqying,img[width="1000"][height="80"],[class^="wljs-"]
5068.com##div[class^="gg"],div.zw_tpe,div.showG
50zw.la##.top-read-ad
51240.com##div[id^="ggwz___"]
5156edu.com##[height="110"]
515fa.com##[class^="gg_ad"],.hf1,.youk_ad2,.youk_ad,.wen2
5173.com##div.box_ztcright
51av.biz##table#table2,[height="134"]
51bczx.com##[src^="http://www.51bczx.com/images1/"]
51credit.com###ajax_adtext,.fixed-ad,div#bottomLayer
51cto.com###top_banner,#top_banner .ban2{height: 26px;}.top_bg,.top_bg .wrap{height: 76px;}
51cto.com##.aderbox,.adlist,.ipadFloada,.top_bg .wrap,.fixfloat,.bor.vlist,#edu_adver,[src^="https://s1.51cto.com/wyfs"],[class$="_ad"],[class$="-ad"],.row01_r,div.g_39.mb10,div#close_box_img,div#f_close_box,div.postinfo06,div#message.blogpop,.banner,#tonglanad,#list4,[class="relatedArt box"],#ADs
51feels.com##.gg
51itstudy.com###ad_coupleleft,.adsbygoogle,.ad_leftbanner
51live.com##.play-text,[height="50"],.left-banner
51nb.com##.a_mu,.altbg2,.a_f
51shiping.com##.ad1,.newsphoto,.banner,.adsbygoogle
51shucheng.com##.ad-728x90,#stickyunit,.ad-336x280,.adsbygoogle,.ad-300x250
51voa.com##.adsbygoogle
51wendang.com##.adsbygoogle,.ads
51xuediannao.com##.h_ad1,div.un-banner,.h-ad1,.un-article-bottom
520bdy.com##[href="http://www.zfrees.com/dom/"]
520cc.me##.a_mu,[width="468"][height="60"],.a_pr,.wp.a_f
520cc.me##.a_pb,.a_pt
5253.com##[class^="ad article_"],.ad_wrap
5278.cc###forum_top_ad,.a_mu,.wp.a_h,.a_pb,.a_pr,.a_pt
5278.mobi##[width="468"][height="60"],[id^="inplayer"],div#iframe,div.right300
5278bbs.com###diy_forumTOP,#portal_block_99,#diy_forumT4,#portal_block_113,[src^="http://www.5278bbs.com/adpost_"],.a_pr,.a_pt,.adsbygoogle,#postmessage_7694907r
52av.tv##div.a_mu,div#thread_top_ad,div.a_pr,div.wp.a_f,div.a_pt,div#forumdisplay_list_top_ad2,div.fwinmask,A[href^="http://click.dtiserv2.com/"],A[href="http://www.52-av.com"]
52avhd.com###a3
52ch.net##div[class="wp"],div.a_pb,div.ad980,div.bot_adv
52che.com##.ad,[class^="margin_ad"],.titbarfblist_ad
52flac.com##.ad250px,.ad710px,.ad300px,.con1
52pk.com###baizuxiazaiqi,#topad2,[class^="baizhuurl"],.add,div#bdggtop,div#exit,div.adv.mt6,div#lolfloatnav,div#baidutop,div#baidutop2,div.down_adv
52pojie.cn##.a_pt,.a_pb,.a_mu,.wp.a_f
52rd.com##.He_Main_Center,.He_Main_Right
52tian.net##div.bdad,div[style="float:left;width:960px; height:88px;padding-bottom:10px;"]
52wubi.com##.top960,#leftAD1,#leftADgg1,.adsbygoogle
52youpiao.com##.indexad,.ad,.google
52z.com###softdown
52zxw.com##.adsbygoogle,.guanggao_h,[style^="width:360px; height:260px;"]
54new.com##IMG[width="468"],DIV.adline,TD[colspan="7"],DIV#base + DIV,.downad,#bigfocus
55188.com##.gg,div.ad_xia_pic.ggtishiallpic,DIV.gg_head,DIV.ad_text,DIV#ggcontArea2,DIV#ggcontArea,DIV.a1_gg.jiange2,DIV.bd_gg.jiange2,DIV.ggdistich_tit,div.fgg_head_nei,DIV.gg_foot,div[class^="ad_headerbanner_"],div.gg_tishi,div.ad_footerbanner,div[id^="ad_thread1_"].ad_textlink1,div.ad_hf,.ggdistich,[class^="gg_"]
56.com###anchorRecommend,DIV#bd_widgets_s.bd_widgets,div#rAD_1.goods_show,div.xiu_mm.qf_float
576tv.com##DIV.imgad.adw642,DIV[class^="imgad adt"]
57mh.com##.bd_960_90,.backToTop + div[style]
58.com##.bban,.fcj_leftfix,#brand_bottom_banner,#home_fl_wrap,#pc_banner,#brand_top_banner
5857.com###b_downfile
590103.idv.tw##.ads160_600-widget
591hx.com##div.banner,img[alt*="广告"]
5di.tv###topnotice,#sponsorAdDiv
5dm.tv##[src*="sinaimg.cn"]
5imx.com###diy1,[width="166"],.ad3,.ad2
5iyq.com,chi577.com##.top_l,.top_r,[class^="index_ad"],#pan1,#pan2,[style="margin-top:5px;overflow:hidden;"],.wp.a_t,.wp.a_h,.ad980,.close_form,.close_ad,#bottom_banner_div_out,#bottom_banner_img_div
5moe.com##div[id^="moegg"]
5vdd.com##.right_ad_250,#sss,.ad960
5ydj.com##[height="90"],[height="80"],[height="68"],td[height="250"]
600000.net##[class^="ad-"]
60808.org##DIV.a_pb,DIV.a_mu,DIV.bm.a_c
61.iqiyi.com###J_ad_patch,.ad_box,[id^="J_ads"]
610uu.com##img[width="615"][height="65"],div[class="maxBox ui-sponsor"]
612459.com##[class^="ad"]
63007.com##.zhfhb
630book.com##.top-read-ad,.middlead,[height="90"]
630book.la##.top-read-ad,.middlead,[height="90"]
63ig.com##.DaKuang,[height="70"],[height="60"],[height="79"]
6665.com##div#fgdiy01,div#fgdiy09,div#fgdiy10,div#fgdiy14,div#fgdiy24,div#fgdiy49,a.mb-theme,.a_pb
666av.me##[height="200"]
666ccc.com##DIV#main > DIV.bi2,SPAN#indexads2
66fxw.com##div.conent
66porn.info###player-advertising,.couplet_9cb0d
66rd.cn##.mst_lamu_main,.a_cb,[id^="comiis_xizi_gg"],.a_cn,#comiis_itab,#comiis_itab02,.a_p,.a_f,#diynavtop
66wz.com##.rblock.shopping,.ad,.ads,.shop,#topad
66yp.cc###down_box{display: block!important;display: block}
66yp.cc##.adsbygoogle
6789.com##.mm-sm26850,.billing,.mm-sm22060,#northeast-flash
678pan.com###down_box{display:block!important;}
678pan.com##[src*=".sinaimg.cn/large/"]
67shu.com##.top-read-ad
6hck.co##[class^="shade_layer"],#f_huodong,[id$="_top"],.simulate_bet_ad,#lhc_bottom_columns_ad,.shck_APPDownload,[id^="lhck_"]
6kk.tv###sponsorAdDiv
6tj.com##.ad_1000,.ad_600,.ad-banner,[class^="ad_635"],.ad_fy
6vhao.net###gg300,[class^="k"]
6yyw.com##.a_mu,.a_pt,.a_pb,.a_pr
720v8.com##.hidden-xs,[height="60"]
72g.com###sfmt,.ad_pic,.ad,[class^="ad-flash"],.ad-bottom,.ad-row
733dm.net##.middleAd
74zw.cc##.ggad,.dahengfu,.gdad,.bdad
7574.com##div[style*="height:90px;"],div[style*="height: 100px;"],div[style*="height:160px;"]
7654.com##[src^="http://boardx.huanqiu.com/smu0/j.html"],.hp300,.hp290,.hp250,.hp270,.hp124,.hp90,.mediav-newsfeed-listitem-type-1
766.com##DIV[id^="banner"].abox,DIV#group-adv,div.banner_top,div[id^="banner_"],div#ads_djs_show
76wx.com##.con_ad
76xh.com##[id^="content_ad"],#divFendDuo,.index_advertising
778buy.com##.ads
77bike.com##[src^="http://bbs.77bike.com/attachment/advpic/"]
77nnsc.com##[name^="ad"],[height="45"]
77nnsc.com##p
789xz.com##[id^="__lgUnion_a__"],.adsbygoogle,#dl_tips
78dm.net##.couple-left,.couple-right,.adv,[height="80"]
7958.com.cn##.xzdz_16,IFRAME#cproIframe1,IFRAME#cproIframe3,IFRAME#cproIframe4,DIV[id^="BAIDU_DUP_wrapper_"]
7hcn.com##div[ac],.outside
7ifun.com##div.ad
7k7k.com###p-bg-l,#p-bg-r,#J-ad-count-down,#J-baidu-ad-box,#player-ad,.page-right-side-btns-img-link,iframe[src^="http://www.7k7k.com/ad-"]
7kankan.com##[id^="adbottom"]
7m.cn##.Head_banner,div.u7MAD_sTop,div[class^="a_d"],div.mode_ad,.u7MAD,[class^="ad_"]
7po.com##div.a_mu
7uuc.com##[id^="diy"],[id^="page_ad"],.portal_block_summary,[class$="a_c"]
7xtiyu.com###ad_nrz
7zhan.com##.banner
8090kk.com##DIV.b950,DIV.ad728.clear
8090yxs.com##.news-5,.fl.top-flash
80s.tw##[width="960"][height="90"],#ad-bigbanner
81xsw.com##.con_ad
81zw.org##.adsbygoogle,.banner
8264.com##.ad780_80,.ad980_60,.adtop,.adtop_r,.ewmbox,.smallcamelbox,.rightAd,.zbtlconlist_11,.adleft,.adright,.appAdv-wrap,.adbox
8591.com.tw##div#top-ad,div#active_banner,div[class^="act"],div#ox-md,[class^="ox-ad"]
8684.cn##DIV[id^="auto"],[id^="adv"]
86mdo.com##.hy_banner,.border01
872872.com##.yslm645d,.yslm300x,.footertopB
87lou.com###topwarning_7ree
880sy.com##.foot_gg,.foot_guanggao
888173.com##iframe[width="168"][height="608"],.textwidget,.holder
88club.net##[id^="ad_"],[class^="ad"]
88dushu.com##[class^="yd_ad"]
88files.net##.ad1,#popad
8btc.com##.ad,.header-prices
8comic.se##[id^="ad_bar"],#ggad
8drama.com##.masonry,.sitemajid2s,[id^="ad_bar"],#ggad
8dushu.com##[class^="yd_ad"]
8shuw.com##.iad300-250-3,.ad
90bifen.net##[id^="D_ads"]
90oo.com##DIV#index_ad,DIV#ad1,DIV[style="height:60px; width:750px;"],DIV#ad_text.ad_text,DIV[id^="ad_thread"][class^="ad_textlink"]
90zq.net,90zq.com##[id^="ad_"]
911cha.com##.adbox
91danji.com##.JS-xzq-down,div.m-tool-down-left > H5:first-child,DIV.w392 > H4:first-child + UL.down-way-2,.hr48,#bg_ad,.page-down-right,.w277-banner1,[src^="http://www.91danji.com/attachments/"],iframe,div.m-app + div[style]
91porn.com,dizhi.i7p.work,i9p.co,caoporn.com##[src^="http://fans.bestvogue.com/fans/"],#ad_text,.ad_float_left,#ad_headerbanner
91s.org##div.banner_ad,div.gg,div.right_Bor
92kkdy.com##[href^="https://st.lebao001.com/"],[src*=".sinaimg.cn"]
92shengtang.com##div#ad_text.ad_text,div#ad_headerbanner
92to.com###chapter2,[id^="_"]
92zw.com##.adhtml
949d.com###play_ad_bg
94as.com##div.toplink,BODY > DIV.wrap + TABLE
9553.com##[src^="/kchtml/img/"],article.mg-t5[style],.mg-t10[style]
962.net##[class^="m-ad"]
9669.com###b_downfile
96u.com###floatAd
9724.com##div.detail_fix,DIV[id^="ad-w-"],div[style^="width:980px; height:82px;"]
973.com##div#a0,div#a4,div#a6,p#erwm
97ubb.com##.box_con table,.adsbygoogle
998wangye.com##[width="1440"][height="345"]
999hdhd.com##[width="300"][height="300"],.top_box
99danji.com##div.top_ad,div.ads300,iframe[src^="/otherhtml/"]
99ff4.com##[src*=".sinaimg.cn/large/"],[src*=".sinaimg.cn/mw1024/"],[href*="/Register?a="],[href*="/?Intr="],[src*="/img/"],#index_tan,[href="http://www.xzg008.com/"],.block.spots,[src*="/ads/"]
99ff5.com##.dmcenter,[src*=".sinaimg.cn/"],[style="width:316px;height:50px"]
99files.net##div.ad1
99kk3.com##[src*=".sinaimg.cn/large/"],[src*=".sinaimg.cn/mw1024/"],[href*="/Register?a="],[href*="/?Intr="],[src*="/img/"],#index_tan,[href="http://www.xzg008.com/"],.block.spots,[src*="/ads/"]
99kubo.com##[width="960"],[width="300"][height="250"],[style*="width:300px;height:250px"],[width="160"][height="600"],[style*="width:160px; height:600px;"],.likebox
99ww6.com##[src*=".sinaimg.cn/large/"],[src*=".sinaimg.cn/mw1024/"],[href*="/Register?a="],[href*="/?Intr="],[src*="/img/"],#index_tan,[href="http://www.xzg008.com/"],.block.spots,[src*="/ads/"],.dmcenter,[style="width:316px;height:50px"],.layui-layer-shade,#layui-layer1
9duw.com###myads
9ht.com###gaosuxiazai
9k9k.com##.n9_ban
9kld.com##div.a_fr.a_cb,div.a_fl.a_cb,div.a_cn,div.wp.a_h,[height="60"][width="990"]
9ku.com##.fixed-top,.playerlogo_ad
9upk.com##[class^="ad_show"]
@@|http://$domain=banggo.com|pili.com.tw|yunhou.com|voicecloud.cn|xunfei.cn|95599.cn|ccb.com
@@|http://$domain=code.google.com|yeepay.com|taoke.alimama.com|club.alimama.com|tenpay.com|tmall.com|tbcdn.cn|jd.com
@@|http://$domain=meidebi.com|alibaba.com|lifevc.com|ad.alimama.com|www.alimama.com|gome.com.cn|3songshu.com
@@|http://$domain=taobao.com|taobao.org|alipay.com|suning.com|51buy.com|ct10000.com|etao.com|hitao.com|paipai.com|189.cn
@@|http://$domain=vip.xunlei.com|lixian.xunlei.com|www.vmall.com|www.1688.com|www.mm111.net|jifen.qq.com
@@|http://*.com/images/banner$domain=cncrypt.com|exp.qq.com
@@|http://*.com/index0data/*.css
@@|http://*/Uploads/admin
@@|http://*/adview_pic_cpc_cpm_cpa_guanggao_gg.js
@@|http://*/adview_pic_cpc_cpm_cpa_guanggao_gg_ads_300x250.js|
@@|http://*/cpro/ui/y.js|$script
@@|http://*/cs/jsfile/js/bra
@@|http://*/gad/$domain=uu.163.com
@@|http://*/ggao/index_a.
@@|http://*/html.ng/adsize
@@|http://*/imgad?id=C
@@|http://*/js/admin
@@|http://*/js/gb_big5.js|$script
@@|http://*/js/jquery-min.js$script
@@|http://*/js/yzz/jqu
@@|http://*/jump.js^
@@|http://*/moneymaker/js/player/jwplayer.js
@@|http://*/mygg/sagg$image
@@|http://*/templates/frontend/moneymaker/js/swfobject.js
@@|http://*/templates/frontend/moneymaker/js/videoplayer.js|
@@|http://*/videos/other/2017101
@@|http://*/videos/other/2017110
@@|http://*/videos/other/2017122
@@|http://*/xiaoyi/js/denglu.js|$script
@@|http://17173im.*.com/main/s?user=
@@|http://17173im.alllget.com/main/s?user=
@@|http://17173im.qtmojo.com/main/s?user=||17173_video&
@@|http://174.139.10.173/qt/in.js$script
@@|http://33.autohome.com.cn/njs/10055.js?timestamp=
@@|http://33.autohome.com.cn/njs/newget.js?r=
@@|http://9zvip.net/wp-content/plugins/detect-adblock/js/ads.js
@@|http://a.alimama.cn/tkapi$script
@@|http://account.bnet.163.com/js/login.js$script
@@|http://ad.$domain=abchina.com
@@|http://ad.doubleclick.net/
@@|http://ad.thsi.cn/siteHome/*.txt
@@|http://ads.babyhome.com.tw/
@@|http://ads.csdn.net/get_ads.php
@@|http://ads.csdn.net/js/async_new.js
@@|http://afp.acs86.com/a.htm?pv=$domain=imgo.tv
@@|http://afp.acs86.com/crossdomain.xml$domain=imgo.tv
@@|http://allyes.ctrip
@@|http://api.cupid.iqiyi.com/show2?u=*&a=qc_100001_100141
@@|http://api.cupid.iqiyi.com/show2?u=*&a=qc_100001_100142
@@|http://api.cupid.qiyi.com/policy2?a=qc_100001_100141
@@|http://appicon.manyou.com
@@|http://b.haoqq.me/2.js
@@|http://bbs.tigtag.com/tigtag_custom/include/nav.html
@@|http://c.gdt.qq.com/gdt_click.
@@|http://c1.keyrun.cn$domain=400gb.com|pipipan.com|bego.cc
@@|http://cb.baidu.com/crossdomain.xml
@@|http://cb.baidu.com/ecom?di=$domain=qianyan001.com|colayun.com|ctfile.com|bego.cc|666ccc.com|yue365.com|coladrive.com
@@|http://cb.baidu.com/ecom?di=$domain=www.400gb.com|www.pipipan.com|7958.com|www.9ku.com|www.u148.net|www.redocn.com|bbs.tiexue.net|www.narutom.com|www.neihan8.com
@@|http://cb.baidu.com/ecom?di=262297&dcb=BAIDU_DUP_define&dtm=
@@|http://cb.baidu.com/ecom?di=892769
@@|http://cb.baidu.com/ecom?di=933920&dcb=BAIDU
@@|http://cb.baidu.com/ecom?di=975061&dcb=BAIDU_
@@|http://cbjs.baidu.com/js/m.js$domain=www.400gb.com|pos.baidu.com|www.neihan8.com|www.shumilou.com|colayun.com|www.xiiku.com|fxpan.com|coladrive.com
@@|http://cbjs.baidu.com/js/o.js$domain=jkpan.cc
@@|http://cbjs.baidu.com/js/o.js$script,domain=yue365.com|52pk.com|www.9ku.com|bbs.tiexue.net|pic.tiexue.net|666ccc.com|fxpan.com|missioncouver.com.cn|shop-hcjs.net
@@|http://cbjs.baidu.com/js/s.js$domain=yue365.com
@@|http://cdn.exp.qq.com/img/
@@|http://cdn4.v.17173.com/advideo/csyx-1112-kz.swf
@@|http://clientupdate.175pt.com/
@@|http://count.chanet.com.cn/click.cgi?
@@|http://cpro.baidustatic.com/cpro/ui/baiduPatch.swf
@@|http://cpro.baidustatic.com/cpro/ui/c.js$domain=400gb.com|www.l7po.com|ctfile.com|bego.cc|pipipan.com|colayun.com|coladrive.com|epinv.com
@@|http://cpro.baidustatic.com/cpro/ui/noexpire/css/2.0.1/template.min.css
@@|http://cq.qq.com/js/cody/scroll_ad.js$script
@@|http://creatim.allyes.com.cn/player/
@@|http://css.wokeji.com/css/newweb/shouye/js/banner$script
@@|http://d.107788.com/crossdomain.xml
@@|http://d.107788.com/xml/*.swf?s=
@@|http://d.107788.com/xml/?s=
@@|http://d.x77918.com/qt/in.js
@@|http://d1.sina.com.cn/zhuyan/jiaqing/F1/f1ad_nav_bg.jpg$image
@@|http://data.video.qiyi.com/videos/other/
@@|http://de.as.pptv.com/crossdomain.xml
@@|http://dp.gtimg.cn/discuzpic/0/discuz_qqgame_gamebbs_qq_com_forum_$domain=gamebbs.qq.com
@@|http://dvs.china.com/crossdomain.xml
@@|http://e-park.cmbchina.allyes.com
@@|http://e.70e.com/js/2013_new.js
@@|http://e.70e.com/js/cpc_
@@|http://e.e70123.com/cpc/index.php?
@@|http://e.e70123.com/cpc/js/show.js$script
@@|http://e.v707070.com/cpc/index.php
@@|http://e.v707070.com/cpc/js/show.js
@@|http://e.v707070.com/cpc/show
@@|http://ecpm.tanx.com/ex?i=mm_*&u=https%3A%2F%2Fwww.taobao.com
@@|http://ecpm.tanx.com/ex?o=jsonp&i=mm_
@@|http://f2.adpush.cn/stat/m.js
@@|http://f2.adpush.cn/stat/r.js
@@|http://fcdt.800j.com.cn/index.php?m=comment&c=index
@@|http://g.163.com/crossdomain.xml
@@|http://g.163.com/r?site=netease&affiliate=video
@@|http://g.alicdn.com/
@@|http://g.chuixue.com:8080/m/pinglun.js
@@|http://g.click.taobao.com/display?cb=jsonp_callback_*&rf=http%3A%2F%2F
@@|http://g.downg.com/ggao/tj.js$script
@@|http://gad.netease.com/gad/get_unique_player?
@@|http://gg.kugou.com/mini/images/201*.swf
@@|http://gg.yxdown.com/count/countzt.js
@@|http://h2.ifengimg.com/ifeng/sources/region_v1.js$script
@@|http://hudong.pl.youku.com/crossdomain.xml
@@|http://hudong.pl.youku.com/interact/live/get/live
@@|http://hudong.pl.youku.com/player/getLive?liveid=
@@|http://i.umeng.com/
@@|http://i2.bahamut.com.tw/JS/ad/animeVideo.js
@@|http://image.res.hunantv.com/mediafiles/creative/u3154/
@@|http://images.dyxia.com/quanji/js/detect.js
@@|http://images.sohu.com/bill/default/wei/wei_v1.4.js$script
@@|http://img.70e.com/s_images/s_
@@|http://img.dwstatic.com/news/1407/$image
@@|http://img.gg1z.com/statics/gg/$image
@@|http://imgcache.qq.com/music/photo/
@@|http://irs01.net/MTFlashStore.swf$domain=56.com
@@|http://isdspeed.qq.com/cgi-bin/r.cgi?flag1=
@@|http://js.adm.cnzz.net/appgcm.php?sid=$domain=400gb.com
@@|http://js.adm.cnzz.net/prebat.php
@@|http://js.olcdn.com/js/jquery-1.7.2.min.js$script
@@|http://js.player.cntv.cn/
@@|http://jstv.
@@|http://jstvimedia.allyes.com/crossdomain.xml
@@|http://livew.l.qq.com/crossdomain.xml
@@|http://livew.l.qq.com/livemsg?pf=H5&ad_type=W*&pf_ex=
@@|http://luck.v1.cn/adxml.php?zoneid=922
@@|http://m.69shu.com/js/history.js
@@|http://m.69shu.com/js/rtools.js
@@|http://m.fumanhua.net/js/b.js
@@|http://m.xielw.cn/js/gg.js
@@|http://mimg.127.net/ggimg/all/img
@@|http://minisite.letv.com/tuiguang/
@@|http://misc.360buyimg.com/??jdf/*/js/banner.js|
@@|http://misc.yinfu.cc/sid/function
@@|http://misc.yinfu.cc/sid/sidplayer.js
@@|http://music.163.com/eapi/ad/get?_nmclfl=1
@@|http://note.youdao.com/table/*.js$script
@@|http://ossweb-img.qq.com/images/nba2k/comm/js/gg.js
@@|http://p.yiqifa.com/
@@|http://p0.qhimg.com/s/*.css
@@|http://pagead$domain=netsh.org|colayun.com|400gb.com|ctfile.com|dapenti.com|www.tu265.com|www.neihan8.com
@@|http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js$domain=receive-a-sms.com
@@|http://pic.fastapi.net/sdk/js/ai.m.js
@@|http://pic.gimhoy.com/js/ads/advertisement.js
@@|http://player.letvcdn.com/*/plugins/Hint.swf
@@|http://player.letvcdn.com/p/201*.swf
@@|http://player.polyv.net/common_player/player/
@@|http://prod.game
@@|http://resource.redirect.kukuplay.com/upload/zhangyu
@@|http://rm.sina.com.cn/minisite/20140421emarketing/js/
@@|http://rr.knet.cn/static/images/logo/cnnic.png$image
@@|http://s.acs86.com/FrameWork/AFP/AFP_
@@|http://s.acs86.com/FrameWork/AFP/ASP_
@@|http://s.acs86.com/crossdomain.xml
@@|http://s.csbew.com/FrameWork/AFP/ASP_
@@|http://s.csbew.com/crossdomain.xml
@@|http://s.jiathis.com/
@@|http://s.umeng.com/common/
@@|http://s95.cnzz.com/z_stat.php?id=
@@|http://serve.netsh.org/pub/
@@|http://show.g.mediav.com/s?type=$domain=7654.com
@@|http://ssl.p.jwpcdn.com/player/
@@|http://ssxd.mediav.com/s?type=
@@|http://stat.adpush.cn?__=
@@|http://static.hdslb.com/ad-images/$image
@@|http://tajs.qq.com/ping_hotclick_min.js
@@|http://tajs.qq.com/stats?sId=
@@|http://tb1.bdstatic.com/*.css
@@|http://tcss.qq.com/ping.js
@@|http://v.aty.sohu.com/ct?vid=
@@|http://v.gdt.qq.com/gdt_stats.fcg?
@@|http://valf.atm.youku.com
@@|http://web.umeng.com
@@|http://weibo.com/ggg
@@|http://wn.pos.baidu.com/adx.php?c=$domain=400gb.com|pipipan.com|bego.cc
@@|http://wvw.9377.com/api/qq.php
@@|http://wvw.9377.com/game_login.php
@@|http://ww201.keyyou.net/
@@|http://www.05sun.com/js/info.js
@@|http://www.05sun.com/js/jquery.min.js
@@|http://www.10pan.cc/templates/default/images/ad/
@@|http://www.400gb.com/advview201
@@|http://www.52flac.com/ggimages/xiazai.png
@@|http://www.77pan.cc/templates/
@@|http://www.77vcd.com/js/common.js
@@|http://www.77vcd.com/js/play.js
@@|http://www.77vcd.com/js/player/common.js
@@|http://www.90oo.com/tp/*09190.jpg|$image
@@|http://www.90oo.com/tp/*14$image
@@|http://www.admin5.com/hezuo/action/inner.head.logo.js$script
@@|http://www.aipai.com/apps/advert_
@@|http://www.aqy103.com/js/aqy/main.js$script
@@|http://www.aszw.org/heibing/js/xiaoshuo.js
@@|http://www.aszw520.com/heibing/js/xiaoshuo.js
@@|http://www.bd-film.co/r/cms/www/movie/js/cms-front-all.js^
@@|http://www.bosw.net/js/bos/A2-300.js
@@|http://www.btbtt.*/view/js/banner.js$script
@@|http://www.bxwx.org/js/m.js
@@|http://www.doraemoney.com/images/banner/
@@|http://www.dyguo.com/pc/function.js
@@|http://www.faxingw.cn/js/commend_mid.js$script
@@|http://www.faxingw.cn/js/detailgcbox.js$script
@@|http://www.flyme.cn/static/js/zh/zh_index_banner.js$script
@@|http://www.gdhrss.gov.cn
@@|http://www.gdrc.com/js/floatdiv.js
@@|http://www.iqiyi.com/common/flashplayer/201*.swf
@@|http://www.jiathis.com/send/?url=
@@|http://www.letv.com/shtml/channel/tuiguang/player.html?
@@|http://www.luje.cn/ad/ad.html
@@|http://www.netded.com/plus/ad_js.php?aid=3
@@|http://www.ntrun.com/images/banner_
@@|http://www.omanhua.com/scripts/show/nconfig.js
@@|http://www.omanhua.com/scripts/show/ssncore.js
@@|http://www.onlinedown.net/newhuagg/newhua0$image
@@|http://www.pipipan.com/advview2013.php?ad_pos=0
@@|http://www.qidian.com/Javascript/ChapterPageHeader.js?t
@@|http://www.qidian.com/Javascript/qidian.bookchannel.js?
@@|http://www.qidian.com/Javascript/qidian.common.js?
@@|http://www.qitete.com/sp/uaredirect.js
@@|http://www.sf-express.com/.galleries/advertisement/$image
@@|http://www.smzy.com/apps/inc/$script
@@|http://www.soft6.com/caches/poster_js/19.js
@@|http://www.spbonow.com/images/ads/logo.gif$image
@@|http://www.wobuka2.com/js/cc
@@|http://www.wobuka2.com/js/jq/jquery.autocomplete.js
@@|http://www.wobuka2.com/js/player
@@|http://www.you85.cn/data/cache/
@@|http://www.you85.cn/static/js/
@@|http://www.you85.com/data/cache/
@@|http://www.zsnews.cn/js/jquery.min.js$script
@@|http://www22.53kf.com
@@|http://wwww.lawtv.com.cn/skin/js/ad_erjiye.js
@@|http://zpx.allyes.com
@@||114la.com/|
@@||17173im.allyes.com^
@@||19iiii.info/js/logo$script
@@||52xiyou.com$domain=9377.com|52guoguo.cn
@@||53kf.com/company.php?arg=51fanli
@@||6080ai.com/*play$script
@@||70e.com$domain=2mn.tv
@@||9.ujinbi.com/AD/
@@||atm.youku.com/v*?vip=
@@||baidustatic.com$domain=xoyo.com
@@||battle.net
@@||bdstatic.com/tb/cms/ngmis/adsense/file_$image
@@||captcha.qq.com
@@||chinatelecom.com.cn
@@||chuiyao.com/static/js*/pinglun.js?v=
@@||cntv.cn/nettv/adp/online
@@||cpro.baidu.com/cpro/ui/baiduLoader_as3.swf
@@||cpro.baidu.com/cpro/ui/uijs.php?$domain=www.400gb.com|www.pipipan.com
@@||cpro.baidustatic.com/cpro/ui/f.js$script,domain=www.400gb.com|www.pipipan.com|colayun.com|coladrive.com
@@||download.mokeedev.com/ad-dl.php
@@||ecitic.com
@@||eiv.baidu.com/fcimg
@@||front-go.lemall.com
@@||gamediad.com:7990
@@||gg1z.com/statics/gg/*.css|
@@||google-analytics.com$domain=battle.net
@@||googlesyndication.com$domain=babytoyhome.com
@@||gotunnel.org
@@||hc360.com/ad/*.css
@@||hudong.pl.youku.com/n/setplugins/id_
@@||ifengimg.com/ifeng/sources/inice_v1.js
@@||ik123.com/js/a.js
@@||images.sohu.com/bill/$domain=~auto.sohu.com
@@||kaixin001.com/ad/
@@||linkstars.com/union/
@@||ltzn.9377.com
@@||luoo.net/ad/
@@||mail.qq.com
@@||mamise111.com/js/jquery.
@@||mi.cn
@@||minigame.qq.com
@@||msn.wrating.com
@@||olcdn.com/net/v1/gb2312/$script
@@||p.jwpcdn.com$script
@@||phs.tanx.com
@@||player.letvcdn.com*/newplayer/*.swf
@@||player.letvcdn.com/*/letvPlayer.swf
@@||res.yyets.com/ads/mediav-250.js
@@||seasungame.com/ad/
@@||share.dmhy.org/images/$image
@@||sohu.com/adgtr/$domain=auto.sohu.com
@@||sozi.cn/images/ad/tj*.gif$image
@@||speedtest.net
@@||swjoy.com
@@||tanx.com/ex?i=mm_$domain=www.hao123.com
@@||tcss.qq.com^$domain=55you.com
@@||tf.360.cn/e/wb?
@@||tuhu.cn
@@||v.17173.com/advideo/*.mp4
@@||v.17173.com/advideo/20*.flv
@@||voiceads.cn
@@||weibo.com/adshow/
@@||wx.qq.com
@@||xmxing.net
@@||xsc.lise.edu.cn/ad/
^http://[^.]*\.m\.22ff\.com/
^http://[^/]*/[a-z0-9]{20,23}\.js
^http://[^/]*/images/bqg\.js$s@function ad?()@function xxxx()@
^http://[^/]*/js/bqg\.js$s@function banner()*var prevpage=@var prevpage=@
^http://[^/]*/js/dl\d+\.js
^http://[^/]*/vip/xx\d\.js
^http://[^/]*/xxgg/book\.js$script
^http://[^\.]*\.m\.biqu
^http://[^\/]*\/\w{40,}\.js$$script
^http://[a-w]*\.m\.xbiquge520.com
^http://afpmm\.alicdn\.com/g/mm/afp-cdn/JS/\w.js
^http://api\d{1}.pioneertimes\.net
^http://js\.[^/]*/fc-\d{4}-\d\.js$script
^http://js\d{3,4}\..*/[a-z]-\d+-\d+\.js$script
^http://m.omanhua.com/\d\.js
^http://m\.elanp\.com/img/\w\.js
^http://m\.y3600\.com/17\d{4}/\d{1,2}\.js$script
^http://s\.[^/]*/m-\d+-0(?:\b|-\d+)
^http://td\.xue163\.com/ajs/\w{1,3}\.js$script
^http://td\.xue1\.ca/\w\.js$script
^http://www.\d+\w\.com/##.top_box,#android-tip,[width="150"][height="350"],#rightCouple
^http://www\.46bk\.com/[^.\/]*\.js
^http://www\.555zw\.com/mama/\w\.js
^http://www\.afxfs\.com/scripts/\d+\.js
^http://www\.iqiyi\.com/common/flashplayer/\d{8}\/\w{32}\.swf
^http://www\.qingkan520\.com/file/script/\d{1,2}\.js
^http://www\.rentiyishu\d{2}\.org/\w\.js$script
^http://www\.y3600\.com/17\d{4}/\d{1,2}\.js$script
^http://www\.yaerwen\.com/5200js/[^./]*\.js
^http://y3600\.com/17\d{4}/\d{1,2}\.js$script
a.xcar.com.cn##a.download-app.left,a.lazy.loaded
a3v4.##[width="978px"],[href*="/?Intr="],[width="520"]
a9vg.com##div.ad[id^="ad_"],div.sign
aatoplist.org##A[href^="http://300286."],[height="60"]
abbao.cn##._abbao_all_ads,.adsbygoogle
abcsee.net##.adsbygoogle,.adz,.adhtml,.adhtmlss,.main.myset
ac.qq.com##div.mod-ad-full,div#thirdAds,div.in-show-wr.ui-wm.ui-mb40,li.main_ad_top,li.main_ad_bottom,.in-top-ad-wr
acfun.cn###bd_ad1,.area-ad,.banana-ad,.logo-ad-block,#prompt-box
acg18.me##div.row-fluid.ggggtop,.gggpost-below,.abptext,.gggtop,.ggpost-below
acgzone.us##DIV#page > DIV[style^="width:960px;height:"],a[href^="http://www.S99966.com/?aff="]
acwifi.net##.ads-content
addic7ed.com##.mcimg
admin5.com##div.ad3
ahhouse.com##div#side_tuan
aidaban.net##.asb-post,[href^="https://s.click.taobao.com"]
aihami.com##.h250,.ad300x90,.ad960,.ad640x90,.adDingT,.context_ad,.n_fs2,[style*="height:90px;"],[style^="width:636px; height:"],[style*="width:635px; height:"],[style*="width:640px; height:"],#adTe,DIV[id^="f21ac82b21eeb7322631b6aa94e17f"]
aikongke.com##div.banner.banner-post
aiku.me##div#bar_show_lm
aikuhu.com###Adtips,.ad_A,.ad_B
aipai.com##div.side_gg,div#baidu_gg,div#pm_bgg,div[class^="wbanner_baidu_"],div.wbanner_baidu_689,div.banner_90,.con_l,.con_r,div#videosRightDown,div.cover_inner,a.pmp_random,[class^="banner_"],#theme_gg,.pm_bgg,[id^="cs_gg"],.spread,.ad
airav.cc###bottomad,#Image12,iframe[width="950"][height="264"],[class^="dynamic-panel"],.ad-panel,.front-video-ads,.topbanner,#divleft,.leftcf,#bottomcf,.rightcf,#cboxOverlay,#cboxContent
airav.cc##[id^="ad_"],[src^="https://adserver.juicyads.com/"],#abgneBlock
aisaozi.com##[height="60"]
aitaotu.com##.ggt1024-60
aizhan.com##.azone,.cha_side_thumb
akjunshi.com##.banner_ad,[class^="ad_two_"]
alexa.cn##.importantTop,.importantList
ali213.net###zadbbsdetailfloor,.apptg,.xginfo_l_sale
alicili.com,savebt.com##[src^="http://go.gotourl."]
all.qidian.com##img[width="990"][height="40"]
allyingshi.com##div.rrmj_ad,a[href="http://www.6.cn/coop/pub/?src=yyetst"],ul.room,div.ad
amigo.cn##[class^="redpacket"]
android.265g.com##div#fmt-wrap
angelweb.cn###G640x60,#G250x250,[id^="gg"],.gg300x250,[class^="gg250x"]
anjian.com###advertisement
anjuke.com##div.adver-content,div#xapp_down_new,.g-ifx-link
anqu.com##.game-ul.mb25,.adsbygoogle,#view1_bg,.guang1000,[src^="http://img.xa9t.com/html/click/"]
anquan.org##[class^="ad"]
anxiw.com,www.ezzxw.com,www.025002.com,www.409000.cn,www.danzhou8.com,www.enping1.com,www.ng114.net,www.luhe365.cn,www.0813fs.com,www.0937.com,www.0477.cc,www.jiexi.net,www.qionglai.cn,www.wj0556.com,www.renhuaizx.com,www.236400.com,www.rz0375.com,www.pyccoo.cn##div.adbox,div.banner01,div[id^="adn_"],div.rsliad,li.slicru,div[id^="ad-"],div.ad_wrap,div.topbanner,div.rtbanner,div.footbanr,div.leftbanner
anywlan.com##div.a_pt,div.a_pb,.bscekvofc_o,.adsbygoogle,.a_pr
anzhi.com##.ft_module
aoshitang.com##div#msg_win,div.lunbo
apic.in##.ad,.adsbygoogle,[src="http://www.apic.in/dyd.png"]
apk.tw##[class^=" yap-ad-"],.viewShare,#ct > div.mn> div:nth-child(1)
apk.tw##div#favatarRight.fixedBox,div#focus.focus,div#sitefocus.focus,div.a_pb,div.a_p,div.a_pt,div.sitemajiad,iframe,div[style$="width:728px;height:90px;"],img[height="90"][width="728"],.sitemaji_banner,.adsbygoogle,#confirmBox,.w728,[id^="confirmOverlay"],.adsbygoogle,[id^="confirmOverla"]
app.sogou.com##div.sogou-app
app111.com##[height="60"],.ads
appcgn.com##.adsbygoogle
appinn.com##DIV.ads,DIV.ads-m,INS.adsbygoogle,a[href="http://i.appinn.com/licaifan"]
apps.evozi.com##div#adunit,div.iab-ad,ins.adsbygoogle
asiatvro.com##.wp.a_t,.a_pt
asp300.com##[class^="ad1210"],.ad468x60,.ny_gg
asp300.com##div.asp300-indexAD
assrt.net###top-banner
astronomy.com.cn##div.wp.a_t,div.wp.a_h,div.bm.a_c,div.a_mu
asus.com##div#top_banner,#diy1
aszw.org##.gg
atao.biz,51.lang.pe,51.vlook.xyz,cp001.xyz,tb001.xyz,cp.vwan.xyz,1024.pe,lang00.com,lang51.com,51.vgan.pw,wan1024.com,1024.cao.pe,su1024.xyz,cp.xtao.xyz,vmen.xyz,at.ilovegao.com.2p8.space,at.ilovegao.com.2c2.website,qq88.space##img[width="600"][height="75"],img[width="950"][height="60"],div#textggs,img[width="474"][height="180"],img[width="760"][height="60"],img[width="760"][height="80"],img[width="760"][height="120"],img[width="300"][height="250"],img[width="230"][height="75"],img[width="230"][height="315"],img[width="230"][height="235"],img[width="100"][height="160"],div#middleimg,a[href="/url/vns230.html"],[style="margin-top:5px;margin-bottom:5px;"],[style="margin-top:5px;"],#adx_kppp
atd.com.cn##[style^="height:100px;"],[style^="height:120px;"]
atool.org##.ad_class
auto.163.com##.post_adtop_main,.post_end_ad,.ga-x_100,.ga-300_400,.ga-1200_125
auto.ifeng.com##div.w1000.c-ad,.top-tg
autofan.com.cn##div.ad_banner,.xf_ad,[class="add width"],[src^="ad/"]
autohome.com.cn##div#ad_990_tm,div#ad_fbanner_00,div#ad_fbutton_00,div#ad_ic_video,div#advarticles.advarticle,DIV.advbox,div.pop-autoapp,div[id^="ad_960_"],a[href^="http://qr.net/bvJfs"],[class="grid-14 column"],[class="grid-6 column"],[id^="ad_tuwen"],[id^="adBtmBanner"],[id^="ad_fk_"],[class="monkey monkey_box"],.mall-advbar-tab,.ad-top-1111,.hotcar-mall,.monkey_box_big,.monkey__iconmini,.serve-sm,#mall_960_90,[data-adparent=".monkey"],[id^="tmadv"],[class^="advbox"],.article-content__ad,[height="60px"]
autonet.com.tw##[src^="http://www.autonet.com.tw/90/"],[name="ntwad2"]
av234567.com##.static-a2d,#big2Ad,.innerAd
av4you.net##.exp-box
av6k.com##CENTER,div[class^="ad_"],div[class^="guanggao_"]
avbebe.com##div#primary,A[href^="http://yl6604.com"],TABLE,DIV#footer
avcome.com##center>p
avi.blog.jp##div[class="clearfix nav_list icon_list"]
avidh.net##div#ad_right,div#ad_left,div.tupian
avseesee.com##.ads,.ads-player,iframe[width="585"][height="260"]
awaker.cn###bew_10010,.adsbygoogle
awaker.cn##div#wp125-2,div#text-31
awaker.hk##.adsbygoogle,.wild_adv,[id^="bew_100"]
azhibo.com##.ad-wrapper
azhibo.tv##.fill-content,[width="680"][height="60"],[href^="http://www.00880808.com/go/"]
azhibo.tv##[src="/images/leisu.png"]
b2b.hc360.com##[class="maincont-one-main"],div#cu_channel,div#leftsuspend,div[class^="line"],div.wechactLi
b2bname.com##.block-ad
b5200.org##[id^="adt"]
b8b8.tv##[id^="top_960x90"],.adsbygoogle
b8yy.com##.chat,[height="70"]
babyhome.com.tw##[id^="div-gpt-ad-"],[class="mar_10"],[href^="http://front.adsnew.babyhome.com.tw/"],#ad_m_peacock
badmintoncn.com###bottomad_big,div[id^="cbogg_"]
baiduyunpan.com##.bdyp-sygg-ul,[href="http://www.quanmima.com"],[height="90"],.fixedad,[id^="mvdiv_"],ins.adsbygoogle
baihe.com##div.carousel
baihei.cc##.a_f,.a_mu,.a_cb,.a_cn,.it618_firstad_flex,td[colspan="5"],.a_pt,.bm.a_c
baijia.baidu.com##DIV.l-header-ad
baike.baidu.com##div.right-ad,.bottom-promotion,.adArea-wrapper,#side_box_unionAd,#fc_guess_like_new
baike.com###ad-xnsc,[id^="hd_ad_"],[class^="ad_"]
baike.haosou.com##div#bnbtm-banner,#dwAdBox,div#rightbanner
baishi.baidu.com##.video-adv,.adv-container,#playerPauseAdv
baishuku.com###adtop1,.divimage
baixbbs.net##div#wp>table,div.a_cn,div.a_fl.a_cb,div.a_fr.a_cb
baixing.com###carousel-links
baiy.net##.ad300
baiyjk.com###ads_14
ball365.cn-ce.net##td[id^="idad_"]
ballbar.cc###top_970x250,#left_300x600_1,.pup_time,#pup_box,.adsbygoogle,#obsbar
banma.com##.rightad,.guanggao
banyungong.org##.ad,.gg,#lnkTB,.xnf
baofeng.com##DIV.advertise960,DIV.ad-bar-bottom,div.play-ads,div.ad-pop-wrap,div.main-ad-column,div.play-ad-box,div.play-ad-left,div.advertising-box
baoliny.com##iframe[src^="http://gd.mm2004.com/gd/wap/"],[href^="http://m.mm2004.com/"],[id^="placediv"],.adsbygoogle,.guanggao,div[id^="mvdiv_"],.kongwei
baozoumanhua.com##.ad-area-banner,.random-ad
baquge.tw##.con_ad
bbcss.com##.banner640
bbhou.com##div[style*="height: 90px;"],.gg_300
bbiquge.com##.top-read-ad
bbs.0758net.com##DIV.b_fullscreen,DIV.wp > DIV#diy1.area
bbs.21ic.com##div#sitefocus.focus
bbs.3dst.com##.xs1,[onclick^="pgvSendClick"]
bbs.51credit.com##div#erweima,div#fuceng
bbs.51cto.com##div.aditems,A[href="http://bbs.51cto.com/thread-1170219-1.html"],A[href="http://wot.51cto.com/2015bigdata/"]
bbs.9baka.com,bbs.9gal.com##div#top80.bderlr
bbs.aiyidu.com##[src^="http://upload.aiyidu.com/aiyidu/adver/"]
bbs.am##[id^="ad_"]
bbs.anzhi.com##div.wp.a_t
bbs.cnool.net##div.bbslist-banner,div.box200
bbs.cnyw.net##DIV.portal_block_summary,#diynavtop,[id^="ad_box"]
bbs.cs090.com##DIV.wp.a_t,DIV.wp.a_h,DIV.bill
bbs.eyuyan.com##.tac.mb5
bbs.feng.com##div.wp_show,A[href^="http://we.tm/"],[href="http://www.tutuapp.com/"]
bbs.flyme.cn##[class^="app_download"]
bbs.fobshanghai.com##div#announcement,DIV[style="clear: both; margin-top: 5px;"],DIV[style="clear: both; margin-top: 5px; text-align: center;"]
bbs.gd163.com.cn##DIV.mainnav > BR:first-child + TABLE.a2,img[src^="ad/"],SPAN.nsf TD[height="80"],TR.a3 > TD[height="10"]
bbs.hers.com.cn##div.beitou,div#lfw,div.fourm_ad.cl,img[id^="ad"],img[height="100"][width="960"],img[height="60"][width="960"]
bbs.hh010.com##div#frameIZosbT
bbs.houdao.com##DIV.link_l,DIV.link_r,DIV#header-ban,div[id^="ads_d_"].hdaa,div.signature
bbs.huacolor.com###banner
bbs.hupu.com##div#threadLeftAd.rukou-links,div#topPub
bbs.imoutolove.me##.banner
bbs.itiankong.com##DIV[style="height:90px; margin-bottom:8px;"],div.a_mu,DIV.bm.a_c,DIV#ct.ct2.wp.cl > DIV:first-child,DIV#pt.bm.cl + DIV[style]
bbs.meizu.cn##.app-scroll
bbs.my5600.com##img[src^="http://a.ajaj.be/img/"]
bbs.ncar.cc##div[style^="background-color:#F"],[width="500"][height="90"],[width="234"][height="375"]
bbs.ngacn.cc###postsign0,.adsc.adsch
bbs.pinggu.org##div#mama_tips_right_bottom
bbs.qieerxi.com##DIV.wp.a_t,DIV.a_pb
bbs.qyer.com##iframe[src^="http://ad.qyer.com/www/delivery/afr.php?zoneid="]
bbs.seer520.com##.comiis_adbox,.comiis_kmdbts,#comiis_19lou27
bbs.sgamer.com##iframe[src^="http://www.zhanqi.tv/external/sgamer/banner/"]
bbs.sina.com.cn##div.topAD,div.ad
bbs.taiyule.cn##div.bus_tads.busbb,div#sitefocus.focus
bbs.tianmu.com##div.tac.mb5
bbs.tianya.cn##div.gg.gg-item
bbs.tiexue.net##.layercon,.lunbo,DIV#Baidu_AdTopBar,DIV#Baidu_AdPIP,DIV.ad_830_90,DIV#Baidu_AdPIP_left,div.banner,div.advert03,DIV[id^="Baidu_BBS_AD"],DIV[id^="Baidu_BBS_RightAD"],div.AdPIP_left,div.jpshow,.pos_2Box,.pos_1Box,.AreaR_ad,.fontLBox,.moveBox,.xiaqi
bbs.txtnovel.net##[width="300"][height="250"]
bbs.txwm.com##div#sitefocus
bbs.vpser.net##.yb_pip,.postactions
bbs.wlxww.com##div#framesJFWGF,div#frameF9V2pz,div#portal_block_26.block.move-span,div#framerhcSfN
bbs.xineurope.com##div.center.clear.adft,td[width="240"],div[class^="a_p"]
bbs.yawin.cn##div.ad,a[href^="http://bbs.yawin.cn/ad/"]
bbs.ydss.cn##div#sitefocus.focus
bbs.zhongsou.com##div.lt_gg960,div.gg1p6p6,div.marketingad01,div.lt_ggao_wei
bbs.zol.com.cn##div#bbsAd
bbs99.club##[class="wp a2_h"],.a_2mu,.ad,.a_pb
bbsyl.cn###ggwehaoyi,table[style="width:100%;height:10%;"],[width="980"][height="90"],[src^="/ads/"]
bbx163.com,bbx169.com##.ad1,.ad2,.a_t,.a_pb,.fwinmask
bcc.com.tw##.scupioadslot,[class="ls4 block w1"] > .im1,[id^="div-gpt-ad-"]
beareyes.com.cn##.detailed_ad,.page_banner,.newsPage_ad,.bj_ad
begeek.cn##[href="http://static.webhek.com/tb.html"],.adsbygoogle
beibei.com##div.bbAppBar
bejson.com##.panel-body > p[style]
bendibao.com##DIV[id^="f21ac82b21eeb7322631b6aa94e17f"]
best-wallpaper.net##.adsbygoogle
beva.com##.av250-250,[style="height:180px;"],#beva-av-left,#beva-av-right,#beva-av-bottom
bf.spbo.com##td.fixad,[id^="adhtm"],td#tad3,td#ltad1,#tad2,#bad1,#bad,#d1ad
bfooru.info##[width="760"][height="90"]
bg888.tv##[src^="style/images"],[src^="http://ww4.sinaimg.cn/mw1024"]
bidcenter.com.cn##.tggg
bigear.cn##A[href^="/?module=business&"],div.rbborder,div#sitefocus.focus,.adpicright,.adsbygoogle,#topadlist,#toppicadarea
biketo.com##[class^="ggb"]
bilibili.com##.mCS_img_loaded,[class^="gg-"],.adpos,div#b_app_link,div.goto-mobile,[data-id="68"],.live-ad-full,.index-promote,.ad-f,[data-id^="490"],[data-ad-type],.data-id-ad,.ad-e1
bing.com##DIV.sb_adsNv2,li.b_ad,div.OpInNwWndw
bio1000.com##.ad1
biqubao.com##.con_ad
biqudao.com##.dahengfu,.con_ad
biquge5200.com##.adsbygoogle,[class^="gad"],[id^="ad"]
biqugex.com##.top-read-ad,.adsbygoogle
biqukan.com##.adsbygoogle
biqule.com##.top-read-ad
biqulou.net##.dahengfu
biqushu.com##.adlist
biquwu.cc##.con_ad
bitauto.com##.advertise-nav-down,.advertise-top,DIV.con_ad,DIV.ad_h50,DIV.ad_h60,DIV.ad_h70,DIV.ad_h80,DIV#bitAd_floatFlash,DIV#video_floatBox,div.col-ad,DIV#bitAd_background,div#folieAdNews
bitebt.com##.portal_block_summary,.bm.a_c,[class^="a_"],[width="200"][height="200"]
bitscn.com##ins.adsbygoogle,.headerad
bjjtw.gov.cn###floatDiv
bjnews.com.cn##a#getAppForMob
bjxxw.com##.topAD,.guanggao
bkill.com##.index-a,.cross-ad,.half-ads,.softdza,.alliance-ad,.xiangguan-ad,.yinsu_xz
bkjia.com##.ad_top,[style*="height:90px;"]
blog.163.com##.wrapperbg{height: 151px;}
blog.163.com##div[class$="lofteriframe"],[class$="kaolaadv"],div#lofter_single,div#blog-163-com-toptips,.w-mobiletopad,#moudle121,.down-to-kaola,.m-kaolahg,[class^="lofteriframewrap"],.w-mobileadbanner,.m-regGuideLayer,.m-kaolaadv,.m-lofteriframe
blog.cnfol.com##div.BlogAd,iframe[src^="http://cnfolimedia.allyes.com/main/s?user="]
blog.sina.cn###pl-blog-artad,div[id^="pl-blog-tbyy"]
blog.sina.com.cn###topAdvertise,DIV#ramdomVisitDiv,DIV[style^="position: fixed; width: 140px; height: 330px; "],#module_1006
blog.weeiy.com##DIV.widget.d_banner,DIV.banner.banner-post
blueidea.com##.listcontent
bmd.hk##[src^="/Ad/"],[src^="Ad/"],[src^="../Ad/"]
bnext.com.tw##.no_margin_ad_box,.rmax_bnner,.google-dfp
bokon.net##.DivMainLeft{width: 990px;}
bokon.net##div[style="height:252px;text-align:center;"],iframe[src^="/SiteFiles/"],.DivMainRight,#float_l,#float_r
bomb01.com###modal,.adsbygoogle
book.2345.com##[width="200"][height="200"],[width="990"][height="80"]
book.3g.cn##.msg_desc
book.qidian.com##.crumbs-nav.top-op {margin: 16px auto 20px;}
bookbao.com##div.ad_all,iframe[src^="http://www.bookbao.com/ads/"]
bookbao.net##.adshtml,.adsbygoogle
booklink.me##ins.adsbygoogle
booktxt.net##.dahengfu
boosj.com##[id^="ad_"]
boquge.com##.gad2,.adsbygoogle
boroboromi.com##.mod-ad
bouweenpc.nl###header-banner
bozhou.cn##.bannerad
bqg5200.com##.content_ad,.ad250left
briian.com##.adsbygoogle,.scupioadslot
bstzcs.com##iframe
bt.orzx.im##iframe#flashpoint,.showdowntd2
bt2d.com##div.ad-container
bt606.com##.a_mu,img[height="90"]
btba.com.cn##.center_ad,#head_ad
btbbt8.com##[src="http://www.437600.net/taobao.html"]
btbta.com##[href="http://www.btbta.com/"] img
btdb.in##.banner,.banner-bottom,[width="728"][height="90"]
btge.cc##.hidden-sm.hidden-xs
btime.com##DIV[id^="f21ac82b21eeb7322631b6aa94e17f"],.ad_baidu1,.ad_content,.ad_box,#ad-guess,.detail_left_ad,.ad_download_app,.popup_ad_box,.detail_ad_box,.content_ad_box,[class^="ad_"],.ad_top,[ad_track],[adview-id],#bigbg_placeholder,[id^="yr-1-"],.business-item
btks.me##img[height="60"],.agssp_ad_ins
btscg.com##DIV.wp.a_h,div.a_cn
btshoufa.com##.a_mu,.bm.a_c
btshoufa.net##.wp.a_h,.a_pt,.a_mu,#ggDiv2,.bm.a_c,.portal_block_summary,.a_pb,#msg_win
btso.pw##[src*="/app/"],[width="728"]
budejie.com###downApp,#topBanner
buka.cn###download_bar
bukade.com###loadimg
bumimi.com##[href="http://www.meiweis.com/"],#adv
bunnygo.net##.scupioadslot,#fancybox-wrap,#inline1,#fancybox-overlay,.kiwi-ad-wrapper-728x90
buzzhand.com##.mid-post-ad,.adsbygoogle,[class^="mash-lightbox"],#rightFixedAd,[style$="height:600px;"],[style^="display:inline-block;"]
bxwx.us##.top-read-ad
bxwx9.org##[class^="pagead_"],#bottomAD
byfen.com##.fixed-bottom
byhh.org##DIV#ad_tool
bywl6.com###topblock,[height="70"],[src^="/_uploadfile/image"],[style*="width:"]
bz.moe.pm##.ad
c114.net##img[src^="images_a/"],embed[src^="images_a/"],img[src^="http://www.c114.net/ftth/images_a/"],embed[src^="images/c114/ad_"],[src^="http://bbs.c114.net/data/attachment/common/cf/"],div[class^="a_cu_"],.barrage_ad,.tab.ad2
c7sky.com##.adsbygoogle,A.ga
c8yy.com##[height="90px"]
caibaojian.com##.avatar,.textwidget
caixin.com##.indexTopAd
cangku.in##.ad-index,.single-top-ad,.sidebar-game,.panel-zan
canton8.com###banner,[src^="http://www.canton8.com/adphoto/"],#ads_c_tpc
cao4000.com###ad_text,#ad_headerbanner,.ad_pip,a[href*="/?Intr"],a[href*="/?intr"],a[href*="/?aff"],[href*="/?Extend="],[href*="/?p="],[src^="/ads/images/"],[href="http://www.jxf75.com/kedou.html"],.bottom-adv,[href*=".com/Register?"],noindex
capitalweek.com.cn##.ArtCAD,.RightTAD,#news_middle_ad,#news_middle_top_ad
cartomad.com,cartonmad.com##td[height="102"][align="center"]
cartoomad.com##td[height^="10"],[height="90"],td[height="92"]
cartoonpornvideos.com##[style*="font-size:"],td[class="detail-side-td"],center
cbg.cn##[class^="erweima"]
cbmd.cn##.tong_addver,.header_top_ad,[id^="Advertices"]
ccoo.cn##div.topbanner,div.rightbanner,div.adbox,div.rsliad,li.slicru,div.banner01,div[id^="adn_"],div[id^="ad-"],div.duilian,div.ad_wrap,div.rtbanner,div.footbanr,div.leftbanner
ccstock.cn##.tlgg,.left_ad,[class^="radbox"]
cctime.com##[height="80"],[height="90"],[height="100"]
cctry.com##div.wp.a_h
cctv.com##[id^="div-gpt-ad-"],[src^="http://pubads.g.doubleclick.net/gampad/"],.adv
ce.cn##div.ad
centoscn.com###mytop{height: 78px!important;}
centoscn.com##.banner,[src^="/uploads"]
centoscn.com##DIV.handle,div.threead,a[title="CentOS"] > img
cesdns.com###top-ad,.adimg,.lad2,.arcbodyad
cewer.com##[class^="ad_right_"],.ranklist
cforum5.cari.com.my##DIV.cari_skinner_ads,IFRAME[src^="cari/banner/ads_"]
cfwx.net##div.show
cgown.com##.banner-gg,[href="https://www.cgown.com/go.php?https://ax85.taobao.com/"],.slider-gg
cgvoo.com##.a_f,#diy_chart,.a_h,.bm.a_c
changsha.cn##[class^="site_ad_"]
chapaofan.com##[class^="pf-ad-"],.details-ad
chasedream.com##.a_h,.a_f,[id^="diycd-board"]
chashebao.com##.ad960
chaturbate.com##.ad,.banner,[href^="/external_link/?"]
chazidian.com##.ggin,#bootDIV,.guangg_a,.ad_660,.adsbygoogle,[href^="http://baobao.baidu.com/pinpai"]
chcj.net##DIV.a_pb,DIV.a_pt,IMG[src="comiis_ad/gg.gif"],div.a_fr,div#diynavtop.area,div.a_fl,div.itemFloat,div.rightDiv,DIV#diy1.area,#comiis_sfcs00,#comiis_sfcs08,#diyfastposttop,[id^="comiis_ad"]
chdbits.co##[id^="ad"]
chddh.com##.ad,.ad2
chem99.com###J_tcode,.ad,.div_banner
chengdu.cn###ad_cover,.ad-banner,#sideBox[style],[class^="ad-"]
cheshi.com##.ad_div_content,#ad_crazy,.ad_1000,.side_banr,[id^="ad_pos_"]
chiasenhac.vn##[width="800"][height="500"]
china.cn##.gg_li
china.com##.mm-780x90
china.com##div[id^="CH_"][id*="_CHT_"].adclass,div#ep_tl.ep_tl.clearfix,div.gg,DIV[id^="CH_"][id*="_HZH_"].adclass,DIV[id^="CH_"][id*="_WZLZ_"].adclass,DIV[id^="CH_"][id*="_TL_"].adclass,DIV.ad.mtb5,DIV.place.ggSpace,div[id^="CH_NEWS_MTL_"].adclass,[class^="gg"],.tonglan,[class^="channelHead"],[id^="CH_MTL_100"],[id^="CH_HZH_100"]
china.com.cn##[class^="baidu-ad"],.show-left-longad,[class$="-ad"],.top-id-list,iframe#eeww,iframe#fq12,div[style="width:310px;height:250px;padding-left:5px;"],div.banner,iframe#gggg,DIV.Banner_left,DIV.Banner_right,ins.adsbygoogle,object#ad_dcyyc,div.TopBanner,iframe[src^="2015ads/"],div.chinaJZG,div.Banner02,DIV.ad_new1,IFRAME[width="316"][height="266"],div#gg,div.ad2,div.footad,div.topad,div.ads,div.right-ad,div.leftad1,div.guanggao,iframe#dmt1,iframe#dmt2,iframe#fthrj,#hzh,#embed,[id$="Ads"],#show_down_ad,img[src^="http://m.china.com.cn/images/ad/"],iframe[src^="2016ads/"],#newsPhotosIfr,p.ab1,#ad_djx,#ds_box,.ab[style],#pop
chinaacc.com##.banner,.ban,.new-ad
chinabidding.cn##[class*="guang_"],[id^="erweima"],#toolbar
chinabidding.com.cn##[class^="guanggao"],.advert,.liushi,.ad_zx,.gg_700_100
chinabyte.com##.gg_text
chinacaipu.com##.bottom_640X90,.adv,#ad24
chinacar.com.cn##.news_banner,.left_pouple_box,.advertising1
chinachugui.com##.hotbottom,.A6_232_218,.dlggbox,.gg_top10,.ad80
chinadaily.com.cn###ad_incontent,#zd.abs
chinadmd.com##.adtext
chinafix.com##.a_pb,.wp.a_t,#diy_vk_ad_top
chinahr.com##.app-download
chinairn.com##div.bizrpt
chinanews.com##.enter_top { width: 100%; height: 154px; background: #fff;}
chinanews.com##DIV.advert_nav,DIV#qizhi_div980,DIV[id^="ad_"],div.advert_dingtong,div.advert_right,DIV[class="2014adv"],img[width="1000"][height="60"],div#AD_hengfu,A[href="http://www.chinanews.com/life/z/haihangsongaihuijia/index.shtml"],#chat,#chat1,#dingtong,[id$="_advert"],.tonglan_advert,[height="90"]
chinanews.com.cn##[id$="_advert"]
chinaqking.com##.ad,#cnt-ad
chinaso.com###boxBrandRightA,[class^="bnwrap"],.head_ad_right190,.headAD,.new_gs_gscp_gs
chinatimes.com##div.ad_72890_box,div[class^="ad-"],ins.adsbygoogle,div.ad,div.banner-300x250,div.page_ad,div[class^="stack googlead_"],div.idx_ad_box,[class^="ad"]
chinavoa.com##.adsbygoogle
chinawutong.com##.adflash,div.logo_r.fr,div[class^="ad"],div.badbot,div.cboad1,div#focus001,img[width="130"][height="300"],img[width="980"][height="80"]
chinayk.com##.ad_250,.ad1024,.l_box,[id^="ads_r_"]
chinaz.com##div.ad_box,div#navAfter,div#centerImg,div.mb10.clearfix,div.mtb10.clearfix,div[class="mt10"],div[class="mt20"],div[id^="pic_ad"],div#view_pic,div.topbanner,div#banneright,iframe[src^="http://stats.chinaz.com/tool/"],.adsbygoogle,.adbox,.adbox2,#topTxt,#topImg,#centerTxt,.txtAdBox,[class="mb10"],[class="mb20 clearfix"],[class="mb20 mt10"],.fotatxtd,div.ad,div.etc-b-head,div.etc-t-head,.topTsRight,.Mnav-right02,.plate-layout.img_wrap_l,.newsMainBox-textad,.recommendsoft
chineseinla.com##DIV.forum_banner_ads,DIV.module_content:first-child
chongbuluo.com##.adsbygoogle,.a_pt,.a_pr
chongdiantou.com##div.a_pb
chosun.com##div#top_ad
chuangshi.qq.com##.main_banner,#top3GBanner,[class^="banner"],.jpBanner,#advert
chuanke.com##div#down_float_div
chuansong.me##.adsbygoogle
chushou.tv##.h5_footer
chysg.com###comiis01,[height="90"],.a_pt,.ad,.comiis_ad
cjdby.net##[width="960"][height="30"],.wp.a_t,div.a_p,.a_pr,.ad,.a_t,.a_f
cjn.cn##aside.sidebar.art-ad,ASIDE#slidelr,DIV.sidebar,IMG[src^="http://img.cjn.cn/2014cjn/ad/"],ASIDE.sidebar.side-w998.side-h68,ASIDE.main.side-h68
ck101.com##.a_cn,.adsbygoogle,#image_ad_long,#image_ad_short,.imgAd,.adTopBox,[id^="sideAds"],.ad728Top,.viewthread_announcements
ckdzb.com##TD[height="90"],DIV[style="float:right;margin:10px 10px;clear:right;height:310px;width:336px;"]
clickme.net##div.StickyShareBlock,div[class^="ADs"],ins.adsbygoogle
clipconverter.cc###abottom,#atop,#aright
cloud.letv.com##div#ad_show_box
club.pchome.net##.pic-list1,iframe[width="760"][height="130"]
cn.msn.com##DIV.topAd.cf,DIV.ad,div.left_Bg,div.right_Bg,div.bottomAd.cf
cn163.net##A[href*=".taobao.com/"]
cn3x.com.cn##.gg1,[class^="list_gg"]
cna.com.tw##div[class^="ad_"]
cnal.com##img[src^="http://dreambox.cnal.com/image"],[id^="indexbd"],.index_top_r
cnbeta.com##.cbv,.tigerstock,div.time,ins.adsbygoogle,[href="http://www.dangbei.com/?cnbeta"],[class="item cooperation"],.cbhelp,[href^="http://click.aliyun.com/m/"],.commt-r,#fixed_area,#aswift_0_expand,.other_news,a[href^="https://www.tigerbrokers.com/market/"],.article-global,.cnbeta-side-sponsor
cnbeta.com##[id^="dfb-wrapper-"]
cnblogs.com##div[id^="google_ad_"],[id^="ad_"],#banner_right,[id^="cnblogs_a"],[id^="cnblogs_b"],[id^="cnblogs_c"].c_ad_block,[id^="div-gpt-ad-"],[height="60"],.adPopup