-
Notifications
You must be signed in to change notification settings - Fork 1
/
abpvn.txt
1380 lines (1380 loc) · 56.8 KB
/
abpvn.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Adblock Plus 2.0]
! Checksum: vOtxUOQnU6xbu+inTe0/jQ
! Version: 202501060221
! Title: ABPVN List
! Last modified: 06 Jan 2025 02:21 UTC
! Expires: 1 days (update frequency)
! Homepage: https://abpvn.com/
!
! ABPVN List subscription
!
! *** abpvn:filter/abpvn.txt ***
! id: D4028CDD-3D39-4624-ACC7-8140F4EC3888
! Last modified: 03 Jan 2025 23:05:53 UTC+7
! Diff-Path: patches/20250103230553957.patch#abpvn
! Diff-Expires: 60 minutes
!
! ABPVN List filter
! Copyright: ABPVN
! License: GPLv3 (https://github.com/abpvn/abpvn/blob/master/LICENSE)
! Please report any unblocked ads or problems by email or in our fanpage
! Mọi thắc mắc xin gửi về email hoặc fanpage
! Email: [email protected]
! Facebook Fanpage: https://www.facebook.com/abpvn.org
! Forum: https://voz.vn/t/official-abpvn-bo-loc-quang-cao-cho-nguoi-viet-bao-cao-quang-cao-giai-dap-thac-mac.867616/
! Report new issue on github: https://github.com/abpvn/abpvn/issues/new
! ---------- Generic Blocking Rules ----------
$popup,domain=player-cdn.com|freeplayervideo.com|abysscdn.com|geoip.redirect-ads.com|playhydrax.com
$popup,domain=truyenfull.io
.com/cpc/$script
.com/qc/
.net/ads/$domain=~linkneverdie.net
.net/cpf/$script
.tv/ads/$image,script,subdocument
.vn/Ad/
.vn/c3s-ad/$xmlhttprequest
.vn/qc/
/Content/JS/jwplayer/vast.js$script
/_BannerSlot.aspx$subdocument,domain=bongdaso66.net
/aas/r45d/vki/*$script
/ads/*.gif
/ads/*.xml$xmlhttprequest
/ads/popup_
/adv/*$image,domain=bongdaso66.net
/banner-ads.
/banner/*.gif$domain=~marsvenus.vn
/beardeddragon$script
/blueserving.
/cms/Arfcc.min.js$script,third-party,domain=cafef.vn|gamek.vn|genk.vn|kenh14.vn|soha.vn|tuoitre.vn|afamily.vn|thanhnien.vn
/cms/arf-$script,third-party,domain=cafef.vn|gamek.vn|genk.vn|kenh14.vn|soha.vn|tuoitre.vn|afamily.vn
/core/*$script,domain=gamek.vn|genk.vn|kenh14.vn|cafef.vn|thanhnien.vn
/detroitchicago$script
/disable-devtool.min.js$script
/giadinhonline.vn/files/qc/*
/i.imgur.com$domain=xemphimchill.xyz
/i.imgur.com/*.gif$domain=keonhacai55.chat|phimlongtieng.org|www.phimdinhcaoz.com|phimdinhcao.net|xoilacxj.cc|90phutzv.cc|vebozy.cc|cakhiai.cc|listnhacai88.com|xoilaczz63.live|xemtivingon.org|www.phimchaua.com|mitomvh.cc|eastloshigh.com|plcdn.xyz|phimmoi.ing|motphimww.net
/mmo/*$xmlhttprequest,image,domain=vuighe4.com
/newchill/*gif$image
/polyad.
/pop.js$script,domain=motchill.pe|ohaytv.biz
/popunder7.
/porpoiseant$script
/qcao/*$domain=~thegioididong.com
/quang%20cao/*
/quang_cao/*
/quangcao.
/quangcao/*
/root/ads/*
/sbbanner.com
/script/oneAds.js$script,~third-party
/siropu/am/core.min.js$script
/storage.adpia.vn$image,script
/stores/ads_data/*
/taichinhdoanhnghiep.net.vn/files/qc
/tracking_info.gif$domain=cafef.vn|gamek.vn|genk.vn|kenh14.vn|soha.vn|tuoitre.vn|afamily.vn|thanhnien.vn
/v/*/vast.js$script,domain=~cdn2.kenhvn2.com
/vast.js$script,domain=phimmoi.tuphim.net|boctem.com|hayhaytv.org|phimdacap.tv|hoathinhtq.site|tvhay26.com|tvzinghd.co|player.cloudbeta.win
/videojs.ads.$domain=~danet.vn
/videojs.ima.js$domain=~jut.su|~earthcam.com
/wp-auto-affiliate-links/*
||10gb.vn/assets/ads/
||123nhadatviet.com/Media/CK/banners/
||123nhadatviet.net/Media/CK/banners/
||2banh.vn/images/banners/
||acscdn.com/script/aclib.js$script,domain=ytstv.me
||ads*.autodaily.vn
||ads.nghenhinvietnam.vn^$domain=nghenhinvietnam.vn
||ahaphimz.com/js/pov.js$script
||alwingulla.com/88/tag.min.js$script,xmlhttprequest,rewrite=abp-resource:blank-js,domain=apkmoddone.com
||animehay.name^*.gif
||animet4.site^*.gif
||animevietsub.biz/ads/popup.js$script
||animevietsubs.net/vast/$image
||animew.info/_next/image?url=https%3A%2F%2Flh3.googleusercontent.com$image
||animew.info/_next/image?url=https%3A%2F%2Fp21-ad-sg.ibyteimg.com$image
||api.adda.link^$image
||api.anime3s.com^*.gif$image,domain=hayhaytv.org
||asecdn.w88media.com/VN/250x250-VN.gif$domain=mythethao.net
||baohaugiang.com.vn/uploads/SlideHomeimg/
||baomoi.com$csp=script-src data: blob: * 'self' 'unsafe-inline'
||baonga.com/FileUpload/Images/*banner
||bf.333xbet.com^$media,third-party
||biphim.xyz/public/prom_ad/prom_ad.js$script
||blog.abit.vn/wp-content/uploads/2020/05/abit_$image
||blogger.googleusercontent.com^$image,domain=hhninja15.tv|xem15.com|hhtm.site|hoathinh3dtq.site|hhh3d.tv|hoathinhtq.site|phimhaytv.biz|yanhh3d.tv|phimhoathinh3d.vip
||blvtap.com^*.gif$image,domain=phiimoi.net
||bonbanh.com/ad/
||bp.blogspot.com$image,domain=timdaily.vn|xemtivi4k.com
||bp.blogspot.com/*banner$image,domain=~aowvn.org|~www.umu.pro.vn
||cdn-data.gtvplus.vn/banners/$image,domain=gametv.vn
||cdn.lfastcdn.com^*.gif$image,domain=bongdainfox.tv|xoilaczz63.live|90phutzv.cc|eastloshigh.com|cakhiai.cc|mitomvh.cc|90phutvs.cc
||cdn.thichxemphim1.net/wp-content/themes/halimmovies-child/jscm.min.js$domain=thichxemphim1.net
||cdn.webhoctienganh.com/asset/home/img/banner/$image,domain=webhoctienganh.com
||cdn2-img.net^*.gif$image,domain=hhpanda.love|dongchill.pro|biphim.xyz|motchill.mn|subnhanh.love|subnhanhvl.xyz|bichill.xyz|dongphim.love
||chillphimmoi.pro/assets/*.gif$image
||chillphimmoi.pro/assets/js/popup.js
||chodansinh.net^*.gif
||chotlo3s.com^*gif
||cloud.motchill-stream.win/common/ads/$image,domain=motchilltv.love
||code.gunnymienphi.net^*.gif
||danketoan.com/banner/
||datcang.vn/images/khicon.jpg
||docnhanh.vn/images/ads/$image
||doctruyenchu.info/ads/$image
||doctruyenchu.info/home/js/ads.js$script,~third-party
||domdomcomics.info/script.js$script,~third-party
||dongchill.pro/ads/ads_xx.js$script,~third-party
||dongphim.love/ads/ads_xx.js$script
||down-cvs-vn.img.susercontent.com^$image,domain=forum.gocmod.com
||fastscans6.net/_next/static/media/voucher.$image
||ff.imacdn.com^$image,domain=xem1080.com
||file1.dangcongsan.vn^*.gif$image,domain=dangcongsan.vn
||forum.idichvuseo.com/images/quang-cao
||fshare.vn/lib/jwplayer/jwplayer.js
||fuhumm.net/content/rest?t=ads_config$xmlhttprequest
||fun6668.com/Banner/$domain=mythethao.net
||fundingchoicesmessages.google.com^$third-party
||ghienphim.media/client_assets/js/minijumb.js
||ghienphim.media^*.gif$image
||ght.kernh41.com^$script,third-party
||github.com/vietcodeno1/basic-lesson/$domain=phimno1.me
||github.com^$image,domain=xemphim18.net
||goal.90phut24.xyz^*.gif$image
||googleusercontent.com^$domain=hhtqvietsub.me
||haychillz.com/*-pop$image
||heovktgame.club/wp-content/plugins/banner-management/$image
||hhhay.ink^*.gif$image
||hhkungfu.club/88vn$image,domain=hhchina.blog
||hhpanda.love/ads/$script,~third-party
||hinhso.com^$domain=diendanmaychu.vn,image
||hotphimvn.cc/disable.js$script
||hsctvn.com/uploads/products/$~third-party,image
||huongdanjava.com$csp=script-src data: 'self' 'unsafe-inline' http: https:
||huphimtv.com/assets/themes/js/wonderfarm68.js
||i.ex-cdn.com/nhadautu.vn/files/qc/$domain=nhadautu.vn
||i.imgur.com/81uid6d.jpg$domain=vozer.net
||i.imgur.com/FbUH5AQ.png$domain=vozer.net
||i.imgur.com^$image,domain=nhacdj.vn|diendanit.net|banbuondalat.com|hoathinhtq.site|xem.tructiepnba.me|www.ssphim.us|phimbet.biz
||i.imgur.com^*.gif$image,domain=ghienphim.media|mv.dailyphimz.com|mv.phimmoiaz.cc|phimgichill.net|mythethao.net|xemtivi4k.com|vtipster.net|huphimtv.com|phimmoi.club|xemtivi.tvhayhd.tv|hoathinh4k3.net|vutruphim.tv|ketqua247vn.vip
||i.postimg.cc^$image,domain=www.phimmoichilla.xyz
||i45.servimg.com/u/f45/$domain=gocmod.com
||iamcdn.net/players/playera.dmins.js
||iamcdn.net/players/playhydraxs.min.js
||image-eu-na-ctnytbefjq.4shares.live/90link/*.gif$image
||image.cdend.com^*.gif$image,domain=phimmoi.club
||images.tuyensinh247.com^*.gif$third-party
||img.iketqua.com^*.gif$image
||img.phimmoi.in^*.gif$image,domain=phimmoi.ing
||img.upanh.tv^*.gif$image,domain=phimtuoitho.site
||imgyn.imageshh.com^$image,domain=phimmoichill.org
||imgyn.imageshh.com^*.gif$image,domain=mphim14.org
||kenhgamez.co^*.gif
||kenhtin.net/upload/images/banner-
||kienthuc.net.vn/*.ads
||laodong.vn/*QuangcaoOnline
||lh3.googleusercontent.com/*=s0$image,domain=animevietsub.biz|hoathinh4k3.net|hayghe.me
||listnhacai88.com^*.gif$image
||live.staticflickr.com$domain=timdaily.vn,image
||maclife.io^*.gif
||media.nghean24h.vn$image,domain=nghean24h.vn
||mediastation.live^*.gif$image,domain=mn.mediastation.live|home1.mannhan19.pro|mannhan92.xyz
||mocfun.net/uploads/banners/
||motchill.mn/js/ads_xx.js
||motchillli.com/banner$image
||motphim.moe/js/ads.js?$script,~third-party
||mplmncb.com/banners-web$image,domain=truyenqqto.com
||mplmncb.com/popup/$script,domain=truyenqqto.com
||nettruyenrr.com/public/assets/js/pop$script,~third-party
||nettruyenvie.com/assets/js/pop$script
||new.thapcamtv.com^*.gif$image,domain=new.thapcamtv.com|vv13.thapcamtivi.live
||newoneinoldoneout.pro/banners-web/$image,domain=nettruyenrr.com|nettruyenvie.com
||newoneinoldoneout.pro/popup$script,domain=nettruyenrr.com|nettruyenvie.com
||nhadatvang.vn/images/$domain=muabanraovat.com
||nhipcaudautu.vn/*gafin$script
||nhipcaudautu.vn/Media/*.gif
||notepad.vn/media/images/like68.jpg
||phim.vkool8.net/images/ads/$image
||phim.vkool8.net/js/pov.js$script,~third-party
||phimhdc.wiki$csp=script-src 'self' 'unsafe-inline' https:
||phimhdc.wiki^*.gif$image
||phimmoi.ing/js/ads.js$script
||phimmoichill.bio/newchill/$script,~third-party
||phimmoichillz.my/pop$image
||phimmoichillz.my^*.gif$image
||phimmoinhat.top^*.gif
||phimnhanhvl.com^*.gif
||phimnhua.xyz^*.gif
||phimreview.org/playergk/phimreview.mp4$rewrite=abp-resource:blank-mp4,domain=phimreview.org
||phimreview.org^*.gif$image
||phimss.net/assets/ads/$image
||photo2.tinhte.vn/data/attachment-files/*banner
||photo2.tinhte.vn^*.gif$domain=vebo4.net|xem.vebo31.net
||pic1025.com^*gif$domain=xemtivi4k.com
||play.pdccf.online/staticpdc/ads/$image,domain=phimdacap.tv
||qthang.net/js/blocker$script,~third-party
||quaivatdienanh.com/*banner$image
||quangcaosanpham.com/images/$third-party
||quoracdn.net^$image,domain=www.phimlongtieng.org|www.phimchaua.com|www.phimdinhcaoz.com|phimdinhcao.com
||raovat.tuoitre.vn^$domain=tuoitre.vn
||raovatdidong.vn/images/$domain=muabanraovat.com
||s.lazada.vn^$popup,domain=chillphimmoizz.org
||s2.phim1280.tv/adjump$domain=yeuphim.vip
||s2.truyentot.com^*.gif$image,domain=hhtq8.vip|hhtq3d.net|hhtq5.vip|hhvsub.com
||sansale.online/hh3d.js$script,domain=yanhh3d.tv
||sansale.online/hhtm.js$domain=hhtm.site
||server.zmedia.vn/static/$script
||sggp.org.vn/*banner
||sharecode.vn/assets/images/thiet-ke-web-gia-re.jpg
||sharecode.vn/assets/images/thiet-ke-website.jpg
||shope.ee^$popup,domain=chillphimmoi.pro|blogtruyenmoi.com|cunghocvui.com|truyensextv.com
||shopee.vn^$popup,domain=apkmoddone.com
||sognoansofou.net^$popup,domain=apkmoddone.phongroblox.com
||sohuutritue.net.vn/files/qc/
||soikeo365.net^*.gif
||soikeoz.vip^*.gif
||static.cdnno.com/storage/topbox/*.webp$image,domain=metruyencv.com
||static.ybox.vn^*.gif$domain=ybox.vn
||stc02bc54661548.cloud.anycastapnic.com^*gif$image,domain=gavang3.link
||storage.fshare.vn/images/$third-party
||subnhanh.love/js/ads_xx.js
||subnhanh.love/js/ads_xx.min.js$script,~third-party
||subnhanhvl.xyz/js/ads_xx.js$script,~third-party
||suckhoelamdep.vn^*.gif$image
||tailieuvnu.com/wp-content/uploads/2022/12/28/shopee-2*.png$image
||taoanhdep.com$csp=script-src 'self' 'unsafe-inline' data: https:
||tepbac.com/upload/advertiment/$image
||thaudiotruyen.com/wp-content/uploads/2024/10/temu.jpg$image
||the.tube/js/detect-ab.js$script
||the.tube/js/simpleblocker.js$script
||thichxemphim1.net/Fb88-28012023.mp4$domain=thichxemphim1.net,rewrite=abp-resource:blank-mp4
||thoigian.com.vn/mFiles/N/06/$image
||thoigian.com.vn^*.gif
||thuysanvietnam.com.vn^*.gif
||timsanpham.com/images/$third-party
||tinhayvip.com^*.gif
||tinmoi.vn/?mod=ajax&act=getAds
||tinsoikeo.live^*.gif$image
||tizihay.com^*.gif$image,domain=phiimoi.net
||tizihay.com^*.gif$image,domain=phimmoichill.org
||toithuthuat.com^*.gif
||tracker.idocdn.com^$domain=freeplayervideo.com|abysscdn.com|player-cdn.com|geoip.redirect-ads.com|playhydrax.com
||traderviet.tv/data/siropu/am/user/$image
||tram3d.vip^*.gif$image,~third-party
||tructiep.vn/website/adv/
||truyen4u.pro$csp=script-src 'self' 'unsafe-inline'
||truyenconect.com/uploads/*-truyenconect_com-*.
||truyentuan.xyz/wp-content/banners
||truyentuan.xyz/wp-content/themes/nos/js/pop-before.js
||truyenwikidich.net/static/js/adx/$script
||tudomuaban.com/public/upload/ad/
||tuviso.com/public/media//banner/
||tuyensinh247.com/$image,third-party
||tuyensinhso.vn/images/banners/*.gif$image,~third-party
||tvhay.id/guide/popup.xp-f.js
||tvphim.la/ads/popup$script,~third-party
||tvzinghd.co/wp-content/themes/zingtv/js/qci9bc.js$script,~third-party
||ungtycomicsxyz.com$csp=script-src self * data:* 'unsafe-inline'
||uniad.$third-party
||upanh.vn-z.vn/images/2024/05/20/Ban-sao-Deskin-banner-1.jpeg$image,domain=vn-z.vn
||upload.bongda365.news//banner/$domain=bongda365.news
||v.xemphimviet.xyz/client_assets/js/minijumb.js$script,~third-party
||vesotantai.com/upload/photo/$image
||vidian.online/images/*.gif
||vietjack.com/FrontEndWeb/js/sp.js$script
||vivuphim.info^*.gif
||vnesports.net^*.gif
||vov.vn/ads/show-ads
||vsc62.com/wp-content/themes/vuasanco/assets/scripts/scripts.js
||wchem9.com/wp-content/plugins/deblocker/js/ads.min.js$script,~third-party
||wibu47.com^*.gif$image
||www.bk8vnaf.com^*.gif$image,domain=phimgichill.net
||www.bongdalu808.com^*.gif
||www.clbgamesvn.com/diendan/popup/popup.js$script,~third-party
||www.imghippo.com^*.gif$image,domain=tvzinghd.co
||www.iosviet.com^$csp=script-src 'self' 'unsafe-inline' http: https:
||www.phimchaua.com/3s.m3u8$rewrite=abp-resource:blank-mp3,domain=www.phimchaua.com
||www.thuocbietduoc.com.vn/adv/
||www.thuocbietduoc.com.vn/aqc/$image
||xahoingaynay.com.vn/upload/$image
||xc.1357668.com^*.gif$domain=live.7mvn4.com
||xmedia.antt.vn/upload/*.gif$image,domain=antt.vn
||xxoilac.com^*.gif$image
||zcine.net^*.gif$image
||zunia.vn/ads.html$subdocument,domain=tracnghiem.net
! ---------- Ad domain ----------
||6v41p4bsq.com^
||ad.vidverto.io^
||adflex.vn^$third-party
||adpia.vn^$third-party
||ads-cdn.fptplay.net^
||ads.mxhnkn.pro^
||ads.starzd.com^
||adtima-static.zadn.vn^$script
||adtima-static.zascdn.me^
||adtima.vn^$third-party
||adtimaserver.vn^
||aff.cdnntx.com^
||affordedseasick.com^
||aj1047.online^
||aj1559.online^
||aj2393.online^
||ajsc.yodimedia.com^
||amcdn.vn^
||ants.vn^$third-party
||api.adfly.vn^
||apinas.nct.vn^
||asg.phukienthoitranggiare.com^
||baobabsruesome.com^
||bardicjazzed.com^
||bemiresunlevel.com^
||bidgear-syndication.com^
||blueseed.tv^$third-party
||brittlesturdyunlovable.com^
||cdn.adop.asia^
||cdn.tpmedia.online^
||cdnv.tpmedia.online^
||chouthep.net^
||click.advertnative.com^
||cnt.trvdp.com^
||contineljs.com^
||cpt.geniee.jp^
||delivery.yomedia.vn^
||discourseoxidizingtransfer.com^
||distinctrobin.com^
||effacedefend.com^
||epilinserts.com^
||eptougry.net^
||fpgedsewst.com^
||fv.togataurnfuls.com^
||gammaplatform.com^$third-party
||genieesspv.jp^$third-party
||genmonet.com^
||glodretsa.net^
||grubsnuchale.com^
||grunoaph.net^
||gullyending.com^
||hqq.to^$popup
||hymenvapour.com^
||iads.staticscdn.net^
||iads.vision^
||imad24.com^
||img.yeuketqua.net^
||immaculate-suspect.com^
||js.aiservice.vn^
||jsc.yodimedia.com^
||link.cado.pro^
||media.yomedia.vn^
||meta.vn^$third-party
||midgetmaying.com^
||ny.foonerne.com^
||pk910324e.com^
||platform.adlinknetwork.vn^
||player.gliacloud.com^
||poasauwhoothy.net^
||ptaixout.net^
||pub.akadigital.vn^
||pub.lavamedia.vn^
||pub.lavanetwork.net^$third-party
||qc.coccoc.com^$third-party
||qc.violet.vn^
||qcv5.blogtruyenmoi.com^
||qz.almudestilths.com^
||realclick.vn^$third-party
||rkgwzfwjgk.com^
||rottencycle.com^
||rq.overseagyassa.com^
||sbbanner.com^
||ss.yomedia.vn^
||static.adconnect.vn^
||static.dable.io^
||static.eclick.vn^
||static.philacct.com^
||stummertitis.com^
||syphonseity.com^
||taboola.com^$script,third-party
||tags.fly-ads.net^
||tags.native-ad.net^
||toathoule.com^
||truyentuan.xyz^$subdocument,~third-party
||tutsterblanche.com^
||tvc.biphim.club^
||v9banners.com^
||vads.net.vn^
||xszpuvwr7.com^
||zaloweb.
!---------------Element Hiding--------------
###_AM_POPUP_FRAME
###ads-preload
###banner-top
###mobileCatfish
###pmadv
##.aanetwork-ads-box
##.ad_location
##.close-ads
##.float-ck
##.google-auto-placed
##.jw-cue
##.midroll-marker
##.quangcao
##.right-box.top-block
##.samBannerUnit
##.tpm-unit
##[class^="adHTML"]
##[href^="http://www.sbbanner.com/"]
##[id^="bn_bottom_fixed_"]
10gb.vn##.text-center.rounded.p-3.border.mb-lg-4.mb-3
123nhadatviet.net,123nhadatviet.com,tuoitrenews.vn,tuoitre.vn,nld.com.vn##.banner-top
24h.com.vn###background_bg_link
24h.com.vn###subRightAboveHome
24h.com.vn##.adv-24h-mid
24h.com.vn##.col:has(a[rel="nofollow"])
24h.com.vn##.col:has(a[rel="sponsored"])
24h.com.vn##.fixad300x600
24h.com.vn##.module3
24h.com.vn##[id^="ADS_"]
2banh.vn###position_full_top_banner_pc
2game.vn##.gc-header__wrapper + div[style]
90phutvs.cc##.c-int.d-lg-none.d-block>p.block-int.mb-1
90phutvs.cc##.col-12>p.block-int.mb-1
90phutzv.cc###menu-main-menu>.menu-nha-cai-uy-tin.menu-item.nav-item.style-2>.nav-link
90phutzv.cc##.bookmaker-selector-container
90phutzv.cc##.c-int.d-lg-none.d-block
90phutzv.cc##.container>.row>.col-12
90phutzv.cc##.d-lg-none.d-block.p-1.text-center
90phutzv.cc##.gmd-match-footer__odds
90phutzv.cc##.justify-content-center.d-flex>.btn-primary.btn
90phutzv.cc##.mt-1.d-lg-flex.d-none.sub-menu
90phutzv.cc##.nav-wrap>a[rel="nofollow"]
90phutzv.cc##a.d-lg-none.d-block:nth-of-type(2)
90phutzv.cc,cakhiai.cc,xoilacxj.cc,vebozy.cc###quangcaopc
90phutzv.cc,cakhiai.cc,xoilacxj.cc,vebozy.cc,xoilaczz63.live,xemtivi.tvhayhd.tv,eastloshigh.com,90phutvs.cc###wap_bottombanner
abtruyenmoi.com##.no-auto-popup
anime47.mom###qc_clgt
animet4.site###menubentrai
animet4.site##.gnartyx-offads
animet4.site,animetvn4.com,subnhanh1.org###fbox-background
animetvn4.com##.gnarty-offads
animevietsub.biz####invideo_wrapper
animevietsub.biz###.Ads
animevietsub.biz###.mobile-catfixx
animevietsub.biz###.pc-catfixx
animevietsub.biz##.mobile-catfish-top
animew.info##div.py-2.md\:py-6.mx-auto.w-full.max-w-screen-3xl>div.relative
apkmoddone.com###sn-AnchorAd
apkmoddone.com##.pAd
apkmoddone.com##.relatedPostsAd
apkmoddone.com##div.pAdin
apkmoddone.com,apkmoddone.phongroblox.com##.adNative
apkmoddone.phongroblox.com,www.vip1s.top###anchor-ad
asianbookie.com##a[href^="/cgi-bin/to.cgi"]
autodaily.vn,xehay.vn###banner3double
autopro.com.vn##.admicro
bantincongnghe.net##[href*="cellphones.com.vn"]
baodauthau.vn,mmo4me.com##div[class*="ads"]
baohaugiang.com.vn##.top-header
baomoi.com##.block:has([data-adaptive])
baonga.com##.monkey-content-duoicanbiet
baonga.com##.monkey-section-tinnoibat
baonga.com##div.monkey-qc
biphim.xyz###top_oddd
biphim.xyz,subnhanh.love,subnhanhvl.xyz,hhpanda.love##.underplayer_btn
blog.abit.vn##.button-dangkyngay
blogkiienthuc.net##.textwidget
blogtruyenvn.org##.qc-inner
blogtruyenvn.org##div[id^="qc_M_"]
bluphim.fun###ads-1xbet-catfish
bluphim.fun###popup-1720497466
bluphim.fun##.banner728
bluphim.fun##.container>div[style^="height: 228px"]
boctem.com,movies.vkoolz.com,xemphimchill.xyz,247phim.cc,vungtv.us,www.phimmoi03.net,tvhay26.com,www.phimmoichilla.xyz,hayhaytv.cc,yanhh3d.tv,www.ssphim.us###popup-giua-man-hinh
bongda.rakhooi.tv##.footer-button-sign-in.hide-desk
bongda.rakhooi.tv##.hide-desk.wrap-content>.wrap-btn-action
bongda.rakhooi.tv##.menu-right-slide
bongda.rakhooi.tv,tructiep.caheo7.link##.btn-betting
bongda.rakhooi.tv,tructiep.caheo7.link##.datCuocBTN
bongda.rakhooi.tv,tructiep.caheo7.link##.modelAds
bongda.rakhooi.tv,tructiep.caheo7.link##.nhacaiuytin
bongda.rakhooi.tv,tructiep.caheo7.link##.text-running
bongda.rakhooi.tv,vebozy.cc,tructiep.caheo7.link,mitomvh.cc,eastloshigh.com,phimmoichillz.my##.footer-banner
bongda12h365.com##.list-dat-cuoc
bongda365.news,soikeoz.vip##.banners
bongdaso66.net###right_float
bongdaso66.net##[id$="float_banner"]
bongdaso66.net,tvso1.com,blog.abit.vn##[class*="_banner"]
cafebiz.vn##.bgadmtoptotal
cafef.vn###wrapper>[id^="adm-slot"]
cafef.vn##[class^="ads_"]
cafef.vn,ttvn.toquoc.vn##.bannertop
cakhiai.cc##.c-ad
cakhiai.cc##.container.mt-1.d-none.d-lg-block
cakhiai.cc##.menu-item-object-custom
cakhiai.cc,vebozy.cc##.align-items-center.justify-content-between.d-flex.col-12>.d-lg-none.d-block
cakhiai.cc,xoilacxj.cc##.sub-menu.d-none.d-lg-flex
cakhiai.cc,xoilacxj.cc,90phutzv.cc,vebozy.cc##.marquee-container
cdnwp.icu,mephim.ink###myModal
cdnwp.icu,mephim.ink##div[id^="adsphim-"]
chap.vn##.my_responsive_add
chap.vn##.titleBar + *
chap.vn##[class1="my_responsive_add"]
chat.vebotv.me##.chat-header
chat.vebotv.me##[href="https://8xbe52.com"]
chillphimmoi.pro##.expand-static-banner
chillphimmoi.pro##.preload-banner
chillphimmoi.pro##.static-banner
chodansinh.net##.link-gold
chodansinh.net##[id^="banner"]
chotlo3s.com##div[id^="float"]
chotlo3s.com##div[id^="hide_float"]
congan.com.vn###subiz_wrapper
congan.com.vn##.ad-embed
congthucvatly.com##.mb-4>[style="min-height: 350px;"]
congthucvatly.com,phuongtrinhhoahoc.com##.fixed
contuhoc.com,www5.cbox.ws##a[rel="noopener noreferrer"]
cryptoviet.com##.widget-wrap.widget_text
daklak24h.com.vn##.features-r
dantri.com.vn###bannerMasthead
dantri.com.vn###desktop-home-top-page
dantri.com.vn###mobile-home-middle-1
dantri.com.vn###mobile-home-middle-2
dantri.com.vn###mobile-home-top-page
dantri.com.vn##.ads-masthead
danviet.vn##.bg-gray
danviet.vn##.sidebar>div[style]
diadiem.com##.div_box_adv
doctruyenchu.info##.topbanner
doctruyenln.com##.chapter-content .min-h-\[275px\]
domdomcomics.info##iframe[src*="ads"]
dongphim.love##a[rel="nofollow sponsored"]
dongphim.love,dongchill.pro,bichill.xyz,xemphim18.net,vivuphim.info,hhpanda.love,hhanime3d.net,subnhanhvl.xyz###footer_fixed_ads
download.vn##div[id^="adsbg"]
dubaotiente.io##.ad-pin-right-bottom
ebookbkmt.com##.top-right
ephoto360.com##.line-ads
ephoto360.com,thiepmung.com,xemphimchill.xyz,247phim.cc,www.phimmoichilla.xyz,hayhaytv.cc,www.ssphim.us,phiimoi.net##.ad-container
eva.vn##.banrpstn
fastscans6.net##.banner-shopee
fastscans6.net##a[href^="https://shope.ee"]
fdcdn.xyz##.jw-button-image
file.gocmod.com##div.ad
forum.gocmod.com##.ad-manager-forum-list-bottom
forum.gocmod.com##.ad-manager-forum-list-top
forum.gocmod.com##.ad-manager-header
forum.gocmod.com##.ad-manager-thread-view-bottom
forum.gocmod.com##.ad-manager-thread-view-top
forum.gocmod.com##a[rel="noopener noreferrer nofollow"]
forum.gocmod.com##div[style="margin:6px 0px 6px 0px"]
freeplayervideo.com,abysscdn.com,player-cdn.com,geoip.redirect-ads.com###player + div[id]
freeplayervideo.com,abysscdn.com,player-cdn.com,geoip.redirect-ads.com##.playover
fshare.vn###myElementz
fshare.vn##.bannerinfooter
fshare.vn##.quang-cao-ben-phai
game24h.vn###vi-smartbanner
game24h.vn##.LRBanner
game24h.vn##.running.adsbyvli
game8.vn##.bg_allpopupss
game8.vn##.bgal_popndungalal
game8.vn##.bn1
game8.vn##.bn2
game8.vn##.box_quangcao_mobile_320x50
game8.vn##.box_text_qc
game8.vn##div.news-left-related:nth-of-type(2)
gameio.vn###tubia
genk.vn##.khw-ads-wrapper.clearfix
ghienphim.media##.no-ads
ghienphim.media##.parent.special
ghienphim.media##.partner-me
ghienphimhayy.com##a[target="_blank"][rel="nofollow noopener"]
giadinhonline.vn,congluan.vn##.exp_qc_share
giadinhonline.vn,vietnamnet.vn,dubaotiente.io,taichinhdoanhnghiep.net.vn##.adv
goal.90phut24.xyz##.group-link:has(a[href*="&utm_"])
goal.90phut24.xyz##.topnhacai
gocmod.com###bannerContainer1
gocmod.com###bannerContainer2
gocmod.com###sp-wrapper-hovering-format
gocmod.com##.wam-banner
gocmod.com##center:has(.adsbygoogle)
haychillz.com###catfish_ads
hayghe.me###antiblocker
hayghe.me###antiblocker_underplayer
hayhaytv.org,subnhanh1.org##.sticky_bottom
hayhaytv.org,subnhanh1.org##.t_logo
heovktgame.club##.toogle-ads
hh3dhay.life,xemphim18.net,xem15.com,vutruphim.tv,tram3d.me##.float-ck-center-lt
hhanime3d.net,hhpanda.love,subnhanhvl.xyz###top_addd
hhchina.blog###header-ads
hhchina.blog###header-ads + center
hhhay.ink##.bnqcclm
hhpanda.love##.btn-fanpage.btn-default.btn-block.btn
hhtqvietsub.me###top-banner-pc
hhtqvietsub.me,hhchina.blog###sponsor-balloon
hoahoc247.com##.btn_small_fix_container
hoatieu.vn###adrightsecondx
hoatieu.vn###adrightspecial
hoatieu.vn###adrightspeciallinks
hoatieu.vn###adsuggestion
hoatieu.vn,bongda.rakhooi.tv,tructiep.caheo7.link,mannhan92.xyz##.sticky
hoatieu.vn,quantrimang.com###adsposttop
hoatieu.vn,vndoc.com##div[class^="adbox"]
hoidap247.com##.ads-home-feed
home1.mannhan19.pro###hots-btn
home1.mannhan19.pro##.bet-btn-8423
home1.mannhan19.pro##.bn-popup-bottom-sdwdwxw
home1.mannhan19.pro##.btn_betnow_632132
home1.mannhan19.pro##[href="/top-nha-cai.html"]
home1.mannhan19.pro##div.row-nhacai
home1.mannhan19.pro##li.for-desktop-2>[href]
hsctvn.com##.advertTop
hsctvn.com##.hsdn>li:has(.adsbygoogle)
hsctvn.com##.module_plugins
huphimtv.com##.banner-bot-mobile
huphimtv.com##.banner-top-mobile
huphimtv.com##.preload
kenh14.vn##.ads-sponsor
kenh14.vn##.khw-adk14-wrapper
keonhacai55.chat##.container>.row>center
keoso.me##.banner_list
keoso.me##.item-more
keoso.me##.nc_sidebar_home
keoso.me##.widget-sidebar-block
ketqua04.net##.baloon
ketqua04.net##.col-sm-10.kqcenter
ketqua04.net##.kqbackground.vien ~ a[target="_blank"]
ketqua04.net,nghean24h.vn,xem.tructiepnba.me,biphim.xyz,vidian.online,doctruyenln.com,xemtivi4k.com,abtruyenmoi.com,xoilacxj.cc,bongdainfox.tv,xem.thapcamtv.live,thapcam53.net,xx2.thapcam53.info,nn13.thapcam.asia,chatboxn.com##a[rel="nofollow"]
ketqua247vn.vip##.box-ads
ketqua247vn.vip##.linkBanner
khiphach.net###qc-kpgame
kienthuc.net.vn##.sponsor-zone
kienthuc.net.vn,saostar.vn,bongda24h.vn,cungthi.online,appvn.com,antt.vn,v.xemphimviet.xyz,ghienphim.media,soikeo365.net,nghenhinvietnam.vn,vivuphim.info,mod.lnpchannel.com,phimmoi.ing##.ads
kinhtedothi.vn##.top-banner-mobile
laptrinhcanban.com##.ezo_ad
lazi.vn##.quang_cao_pc_right_hoc_tap
lichngaytot.com##.advbox
lichvannien365.com##div[style="padding: 0px; margin: 10px 0 0 0 ; width: 100%;text-align: center;min-height: 280px;"]
lichvannien365.com##div[style="width: 100%; min-height: 240px; text-align: center;"]
lichvannien365.com##div[style="width: 100%; min-height: 90px; text-align: center;"]
lichvannien365.com##div[style="width: 100%;text-align: center;min-height: 280px;"]
linkneverdie.net,linkneverdie.top,linkneverdie2.com##.info-footer:nth-child(4)
live.7mvn4.com###bottomFixedDiv
live.7mvn4.com###js_pup_navigation
live.7mvn4.com###wAdList
live.7mvn4.com##tr[id^="word_"]
live4.xoilac34.org##.ft-box
live4.xoilac34.org##.vb-button>.mct_-bet
live4.xoilac34.org##div.vebo-sp.container:nth-of-type(7)
live4.xoilac34.org,vebo4.net,xem.vebo31.net,xem.banhkhuc120.info##.fade.show
live4.xoilac34.org,vebo4.net,xem.vebo31.net,xem.banhkhuc120.info##.ibs-bet
live4.xoilac34.org,vebo4.net,xem.vebo31.net,xem.banhkhuc120.info##div[class*="size-"]
live4.xoilac34.org,vebo4.net,xem.vebo31.net,xem.banhkhuc120.info,thapcam53.net,xem.thapcamtv.live,vv13.thapcamtivi.live###m-bet
live4.xoilac34.org,xem.banhkhuc120.info##.btn-betnow
live4.xoilac34.org,xemphim18.net,freeplayervideo.com,abysscdn.com,player-cdn.com,geoip.redirect-ads.com,watch.rkplayer.xyz,phimss.net,fdcdn.xyz,animet4.site##.jw-logo
lmssplus.org##p[style="color: rgb(174, 174, 174); margin-top: 10px; margin-bottom: 20px;"]
loigiaihay.com###countdown
loigiaihay.com##.section-gqc1
loigiaihay.com##div[style="margin: 10px 0 5px 0; min-height: 250px;"]
luatduonggia.vn##.ads-tags
luatduonggia.vn##.img_side_bar
luatduonggia.vn##.poka-image
lucloi.vn##.ads_shortcode
maclife.io##[href*="hnmac.vn"]
maclife.io##[href*="laptopvang.com"]
maclife.io##[href*="macbookgiasi.vn"]
maclife.io##[href*="macone.vn"]
maclife.io##[href*="minhtuanmobile.com"]
maclife.io##[href*="vender.vn"]
maclife.io##div.\35 fb1ed6025b0b.widget:nth-of-type(3)
mannhan92.xyz##.highlight
mannhan92.xyz##.images-bnr
mannhan92.xyz##.images_fixed
mannhan92.xyz##.popup
mannhan92.xyz##a.btn_fb:nth-of-type(2)
mephim.ink##.adsphim-mobile-popup
metruyencv.info,metruyencv.net,metruyencv.com##[href$="/goout/lazada"]
metruyencv.info,metruyencv.net,metruyencv.com##section.nh-section:nth-of-type(5)
metruyencv.info,metruyencv.net,metruyencv.com#?#.text-center:-abp-has(small:-abp-contains(QUẢNG CÁO))
minhngoc.net.vn,vn-z.vn,kinhtedothi.vn##[id^="adv"]
mitomvh.cc##.btn-od
mn.mediastation.live##.btn-bottom-right-append-player
mn.mediastation.live##.images-bnr-bellow-append-custom
mn.mediastation.live##.images-top-pl
motchill6.com##.ads-embed
motchilltv.love##.-translate-x-1\/2.transform.left-1\/2.bottom-0.fixed
motphimww.net,tvphim.la##.module_single_ads
mphim14.org##.adv_phim
mphim14.org##.fixed_bottom
muabanraovat.com##[class^="box_adv_ele"]
muare.vn##.admicro_top
myeva.vn###adop_bfd
myeva.vn##ins[class*="adsby"]
mythethao.net###left_ads_float
mythethao.net###right_ads_float
nettruyenrr.com###_pop-nettruyenww-15
nettruyenrr.com###catfish-content
nettruyenrr.com###pop_nettruyenww
nettruyenvie.com###pop_nettruyenviet
nettruyenx.com###_pop-nettruyenx-13
new.thapcamtv.com###partner5
new.thapcamtv.com##.container.pc.g-imgtop
new.thapcamtv.com##.d-md-none.d-block.mobile.g-imgbot
new.thapcamtv.com##.group-btn
new.thapcamtv.com##.list-main-link
new.thapcamtv.com##.ref-link
nhaccuatui.com###banner-qc_outstream
nhaccuatui.com##.adv_home_300_250
nhaccuatui.com##.nqc-zone
nhacdj.vn###top-adv
nld.com.vn##.ads-top
noitu.pro##.modal-backdrop.show
noitu.pro##.show.modal
phapluatplus.baophapluat.vn##div[style="text-align:center;margin-top:0px;margin-bottom:0px;"]
phim.vkool8.net##.box-rating
phim.vkool8.net,subnhanhvl.xyz,motchill.mn,subnhanh.love,tructiepdabong5.co,biphim.xyz,dongphim.love,phimbet.biz,hhanime3d.net,dongchill.pro###overlay
phim.vkool8.net,vphims.net##.catfish-ck
phim1080.in##.ff-banner
phim202.com###itro_opaco
phim88.tv##div[data-value="1"]
phimbet.biz###banner
phimdacap.tv###ads-popup
phimdinhcao.net,www.phimchaua.com,phimlongtieng.org,www.phimdinhcaoz.com##.adv-300-right
phimdinhcao.net,www.phimchaua.com,phimlongtieng.org,www.phimdinhcaoz.com,phimdinhcao.com##.BanerTop100
phimgichill.net###pc-catfix
phimgichill.net##.lightbox-player-pc
phimgichill.net##.mobile-catfix
phimgichill.net##.pc-catfix
phimgichill.net##div[id^="preload-"]
phimgichill.net##mobile-catfix
phimhaytv.biz##.code-block-1.code-block
phimhaytv.biz##.navbar-container + .container
phimhdc.wiki##a#banner
phimlongtieng.org##.banner-preload
phimlongtieng.org##.catfish-top
phimlongtieng.org,phimdinhcao.com##.banner-container
phimmoi.club,motphimww.net,tvphim.la###floating_ads_bottom_textcss_container
phimmoi.club,motphimww.net,tvphim.la##.module_home_ads
phimmoi.tuphim.net###adsTopInPageBanner
phimmoi.tuphim.net##.adsContainer
phimmoi.tuphim.net##.header__auth>.details__devices-list
phimmoichill.bio###pm_quangcao
phimmoichill.org###mb-catfish
phimmoichill.org###pc-catfish
phimmoichillz.my,haychillz.com###preload
phimmoinay.top,phimmoissz.pro,tvzinghd.co##.sda-catfish
phimmoissz.pro###adspm4u
phimnhua.xyz###catfish-banner
phimnhua.xyz###dl-banner-728x90
phimnhua.xyz##.center-screen.backdrop
phimnhua.xyz##.topless
phimno1.me###ads_location
phimno1.me##.block.ad
phimss.net##.ads-pc
phimss.net##.ads-sp
phimvuihd.org##div[data-widget-id]
phongroblox.com###fakeDown
phunumoi.net.vn,nhipcaudautu.vn##div[id^="ads_"]
phuongtrinhhoahoc.com##.shadow-card + .mt-2
plcdn.xyz##.odds-button
plcdn.xyz##.odds-button2
qdnd.vn##.box-banner
quantrimang.com###adrighttop
reatimes.vn##div[class^="adv-"]
romgoc.net,giavang.net,cungthi.online,gamehayvl.com##.adsbygoogle
rung.vn##.ads-970x280
sachmoi.net##.boxzilla-bottom-right-container
sachmoi.net##[href^="https://gotrackecom.info"]
saostar.vn###pc-bill
sharecode.vn###myCarousel
sharecode.vn##.banner-boder-zoom
sieutamphim.com###scriptDiv
socolivebongda.net###backgroundPopupp
socolivebongda.net###popupContact
socolivebongda.net###wap_bottombannerr
socolivebongda.net##.grid-match[style]
soha.vn,gamek.vn##[id^="admzone"]
soikeo365.net##.ads-floatingads
soikeo365.net##.banner-item
soikeo365.net##.top-nha-cai
soikeoz.vip,phimmoinay.top,phimtho.net###popup_banner_beta
sport5.vn,afamily.vn##.afw-topbanner
subnhanhvl.xyz,motchill.mn,subnhanh.love###xs-addd0
suckhoedoisong.vn##.top-ads
tamlinh247.biz##.ads-gg-top
tamlinh247.biz##.container + .col-xs-12.content_wrap
tamlinh247.biz##.content>.content>.content
tamlinh247.biz##.wrap-single>.pagination.text-center
tapchibitcoin.io##.header-fix-ads
tapchibitcoin.io##.lepopup-popup-container
tapchibitcoin.io##.lepopup-popup-overlay
tapchikientruc.com.vn###topbn
techrum.vn##.block:has(.block-container>.block-body>a[href])
techrum.vn##.block:has(.block-container>.block-body>ins)
tenovi.net###ad_balloon
tenovi.net,truyentuan.xyz##.adpia_banner
thanhnien.vn##.asd-headt
thanhnien.vn##.detail__foru
thanhnien.vn##.mb-40.section__qadd
thanhnien.vn##.super-masthead
thanhnien.vn##.top-banner
thanhnien.vn##[class*="box-home"]
thanhnien.vn##[data-marked-zoneid="tn_detail_danhchoban"]
thanhnien.vn##[data-marked-zoneid="tn_detail_quantam"]
thanhnien.vn##[id^="dablewidget_"]
thanhnien.vn##zone
thanhtra.com.vn###Adsv
thanhtra.com.vn##.right-banner>a[title]
thapcam53.net,xem.thapcamtv.live##.btnz
thaudiotruyen.com##.ai-close-fit.ai-close.code-block-7.code-block
the.tube##.ads-container
thethao247.vn##div[class$="_ads"]
thethaovanhoa.vn##.zone-top
thethaovanhoa.vn##[id^="pos-"]
thichxemphim1.net##.fixed-bottom
thichxemphim1.net##.popup-banners
thitruongtaichinhtiente.vn##.c-banner-item
thitruongtaichinhtiente.vn,congly.vn##.c-banner
thoidai.com.vn,petrotimes.vn##.__ads_click
thuongtruong.com.vn###BannerAdv
thuthuatjb.com##.stream-item
thuthuattienich.com###footer-widget-area
thuysanvietnam.com.vn###gallery-2
thuysanvietnam.com.vn##.hd-cate-wrap
thuysanvietnam.com.vn##.home-qc-wrap
thuysanvietnam.com.vn##.home-sec-right .widget_media_image
thuysanvietnam.com.vn##.noname-left
tienphong.vn##div[id^="adsMobile"]
tienphong.vn,baodauthau.vn##div[id^="adsWeb"]
tiin.vn##.ads-common-box
timdaily.vn##.p-body-pageContent>table[style="width:100%;display:inline-block;background: #fff;"]
tinhte.vn##.jsx-3569995709
tinhte.vn##.micro
tinhte.vn##.middle-comment-promotion
tinhte.vn##.pro-container
tinhte.vn##div[style="width:300px;height:250px"]
tinhte.vn##div[style="width:300px;height:600px"]
tinhte.vn##div[style="width:320px;height:100px"]
tinmoi.vn###main-videoplayer
tinmoi.vn###pc-top
tinmoi.vn##.ads-position
tinnhanhchungkhoan.vn,tienphong.vn##.fyi
tintucvietnam.vn##.container .desktopjszone
tintucvietnam.vn##.mobilejszone
toithuthuat.com##.box
toithuthuat.com##.pum
topthuthuat.com,canhrau.com##.widget.widget_text
toquoc.vn,baoxaydung.com.vn,tienphong.vn,taichinhdoanhnghiep.net.vn,thichxemphim1.net,v.xemphimviet.xyz,ghienphim.media,truyengihotdo.net,truyengihotzay.net,truyengihotnha.com,truyengihotnha.net,truyengihotnay.com,tenmientruyengi.net,nettruyenrr.com##.banner
tracnghiem.net##.sbAdv
tram3d.vip###sticky_ad
tram3d.vip##div.text-center:nth-of-type(2)
tructiep.caheo7.link##.container-banner
tructiep.caheo7.link##.modal-ads
tructiep.caheo7.link##div[class^="slide-bar"]
tructiepdabong5.co##.adLogoPlayer
tructiepdabong5.co##.adsMobile
tructiepdabong5.co##.col-chat
tructiepdabong5.co##.dcmm-button-player.row
tructiepdabong5.co##.offer-rating.widget-offers__list
truyenaudiocv.org##.js-editors-choice-slider.editors-choice-slider>.adsbygoogle
truyenfull.io###header-ads-full
truyenfull.io##.ads-responsive
truyenfull.io##[id^="ads-"]
truyengihotdo.net,truyengihotzay.net,truyengihotnha.com,truyengihotnha.net,truyengihotnay.com,tenmientruyengi.net##div#adsChapterTop
truyenqqto.com###ad_info_top
truyenqqto.com###catfishAd
truyenqqto.com###floating-banner-left
truyenqqto.com###floating-banner-right
truyenqqto.com###popup-truyenqq
truyenqqto.com###popup-truyenqq-home
truyenqqto.com##div#ad_info
truyenqqto.com,nettruyenvie.com##.ads-banner
truyensieuhay.com##.footer-info
truyensieuhay.com,hhtrungquoc6.com,hhtq8.vip,animeweb.vip,hhtq3d.net###topbanner
truyentuan.xyz###banner_preload
truyentuan.xyz##.doc-truyen-ads-d1
truyentuan.xyz##.doc-truyen-ads-d2
tuoitre.vn###LeaderBoardTop
tuoitre.vn###admbackground
tuoitre.vn###adsMainFooter
tuoitre.vn##.Mobile_Masthead_TTO_Wrapper
tuoitre.vn##.adm-bot
tuoitre.vn##.box-qad
tuoitre.vn##.content-amuasam
tuoitre.vn##.detail__qc
tuoitre.vn##.section__r-vietlot
tuoitre.vn##.wrapper-ads-mb
tuyengiao.vn##.clearfix.adregion
tuyengiao.vn##.visible-md.header-banners
tvhaiss.com##.ai-viewport-1
tvhayw.org##.catfish-bottom
tvhayw.org##[src^="https://ads.starzd.com/"]
tvphim.la##.banner-ads
tvzinghd.co##.sda-preload-popup
tvzinghd.co##.sda-preload-popup-overlay
v.xemphimviet.xyz##li.special.parent
v.xemphimviet.xyz,ghienphim.media##.ad-floater
v.xemphimviet.xyz,ghienphim.media##.popunder-link
v.xemphimviet.xyz,ghienphim.media##.promotion-popup
v.xemphimviet.xyz,ghienphim.media##.video-ad-layer
v4u.vn##.Flagrow-Ads-under-header
vaoroi14.live##.ads-menu-item
vaoroi14.live##.dcmm-button-player-item
vaoroi14.live##.divdatcuoc
vaoroi14.live##.show-ads-banner
vaoroi14.live,90phutvs.cc##.widget
vebo4.net,xem.vebo31.net,xem.banhkhuc120.info,live4.xoilac34.org##.box-host
vebo4.net,xem.vebo31.net,xem.banhkhuc120.info,live4.xoilac34.org##.btn-bet-top
vebo4.net,xem.vebo31.net,xem.banhkhuc120.info,live4.xoilac34.org##.item-betnow
vebozy.cc##.btn-action
vebozy.cc##.btno-group.d-none.d-lg-flex
vebozy.cc##.container>.mt-1
vebozy.cc##.container>.mt-3
vebozy.cc##.d-lg-block
vebozy.cc##.justify-content-between.d-lg-none.d-flex.btno-group
vebozy.cc##.menu-item:has(a[rel="nofollow"])
vebozy.cc##.topButton
vebozy.cc##.widget_offer
vebozy.cc##header>.container
vesotantai.com##.item-qc
videophapluat.baophapluat.vn##[class^="sticky-top"]
videophapluat.baophapluat.vn##[href*="vietcombank.com.vn"]
vidian.online###closeAds
vieclam.tv###bnc1
vietcetera.com##.Header_topBanner__1xD-2
vietcetera.com##.styles_bannerInArticleWrapper__rPPJH
vietcetera.com##.styles_topBanner__NL_gW
vietfones.vn##.vfs_banner
vietgiaitri.com###BigBanner
vietgiaitri.com##.ads_position
vietjack.com##.ads_txt
vietjack.com##[href="https://tailieugiaovien.com.vn/"]
vietmoz.net##.elementor-widget-image
vietnamnet.vn###vmcad_sponsor_middle_content
vietnamnet.vn##.box-adv
vietnamnet.vn##.mb-20.col-right-ads
vietnamnet.vn##.vmcadszone
vietq.vn##section.mar20:nth-of-type(2)
vietq.vn##section.mar20:nth-of-type(4)
viettelstore.vn###banner-dai-bottom
viettelstore.vn###banner-dai-top
vndoc.com,download.com.vn,quantrimang.com,download.vn,gamevui.vn,khoahoc.tv##.adbox
vnesports.net##.banner_site
vnesports.net##.notify_auto
vnesports.net##.sidebar_box_gray
vnesports.net,mythethao.net##.banner_top
vnews.gov.vn##.banner-bottom-menu
vnews.gov.vn##.popup-bg
vnews.gov.vn##.showpop
vnews.gov.vn##[href*="bit.ly"]
vnexpress.net###ads_large_detail
vnexpress.net###banner_top
vnexpress.net###box_qua_tang_vne
vnexpress.net###raovat
vnexpress.net###rich-media-banner-ads
vnexpress.net###sis_popup
vnexpress.net###supper_masthead
vnexpress.net##.article_ads
vnexpress.net##.article_ads_300x250
vnexpress.net##.banner_mobile_300x250
vnexpress.net##.section_ads_300x250
voh.com.vn##.Advs_adv-components__1nBNS.Advs_adv-300x250__2eyhC.Advs_no-content__RWwW2
voh.com.vn##.HotTagGlobal_fixed-height__1f50i
voz.vn##.adsbypubpower
voz.vn##.p-body-sidebar>.block>.block-container:has(.adsbypubpower)
voz.vn##.p-body-sidebar>.block>.block-container:has([data-widget_id])
voz.vn##.v-element>.v-responsive
voz.vn##div.message--post
voz.vn##div[style]:has(.adsbypubpower)
vozer.net##.Notices.PanelScroller
vsc62.com##a.news__item--action:nth-of-type(2)
vtcnews.vn,doisongphapluat.com.vn##.sys-ads
vtipster.net##div[class*="qca"]
vtruyen.com###article>.pt-3.text-centers
vtruyen.com##.text-muted
vuighe4.com###balloon
vuighe4.com##.affiliate
vuighe4.com##.player-midpoint-progress
vuighe4.com,xem1080.com##.banner-masthead
vungoctuan.vn##.bf-3-primary-column-size.bs-vc-sidebar-column.vc_col-sm-3.vc_column_container.bs-vc-column.wpb_column>.wpb_wrapper.bs-vc-wrapper
vungtv.us,phimhdc.wiki###container-ads
vuonhoalan.net##.content_middle_rightbar
vutruphim.tv###sticky
vv13.thapcamtivi.live##.btn-top.btnz
vv13.thapcamtivi.live##.grid-match__footer>a.btn:nth-of-type(2)
vv13.thapcamtivi.live,thapcam53.net##.mmo