This repository has been archived by the owner on May 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
obtrusive.txt
1160 lines (1127 loc) · 37.8 KB
/
obtrusive.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 1.1]
! Checksum: +VXrwLbbAZRvUkuoDZCvZA
! Title: Prebake - Filter Obtrusive Cookie Notices
! Last modified: 28 May 2018 14:00 UTC
! Expires: 7 days
! Homepage: http://prebake.eu
! License: https://raw.github.com/liamja/Prebake/master/README.md
!
! Please post any details regarding unblocked notices or problems
! to the GitHub issue tracker (https://github.com/liamja/Prebake/issues)
! or via e-mail ([email protected]).
!
! The MIT License (MIT)
!
! Copyright (c) 2018 Liam Anderson, Prebake Contributors
!
! Permission is hereby granted, free of charge, to any person obtaining a copy
! of this software and associated documentation files (the "Software"), to deal
! in the Software without restriction, including without limitation the rights
! to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
! copies of the Software, and to permit persons to whom the Software is
! furnished to do so, subject to the following conditions:
!
! The above copyright notice and this permission notice shall be included in all
! copies or substantial portions of the Software.
!
! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
! IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
! FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
! AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
! LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
! OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
! SOFTWARE.
! Site-Specific Selectors
20minutes.fr###cnil-notice
3vprepaid.com###cookie-container
4players.de###cookpol
abbeyroad.com###popupCookies
actu-environnement.com###informations-cookies
adlibris.com###cookie-information-banner
advokatsamfundet.se##.c-cookie-bar
agria.se###header > .topbar > .topmessage-holder > .cookiemessage.topmessage
airvpn.org##div[style*='width:800px']
akademibokhandeln.se##.cookie-info-wrapper > .cookie-info
aklagare.se##.cookie-dialogue
alandsbanken.ax##.cookie-prompter > .cookie-prompter__inner > .row > .column.large-12.medium-12.small-12 > .cookie-prompter__content
ale.se###svid10_b8d298315287380dfd27cc
alecta.se###aspnetForm > .visible.cookie-notification
alinea.fr##.cookies-notice-msg
allocine.fr##.info-cookie
allevo.nu###cookie-question
allrecipes.co.uk###cookiePopupContainer
almi.se###cOK
alternativeto.com###bottomNotifier
altfordamerne.dk##.content
amd.com/Style%20Library/js/cookie-prompt.js$script
anglianwater.co.uk###ctl00_pnlCookie
answers.microsoft.com###PrivacyBanner
antikvarium.hu##div[class="eupopup-container eupopup-container-bottom eupopup-color-default"]
apoteket.se###apoteket-body > .cookie-info
apotekhjartat.se###acceptCookieForm
appszoom.com##.js-toast-cookies
area-codes.org.uk###wsjconsent
argenta.be##.ag-cookie-policy-wrapper
arla.dk###Container
arla.no###Container
arm.com###cookiemodule
armemuseum.se##.page-header > .no-print.alert-info.alert
arte.tv###arte-cookie-banner
asda.com###FT_Cookies
askmen.com###policyNotice
astonmartin.com###cookieheader
astrazeneca.com###cookie-disclaimer
atg.se###react-root > div > div:nth-of-type(2) > div:nth-of-type(2) > .hidden-print.hidden-app.alert--small-margin.alert--info.alert--dismissable.alert
atman.pl###gbpl_oba
atman.pl##.polityka-cookie
atv.hu##div[id="cookie-warning"]
audion.com###cc-cookie
auto-ici.fr###close_cnil
automotorsport.se##.alert
autotask.com##.jsEnabled.alertbar-bottom.alertbar
avanza.se##.avanzabank_cookie_message.cookieMessage
aviva.co.uk##.cookiePopUp
bandainamcoent.eu###panel-cookie
bahnhof.se##.top-line-block
bankid.com##.wrapper > .bankid-cookie.alert-dismissable.alert-warning.alert
banknordik.dk###cookieWarningDiv
baon.hu##div[class="allow-cookie-stripe"]
barclays.co.uk##P.otm
bbcgoodfood.com##.cookie-law
beatsbydre.com###brand_drawer
beatsbydre.com##.brand_drawer
bedetheque.com##.cookie_message
bestbyte.hu##div[id="vscookieAlertCont"]
betfair.com##.footer-cookies-policy
betsson.com###msgwrapper > .msgalign
bibliotek.dk##.popup-content
bilia.se###form0
bilprovningen.se###svid10_210a2f5a14d2cf2981b1087a
bing.com###b_notificationContainer > .psacontent > .b_hPanel
black-desert.com##.userNotice
blog.hu##div[id="_iph_cp_popup"]
blogger.com###blogger_cookie_notice
blogs.mediapart.fr##.cookie-warn-msg
bmw.co.uk##.cookieDisclaimerContainerWrapper
bmw.co.uk##.cookieDisclaimerContainerWrapper > .cookieDisclaimerContainer.cookieDisclaimerContainerOptOut > .cookieDisclaimerContainerText
bmw.se##.ds2-page--wrapper.ds2-mobilepreview > div:nth-of-type(1)
boingtv.fr###sliding-popup
bol.com###top_header_cookie_message
bolagsverket.se##body > div:nth-of-type(1)
bona.com##.cookie
boomerangtv.fr##.cookie_popup
borsonline.hu##div[id="pCookieWarning"]
bouyguestelecom.fr###no-cookie
box.com###sliding-popup
bundlestars.com##consent[class="ng-isolate-scope"]
breakbeat.co.uk###CookieInformation
britishmuseum.org###cookiePromptWrapper
byggmax.se###main-container > .cookie-information
ca-nord-est.fr##.recocliv2
cadbury.co.uk###\5f CookieText
car2go.com###c2g_cookie_dialog
carrefour.fr###cookie-block
carrefour.fr##.cookie-bottom
captchme.com##.fade.sticky.alert-cnil.msgAlert
castrol.com##.nv-cookie-notification
cc.au.dk###au_cookiesalert
cervera.se##.cookies__info--visible.cookies__info > .overlay
change.org##.flash-message.flash-message-announcement
channel4.com##.all4nav-cookie-policy-notification
chomikuj.pl##.cookiesInfo
circlek.se###cookiebox
citroen.se##.container > .sliceNew.cookieBarReviewDesktop
classicmotor.se###AdBlockerInfo
claireperry.org.uk###blanket
claireperry.org.uk###message
clarkewillmott.com###cookiestext
clickandbuy.com##.cookie-notifier-text
clubic.com###cookieu_header
co-operativebank.co.uk###noticePanel
cofunds.co.uk###idrMasthead > .idrPageRow[style*='z-index:1']
coinc.es###divCookie
comixology.fr###cookieAcknowledgement
commentcamarche.net##.ccmcss_oic
concertolive.co.uk##.divCookieWarning
conrad.se###headCookieAccept
coop.se###aspnetForm > .is-passive.is-passive.Alert--info.js-canvasColCenter.Canvas-col--center.Canvas-col.Alert
couchsurfing.com##.is-hidden
cpc.farnell.com###mktg_Cookie_Wrap
cplusplus.com##div[style="background:#eed;padding:10px;margin:0;text-align:center;border-bottom:1px solid #446"]
crocs.de##.intercept-content
crocs.de##.intercept-spacer
csl-computer.com###notification
cubeupload.com###cookieMonster
dailymotion.com##.sd_cookiespolicy
data.gov.uk###sliding-popup
dansmuseet.se##.pea_cook_bottomright.pea_cook_wrapper
datormagazin.se###AdBlockerInfo
davidlloyd.co.uk###home-cookie2
dawsonera.com##.cc-cookies-container
decathlon.co.hu##div[id="cookie"]
degulesider.dk##.cookies-info
delfi.ee###cookie_ribbon
developpez.com###gabarit_cnilcookie
devianne.com###avertissement_cookies
diabetes.org.uk###policyPopup
digital.di.se##.footer > .footer__cookie-info
digitaltmuseum.se##.region--cookie-bar
dirt4game.com###codemasters_cookie_acceptance
divany.hu##div[id="_iph_cp_popup"]
dmi.dk##.content
dnevnik.hr###cookieMon
do.se###cookieAcceptContainer
dobreprogramy.pl###cookiesPanel
dplay.se##.header-menu-hide.header-searchbar-hide-delay.header-searchbar-hide.header > .clearfix.sticky-content-container > .notification-wrapper > .show.cookie-notification.single-notification > .notification-container
drweb.de##.pea_cook_wrapper.pea_cook_bottomright
dr.dk##.dr-cookie-info-box
dr.dk##.dr-infobox
drive24.co.uk###cookieHeader
duf.dk##.tx-tc-cookie
dutchnews.nl##.cookiepolicy
eadt.co.uk###cookielaw2
economist.com###ec-cookie-messages-container
edigital.hu##div[id="hr_cookie_policy_message"]
edp24.co.uk###cookielaw2
ekupi.hr###ctl00_cookieDiv
eldiario.es###headerCookiesAdvice
eldos.com##.cookie_warning
elgiganten.dk##.transbox
elkedjan.se##.top-bar > .top-bar.fluid > .ng-scope.clearfix > .block.avalanche-message.sticky
elkjop.no##.cookie-info-layer
elle.fr###c_agrem
emmaboda.se###svid12_508bcea9153eb2a15c13749 > .lp-cookie-consent
empireonline.com###bauerCookiePolicy
energimyndigheten.se##.hidden-print.show-cookie-consent.cookie-consent-wrapper
eniro.se##.cookies-info-static
epson.fr##.epson_cookienotice
esbe.eu##.header-cookie-content
eskilstuna.se###CookieMessage
espn.co.uk##.cookie-overlay
essunga.se###aspnetForm > .theme0.siteCSS.msg-cookie-law
etel-tuning.eu###cookieNoticeContent
eucomtech.eu###cookiealert
eudict.com##.cookieNotice
eurodns.com###cookies-bar
euroman.dk##.content
eurowoman.dk##.content
ey.com##.cookienote
facebook.com##.pam.fbPageBanner._3d9x.uiBoxGray.bottomborder
fagersta.se###svid10_475c7afc14de44b580bcbd52
familjeliv.se##.wrapper_1 > .wrapper_2 > .cookie-dialog.block > div
fass.se###id3
fastighetsbyran.se##.fillColor.cookieWrapper
fatbeehive.com##div[style^="background-color: #000;"]
fazer.se##.ng-scope.notification-bar.cookie-notification
fedex.com###privacy-notice
femina.hu##div[id="_iph_cp_popup"]
fgov.be###perBoxUI
fhm.com###bauerCookiePolicy
fi.se###contentarea > div:nth-of-type(1) > .clearfix.cookiealert.box > .clearfix.boxbody
filmaffinity.com###info-cookie
filminstitutet.se##.info-banner.js-info-banner
filmtipset.se###acceptCookiesDiv
finansforbundet.se##.off-canvas-wrap > .inner-wrap > .main-content > .container > .full-width.pull-left.hidden-print.cookie-warning-container.alert-info.alert
fliegen-usa.de###cc-cookie-law
folkhalsomyndigheten.se###header > .cf.header-inner > .cookie-info
folkuniversitetet.se##.alert
ford.se###cookieAlertBoxID
forex.se###cookie-policy-wrapper
forsvarsmakten.se###Form1 > .c-grid > .header-sticky-priority > .s-cookies
forvo.com###cookie_assistant
fotka.com###cookies_info
france5.fr###cookie-cnil-box
freeview.co.uk###cookie-panel
fundedbyme.com##.is-landingPage.page--b.page > .header--b.header > .wrapper.pageNotification:nth-of-type(1)
fundingcircle.com##.is-visible.notification_wrap
fundamenta.hu##div[class="cookie-acceptance-container"]
furniturevillage.co.uk###SiteMasterPage_updCookieDisclaimer
futura-sciences.com###fs-cookiewarning
fz.se###AdBlockerInfo.cookie-container
gallup.com###gel-cookie-banner
gambleaware.co.uk###ccWrappery
gamblingcommission.gov.uk##.cookiedOuter
gamemania.be###globalmessage
gamepressure.com###CP_box
gamereactor.dk###cookielawwarning
gamespy.com###policy
gamesrepublic.com###have-a-cookie
gg.pl##body > div:nth-of-type(2) > div
gendiagnosztika.hu##div[class^="pea_cook_wrapper"]
gigaom.com##.privacy-policy
ginza.se###cookie-popup
gizmodo.co.uk##.future-cookie-bar
gmx.com##.mod-cookiepolicy
golem.de###golem-cookie-accept
google.dk##.fbar
gosc.pl##div[style^="border: 10px solid rgb(138, 138, 138);"]
gov.uk###global-cookie-message
gov.uk##.js-cookies-banner
gp.se###gpsecCookieInformationContainer
gphirek.hu##div[id="accept-cookie"]
gqmagazine.fr###cookies-message-main
graspop.be##.s--show.cookies
grosbill.com###cnil_bar
groupalia.com##.wrapperCookies
groupe-logos.com##div[style*='z-index: 1000;']
guardian.co.uk##.identity-noticebar-content
guysandstthomas.nhs.uk##cookiePlaceholder
habo.se###svid10_25e65dba14d7b753e8fda009
halens.se###site-message
halmstad.se###svid12_47c5cae51518152da6eb69 > .lp-cookie-consent
hamsterpaj.net###accept-cookies
haninge.se##.container > .visible.ng-scope.hiddenOnPrint.cookieContainer
hannovermesse.de##.row.user-notes-notification.M011
harryda.se###svid12_463e3e15150368e44dc4780c > .lp-cookie-warning
hasznaltauto.hu##div[id="cookieAcceptContainer"]
havkom.se##.cookies
heart.co.uk###cookie_bar
helsingborg.se##.site-wrapper > div > .alert-info.alert
heltnormalt.dk##.banner
heltnormalt.dk##.banner-container
hemmetsjournal.se##.page > .alert-cookies.page-alert.alert-info.alert
here.com##.notification_box.ng-isolate-scope.cookie
hertz.se###light-box-1 > .lb-background
hertz.se###light-box-1 > .lb-foreground > .lb-foreground-cont > .lb-content-box
hintaseuranta.fi###cookies-info-banner
hkr.se###c-info-box
hm.com##section[class="cookie-notification"]
hofors.se###cookie-msg
horoscope.fr###useCookiesCont
hotelgranvia.com###lc_cookies-main
hp.com###cookie_privacy_holder
hs.fi##.cb-container
hyresgastforeningen.se##.js-cookie-bar.row-table.cookies
hrportal.hu##div[id="fixdiv"]
ica.se###cookie-bar
ico.org.uk###banner
ideone.com###cookie-ue
idokep.hu##div[class^="cc_banner-wrapper"]
if.se##.ecmt-page-wrapper > .ecmt-page > .js-cookiebar.js-notification.ecmt-notification-bottom.ecmt-notification-is-fixed.ecmt-notification-cookies.ecmt-notification
igen.fr###sliding-popup
ign.com###policyNotice
ikea.com###cookieMsgBlock
iltalehti.fi##.alma-cookie-disclaimer
ina.fr##.cookies-bar
indavideo.hu##div[id="_iph_cp_popup"]
indiegogo.com###fancybox-overlay
indiegogo.com###fancybox-wrap
informahealthcare.com##.overlay
informahealthcare.com##.popupContainer
ingdirect.es###ico_banner
ink361.com###cookieAcceptMessage
interia.pl###inpl_cp_cnt
investor.hu##div[class="accept-cookie-open"]
iopscience.iop.org##.cookies-banner-wrap
irishtimes.com###cookies-policy
itele.fr###cnil_alert_inner
itv.com###itv-cookie-notification
jak.se###cookies-notification
jamtli.com###s_s_cookieInfoText
jetbrains.com###cookies-terminal
jman.tv###ActionBar
johnlewis.com###jlp-cookie-container
jotti.org##.alert-info
jordbruksverket.se###svid10_7824f13e14ed0d5e4dcbbcf1
journaldunet.com##.ccmcss_oic
jyllands-posten.dk##.acceptCookiesBox
k-citymarket.fi##.Pbox-sm
k-market.fi##.Pbox-sm
kalleanka.se##.alert
karriere.fresenius.de##.cookie_message_inner
kch.nhs.uk##.Cookie_Banner
keil.com##.modouter
ketnet.be###cookie-bar-wrapper
kingston.ac.uk###site-wide-cookie-message
kiszamolo.hu##div[id="cookie-notice"]
knaufdanoline.fr###pronamic_cookie_holder
kommunal.se##.Site > .is-open.cookie-processed.Cookie
konkurrensverket.se##.no-print.alert-info.alert
konsumentverket.se###ctl00_ContentPlaceHolderAll_TopRegion_ctl00_CookieInfo1_DivCoockieInfo
korben.info##.cookie-notice-container
kungsor.se###cookiepolicy
kwejk.pl###cookies-politics
lab-project.net##.activebar-container
lagazettedescommunes.com###bandeauCookies
lagenhetsbyte.se##.inner-wrap > .main-section > .site-wrap > .main-container > .approveCookiesBar
laget.se##.padding--slim.box.cookiePush
landskrona.se###about-cookies
lansforsakringar.se###header > .header-top-content > .topmessages > .topmessage-cookie.topmessage-holder
lararforbundet.se##.is-visible.js-cookie-notice.CookieNotice
large.nl###cookie_law
larousse.fr##.panel-cookies
lavanguardia.com###divCookiesBox
lavie.fr###usrcookies
lavozdegalicia.es##.alert.alert-info
layar.com##.remarketing-banner.show
lcl.fr###id\=ID_COOKIECONSENT_BANDEAU
ldlc-pro.com###container
ldlc.com###tc_privacy
leagueoflegends.com###cookieCookieBar
leboncoin.fr###cookieFrame
leconomic.cat###avis-cookies
lefigaro.fr##.cookieBarContainer
legalandgeneral.com###st_box
lemonde.fr###alerte_tracking
lemondeinformatique.fr###infos_cookie
leparisien.fr###topCookie
lepoint.fr###footer-cookies
lequipe.fr###cookiesLequipe
leroymerlin.fr##.nav-infos-wrapper
lesechos.fr###cookiemenu
lesinrocks.com##.cnil-block
lesnumeriques.com###notif_197
letelegramme.fr###cookieChoiceInfo
letudiant.fr###notice-cookie-block
levante-emv.com##div[style*='bg_cookies.jpg']
lerum.se###lerumCookieContainer
lexus.se##.page > .disclaimer > .disclaimer__content
lfv.se##add > .cookies.container-fluid
lg.com##.wrapper > .policyChk
lg.com##.agree-cookie-wrap
liberation.fr##.cookie-notify
lidingo.se###svid10_41c3ba9e14f28c6556dad9
life.hu##div[class="accept-cookie-open"]
linasmatkasse.se##.cookie-info > .cookie-info-inner
lindex.com###notifications > .notification
linkedin.com###notice-cookie-policy
livescores.com##.row.well.info-msg
lnu.se##.app-header > .cookie-policy-form
londonstockexchange.com###bannerCookies
lonelyplanet.com##.row--cookie-compliance
lr.se##.cookie-notify-bar > .normal
lr.se##.cookie-notify-bar
lufbra.net##.cwcookielaw
ma-reduc.com###about-cookies
macbidouille.com###okookie-box
macforum.se##.cookies-alert.container-fluid
macuser.de##.eucookie_wrapper
maklarringen.se###cookie_information
malmo.se###m-consent
magine.com###content-wrapper > .ng-scope > div:nth-of-type(3) > .cookie-notification.ng-isolate-scope
marginalen.se###accept-cookies > .Notification-content
masterofmalt.com###cookiePopup
mclaren.com###block-cookie-info
mclarenstore.com##.widget-notifyBar
mdd.eu##.panel_cookie
mediapart.fr###cnil-sentence
mediaset.it###cookieAdv
meinestadt.de##.ms-cookie-ok
mercialys.fr##.info-top
mestmotor.se##.page > .alert-cookies.page-alert.alert-info.alert
microsoft.com##.euCookie.mscom-alertitem
microsoft.com###lca-cookie-notification
middle-earth.xenite.org##.pea_cook_wrapper
migrationsverket.se###svid10_2bbf7de914c17a2ed261cef
ministryofsound.com###ctl00_ctl00_Cookies1_UpdatePanel1
mobile.twitter.com##.is-open.EuCookieSheet
moneysavingexpert.com###alertBar
monitor.si##.cookie-note-content
monster.co.uk###intMsgCookies
motor-talk.de###b-cc
motorsport.com###cookie_accept
mpora.com##.c-cookie-policy
msb.se###TextArea
mq.se###cookieInfoBar
mullsjo.se###landing_page_infobox_middle > div > p
||mullsjo.se/Templates/Mullsjo/Images/infobox_bottom2.png$image
||mullsjo.se/Templates/Mullsjo/Images/infobox_top2.png$image
||mullsjo.se/Templates/Mullsjo/Images/infobox_middle2.png$image
mundodeportivo.com###cookies-policy-mssg
musixmatch.com##.mxm-cookie-alert
n-mobile.net###infobox3
nacka.se###content-primary > .o-width-limiter > .o-grid > .o-grid__column:nth-of-type(1) > .c-buffer-box--only-top.c-buffer-box:nth-of-type(1)
narod.hr###fancybox-overlay
narod.hr###fancybox-wrap
nassjo.se##.cookie-info-wrapper
nationwide.co.uk###cn
nba.com###nba_tos
ncc.se##.viewport > .page > .cookie-agreement
nectar.com###cc-notification
nelly.com###toast-container
netapp.com###cboxOverlay
netapp.com###colorbox
newscientist.com###rbiCookiePolicy_pushDownBoxWrapper
newsnow.co.uk###cookie_consent
nexusmods.com###jquery-cookie-law-script
nfbio.dk###the-cookie
nicematin.com##.alert-cookies
nlt.se###nltcoCookieInformationContainer
nlyman.com###toast-container
nol.hu##div[class="allow-cookie-stripe"]
nos.pt##.nav__cookies
nouvelobs.com##div[style*='width:550px;background-color:#feefaa;']
noz.de###cookie-optout
nrc.nl##.cookiemonster.kleverig
nu.nl###cookiebar_wrapper
nyheter24.se###accept-cookies-div
nyteknik.se###canvas > div:nth-of-type(1) > .js-cookie-notification.cookie-notification-container
o2.pl##.cookie-info__transition
ockelbo.se###aspnetForm > .cookie-wrap
odeon.co.uk###icoCookiesBanner
olofstrom.se##.cookie-container-wrapper > .cookie-container
olvg.nl###cc
omgubuntu.co.uk##.is-active.CookieWarning
onlive.co.uk##.top_message
opel.se###container > .ut_cookie_privacy_c1 > .jsReady.noUserConsent.modUt_cookie_privacy_1.mod > dd
openclassrooms.com##.disclaimer.disclaimer--info.js-cookie-disclaimer
orange.co.uk###cookieBannerD
origin.com###truste-banner
originalpenguin.co.uk###epd
origo.hu##div[class="accept-cookie-open"]
oru.se##header > form > .cookies
osby.se###enablecookies
osthammar.se###pre
ouest-france.fr###disclaimerCookies
parcelmotel.com###cookiemonster
parisinfo.com###cookieChoiceBanner
pathe.nl###cookieOverlay
pccomponentes.com##.capa_cookie.hide
pcpro.co.uk###dennis-cookie-notice
pekao.com.pl###box-close
pekao.com.pl###box-div
pekao.com.pl###box-layer
penguingamers.eu##.RACKWrapper
pensionsmyndigheten.se###cb_alert
penzcentrum.hu##div[id="_iph_cp_popup"]
perforce.com##span.optanon-link-text-left.optanon-white
perforce.com##ul.optanon-menu.optanon-menu-allow
picarto.tv##.cookieMSG
pirateparty.org.uk###confirmCookiePolicy
piret.be##.divCookiePopUpContainer
pizza-online.fi###cookie_policy_container
play.google.com##.app-translation-bar
polisen.se##.cookie
polygon.com###privacy-policy-notice
polytuil.fr###cookiesContainer
portfolio.hu##div[id="_iph_cp_popup"]
postimees.ee###pm-cookie-consent
postnl.nl###coverlay
postnl.nl###cwrapper
ppluk.com###wsjpecrga
pprune.org###ib-global-cookie-notice
premierleague.com###cookies-verify
priceminister.com###legalNotificationEltId
priorygroup.com###promptbar
prixtel.com###dotbandeaucookie
proffice.se##.proffice_cookieinfo.js-controller.cookie-info
proximus.be##section[data-tms-id="TMS_COOKIE_MESSAGE"]
qmarket.se###eu-cookie-bar-notification
quoka.de###msgCookie
qype.co.uk##.js-cookie-info
radionomy.com###cookieDough
radron.se##.cookies-bar
rana.it###cookie_popup
ransomesjacobsen.com###cookieuseage
rapidonline.com###Header_SelectSitePopup_DisplaySiteSplitMsgDiv
readly.com###wrapper > .navbar-default.navbar > .cookies-container.container-fluid
redbull.com##.cookie-notification
reddit.com###eu-cookie-policy
reed.co.uk##.notification
rex.kb.dk##.content
rfi.fr##.cookies_bar
richersounds.com###headerCookieLaw
rightmove.co.uk###cookiemodalbar
rockpapershotgun.com###ecd_opt_in_banner
rollingstone.com###euNotice
rotring.com###cookienotify
royalnavy.mod.uk###cookies-notice
royalmarsden.nhs.uk###block-bean-cookie-message
rs-online.com##.cookieMessageDiv
rte.ie###cookie-policy-strap
rtl.hu##.cookie-container
rtl.hu##.cookie-container-most
rtve.es###rtveCookiePolicy
rtvslo.si###size-window-cookie
rumid.dk##div[style^="bottom: 0px; height: 1px; left: 0px;"]
ruter.no##div[data-cookie-message]
saab.com###cookie-disclaimer > .section-container > button
samsung.com##.cookie_notice
santander.co.uk###cookiebannerAH
santamariaworld.com##.wrapper > .cookies-box
sas.se##.cookieinfoholder
savi-france.fr###notifybar
scandichotels.se##.cookie-section.l-section
schwarzkopf.co.uk##div.cookiedisclaimer
schwarzkopf.de##div.cookiedisclaimer
scottishfriendly.co.uk###cookieNotification
seloger.com##.container_cookies
severntrent.com###cookiePrompt
sgs.com##.sgsCookies
shop.asedo.se##form > .infobanner > .content > .info
shop.asedo.se##form > .infobanner
shop.pattheduck.com###FISLCC
shpock.com###cookie-modal
siba.se###cookieInformationBoxWrapper > .Web_CookiesBackround
sll.se###page-wrapper > .first-time.m-cookie-banner
sll.se###page-wrapper > .m-cookie-banner
simyo.es##.cookieAsker
sjofartsverket.se###aspnetForm > .cookie > .container
skansen.se##.cookie-area
skatteverket.se###svid12_361dc8c15312eff6fd131f8 > .alertWrp
skistar.com###fn-accept-cookies-confirmation
skoda.se###contentBox > .sa-ff-skoda.disableLexiconHighlighting.cookieCheckMainPanel
sky.com###skycom-cookie-wrapper
skynet.be###messageCookie
slate.fr##.footer_cnil
smhi.se###notification1_92875
soeren-hentzschel.at###storage-notice
softpedia.com##.jobnotice_cnt
solresor.se##.page-wrapper > .page-wrapper-holder > .jb-vacation.expanded.nutch-ignore > .row.cookie-policy-alert > div
sonera.fi##.attention-notice
soundcloud.com##.announcement
sport.es###msg-cookie
spotify.com###js-message-bar-cookie-notice
spotify.com###js-message-notice[data-name="cookieNotice"]
spotify.com##.uk-cookies
spp.se###cookieNote
stadt-koeln.de###cookie_content
stargreen.com##div[style^="color: rgb(238, 238, 238); background-color: rgb(102, 102, 51);"]
statensmedierad.se###svid10_72fa465114e7710fdc864e0
stim.se###sliding-popup > .messages
stofa.dk###cookie_collapse
stofa.dk##.cookie_footer
store.playstation.com###cookieWarningMessage
stormcreative.co.uk###storm-cookie
sundsvall.se###cookieVerificationBar
superdeporte.es##div[style*='bg_cookies.jpg']
suzuki.co.uk###privacypopup
svenskakyrkan.se##.is-active.c-cookies
svensktnaringsliv.se###warning
t-mobile.co.uk##.cookies-message-container
t-mobile.nl###TMobile_nl_WebPortals_UI_PageComponents_CookieSettingsOverlay_CookieSettingsOverlayController_OverlayRootDiv
t-mobile.nl###exposeMask
tandfonline.com##.b-body
tandfonline.com##.b-header
tanum.se##.eupopup-color-default.eupopup-container-bottom.eupopup-container
tbicardiffairport.com###cookielightbox
techsupportforum.com###ukCookiePopup
telekom.hu###app-cookie-policy
telecomitalia.it###gld_cookie_flag
telenet.be##.cookie-regulation
telia.se##.tsAttention--Info--button
terra.es###zaz-nb-plugin-cookie-message
tesco.com###cp
tesco.com###tesco_cookie_widget
theatlantic.com##.cookie-disclaimer
theguardian.com##.site-message.site-message--cookies
theiet.org###ietCookiePanel
theinquirer.net###rdm-cookie-consent
themeflood.com###gatewayBarFillstacks_in_5416_page4
thenextweb.com##.cookieConsent
thesun.co.uk###sun-cookieMessage
thesundaytimes.co.uk###tto-cookieMessage
thevitalounge.net###scnb-cookie-bar
three.co.uk###rwd-cookie-message
ticketmaster.co.uk###_evh-ric
timefy.com###nq_cnilbanner
tingsryd.se###cookie-confirmation
tiscali.it##.bannerInformativaEU
toluna.com###cookiesWarningBanner
tomshw.it###cookies-privacy
totalmoney.pl###right_widget
tre.se###ctl21 > .alert-bar
trophies-ps3.de###ingameCookie
trafikverket.se###ctl00_Content_EmptyPage_CoockieInformation_CookieContainer
trygghansa.se###header > .cookieInformation
tullverket.se###svid10_26b0417114a365251a916c
tv.nu##.\].js-site.\[.site > .\].js-cookie-notice.\[.site__partial > .zeta.desk-inset-right--enormous.text-left.text-uppercase.box--emphasize--invert.box
tvn.pl###msgLayer
tvn24.pl###msgLayer
tvn24bis.pl###msgLayer
tweakers.net##.notificationsContainer
twitch.tv##.noty_bar
tyda.se###accept-cookies-div
uk.farnell.com###mktg_Cookie_Wrap
uk.yahoo.com###applet_p_50000174
uktv.co.uk##span.cookie-notice
unblog.fr###unblcn
ungdomskort.dk###eksCookiePrompt
unionen.se##.is-open.nocontent.js-CookieCompliance.CookieCompliance
unity3d.com##.cookie-dialog
usersnap.com##.cookies-message
usine-digitale.fr###jQAlertAcceptCookie
uzletresz.hu##div[class="accept-cookie-open"]
vaggeryd.se###svid12_591c3cb9150af8f35761d3df > .fadeInUp.animated.js-cookies.v-cookie-message
vardforbundet.se###mod-cookie-information-1
vasteras.se###svid10_1dc82af414bc5e5cb714216
vasttrafik.se###WeUseCookiesDesktop
verksamt.se##.cookie-info.cookie
verksamt.se##.cookie-info.cookie > div
veuve-clicquot.com##.agegate-cookie
vg.hu##div[class="allow-cookie-stripe"]
vice.com###cookies_msg
videnskab.dk###block-videnskabdk_custom_blocks-cookie_compliance
videojug.com##.cp-alert-message
vileda.com###cookienotice-container
volvo.com##.container.main-content > div:nth-of-type(1) > .noindex > .gatewayNotification.headerNotification > .headerNotification-1
volvotrucks.com###acceptCookie
wattsindustries.com###header1_overlay2
web.skype.com##.notification.info
weebs.dk###cookie_wrapper
whatfontis.com###sticky-popup
which.co.uk###eprivacy-holder
wikia.com##.banner-notification.notify
wikomobile.com##.pop_cookies
wimp.dk##.cookie-warn
wizzo.es##.avisoCookie
www.athenagames.co.uk###cookieNotice
www.chefkoch.de###ck-cookie-statement
www.chronodrive.com###privacyBar
www.disneystore.co.uk##.dismissable-cookie-policy
www.ebuyer.com##.cookie-monster.js-cookie-monster.cookie-monster-show
www.esa.int###cookie_loc
www.netflix.com###cookie-disclosure
www.profil.at###cookieModal
www.salesforce.com###privacy-bar-bottom-container
www.santander.co.uk###_W034_Cookie_Directive_WAR_W034_Cookie_Directiveportlet_contenedor01
www.share.com###ui-cookie-policy
www.sme.sk##.js-cookie-bar
www.sosh.fr###s-cookie
www.sweclockers.com###adblockBanner
www.sweclockers.com###siteHeader > .banner
www.umu.se##.umuCookieMain
wwwapps.ups.com###cookieMsg
xe.com##.cookie-siteusage-notice
yachtpaint.com##.cookiesPro
yahoo.com###yucs-eprivacy
yell.com###cookie-overlay
zdf.de##.js-rb-attached.m-open.x-cookies.b-system-dialog
zumba.com##.privacy-policy
||assets.futurecdn.net/js/fp_cookie.js$script
||assets.futurecdn.net/js/fp_cookie.min.js$script
||consent.truste.com
||crownpaint.co.uk/scripts/crown/cookiesPopup.js$script
||delo.si/assets/delo_v3/notice/js/script.js$script
||demotywatory.pl/res/assets/user-revision12b9ff43cfde9f9f05947f9bbce45787.js$script
||fabriclondon.com/include/javascript/cookiedirective1.5.js$script
||frz.io/cnil/
||mnhn.fr/fr/cookie-eu/
||myinterrail.co.uk/shared_files/clientscripts/cms/cookie_alert1.js$script
||omgubuntu.co.uk/wp-content/plugins/omg-magnific/magnific.min.js$script
||popin.survey-xact.dk/cookies.js$script
||wkd.com.pl/cookies/cookies.js$script
! Global Filters / Scripts & Libraries
/cookie-info.js$script
/cookienotification.js$script
/cookies-enabler.min.js$script
/ti-wp-cookies-js.js$script
! cookieok.eu
||cookieok.eu/bar/js/cookieok.js$script
! https://github.com/Scott-Herbert/CookieWarning
/cookiewarning.js$script
/cookiewarning2.js$script
/cookiewarning3.js$script
/cookiewarning4.js$script
! https://github.com/creativeaura/eu-cookie-opt-in
/cookie.debug.min.js$script
/cookie.debug.js$script
! http://www.civicuk.com/cookie-law
/cookieControl-*.js$script
! http://cookiedrop.co.uk
||m1mjd9in5z2.cloudfront.net/widget.js
! http://cookieguard.eu
! http://3doordigital.com/wordpress/plugins/eu-cookie-law
/wp-content/plugins/eu-cookie-law/*$script
! Hibu Web Design
###cookieWrapper
! http://cookiesv2.publiekeomroep.nl
###npo_cc_notification
###npo_cc_notification_wrapper
! http://cookieconsent.com/
||cookieconsent.com^$third-party
! Fucking EU cookies script (https://goo.gl/pB2Ayt)
s3-eu-west-1.amazonaws.com/fucking-eu-cookies/*$script
d2z9iq901qkqk8.cloudfront.net/*$script
/cookieCompliance.js$script
! Google (Requires "Allow some non-intrusive advertising" to be unchecked.)
###epbar
##.gb_bc.gb_ac.gb_g
##.gb_md.gb_gc.gb_g
##.gb_tb.gb_wb.gb_Ia
##.gb_wb.gb_ib.gb_Ka
##.gb_xb.gb_jb.gb_La
##.gb_Fb.gb_pb.gb_Ra
! Johnston Press
###euCookiesQuestion
! De Telegraaf
tmgonlinemedia.nl/consent/script/consent.js$script
! CookieAssistant.com
||app.cookieassistant.com/widget$script
! Iubenda Script
cdn.iubenda.com/cookie_solution/iubenda_cs.js
###iubenda-cs-banner
! Silktide Script
/assets.cookieconsent.silktide.com/*$script
/s3.amazonaws.com/cc.silktide.com/*$script
###cc-notification > #cc-notification-wrapper
! Zomex Script
/eucookielaw.js$script
###eucookie
! cookie-script.com
||cookie-script.com/s$script
###cookiescript_injected
! 'Cookie Message' WordPress Plugin
! https://wordpress.org/plugins/cookie-message/
##.cm-message
! Google Blogspot
*.blogspot.*/js/cookiechoices.js$script
! Others
###aboutCookieUsageBox
###AvisoCookieslaw
###alert-cookie
###accept-cookie
###block-cookie_policy-0
###ca_banner
###capaAvisoPoliticaCookies_superior_mensajes
###cartelcookielegal
###catapult-cookie-bar
###cccwr
###confirm_cookie_use
###conteneurCookies
###cookie
###coockiechoice
###cookie-acceptation-popup
###cookie-alert
###cookie-banner
###cookie-bar
###cookie-compliance
###cookie-compliance-bottom
###cookie-consent
###cookie-consent-bar
###cookie-icon
###cookie-info-bar
###cookie-information
###cookie-law
###cookie_law
###cookie-law-bar
###cookie-law-compliance
###cookie-law-consent-section
###cookie-law-info-bar
###cookie-legal-notice
###cookie-message
###cookie-message-container
###cookie-notice
###cookie-notification
###cookie-notification-wrapper
###cookie-overlay-wrapper
###cookie-policy
###cookie-policy-accept-bar
###cookie-policy-banner
###cookie-policy-container
###cookie-policy-notice
###cookie-warn
###cookie-warning
###cookie-wrapper
###cookies-alert
###cookie_banner
###COOKIE_BANNER
###cookie_banner_container
###cookie_box
###cookie_info
###cookie-law-container
###cookie_message
###cookie_msg
###cookie_notice
###cookie_panel
###cookie_policies
###cookie_policy
###cookie_privacy_info_bar
###cookie_warning
###cookieAcceptPos
###cookieBanner
###cookiebanner
###cookieBar
###cookiebar
###cookieBox
###cookieChoiceInfo
###cookieCompliancyModal
###cookieConsent
###cookieconsent
###cookieConsentBar
###CookieConsentDiv
###cookieContainer
###cookieControl
###cookiecontrol_notice
###cookiedialog
###cookieDisclaimer
###cookieDiv
###cookieInfo
###cookieinfo
###CookieInfo
###cookies-information > .innerDiv
###cookieinfobox
###cookieInfoBox
###cookieInfoDiv
###cookieInfoLayer
###cookieInformerBooklet
###cookielaw
###cookieLaw
###cookieMessage
###cookieMessageBox
###cookieMessageContainer
###cookieMessageWrapper
###cookieMsg
###cookienotif
###cookienotification
###cookieNotification
###cookiePolicy
###CookiePolicy
###cookiePolicy-layer
###cookiePolicyBar
###cookiepolicyContainer
###cookiePolicyContainer
###cookiePolicyNotification
###cookiePolicyWrapper
###cookies
###cookies-banner
###cookies-information
###cookies-panel
###cookies_container
###cookieNotice
###cookies_notifier
###cookies_policy
###cookies_warning
###cookiesdirective
###cookiesInfo
###cookiesPop
###cookiesPopup
###cookiestatement
###cookietable
###cookiesWarning
###cookieView
###cookieWarning
###cookiewarning
###ctl00_Cookies_CookieContainer
###cw-cookieInfo
###desktop-cookie-disclosure
###e-privacy-message
###eu-cookie
###eu-cookie-compliance
###eu-cookie-consent
###eu-cookie-notifier
###eu-cookie-notify-wrap
###eu_cookie
###eu_cookies
###eu_cookies_overlay_content
###EUCookie
###euCookie
###euCookieDirective
###euCookieBar
###ePrivacyDisclaimer
##.delayed-module.alert-cookie.alert
##.fucking-priority.fucking-eu-cookies
###EUDirectiveCookiePanel
###gn-cookie-accept
###headerTopBarMessageCookies
###layer_cookie
###pnlCookieBanner
###pnlCookieNotice
###pnlCookieWarning
###politicaCookies
###privacyPolicyLayerN
###p_ciInner
###p_ciBtn
###site_msg_cookie
###site-we-use-cookies
###sliding-popup
###svtCookieInformationContainer
###stampenCookieInformationContainer
###uecookies
###usrConsent
###warning_cookie
###widget-vrtcookiebalk
###ww-cookie-information
##.accept-cookies
##.alert-dismissible.cookie_alert.alert
##.alertCookie
##.cc_banner-wrapper
##.cc_container
##.cc-cookies
##.contenidoAvisoPoliticaCookies
##.cookie-accept-overlay
##.cookieAdvice
##.cookiebox
##.cookieBox
##.cookie-banner
##.cookie-bar
##.cookie_bar
##.cookie-block
##.cookie-consent
##.cookie-disclaimer
##.cookie-info
##.cookie-message
##.cookie-box
##.cookielaw
##.cookie-policy
##.cookie-policy-banner
##.cookie-policy-notice
##.cookie-popup
##.cookie-warning
##.cookie-wrapper
##.cookie_privacy_info_bar
##.cookieAccept
##.cookiebanner
##.cookieBanner
##.CookieBanner
##.cookieBar
##.cookiebar
##.cookieconsent-popup
##.cookieControl
##.cookieInfo
##.cookieInformation