-
Notifications
You must be signed in to change notification settings - Fork 17
/
abpjf.temp.txt
executable file
·12323 lines (12318 loc) · 268 KB
/
abpjf.temp.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.8.2]
! Redirect: https://bit.ly/11QrCfx
! Homepage: https://github.com/k2jp/abp-japanese-filters/
! Title: ABP Japanese filters (ONLY FOR Japanese and experienced users: READ Support Policy)
! Expires: 6 hours
! Version: 201803060349
!
! Last modified: 2018-03-06 03:49 JST(UTC+0900)
! Change log: https://github.com/k2jp/abp-japanese-filters/wiki/FilterChangeLog
! Code license: GNU GPL v3: http://www.gnu.org/licenses/gpl.html
! Content license: Creative Commons BY-NC-SA 4.0 http://creativecommons.org/licenses/by-nc-sa/4.0/
! Support policy: https://github.com/k2jp/abp-japanese-filters/wiki/Support_Policy
! Project owners: k2japan
! Project committers: looter, lostincarnation, tanahata
! Project contributors:
!
!
! ########## Temporary white list START ##########
! Workaround to avoid a "ReferenceError: YMAP is not defined" false positive with the script ended with meaningless "?_t=pPc" like http://map.yahoo.co.jp/js/scroll.js?_t=pPc, using ^ppc^ Pay-Per-Click filter, reported via Issue Report, Jul 15, 2014
@@.js?_t=pPc^$script,domain=map.yahoo.co.jp
! video-cdn.ea.com distributes mp4 videos with "&affiliateid="...
@@.mp4?*&affiliateid=
! Added to avoid a never-ending "loading..." gif
@@/history/external/*$domain=amazon.ca|amazon.cn|amazon.co.jp|amazon.co.uk|amazon.com|amazon.de|amazon.es|amazon.fr|amazon.it
! Workaround to avoid false positives with existing slot filters, based on the comment at http://d.hatena.ne.jp/k2jp/20161216/1481823341 , Dec 31, 2016
@@/kcsapi/api_*slot$domain=dmm.com
! Workaround to avoid false positives with existing ^analytics- filter, Dec 24, 2014
@@/static/coffee/compiled/modules/clean/analytics-vflrGf3Yu.$script,domain=dropbox.com
! False positives with theme css by adaptivethemes.com, Jun 11, 2012
@@_Ad/css/theme/
! False positives with Ameblo skin named "colors_ad" or "ad_viva-cutieblog", reported via Issue Report, Jan 12, 2012, Dec 29, 2011, Apr 11, 2014
@@||ameba.jp/p_skin/
! autoblog(AOL) sucks! It requires some trackings to render correctly, reported twice by Issue Report
@@||aolcdn.com/js/mg2.$domain=autoblog.com
@@||aolcdn.com/omniunih.$domain=autoblog.com
! imdb.com sucks! To avoid false positives you have to load some AD scripts.
@@||doubleclick.net/adj/imdb2.
! Workaround to fix layout collapse 2011-10-17
@@||fc2.com^*/kanasoku/advertisement.js
! Workaround to fix false positive with a mis-named background image which cause white title and menu background, reported by edogawakuryu via [https://code.google.com/p/adblock-plus-japanese-filter/issues/detail?id=23 Issue 23], Feb 3, 2012
@@||foreignaffairs.com^*/sitetheme/images/body-top-ad-background.$image
! False positive at gamers-review.net . common.css isn't loaded if javascript is enabled, and adbg.js and gyoen.minpos.com/delivery/ajs.php?zoneid=77 are blocked. 2012-01-05
@@||gamers-review.net/data/js/adbg.$script
! Many false positive with stylesheets and JavaScripts, reported via Issue Report, Jan 6, 2012
@@||goal.com^*-ad-
! False positives with XHRs including ,ads, in the parameter at Google Map, with ^ads^ filter, Sep 28, 2014
@@||google.*/maps/_/js/k=maps.*,ads,$xmlhttprequest
! False positives with Google Custom Search(.co.jp), reported via Issue Report, Mar 10, 2012
! False positives with Google Custom Search(.com), reported via Issue Report, Feb 7, 2012
@@||google.*/cse?*&ad=
! False positives when you test a new filter via Gmail config, reported by pooh via blog, Jun 16, 2012
! Another false positives when you try advanced search as a multi-user accout, reported by @mushroom080 via issue report, Mar 3, 2014
! Another false positives causing 「システムで問題が発生しました」 after a while, reported by trineutron and sh, via blog, Oct 25, 2014
@@||mail.google.com/mail/*?ui=*^adv^
! A filter -ads^ causes a false positive with a [http://translate.google.com/translate/static/kcpbtI_-aDs/css/desktop_ltr.css css stylesheet] at translate.google.com and translate.google.co.jp, reported by @dullneko, July 18, 2012
@@||translate.google.*/translate/static/*-aDs/css/*.$stylesheet
! False positives with the existing |https:*?ip=$third-party filter at YouTube embedded pages, reported by Issue Report, Aug 17, 2015
@@||googlevideo.com/videoplayback?ip=
! False positives with the existing |https:*?*&ip=$third-party filter at YouTube and embedded pages, reported by baq via blog comment
! Simplified for gaming.youtube.com and limited the domain for better performance, Nov 13, 2015
@@||googlevideo.com^*?*&ip=$domain=youtube.com
@@||gyoen.minpos.com/delivery/ajs.php?zoneid=76&
@@||gyoen.minpos.com/delivery/ajs.php?zoneid=77&
! ^urchin. filter causes false positives with the Japanese Amazon external audio player at web-cache.chocomaru.com, reporeted by 鳥 via blog, May 12, 2013
@@||google-analytics.com/urchin.js$domain=web-cache.chocomaru.com
! Workaround to avoid an UNABLE TO LOAD PLUGIN error with .analytics- filter, Jan 26, 2014
@@||hitbox.tv/static/player/flowplayer/flowplayer.analytics-3.2.9*.swf
! A ^beacon^ filter causes false positives with css sprite images below, Oct 3rd, 2012
! http://g-ec2.images-amazon.com/images/G/09/gno/beacon/BeaconSprite-JP-02._V393500380_.png
! http://g-ecx.images-amazon.com/images/G/01/gno/beacon/BeaconSprite-US-01._V394051227_.png
@@||images-amazon.com^*/beacon/BeaconSprite-$image
! A -beacon^ filter causes false positives with combined script and stylesheet below, Oct 3rd, 2012
! http://z-ecx.images-amazon.com/images/G/01/browser-scripts/site-wide-js-1.2.6-beacon/site-wide-11878695216._V1_.js
! http://z-ecx.images-amazon.com/images/G/01/browser-scripts/jp-site-wide-css-beacon/site-wide-7797898918._V1_.css
! http://z-ecx.images-amazon.com/images/G/01/browser-scripts/us-site-wide-css-beacon/site-wide-7681525081._V1_.css
@@||images-amazon.com^*/browser-scripts/*-beacon/$script,stylesheet
! A ^beacon^ filter causes false positives with css sprite images below when used via https, Nov 14, 2012
! https://images-na.ssl-images-amazon.com/images/G/09/gno/beacon/BeaconSprite-JP-02._V393500380_.png
@@||ssl-images-amazon.com^*/beacon/BeaconSprite-$image
! -beacon^ and -beacon- filters cause false positives with combined script and stylesheet below when used via https, Nov 14, 2012
! https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/navbarCSSJP-beacon/navbarCSSJP-beacon-630467669._V401873068_.css
! https://images-na.ssl-images-amazon.com/images/G/01/browser-scripts/navbarJS-beacon/navbarJS-beacon-4140286522._V401873127_.js
@@||ssl-images-amazon.com^*/browser-scripts/*-beacon/$script,stylesheet
@@||imdb.com^*/doubleclick/
! Workaround for adblock detector, which includes "adblock = false;" only.
@@||static.isohunt.com/js/adframe.$script
! False positives with online office application view at skydrive.live.com, Apr 24, 2012
! Example of a false positive: &ad=ja-JP&
@@||officeapps.live.com^*frame.*&ad=
! False positives at own3d.tv reported via Issue Report, Nov 21, 2011
@@||liverail.com/crossdomain.xml|
@@||liverail.com^*plugins/flowplayer/
! Flase positive at twitch.tv reported and resolved via Issue Report, Dec 11, 2011
! Another false positive found at justin.tv ,reported and resolved via Issue Report, Dec 16, 2011
@@||vox-static.liverail.com/swf/*/admanager.$domain=justin.tv|twitch.tv
@@||media-imdb.com^*/ads.$script
! False positive at xbox-news.com . common.css isn't loaded if javascript is enabled, and adbg.js and gyoen.minpos.com/delivery/ajs.php?zoneid=79 are blocked. 2011-09-23
@@||gyoen.minpos.com/delivery/ajs.php?zoneid=79&
! False positive with data used for dynamic photo slides, reported via Issue Report, Feb 28, 2012
@@||nationalgeographic.co.jp/DynamicLead/xml/Top/promo.$xmlhttprequest
! False positive at ndrive2.naver.jp . Login stops displaying "Loading N Drive" forever, Jan 23, 2012
! Commented out the following obsolete filter, reported by [https://twitter.com/mushroom080/status/292261877227085826 @mushroom080], Jan 18, 2013
! @@||ndrive.naver.jp/js/lcslog.$script
! Japanese biggest computer vendor uses cliant-side script to display RSS titles. It seems that they don't trust server-side performance of their own servers.
@@||nec.co.jp^*/rss.$script
! False positives with Java SE 7u4 downloading 2012-04-27
@@||oracleimg.com^*/assets/metrics/ora_$domain=oracle.com
! False positive at psmk2.net . common.css isn't loaded if javascript is enabled, and adbg.js and gyoen.minpos.com/delivery/ajs.php?zoneid=76 are blocked. 2011-08-29
@@||psmk2.net/data/js/adbg.$script
! False positives with combined script and stylesheet 2011-10-17
@@||rottentomatoescdn.com/assets/*/ads.
! False positive at store.steampowered.com . Layout collapse with /promo/* filter 2011-11-27
@@||steampowered.com/public/css/promo/$stylesheet
! Why does teacup.com use adimg.teacup.com for normal JavaScript ? (?_?)...
@@||teacup.com/rchat-common/
! False positive with objects on the TERMS OF SERVICE(TOS) page, reported via Issue Report, Apr 11, 2012
@@||sp.toeic.or.jp/internetservice/promo/
! False positives at own3d.tv reported via Issue Report, Nov 21, 2011
@@||tubemogul.com/crossdomain.xml|
@@||tubemogul.com/bootloader/TubeMogulFlowPlayer.
! False positive at xbox-news.com . common.css isn't loaded if javascript is enabled, and adbg.js and gyoen.minpos.com/delivery/ajs.php?zoneid=79 are blocked. 2011-09-23
@@||xbox-news.com/data/js/adbg.$script
! Logo of Wikipedia uses URL including /ad/ ... reported via Issue Report, Jan 3, 2012
@@||wikimedia.org/wikipedia/commons/*Wikipedia-logo*$image
! False positive with non-AD images, reported via Issue Report, Mar 19, 2012
@@||upload.wikimedia.org/wikipedia/commons/a/ad/$image
! False positives registering for watch list, reported by koyama via blog, Mar 24, 2013
@@||rd.yahoo.co.jp/auction/config/*http*.auctions.yahoo.co.jp/jp/config/remember?$script
! Some elements in the main column like unread mails are missing at Yahoo Mail BETA if http://ai.yimg.jp/bdv/yahoo/darla/2-2-4_3/js/darla-dynamic-beacons-min.js or https://s.yimg.jp/bdv/yahoo/darla/2-2-4_5/js/darla-dynamic-beacons-min.js beacon generator is blocked.
@@||yimg.jp/bdv/yahoo/darla/$domain=mail.yahoo.co.jp
! Can NOT open other folders(no response...loading...white screen...) at Yahoo Mail if http://ai.yimg.jp/bdv/yahoo/javascript/csc/20060824/lib2obf_b7.js or https://s.yimg.jp/bdv/yahoo/javascript/csc/20060824/lib2obf_b7.js beacon generator is blocked.
@@||yimg.jp/bdv/yahoo/javascript/csc/$domain=mail.yahoo.co.jp
! Gyao Movie player does NOT start automatically if http://ai.yimg.jp/bdv/yahoo/javascript/gyao/clover.js is blocked.
@@||yimg.jp/bdv/yahoo/javascript/gyao/clover.js
! charger440.jp uses images from URLs including /promotion/* even though it's not promoting images. 2011-12-01
@@||yimg.jp/images/promotion/charger/$domain=charger440.jp
! ---------- Temporary white list END ----------
! ########## Default white list START ##########
@@/analytics/*$domain=dear.my.salesforce.com
! False positive with the CONTINE DOWNLOAD button used with ^trialpay^ filter, May 20, 2016
@@/images/trialpay/download_btn.$image
! False positives with the WordPress lazyloading plugin, reported by Opera10years via hatena blog comment of k2jp, May 31, 2012
@@/lazy-load/images/1x1.
@@//player.ooyala.com^
! Loosen a promotion image blocking criterion on a shopping site because it looked too ugly... Dec 15, 2011
@@/promotion/*$domain=shopping.yahoo.co.jp
! False positives with a combined stylesheet used with the ^ads^ filter, and a combined JavaScript used with -ads^ filter, reported via Issue Report, Oct 3, 2014
@@||abc.com/*.css?*#assets=*,$stylesheet
@@||abc.com/*.js?*#assets=*,$script
! False postives at aguse.jp with |http:*.ad-$popup filter, Mar 20, 2014
@@||aguse.jp^$popup
@@||images.apple.com^*/promo_$domain=apple.com
! False positive at bitly.com reported via Issue Report 2011-11-22
@@||bitly.com^*/css/metrics_
! False positives with the existing ^metrics. filter, Aug 01, 2015
@@||chromestatus.com/static/css/metrics/$domain=chromestatus.com
! False positives with the existing ^metrics- filter, Aug 01, 2015
@@||chromestatus.com/static/elements/metrics-$domain=chromestatus.com
! False positives with Adelie Penguin abbreviated to Ad, reported via Issue Report Dec 26, 2011
@@||cloudfront.net^*/animal/obj_animal_*_Ad
! There were False positives at www.youtube.com/oracle , which no longer exist 2011-10-11
! Another false positive with conviva filters found at ustream.tv, which brought the past commented out whitelists back into life, reported via Issue Report 2011-12-09
@@||conviva.com/crossdomain.xml|
@@||conviva.com/lpconfig/cfg/
! A new rare false positive with conviva filters found at ustream.tv 2011-12-10
@@||livepassdl.conviva.com^*/LivePassModuleMain.$object-subrequest
! False positives with combined scripts including "&ad=" 2012-04-06
@@||cookpad.com/loading/all_in_one?
! False positives with random path including /ad/, reported via Issue Report, May 3, 2014
@@||hydra-media.cursecdn.com/*.gamepedia.com*/a/ad/$image,domain=gamepedia.com
! Exception for its own site logo, May 31, 2013
@@||distrowatch.com/images/jruiakuzm/dwbanner.$image,domain=distrowatch.com
! False positives with movie player (Daily Motion Player?) used with ^dmp.$object,script,subdocument,third-party filter, Jul 25, 2015 and Dec 04, 2015
@@||dmcdn.net/playerv*/dmp.$object,script,domain=dailymotion.com
! False positives with images on third-party domains, reported via Issue Report, Nov 23, 2015
@@||pics.dmm.co.jp^$image
! False positives with product zooming, reported by @tanahata via Issue Report
@@||ir.ebaystatic.com^
! False positives with combined scripts at soccernet.espn.go.com, Jan 21, 2012
@@||espncdn.com/combiner/$script,stylesheet
! Flase positive because EverNote calls group discount "sponsor"... reported via Issue Report, investigated by @dullneko, Jan 13, 2012
! https://twitter.com/#!/dullneko/status/157735498884976640
@@||evernote.com/js/evernoteClient/Sponsor.
! False positive at support.fc2.com, reported via Issue Report, Feb 18, 2012
@@||r.fc2.com/rss-disp/rss.$script
! False positives with Google Reader when users search for "ads", reported by @SYuno308, July 18, 2012
@@||google.*/reader/api/*/search/items/ids?q=
@@||google.*/settings^$document
! False positives with combined XML requests including ",ads," or ",log," at new Google Map, Feb 28, 2014
@@||google.*/xjs/_/js/k=xjs.m.*,ads,$xmlhttprequest
@@||google.*/xjs/_/js/k=xjs.m.*,log,$xmlhttprequest
@@||google.com/adsense/$document
@@||google.com/analytics/$document
! False positive at config pages, reported via Issue Report, Feb 6, 2012
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! @@||google.com/settings/$document
@@||accounts.google.com/ServiceLogin?service=$document
! False positives when browsing a source tree at code.google.com, Oct 13, 2014
@@||code.google.com^*/source/dirfeed?$xmlhttprequest,domain=code.google.com
! False positives with a google plus image used for css sprite, reported by @zirweed, May 19, 2012
@@||gstatic.com^*/Publisher/sprite$image
! False positives with combined scripts including ,adsense, in the parameters at Google Map embeded pages, with ^adsense^ filter, reported via blog, Sep 30, 2014
@@||maps.gstatic.com/cat_js/*,$script
! False positives with combined stylesheets at guardian.co.uk, reported via Issue Report, Feb 6, 2012
! Adjusted to limit really combined files and the new domain, Oct 25, 2014
@@||combo.guim.co.uk^*+$script,stylesheet,domain=theguardian.com
! False positives with combined scripts conflicting with _ads. filter and with further combined stylesheets, Aug 27, 2014
@@||huffpost.com/assets/css.*?v=*%2C$stylesheet
@@||huffpost.com/assets/js.*?v=*%2C$script
@@||hulu.*/site-player/
@@||lavasoft.com^*/ad_aware/
! False positive with a combined scripts, reported via Issue Report, Dec 31, 2011
@@||mapion.co.jp/f/filejoin?$script,stylesheet
! Added whitelist to avoid false positives with combined scripts and stylesheets including Omniture and WebTrends as parameters, Aug 26th, 2012
! SCRIPT SAMPLE: http://i2.msdn.microsoft.com/ja-jp/magazine/mtps-bn1651.js?l=ja-jp&i=magazine&ct=AlternateSelector;CCEditor;CCSection;CCTagEditor;ContentFallback;EyebrowSimple;FeedViewerBasic;InstrumentedLink;InteractiveToolbar;MtpsRating;MtViewDropDown;Omniture;RedVelvetInstrumentedLink;StoCodeHighlighter;StoFooter;StoLocaleManagementFlyout;StoMastheadMSDN;StoMtpsLoginStatus;StoProfileLink;StoSearch;StoTabStrip;SurveyLauncher;TemplatedFlyout;TransWikiPopupEditor;WebMetrix;WebTrends
! STYLESHEET SAMPLE: http://i3.msdn.microsoft.com/ja-jp/magazine/mtps-bn1651.css?l=ja-jp&i=magazine&ct=AlternateSelector;CCEditor;CCSection;CCTagEditor;ContentFallback;EyebrowSimple;FeedViewerBasic;InstrumentedLink;InteractiveToolbar;MtpsRating;MtViewDropDown;Omniture;RedVelvetInstrumentedLink;StoCodeHighlighter;StoFooter;StoLocaleManagementFlyout;StoMastheadMSDN;StoMtpsLoginStatus;StoProfileLink;StoSearch;StoTabStrip;SurveyLauncher;TemplatedFlyout;TransWikiPopupEditor;WebMetrix;WebTrends&clustimg=1
@@||microsoft.com/*/mtps-bn*?*;$script,stylesheet
! False positives with combined stylesheets conflicting with ^teaser^, reported by sasami via blog, Mar 26, 2013
@@||microsoft.com/Combined.css?resources=
! False positives with combined scripts including Omniture and WebTrends as parameters, Dec 21, 2012
! Sample: http://i2.msdn.microsoft.com/Combined.js?resources=0:webtrendsscript,1:omni_rsid_MSDN;/Areas/Global/Content/Webtrends/resources:0,/Areas/Global/Content/Omniture/resources/MSDN:1&hashKey=16進数32桁
@@||microsoft.com/Combined.js?resources=
@@||mozilla.com/media/img/promo.
! False positives with images usded at the top page of www.mozilla.org, Jun 26, 2013
@@||mozilla.net/media/img/home/promo
@@||mozilla.org/affiliates/
! False positve at Collusion demo page
@@||mozilla.org^*/collusion/demo/$document
! False positive with auto-generated XHRs, reported via Issue Report, Feb 15, 2012
@@||addons.mozilla.org^$xmlhttprequest
! False positive with almost all images with a ^promotion^ filter at the top page of muji.net, reported by h.gotolee as Issue 27 at code.google.com, May 12, 2013
@@||muji.net/portal/img/promotion/$image
! False positive with icons of NICO2-DAIHYAKKA at live.nicovideo.jp reported via Issue Report, Jan 12, 2012, Jan 11, 2012 and Dec 29, 2011
@@||api.nicodic.jp^*__nicopedia_api_*_AD/*%AD|
@@||api.nicodic.jp^*__nicopedia_api_*_AD_*%AD%
@@||uad.nicovideo.jp/assets/$domain=uad.nicovideo.jp
! False positives with |http:*.ad^ filter when combined scripts and stylesheets include .Ad, in their url, Feb 1, 2014
@@||store.nike.com^*?assets=$script,stylesheet
! A false positive with dynamic header script, using the |http:*^ad_ filter, reported by MASA, Jun 10, 2013
@@||nikkei.com/dx/async/async.do/ae=P_CM_HEADERJS_TOP;
@@||files.nyaa.se/sukebei-download.$image,domain=nyaa.se
@@||files.nyaa.se/sukebei-txt.$image,domain=nyaa.se
@@||files.nyaa.se/topbar.$image,domain=nyaa.se
@@||files.nyaa.se/topgradient.$image,domain=nyaa.se
@@||files.nyaa.se/www-download.$image,domain=nyaa.se
@@||files.nyaa.se/www-txt.$image,domain=nyaa.se
@@||files.nyaa.se/sukebei-*.$image,domain=nyaa.se
@@||files.nyaa.se/www-*.$image,domain=nyaa.se
! False positives with harmless popup used with ^popup.$popup, reported by 神楽 via blog, Jan 21, 2015
@@||pangya.jp/popup.html?src=$popup
@@||researchmap.jp^*/counter/$stylesheet
! False positive with domain names to investigate, like adv-first.ru, June 17, 2014
@@||robtex.com^*/advisory/
! False positives with combined scripts or stylesheets conflicting with ^teaser^ filter, May 27, 2015
@@||s-msft.com/Combined.*?resources=*,$script,stylesheet,domain=microsoft.com
! False positive with combined stylesheet with the ^ads. filter, reported via Issue Report, Sep 16, 2014
@@||salon.com/combo/css?*&$stylesheet
! False positive with combined JavaScript with the -ads. filter, reported via Issue Report, Sep 16, 2014
@@||salon.com/combo/js?*&$script
! False positives with product images starting at AD- using |https:*^ad- filter, reported via issue report, Feb 2, 2014
@@||sanwa.co.jp/product/*/AD-$image
! False positive with management page, reported via Issue Report, Jan 27, 2012
@@||ct*.shinobi.jp^$document
! False positive with slide images, Nov 19, 2014
@@||image.slidesharecdn.com^$image
@@||spreadfirefox.jp/affiliates/
@@||spreadthunderbird.com/files/affiliates/
! False positives on movies with the existing |https:*^ad- filter, Oct 21, 2016
@@||twimg.com/ext_tw_video/$domain=twitter.com
! False positives with images used with ^analytics- filter, at analytics.twitter.com, Aug 28, 2014
@@||twimg.com/insights/images/analytics-$domain=analytics.twitter.com
! False positives with the existing -analytics^, at analytics.twitter.com audience view, Nov 13, 2015
@@||twimg.com/macaw-analytics/$domain=analytics.twitter.com
! False positives with XHR used with ^analytics. filter, at analytics.twitter.com, Aug 29, 2014
@@||analytics.twitter.com^$xmlhttprequest,domain=analytics.twitter.com
! False positives with |http:*^ad- filter, Mar 20, 2014
@@||urlvoid.com/update-report/
! False positives with analytics result pages, Oct 18th, 2012
@@||userlocal.jp/home/analytics/$domain=userlocal.jp
@@||virustotal.hispasecsistemas.netdna-cdn.com^*/analysis-
! False positive with the path including /ad/ if used with |https:*^ad^ filter, reported via Issue Report, Sep 20, 2014
@@||upload.wikimedia.org/wikipedia/commons/thumb/a/ad/$image
! False positive with user input strings, Oct 06, 2015
@@||urlquery.net/api/v*/post*?url=$domain=urlquery.net
! False positives with the _ads^$popup filter, reported via Issue Report, Oct 05, 2014
@@||wikipedia.org/wiki/$popup
! False positive with questionnaires, reported via Issue Report, Mar 20, 2012
@@||blog.with2.net/vote/
! False positives with combined scripts
@@||yahoo.*/combo?*&$script,stylesheet,domain=yahoo.co.jp|yahoo.com
@@||yahooapis.*/combo?*&$script,stylesheet,domain=yahoo.co.jp|yahoo.com
! False positives with HIGHLIGHT.JS scripts, reported by @dullneko via blog comment, Aug 29, 2012
@@||yandex.st/highlightjs/
! False positives with jQuery, reported by 誤ブロック via blog comment, May 26, 2013
@@||yandex.st/jquery/
! False positives with combined stylesheets or scripts at Yahoo!
! Merged and limited the domain, Oct 25 and 26, 2014
! Added support for flickr.com acquired by Yahoo!, Jun 09, 2015
@@.yimg.*/combo?*&$script,stylesheet,domain=flickr.com|yahoo.co.jp|yahoo.com
! Layout collapse and some missing images because of the URL including /ad_partner/, Jan 18, 2012
@@||s.yimg.jp/images/webowner/ad_partner/$domain=webowner.yahoo.co.jp
! False positives at analytics pages inside YouTube, reported via Issue Report, Feb 27, 2012
@@||youtube.com/analytics/$document
! ---------- Default white list END ----------
!
! ########## Option only START ##########
|data:text/html^$document
|data:text/html^$popup
|http:$image,object,object-subrequest,ping,script,subdocument,xmlhttprequest,domain=ime.nu|ime.st
! Commented out for the incompatibility with uBlock Origin, Dec 08, 2016
! |http:$ping
! |https:$ping
|http:$popup,domain=1channel.ch|1fichier.com|2baksa.net|6brj.com|adexprt.com|adnxs.com|adshostnet.com|adspirit.de|adsplats.com|airliners.net|alphatv.gr|alrincon.com|animeflv.net|animeid.tv|bitporno.com|bitshare.com|booking.com|cinerip.com|cloudfront.net|co-co-co.co|cpasbien.io|cpasbien.pw|ctdisk.com|depositfiles.com|ellinofreneiafm.gr|emule-island.ru|eurosptp.com|extra.to|extratorrent.cc|extratorrentlive.com|eztv.ag|filenuke.com|filesonic.com|filesonic.fr|filesonic.jp|flashx.tv|freakshare.com|freebunker.com|freshremix.ru|hao123.com|hdtorrents.info|hikaritube.com|hot-jav.com|hotavxxx.com|hotporndl.com|humoron.com|imagecarry.com|imagefruit.com|imagesnake.com|imgcarry.com|imgchili.com|imgking.co|imgshots.com|isohunt.com|javlinks.com|kinoman.tv|kinox.to|kinox.tv|leversions.info|libertyland.tv|lumfile.com|megafilmesonline.net|megaupload.com|megavideo.com|mk-sniper.net|movie4k.to|movie4k.tv|movie8k.me|newpct1.com|nuvid.com|openadserving.com|openload.co|peliculaspepito.to|pornbus.org|primewire.ag|promptfile.com|qponning.com|rev2pub.com|rueducommerce.fr|senmanga.com|seriesflv.net|seriespepito.to|slickdeals.net|speedyshare.com|streamcloud.eu|streamingclic.net|swesub.tv|t411.ch|t411.li|telechargementz.org|torrentbox.com|torrentfrancais.com|torrentunblock.com|torrentz.eu|tucinecom.com|turbobit.net|umbertoarciero.it|un-lien.fr|unblocked.li|uploadable.ch|uploadrocket.net|uptobox.com|veoh.com|videomega.tv|vidtodo.com|vidzi.tv|viooz.co|vshare.eu|watch-series.to|xhamster.com|xnxx.com|xvideos.com|youporn.com|yourfilehost.com|yourlib.net|yunfile.com|yyets.com
|https:$popup,domain=1channel.ch|1fichier.com|2baksa.net|6brj.com|adexprt.com|adnxs.com|adshostnet.com|adspirit.de|adsplats.com|airliners.net|alphatv.gr|alrincon.com|animeflv.net|animeid.tv|bitporno.com|bitshare.com|booking.com|cinerip.com|cloudfront.net|co-co-co.co|cpasbien.io|cpasbien.pw|ctdisk.com|depositfiles.com|ellinofreneiafm.gr|emule-island.ru|eurosptp.com|extra.to|extratorrent.cc|extratorrentlive.com|eztv.ag|filenuke.com|filesonic.com|filesonic.fr|filesonic.jp|flashx.tv|freakshare.com|freebunker.com|freshremix.ru|hao123.com|hdtorrents.info|hikaritube.com|hot-jav.com|hotavxxx.com|hotporndl.com|humoron.com|imagecarry.com|imagefruit.com|imagesnake.com|imgcarry.com|imgchili.com|imgking.co|imgshots.com|isohunt.com|javlinks.com|kinoman.tv|kinox.to|kinox.tv|leversions.info|libertyland.tv|lumfile.com|megafilmesonline.net|megaupload.com|megavideo.com|mk-sniper.net|movie4k.to|movie4k.tv|movie8k.me|newpct1.com|nuvid.com|openadserving.com|openload.co|peliculaspepito.to|pornbus.org|primewire.ag|promptfile.com|qponning.com|rev2pub.com|rueducommerce.fr|senmanga.com|seriesflv.net|seriespepito.to|slickdeals.net|speedyshare.com|streamcloud.eu|streamingclic.net|swesub.tv|t411.ch|t411.li|telechargementz.org|torrentbox.com|torrentfrancais.com|torrentunblock.com|torrentz.eu|tucinecom.com|turbobit.net|umbertoarciero.it|un-lien.fr|unblocked.li|uploadable.ch|uploadrocket.net|uptobox.com|veoh.com|videomega.tv|vidtodo.com|vidzi.tv|viooz.co|vshare.eu|watch-series.to|xhamster.com|xnxx.com|xvideos.com|youporn.com|yourfilehost.com|yourlib.net|yunfile.com|yyets.com
|http:$subdocument,domain=jump.2ch.net|mangahere.co
|https:$subdocument,domain=jump.2ch.net|mangahere.co
! ---------- Option only END ----------
!
! ########## URL Fragments START ##########
! |http:*&ad-
! |https:*&ad-
! |http:*&ad.
! |https:*&ad.
! |http:*&ad^
! |https:*&ad^
! |http:*&ad_
! |https:*&ad_
! &ad_id=CRN_
! &ad_size=
! &ad_type=
! &ad_url=
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! &adcall-
! &adcall.
! &adcall^
! &adcall_
! &adconfig-
! &adconfig.
! &adconfig^
! &adconfig_
&adid=
&adid=$document
&adid=$popup
&admeld_
&adpds_
&AdPlan=
&adpos=
&adprovider=
&adprovider=$popup
&adsize=
&adslot=
&adsmarket=
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! &adsource-
! &adsource.
! &adsource^
! &adsource_
! &adSpace=
! Commented out a duplicated filter with ^adtype^, Jan 20, 2014
! &adtype=
! Commented out a duplicated filter with ^adv^, Oct 9, 2013
! &adv=
&advEntityId=
! Commented out a duplicated filter with ^advertiser^, Jan 1, 2014
! &advertiser=
&advTile=
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! &adx-
! &adx.
! &adx^
! &adx_
&aff_id=
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! &aff_id=$popup
&affichage=
&affid=
&affid=$document
&affid=$popup
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! &affiliate=$popup
&affiliateid=
&affiliateid=$popup
&AffliateReferenceID=$popup
&afid=
&afid=$popup
&banner=
&banner_link=
&banner_url=
&bidid=$document
&bidType=
&btag=$document
&campaign=
&campaign=$document
&campaign=$popup
&campaign_$document
&campaign_Code=
&campaign_Code=$popup
&campaign_ID=
&campaign_ID=$popup
&campaignCode=
&campaignCode=$popup
&campaignID=
&campaignID=$popup
&cbrandom=$document
&click=$third-party
&Click_ID=
&Click_ID=$document
&Click_ID=$popup
&ClickID=
&ClickID=$document
&ClickID=$popup
&clickTag=
&clickTag=$document
&clickTag=$popup
&creativeid=$popup
&dist_id=*&channel=$popup
&dist_id=*&channel=$third-party
&ectrackingguid=$document
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! &file=ads&
&iad=
&impid=
&impid=$document
|http:*?*&ip=$third-party
|https:*?*&ip=$third-party
|http:*?*&lp=*id=$popup
|https:*?*&lp=*id=$popup
&lp_domain=$popup
&lp_id=$document
&lpid=
&lpid=$popup
&lpip=
&mattrackingid=
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! &mediaslot=
&noadult=
&offer=$document
&offer=$popup
&offer_id=$document
&offer_id=$popup
&offer_key=$document
&offer_key=$popup
&optout=$third-party
&partner=$document
&partner=$popup
&partner=$third-party
&partner_id=$popup
&partner_id=$third-party
&PartnerID=$popup
&PartnerID=$third-party
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! &pop_under=$popup
&popundersPerIP=
! Commented out duplicated filters [https://github.com/k2jp/abp-japanese-filters/issues/9 reported] by [https://github.com/SMed79 SMed79], Jun 20, 2015
! &promo_type=
&Pub_ID=
&Pub_ID=$popup
&PubID=
&PubID=$document
&PubID=$popup
&publisher_id=
&publisher_id=$document
&publisher_id=$popup
&publisherID=
&publisherID=$document
&publisherID=$popup
&px.pluginh=$popup
&rakuten_affili=
&random=*&referrer=
&random=*&size=1x1&
&referrer=$third-party
&subid=*&data_ss=*&data_rc=$popup
&subid=*&data_ss=*&data_rc=$third-party
&tgu_src_lp_domain=$popup
&tid=*&red=*&abt=*&v=*.*.*.
&tid=*&red=*&abt=*&v=*.*.*.$document
&tid=*&red=*&abt=*&v=*.*.*.$popup
&track_id=
&track_id=$popup
&tracker_id=
&tracker_id=$popup
&trackerid=
&trackerid=$popup
&trackid=
&trackid=$popup
! &view=ad&
&voluumdata=
&voluumdata=$document
&voluumdata=$popup
! Merged with ^yad^, Aug 14, 2014
! &yad=
&zone_id=
&zone_id=$document
&zone_id=$popup
&zoneid=
&zoneid=$document
&zoneid=$popup
|http:*-ad-
|http:*-ad-$popup
|https:*-ad-
|https:*-ad-$popup
|http:*-ad.
|http:*-ad.$popup
|https:*-ad.
|https:*-ad.$popup
|http:*-ad^
|http:*-ad^$popup
|https:*-ad^
|https:*-ad^$popup
|http:*-ad_
|http:*-ad_$popup
|https:*-ad_
|https:*-ad_$popup
-ad0-
-ad0-$popup
-ad0.
-ad0.$popup
-ad0^
-ad0^$popup
-ad0_
-ad0_$popup
-ad1-
-ad1-$popup
-ad1.
-ad1.$popup
-ad1^
-ad1^$popup
-ad1_
-ad1_$popup
-ad2-
-ad2-$popup
-ad2.
-ad2.$popup
-ad2^
-ad2^$popup
-ad2_
-ad2_$popup
-ad3-
-ad3-$popup
-ad3.
-ad3.$popup
-ad3^
-ad3^$popup
-ad3_
-ad3_$popup
-ad4-
-ad4-$popup
-ad4.
-ad4.$popup
-ad4^
-ad4^$popup
-ad4_
-ad4_$popup
-ad5-
-ad5-$popup
-ad5.
-ad5.$popup
-ad5^
-ad5^$popup
-ad5_
-ad5_$popup
-ad6-
-ad6-$popup
-ad6.
-ad6.$popup
-ad6^
-ad6^$popup
-ad6_
-ad6_$popup
-ad7-
-ad7-$popup
-ad7.
-ad7.$popup
-ad7^
-ad7^$popup
-ad7_
-ad7_$popup
-ad8-
-ad8-$popup
-ad8.
-ad8.$popup
-ad8^
-ad8^$popup
-ad8_
-ad8_$popup
-ad9-
-ad9-$popup
-ad9.
-ad9.$popup
-ad9^
-ad9^$popup
-ad9_
-ad9_$popup
-adcombo-
-adcombo.
-adcombo^
-adcombo_
-adframe-
-adframe-$document
-adframe.
-adframe.$document
-adframe^
-adframe^$document
-adframe_
-adframe_$document
-adframes-
-adframes-$document
-adframes.
-adframes.$document
-adframes^
-adframes^$document
-adframes_
-adframes_$document
-adgear-
-adgear.
-adgear^
-adgear_
-adgorithmsltd-
-adgorithmsltd.
-adgorithmsltd^
-adgorithmsltd_
-adimg-
-adimg.
-adimg^
-adimg_
-adimgs-
-adimgs.
-adimgs^
-adimgs_
-adlink-
-adlink.
-adlink^
-adlink_
-adplus-
-adplus.
-adplus^
-adplus_
-adpop-
-adpop.
-adpop^
-adpop_
-adriver-
-adriver.
-adriver^
-adriver_
-ads-
-ads-$document
-ads-$popup
-ads.
-ads.$document
-ads.$popup
-ads^
-ads^$document
-ads^$popup
-ads_
-ads_$document
-ads_$popup
-adsdata-
-adsdata.
-adsdata^
-adsdata_
-adsense-
-adsense.
-adsense^
-adsense_
-adsense1-
-adsense1.
-adsense1^
-adsense1_
-adsense2-
-adsense2.
-adsense2^
-adsense2_
-adsense3-
-adsense3.
-adsense3^
-adsense3_
-adsense4-
-adsense4.
-adsense4^
-adsense4_
-adsense5-
-adsense5.
-adsense5^
-adsense5_
-adsense6-
-adsense6.
-adsense6^
-adsense6_
-adsense7-
-adsense7.
-adsense7^
-adsense7_
-adsense8-
-adsense8.
-adsense8^
-adsense8_
-adsense9-
-adsense9.
-adsense9^
-adsense9_
-adsenser-
-adsenser.
-adsenser^
-adsenser_
-adserver-
-adserver.
-adserver^
-adserver_
-adserver0-
-adserver0.
-adserver0^
-adserver0_
-adserver1-
-adserver1.
-adserver1^
-adserver1_
-adserver2-
-adserver2.
-adserver2^
-adserver2_
-adserver3-
-adserver3.
-adserver3^
-adserver3_
-adserver4-
-adserver4.
-adserver4^
-adserver4_
-adserver5-
-adserver5.
-adserver5^
-adserver5_
-adserver6-
-adserver6.
-adserver6^
-adserver6_
-adserver7-
-adserver7.
-adserver7^
-adserver7_
-adserver8-
-adserver8.
-adserver8^
-adserver8_
-adserver9-
-adserver9.
-adserver9^
-adserver9_
-adstype-
-adstype-$popup
-adstype.
-adstype.$popup
-adstype^
-adstype^$popup
-adstype_
-adstype_$popup
-adthink-
-adthink.
-adthink^
-adthink_
-adthinkmedia-
-adthinkmedia.
-adthinkmedia^
-adthinkmedia_
-adtrack-
-adtrack.
-adtrack^
-adtrack_
-adtracker-
-adtracker.
-adtracker^
-adtracker_
-adtype-
-adtype-$popup
-adtype.
-adtype.$popup
-adtype^
-adtype^$popup
-adtype_
-adtype_$popup
-adunit-
-adunit.
-adunit^
-adunit_
-adunits-
-adunits.
-adunits^
-adunits_
-adv-
-adv.
-adv^
-adv_
-advert-
-advert.
-advert^
-advert_
-advertise-
-advertise.
-advertise^
-advertise_
-advertiser-
-advertiser.
-advertiser^
-advertiser_
-advertisers-
-advertisers.
-advertisers^
-advertisers_
-advertising-
-advertising.
-advertising^
-advertising_
-adverts-
-adverts.
-adverts^
-adverts_
-advertstream-
-advertstream.
-advertstream^
-advertstream_
-advimg-
-advimg.
-advimg^
-advimg_
-advimgs-
-advimgs.
-advimgs^
-advimgs_
-adways-
-adways.
-adways^
-adways_
-affiliate-
-affiliate-$popup
-affiliate.
-affiliate.$popup
-affiliate^
-affiliate^$popup
-affiliate_
-affiliate_$popup
-analytics-
! Commented out to avoid false positives with http://www.google-analytics.com/ga.js on third-party domains, Mar 28, 2014
! -analytics.$domain=~google-analytics.com
-analytics^
-analytics_
-analytics0-
-analytics0.
-analytics0^
-analytics0_
-analytics1-
-analytics1.
-analytics1^
-analytics1_
-analytics2-
-analytics2.
-analytics2^
-analytics2_
-analytics3-
-analytics3.
-analytics3^
-analytics3_
-analytics4-
-analytics4.
-analytics4^
-analytics4_
-analytics5-
-analytics5.
-analytics5^
-analytics5_
-analytics6-
-analytics6.
-analytics6^
-analytics6_
-analytics7-
-analytics7.
-analytics7^
-analytics7_
-analytics8-
-analytics8.
-analytics8^
-analytics8_
-analytics9-
-analytics9.
-analytics9^
-analytics9_
-amazon.com^*/browser-scripts/DA-
-amazon.com^*/browser-scripts/DAE-
-amazon.com^*/msa/
-autolinkmaker-
-autolinkmaker.
-autolinkmaker^
-autolinkmaker_
-azlink-$object,script,subdocument
-azlink.$object,script,subdocument
-azlink^$object,script,subdocument
-azlink_$object,script,subdocument
-beacon-
-beacon.
-beacon^
-beacon_
-beacons-
-beacons.
-beacons^
-beacons_
-betting/$popup
-campaign-$third-party
-campaign.$third-party
-campaign^$third-party
-campaign_$third-party
-cellcast-media-
-cellcast-media.
-cellcast-media^
-cellcast-media_
-cellcastmedia-
-cellcastmedia.
-cellcastmedia^
-cellcastmedia_
-comscore-
-comscore.
-comscore^
-comscore_
-conduit-
-conduit.
-conduit^
-conduit_
-crdrjs-
-crdrjs.
-crdrjs^
-crdrjs_
-dfp-$object,script,subdocument
-dfp-$third-party
-dfp.$object,script,subdocument
-dfp.$third-party
-dfp^$object,script,subdocument
-dfp^$third-party
-dfp_$object,script,subdocument
-dfp_$third-party
-dfp0-$object,script,subdocument
-dfp0-$third-party
-dfp0.$object,script,subdocument
-dfp0.$third-party
-dfp0^$object,script,subdocument
-dfp0^$third-party
-dfp0_$object,script,subdocument
-dfp0_$third-party
-dfp1-$object,script,subdocument
-dfp1-$third-party
-dfp1.$object,script,subdocument
-dfp1.$third-party
-dfp1^$object,script,subdocument
-dfp1^$third-party
-dfp1_$object,script,subdocument
-dfp1_$third-party
-dfp2-$object,script,subdocument
-dfp2-$third-party
-dfp2.$object,script,subdocument
-dfp2.$third-party
-dfp2^$object,script,subdocument
-dfp2^$third-party
-dfp2_$object,script,subdocument
-dfp2_$third-party
-dfp3-$object,script,subdocument
-dfp3-$third-party
-dfp3.$object,script,subdocument
-dfp3.$third-party
-dfp3^$object,script,subdocument
-dfp3^$third-party
-dfp3_$object,script,subdocument
-dfp3_$third-party
-dfp4-$object,script,subdocument
-dfp4-$third-party
-dfp4.$object,script,subdocument
-dfp4.$third-party
-dfp4^$object,script,subdocument
-dfp4^$third-party
-dfp4_$object,script,subdocument
-dfp4_$third-party
-dfp5-$object,script,subdocument
-dfp5-$third-party
-dfp5.$object,script,subdocument
-dfp5.$third-party
-dfp5^$object,script,subdocument
-dfp5^$third-party
-dfp5_$object,script,subdocument
-dfp5_$third-party
-dfp6-$object,script,subdocument
-dfp6-$third-party
-dfp6.$object,script,subdocument
-dfp6.$third-party
-dfp6^$object,script,subdocument
-dfp6^$third-party
-dfp6_$object,script,subdocument
-dfp6_$third-party
-dfp7-$object,script,subdocument
-dfp7-$third-party
-dfp7.$object,script,subdocument
-dfp7.$third-party
-dfp7^$object,script,subdocument