-
Notifications
You must be signed in to change notification settings - Fork 639
/
cookies_specific.txt
5095 lines (5095 loc) · 333 KB
/
cookies_specific.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
!#######################################################
!######### Rules for specific sites ####################
!#######################################################
! https://github.com/AdguardTeam/AdguardFilters/issues/25529
! Rules to block cookie notice on "amp" websites on Safari
!+ PLATFORM(ios, ext_safari, ext_android_cb)
google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws###amp-cookie-hint
!
! https://github.com/AdguardTeam/AdguardFilters/issues/54351
google.ad,google.ae,google.al,google.am,google.as,google.at,google.az,google.ba,google.be,google.bf,google.bg,google.bi,google.bj,google.bs,google.bt,google.by,google.ca,google.cat,google.cd,google.cf,google.cg,google.ch,google.ci,google.cl,google.cm,google.cn,google.co.ao,google.co.bw,google.co.ck,google.co.cr,google.co.id,google.co.il,google.co.in,google.co.jp,google.co.ke,google.co.kr,google.co.ls,google.co.ma,google.co.mz,google.co.nz,google.co.th,google.co.tz,google.co.ug,google.co.uk,google.co.uz,google.co.ve,google.co.vi,google.co.za,google.co.zm,google.co.zw,google.com,google.com.af,google.com.ag,google.com.ai,google.com.ar,google.com.au,google.com.bd,google.com.bh,google.com.bn,google.com.bo,google.com.br,google.com.bz,google.com.co,google.com.cu,google.com.cy,google.com.do,google.com.ec,google.com.eg,google.com.et,google.com.fj,google.com.gh,google.com.gi,google.com.gt,google.com.hk,google.com.jm,google.com.kh,google.com.kw,google.com.lb,google.com.ly,google.com.mm,google.com.mt,google.com.mx,google.com.my,google.com.na,google.com.nf,google.com.ng,google.com.ni,google.com.np,google.com.om,google.com.pa,google.com.pe,google.com.pg,google.com.ph,google.com.pk,google.com.pr,google.com.py,google.com.qa,google.com.sa,google.com.sb,google.com.sg,google.com.sl,google.com.sv,google.com.tj,google.com.tr,google.com.tw,google.com.ua,google.com.uy,google.com.vc,google.com.vn,google.cv,google.cz,google.de,google.dj,google.dk,google.dm,google.dz,google.ee,google.es,google.fi,google.fm,google.fr,google.ga,google.ge,google.gg,google.gl,google.gm,google.gp,google.gr,google.gy,google.hn,google.hr,google.ht,google.hu,google.ie,google.im,google.iq,google.is,google.it,google.je,google.jo,google.kg,google.ki,google.kz,google.la,google.li,google.lk,google.lt,google.lu,google.lv,google.md,google.me,google.mg,google.mk,google.ml,google.mn,google.ms,google.mu,google.mv,google.mw,google.ne,google.nl,google.no,google.nr,google.nu,google.pl,google.pn,google.ps,google.pt,google.ro,google.rs,google.ru,google.rw,google.sc,google.se,google.sh,google.si,google.sk,google.sm,google.sn,google.so,google.sr,google.st,google.td,google.tg,google.tk,google.tl,google.tm,google.tn,google.to,google.tt,google.vg,google.vu,google.ws###taw > div[style^="padding:"] > div.med + div.RDvo0e
!
! For the sites with '$generichide' exclusions
tio.ch##.as-oil
sme.sk##.js-cookie-bar
nfhost.eu,nfhost.me,nfhost.xyz###cookie-law-banner
synology-forum.de,forum.blackhatindia.ru,xenforo.pk,androidrepublic.org,nulledteam.com,forum.miuiturkiye.net,leakforums.co##.notice--cookie
gametimers.it###eu-cookie-law
hamburg.de###cookieChoiceInfo
futurezone.de,waz.de,derwesten.de,abendblatt.de##.cookie-note
xataka.com###cookies-overlay
isolaillyon.it,gametimers.it,yalujailbreak.net###cookie-notice
chimica-online.it###cookieChoiceInfo
strunz.com###v-cookielaw
!
!#if (adguard_app_ios || adguard_ext_android_cb)
||consent.*.de^$other
!#endif
!
! common name
! ##.cookies
homepedia.com.br,technolove.ru,itkkit.ru,leroymerlin.com.br,calameo.com,planeta.ru,orientsigorta.com.tr,play.pl,bocchi.com.tr,belarus24.by,compendium.com.ua,city-story.ru,gartic.io,telekom-dienste.de,iqos.com,d3o.com,dnews.dn.ua,befirst.info,eblocker.com,parapolitika.gr,makandracards.com,webtekno.com,2plus2.ua,unian.info,unian.net,unian.ua,cinemacity.hu,pepco.hu,pepco.pl,pepco.eu,pepco.sk,pepco.cz,pepco.ro,pepco.hr,pepco.lt,pepco.si,pepco.lv,pepco.ee,pepco.bg,1plus1.ua,otus.ru,astonmartin.com,sapphiretech.com,cbreaker.net,glavred.info,abarta.pl,alo.com.pl,universiteitleiden.nl,pap.pl,fly4free.pl,store.hmv.com,editions-delcourt.fr,square-enix-games.com,capcom-germany.de,global.astonmartin.com,crytek.com,tomorrow.one,vypocitejto.cz,rozklad.pkp.pl,rozklad-pkp.pl,aliorbank.pl,macpaw.com,polsatsport.pl,meczyki.pl,dhosting.com,dhosting.pl,ostrog.com,godealla.pl,diamante-wear.com,twinings.co.uk,moviepilot.de,euronics.it,amnesty.org,glavred.info,urtekram.com,ecuestre.es,betchannel.fr,scamner.com,mountainbike.es,feelunique.com,flooxer.com,tui.fr,comparateur-energie.be,sacsirlari.com,omaweetraad.nl,salusi.nl,uptodown.com##.cookies
! ##.cookie
tdlorien.ru,smart-gadget.ru,elawin.com,coolblue.nl,nspk.ru,dalmatinskiportal.hr,samocat.net,bayragidevral.com,the-village.ru,roxroyal.com,model-kartei.de,sinpas.com.tr,takeda.com,sepas.com.tr,gamertech.hu,bevachip.hu,gamecitycorner.hu,gamecity.hu,nudo.com.tr,erisun.com.tr,erislergida.com.tr,miluni.com.tr,gelbe-liste.de,funbou.com,magdeburger.com.tr,zrzutka.pl,kioskla.co,pyur.com,why-tech.it,ilike.pet,hhv.de,maxcamping.de,mariin.ru,hiya.com,wall-art.de,wifire.tv,hyundai.ru,bb.lv,scotchwhisky.com,reisebank.de,rtl.de,computacenter.com,reyden-x.com,persil.de,modhoster.de,bug.hr,kigili.com,buddhism.ru,natwest.com,crowdfinder.be,snob.ru,stib-mivb.be,englishhome.com,commuterclub.co.uk,colliers.com,novmak.com,gugik.gov.pl,eibach.de,oreopeople.com,eishockeynews.de,nature.com,1mobil.hu,tvpaprika.ro,tvpaprika.cz,tvpaprika.hu,minimaxtv.rs,minimaxcz.tv,minimaxro.tv,minimaxtv.si,minimax.hu,docmorris.de,leroymerlin.pl,malavida.com,prodir.com,dw.com,joautok.hu,redditinc.com,oogfonds.nl,soft32.com,buffalo.de,donaukurier.de,le1hebdo.fr,turbo-c.soft32.com,juridischloket.nl,statusbrew.com,zumnorde.de,rbs.co.uk,okayfreedom.com,statarea.com,werkenbijbdo.nl##.cookie
! ##.b-cookie
machotube.tv,icegay.tv,gayporno.fm,fitnessbar.ru,skillbox.ru,gaymensextube.com,igayvideos.tv,findgaytube.com,onlydudes.tv,icegaytube.tv,machogaytube.com,gogaytube.tv,good-gay.tv,shemaleporntube.tv,boy18tube.com,goldgay.tv,xgaytube.tv,gayfuckporn.tv,xlgaytube.tv,me-gay.com,gaysuperman.com##.b-cookie
! ##.sliding-popup-bottom
europol.europa.eu,zuerich.com,ziraatkatilim.com.tr,sandoz.com.tr,biorxiv.org,unicef.org,lexcellence.swiss,medindia.net,radiosaw.de,total.com,nutella.com,prestashop.com,beko.fr,weightwatchers.com,europapark.de,ovomaltine.de,muhabirce.de,dtm.com,rae.es,avvir.no,questionmark.com,paladinomedia.com,ligainsider.de,kodi.tv,veggiepeople.org,worldpressphoto.org,syfy.com,orange.be,handballerd.hu,nationalinterest.org,sonntagsblatt.de,helsinginkaupunginorkesteri.fi,domradio.de,topuniversities.com,piaggiogroup.com,asobostudio.com,stainlessgames.com,reinisfischer.com,nnieuws.be,thuisarts.nl##.sliding-popup-bottom
! ###gdpr
fonts2u.com,otzyvua.net,velonews.com,wikihow.tech,bagdatbaharat.com.tr,escortbook.com,looper.com,fromdoctopdf.com,learnersdictionary.com,spanishdict.com,merriam-webster.com,digi24.ro,antena3.ro,wikihow.com.tr,wikihow.cz,wikihow.it,wikihow.jp,wikihow.vn,wikihow.com,mobil.se,digisport.ro,periscope-solutions.com###gdpr
! ##.gdpr
paracevirici.com,inkstonenews.com,hibboux.com,glossika.com,bleachmx.fr,fuser.com,nytimes.com,bagdatbaharat.com.tr,foreignaffairs.com,tagmp3.net,arkadszeged.hu,basemark.com,eonline.com,gogoro.com,money.yandex.ru,sydsvenskan.se,theatlas.com##.gdpr
! ##.gdpr-banner
tutonaut.de,porngameshub.com,anaconda.com,nutritionix.com,kaspersky.com,smugmug.com,feedingamerica.org,carthrottle.com,intercom.com,mmajunkie.com,thebiglead.com,visitnapavalley.com,wordpress.com##.gdpr-banner
! ##.ppr_priv_document_cookie_banner
tripadvisor.be,tripadvisor.ca,tripadvisor.co,tripadvisor.co.id,tripadvisor.co.uk,tripadvisor.com,tripadvisor.com.au,tripadvisor.com.br,tripadvisor.com.gr,tripadvisor.com.mx,tripadvisor.com.my,tripadvisor.com.sg,tripadvisor.com.tr,tripadvisor.com.tw,tripadvisor.es,tripadvisor.fr,tripadvisor.ie,tripadvisor.in,tripadvisor.it,tripadvisor.jp,tripadvisor.net,tripadvisor.nl,tripadvisor.se,tripadvisor.de##.ppr_priv_document_cookie_banner
! ##body > div#lithium-root > div[role="button"]
tripadvisor.be,tripadvisor.ca,tripadvisor.co,tripadvisor.co.id,tripadvisor.co.uk,tripadvisor.com,tripadvisor.com.au,tripadvisor.com.br,tripadvisor.com.gr,tripadvisor.com.mx,tripadvisor.com.my,tripadvisor.com.sg,tripadvisor.com.tr,tripadvisor.com.tw,tripadvisor.es,tripadvisor.fr,tripadvisor.ie,tripadvisor.in,tripadvisor.it,tripadvisor.jp,tripadvisor.net,tripadvisor.nl,tripadvisor.se,tripadvisor.de##body > div#lithium-root > div[role="button"]
! ###cross-dialog
dziennikbaltycki.pl,dzienniklodzki.pl,dziennikpolski24.pl,dziennikzachodni.pl,echodnia.eu,expressbydgoski.pl,expressilustrowany.pl,gazetakrakowska.pl,gazetalubuska.pl,gazetawroclawska.pl,gk24.pl,gloswielkopolski.pl,gol24.pl,gp24.pl,gratka.pl,gs24.pl,katowice.naszemiasto.pl,kurierlubelski.pl,motofakty.pl,naszemiasto.pl,nowiny24.pl,nowosci.com.pl,nto.pl,polskatimes.pl,pomorska.pl,poranny.pl,sportowy24.pl,strefaagro.pl,strefabiznesu.pl,stronakobiet.pl,telemagazyn.pl,to.com.pl,wspolczesna.pl###cross-dialog
! ##.cookieinfo
nomoreransom.org,artistcamp.com,sbp.nspk.ru,parfumo.net,vqtube.com,engelsiztemizlik.com,expressfaucet.com,seirsanduk.online,oettinger.de,tegut.com,my.viewranger.com,starfaucet.net,entwicklerheld.de,seirsanduk.us,cezeta.com,getpaidtoshare.money,gsc-game.com,gta-gorevleri.com,hometurkey.com,indiansexvideos.porn,kinonet.pl,mtled-novels.com,pitwalk.de,praxis-jugendarbeit.de,rambox.pro,reversinglabs.com,sacheats.com,shadersmod.com,uploadcloud.pro##.cookieinfo
! ###didomi-host
elmundo.es,standaard.be,closermag.fr,elnortedecastilla.es,elpais.com,ibtimes.co.uk,letelegramme.fr,mallorcamagazin.com,mitele.es,newsweek.com,nicematin.com,periodicodeibiza.es###didomi-host
! ###optanon
allianz.de,easybib.com,st.com,mauijim.com,citationmachine.net,idevice.ro,tagheuer.com,adevarul.ro,arris.com,beinsports.com,cnn.com,globalscape.com,hotnews.ro,lorealparis.rs,oxouk.com,salesforce.com###optanon
! ##div[aria-label="cookieconsent"]
ignshop.hu,download.pixelexperience.org,waterdrop.com,exvital.de,mobile01.com,duckduckgo.merchmadeeasy.com,bear-family.com,r-pur.com,wstream.video##div[aria-label="cookieconsent"]
! ###cookie-box
teknobird.com,ultrabilgi.com,buneymis.net,teknoxhaber.com,bilgilobi.com,aksaelektrik.com.tr,ergo.de,fosforludusunceler.com,kirtkirtla.com,sonaktuel.com,muglaweather.com,denizcilikbilgileri.com,filmonerileri.org,wblogy.com,dnschecker.org,krombacher.de###cookie-box
! ##.avia-cookie-consent
sosort.org,bogaziciyonetim.istanbul,drivers.plus,readymade-furniture.de,schieb.de,my-digital-home.de,celesta-schiedmayer.de,sheerid.com,vantec.de,anlegen-in-immobilien.de##.avia-cookie-consent
! ##.bs-wrap-gdpr-law
techcodex.com,a7la-home.com,bizesoral.com,biokadar.com,gazetemag.com,medyajans.com,ogrenio.com,wpgurme.com,cgtips.org,nereye.com.tr,coursedrive.org,economiasc.com,windows101tricks.com,software-on.com,adslayuda.com,enterinit.com,howtofixwindows.com,konupara.com,prajwaldesai.com,hackintosh.computer,derstarih.com,letsgetapps.co,linehaber.com.tr,pcbilimi.com,zillowtech.com##.bs-wrap-gdpr-law
! 'contributor.google.com' cookie consent
ehitusfoorum.com,eksiup.com,monwindows.com,paradurumu.com,browserhow.com,posta.com.tr,odatv4.com,cumhuriyet.com.tr,yenicaggazetesi.com.tr,recipesnk.com,motornk.com,worldmangas.com,mangalong.com,mistermanga.com,anitoc.com,enginepassion.com,thepostmillennial.com,androidpolice.com,mangaready.com,alvinet.com,abbreviations.com,lectortmo.com,openshot.org,fanatik.com.tr,hurriyetdailynews.com,hurriyet.com.tr,iflscience.com,punchng.com,zacks.com,kanald.com.tr,digitbin.com,milliyet.com.tr,doodle.com,gamerant.com,screenrant.com,linuxsmartphones.com,liliputing.com,ioccasion.fr,watchgeneration.fr,macg.co,igen.fr,wordreference.com,letsrun.com,lesfrontaliers.lu,interpals.net,mediafire.com,feber.se,overclock.net,phonearena.com,skyscrapercity.com,mtb-news.de,geekwire.com,bimmerfest.com,accuweather.com#$#body div.fc-consent-root { display: none !important; }
ehitusfoorum.com,eksiup.com,monwindows.com,paradurumu.com,browserhow.com,posta.com.tr,odatv4.com,cumhuriyet.com.tr,yenicaggazetesi.com.tr,recipesnk.com,motornk.com,worldmangas.com,mangalong.com,mistermanga.com,anitoc.com,enginepassion.com,thepostmillennial.com,androidpolice.com,mangaready.com,alvinet.com,abbreviations.com,lectortmo.com,openshot.org,fanatik.com.tr,hurriyetdailynews.com,hurriyet.com.tr,iflscience.com,punchng.com,zacks.com,kanald.com.tr,digitbin.com,milliyet.com.tr,doodle.com,gamerant.com,screenrant.com,linuxsmartphones.com,liliputing.com,ioccasion.fr,watchgeneration.fr,macg.co,igen.fr,wordreference.com,letsrun.com,lesfrontaliers.lu,interpals.net,mediafire.com,feber.se,overclock.net,phonearena.com,skyscrapercity.com,mtb-news.de,geekwire.com,bimmerfest.com,accuweather.com#$#body { overflow: visible !important; }
! in case if using just "overflow" causes that there is additional scrollbar at the bottom
thegamer.com,ortsdienst.de,cbr.com,makeuseof.com#$#body div.fc-consent-root { display: none !important; }
thegamer.com,ortsdienst.de,cbr.com,makeuseof.com#$#body { overflow-y: auto !important; }
!
encuentra24.com,krone.at##body div.fc-consent-root
! ###sliding-popup
jneurosci.org,medrxiv.org,novartis.com.tr,royal.uk,transcom.com,netcologne.de,belltower.news,bigfm.de,click.ro,demokrata.hu,emma.de,gysev.hu,humanite.fr,ikgastarten.nl,la7.it,london.gov.uk,mavcsoport.hu,mcdonalds.at,mcdonalds.it,mises.org,mnm.hu,musescore.com,nbcsports.com,pnas.org###sliding-popup
! Sourcepoint cookie consent
theguardian.com##div[id^="sp_message_"]
vorname.com,avclub.com,clickhole.com,deadspin.com,gizmodo.com,jalopnik.com,jezebel.com,kotaku.com,lifehacker.com,splinternews.com,theinventory.com,theonion.com,theroot.com,thetakeout.com,motorcyclenews.com,computerbild.de,techadvisor.co.uk,forum.notebookreview.com,computerworld.com,skysports.com#$#div[id^="sp_message_"] { display: none !important; }
techadvisor.co.uk,forum.notebookreview.com,computerworld.com,skysports.com#$#div[class^="sp_veil"] { display: none !important; }
techadvisor.co.uk,forum.notebookreview.com,computerworld.com,skysports.com#$#body { overflow: visible !important; }
vorname.com,jezebel.com,theonion.com,theinventory.com,thetakeout.com,theroot.com,avclub.com,deadspin.com,lifehacker.com,computerbild.de,techbook.de,lvz.de,sueddeutsche.de,gutefrage.net,shieldsgazette.com,spieletipps.de,ekstrabladet.dk,focus.de,demorgen.be,volkskrant.nl,trouw.nl,parool.nl,techadvisor.co.uk,forum.notebookreview.com,computerworld.com,skysports.com#$#html.sp-message-open { overflow: visible !important; position: static !important; margin-top: 0!important; }
!
/wrapperMessagingWithoutDetection.js$script,domain=meineorte.com|tecchannel.de|itpro.co.uk|tvnow.at|tvnow.de|netdoktor.de|computerwoche.de|the-sun.com|thescottishsun.co.uk|thesun.co.uk|thesun.ie|handelsblatt.com|macwelt.de|lancashiretelegraph.co.uk|idealo.de|lvz.de|myhomebook.de|travelbook.de|4players.de|n-page.de|planet3ds.de|planetds.de|planetgameboy.de|planetswitch.de|planetvita.de|playstationportable.de|portablegaming.de
/wrapperMessagingWithoutDetection.*.js$script,domain=netzwelt.de
!
!
oriflame.ru##.ui-cookie-notification
||wmv-dresden.de/ccm*/public/ccm*.js
app.element.io##.mx_AnalyticsToast
m.soundcloud.com##div[class^="CookieBanner_"]
facebook.com##div[data-cookiebanner="banner"]
detmir.ru#?##app-container > div[class] > main ~ div[class]:has(> div[class] > p > a[href="/pages/cookies/"])
video-shoper.ru##.wrap_cookie_site
vstroyka-solo.ru###cookieNoticePopup
auchan.ru##.css-hxe50m
krasnoeibeloe.ru#?##age_popup_container > div.popup_bottom_bl > div.popup_bottom_bl__text:contains(файлы cookie)
stiltv.ru###oct-policy
promobit.com.br##.pr-cookie
alternative.me###footer > div[style^="position: fixed; bottom:"][style*="z-index:"]
giromarilia.com.br##.footer-lgpd
kalunga.com.br###divCookiePoliticaPrivacidade
uol.com.br##.banner-lgpd-consent-container
holodilnik.ru##.alert-compliance
shoptime.com.br##.footer-lgpd-opened
telecineplay.com.br##div[class^="StyledCookiebanner__"]
flex-tools.com#$#.cookieBar { display: none !important; }
flex-tools.com#$#body { overflow: auto !important; }
vtimes.io#$#body { position: unset !important; }
vtimes.io#$#div[class^="cookies-modal"] { display: none !important; }
themagger.com###cookie-rules-top
ebookfriendly.com###ecmr
itninja.com##.ccpa-notification
chocolatey.org###cookieNoticeAlert
ewf.h1.pl###tytul_rodo
vangraaf.com##.pc-cookie-bar
clausnehring.com,alttab.net#$##cookie-law-info-bar { display: none!important; }
clausnehring.com,alttab.net#$#.cli-modal-backdrop { display: none!important; }
clausnehring.com,alttab.net#$#body { overflow: visible!important; }
hotelier101.com##.alert-dismissible[data-notify-position="bottom-right"]
menti.com##.m-b.m-ci.m-f.m-g.m-h.m-cj.m-ao.m-i.m-j.m-k.r-box
highwayoutlet.com.tr###cookie-consentt
doganholding.com.tr##._cookie
pt.com.tr##.cp
maksimumkitap.com###classCookie
softonic.com#$##didomi-host { display: none!important; }
softonic.com#$#body { overflow: visible!important; }
alkapida.com##.privacy-consent
bim.com.tr##.cookie-window-select
saraiva.com.br##.sy-lgpd
kocailem.com##.cookie-message-box
cissamagazine.com.br##.informativo-lgpd
stockwatch.pl##.cppa
gebe.com###cookiePolicyBox
digitalocean.com##body > div[class^="_panel_"]:last-child > div[class^="_wrap_"]
spbtvonline.ru###agreeC
babel.ua##.js-cookies-modal
medicina.ru##.popup--policy-absolutely
xhamsterpremium.com##.cookie-policy-agree
public.govdelivery.com###gdpr-cookie-policy
bombora.ru##.cookie-tooltip
deltainternet.net.br###div-cookie
drawnames.co.uk###cookie-backdrop
meupc.net##.cc-notification
calovo.de##.ga-opt-in
nestoria.com.br##.wrap-cookies-desktop
xhamsterlive.com##.cookies-reminder
lifepointspanel.com#$#.modal-backdrop { display: none !important; }
lifepointspanel.com#$##cookie-modal-box { display: none !important; }
lifepointspanel.com#$#body.modal-open { overflow: auto !important; padding-right: 0 !important; }
bookvoed.ru###cookieNoticeUser
ayvaonline.com##.cookies-box
energiedirect.nl###wall
altium.com##.altium-privacy-bar
drugs.com##.ddc-modal
drugs.com##.ddc-overlay
krovat.ru###cookies-using-message
shop.apotal.de##footer::after
withinnigeria.com##.bs-gdpr-law
ggbet.ru##.info-message--cookie-agreement
french.peopledaily.com.cn###shengmingTip
gry.lotto.pl###cookie__note
lotto.pl##.cookie-wall
lotto.pl#$#body { overflow: auto !important; }
lotto.pl#$#.privacy-popup { display: none !important; }
holidu.at,holidu.ch,holidu.ie,holidu.ca,holidu.com.au,holidu.co.nz,holidu.fr,holidu.be,holidu.nl,holidu.es,holidu.dk,holidu.it,holidu.se,holidu.no,holidu.pl,holidu.pt,holidu.com.br,holidu.com.mx,holidu.co.uk,holidu.de,holidu.com###cookie-selector
neonet.pl##div[class^="cookieBlockCss-"]
mobilenet.cz##.sys-alert
||privacy.selbst.de^
||baseendpoint.stern.de^
leaflets.kaufland.com##.c-cookieconsent
bbc.com##header[role="banner"] > div[dir="ltr"][class*="-Wrapper "]:not([class*="-Banner"])
nudiejeans.com##div[aria-label="Cookie bar"]
peek-cloppenburg.at#$#.cw-modal-overlay { display: none !important; }
peek-cloppenburg.at#$#.cookie-wall { display: none !important; }
peek-cloppenburg.at#$#body { overflow: auto !important; position: unset !important; }
oriflame.com#$#.js-cookie-notification { display: none !important; }
pinterest.*##.outerCookieBar
trust.com###cookie-settings
patek.com#$#nav.main_navigation.cookies { top: 0 !important; }
patek.com#$##cookies_disclaimer { display: none !important; }
seahair.ru##.flat-cm-cookie
||cmp.7sur7.be^$domain=7sur7.be
||cmp.dpgmedia.be^$domain=7sur7.be
wix.com##div[data-hook="ccsu-banner-wrapper"]
modacruz.com##div[class="_wi _Y"]
strato.de#$#.consent { display: none !important; }
strato.de#$#.noscroll { overflow: visible !important; }
sprecords.pl###st_notification_1
tierchenwelt.de##div[class^="kick-kcm-"]
lizenzfuchs.de##div.js--overlay.is--closable
eplan.de##body::before
eplan.de#$#body { overflow: auto !important; }
eplan.de#$##cookie_container { display: none !important; }
upacjenta.pl##.cookies-box-info
canarias7.es##.voc-select-tooltip
novelcool.com###protocol_cookie_box
saglikgelsin.com###panel-kvkk
kutahyalilar.com.tr###cookie_iagree
mail.de###euccBanner
funduk.ua##.cookie_inform
leuchtmittelmarkt.com##.eightworks-cookie-consent-plus
engelvoelkers.com#$#html { overflow: auto !important; }
engelvoelkers.com#$#body { overflow: auto !important; }
engelvoelkers.com#$#.cookie-consent-dialog-container { display: none !important; }
blog.lacoste.com.tr##.thb-cookie-bar
app.wakingup.com##body > #root > div[style="opacity: 1;"] + div[class^="sc-"][style^="opacity:"][style*="transform:"]
wakingup.com##body > div:not([class]):not([id]) > div[class^="styles__Container-sc-"][style^="opacity:"][style*="transform:"]
digitalland.de###ccm
musicstore.com##.footer-cookie-directive
airtransat.com,transat.com##.TS-CookieLegalNotice
gdata-software.com,gdatasoftware.com###gd-cookie-consent
premium-publishing.ru##.disclame_block
buffer.com##div[class^="style__BannerContainer-"]
games2gether.com##.system-notification-container-content.privacy
games2gether.com##.system-notification-container-content.cookies
@@||cyberleninka.ru/skyadright.js
cyberleninka.ru#%#//scriptlet('prevent-requestAnimationFrame', '/getElementById/')
tele2.nl#$##cookiePopup { display: none !important; }
tele2.nl#$##cookiePopup + .modal-backdrop { display: none !important; }
tele2.nl#$#body.modal-open { overflow: auto !important; padding-right: 0 !important; }
ecas.ec.europa.eu###cookie-law-consent
m.2gis.ru##div[data-n="wat-banner-privacy-policy"]
2gis.ru#?##root > div[dir="ltr"] > div[class] > div[class]:has(> footer > div[class] > div[class] > p[class] > span > a[href="https://law.2gis.ru/privacy"])
gymgrossisten.no##.cookie-message-banner
semanticscholar.org##.copyright-banner
computeruniverse.net###gdpr_cookie_notice
hexagongeospatial.com###modal-cookie
||investor-relations.lufthansagroup.com/typo3temp/assets/compressed/cookieman
otto-office.com###top-notification_accept-machmichweg-guidelines
otto-office.com##.ooB-black-overlay-machmichweg
inksystem.biz##.fixed_bottom
kvn.ru##.disclame_block
casper.com.tr###allTopTooltip
key4biz.it###consent-toolbar
bedienungsanleitu.ng##body .cookienotice
||goodram.com/wp-content/plugins/enua-privacy-policy/script.js
gotomalls.com##.eula-popup
gcorelabs.com##.confirmed_cookie
ruhosting.gcorelabs.com##.i-warning-banner__msg
epdf.pub###EPDFPUB_cookie_box
synology.com##.syno_cookie_element
qnbfinansbank.enpara.com##.enpara-web-cookie
airdroid.com##.mode-cookie-tip
hootsuite.com##.gdpr-disclaimer
infostrow.pl,halowawa.pl#$##rodo-modal { display: none !important; }
infostrow.pl,halowawa.pl#$#body.modal-open { overflow: auto !important; padding-right: 0 !important; }
rexel.de#$#div[class^="cookie-notification"] { display: none !important; }
rexel.de#$#.modal-backdrop { display: none !important; }
rexel.de#$#body { overflow: visible !important; padding-right: 0 !important; cursor: auto !important; }
sanarmed.com###__next > div[class^="styles__WrapperCTA-"]
melectronics.ch##.iA-DTEA
prittworld.ch##.cookieacceptance__base
dijitalders.com###CerezUyari
airbnb.az,airbnb.co.id,airbnb.ba,airbnb.cat,airbnb.cz,airbnb.me,airbnb.dk,airbnb.de,airbnb.at,airbnb.ch,airbnb.com.ee,airbnb.com.au,airbnb.ca,airbnb.gyairbnb.co.in,airbnb.ie,airbnb.co.nz,airbnb.com.sg,airbnb.ae,airbnb.co.uk,airbnb.com.ar,airbnb.com.bz,airbnb.com.bo,airbnb.cl,airbnb.co.cr,airbnb.com.ec,airbnb.com.sv,airbnb.es,airbnb.com.gt,airbnb.com.hn,airbnb.com.co,airbnb.mx,airbnb.com.ni,airbnb.com.pa,airbnb.com.py,airbnb.com.pe,airbnb.co.ve,airbnb.be,airbnb.fr,airbnb.co.za,airbnb.is,airbnb.it,airbnb.lv,airbnb.lt,airbnb.hu,airbnb.pl,airbnb.com.mt,airbnb.com.my,airbnb.nl,airbnb.no,airbnb.com.br,airbnb.pt,airbnb.com.ro,airbnb.si,airbnb.rs,airbnb.fi,airbnb.se,airbnb.com.ph,airbnb.com.vn,airbnb.com.tr,airbnb.gr,airbnb.ru,airbnb.com.ua,airbnb.am,airbnb.co.in,airbnb.co.kr,airbnb.jp,airbnb.com.hk,airbnb.com.tw##div[data-testid="main-cookies-banner-container"]
atlasobscura.com#$##cookie-consent-modal { display: none !important; }
mobiflip.de###cookieConsentModal
kassa.yandex.ru##.cookie-policy__card
faberlic.com##.cookies-accepted
economictimes.indiatimes.com##.cookie_stng
wohnglueck.de##section[data-topic="consent"]
qz.com#?##main + div[class]:has(> div[class] > div[class] > p > a[href^="/about/privacy-policy"])
dailymotion.com##div[class^="TCF2Banner__container__"]
tutu.travel##.style__disclaimer
cifraclub.com.br###js-cookie-policy
pegacifra.com.br##.banner-rodape-cifra
band.uol.com.br,cifrasweb.com.br##.banner-lgpd-consent-container
pdfforge.org##div[class^="gdpr-cookieconsent-"]
salamisound.de###eucookielawbox
zaochnik.com##.agree
telegramchannels.me###accept-cookies
ilksesgazetesi.com###my-welcome-message
||twnmm.com/js/fr_ca/r*/web/modules/woahbar.js$domain=meteomedia.com
||cdn.idealo.com/storage/cmp/consent-management.js
wyndhamhotels.com##div[aria-label="Consent Banner"]
cointelegraph.com.br##.bottom-zone
glingerie.com.tr##div.show_in_footer
novomundo.com.br###MODAL_lgdp
kaspersky.com##cookies-requirement
kabeleinsdoku.at,kabeleinsdoku.de##cmp-banner
hesabet.com###dvCerezBilgisi
chromeenterprise.google##.ce-cookie-banner
eschuhe.de#$#body.no-scroll > div.popup { display: none !important; }
eschuhe.de#$#body.no-scroll { padding-right: 0 !important; overflow: visible !important; }
needforseat.de###mediameetsFacebookPixel--notification
take5andstayalive.com###popmake-19647
m.n11.com##.modal-backdrop
fastweb.it###stdCookie
bursadabugun.com###_re_cookie_policy
zacks.com##.disclosure-fixed-slab[aria-label="Cookie Consent"]
psd-nuernberg.de##.lightbox--cookie-consent
psd-nuernberg.de##.darken-layer
randomhouse.de##.cl-window
atozmath.com###consentframe
diariodoestadogo.com.br###consent-box
bershka.com##.cookies-and-privacy-notification
augustinus.de###rsseo-cookie-accept
thebrandplanet.com##div[data-hook="consent-banner-root"]
phytodoc.de###cookie_zustimmung
fressnapf.de#$#.cookie-banner { display: none !important; }
fressnapf.de#$#body { overflow: visible !important; }
rpcs3.net##.menu-con-cookies
kedipet.com##.cookieizin
playstation.com##div[data-layer-item-id^="gdprConsent"]
wanaliz.com##.herbyCookieConsent
uktvplay.uktv.co.uk#$#.cookie-consent:not(body):not(html) { display: none !important; }
uktvplay.uktv.co.uk#$#body { overflow: auto !important; }
lamy.com##div[id^="px-cookie-consent"]
mindfactory.de###cookieModalOverlay
toggl.com##.toggl-cw-body
yds.net,akindil.com###cookieinfodiv
bbraun.com.tr##._cookie-info
learnattack.de###cconsent-modal
urait.ru##.cookie-policy-promo
cloud.digitalocean.com#?##root ~ div[class]:has(> div[class] > p[class]:contains(cookies))
odeaweb.com###mio-cookie-popup
myparto.com###cookieMessageAccept
||kioxia.com/etc/designs/kioxia/clientlibs_cmn/scripts/cookie_warning.js
||forum.vbulletin.com/js/privacy-consent-banner.js
turktelekom.com.tr##.cookie-sticky-wrap
ogorodniki.com##.b-user__cookies
yuzde100yerli.com##.popmake-overlay
linternaute.com###appconsent
optitex.com###pi_tracking_opt_in_div
hindawi.com##.advWrapper
unhackme.com###cookie-greatis
lenovo.com##.containerCookies
financial.nikkei.com##.f-privacy
nikkei.com##.bpPrivacy
getmailbird.com##.navbar-cookie
hashicorp.com###g-consent-manager
medium.com,towardsdatascience.com#?#body > div > div[class]:has(> div > div.branch-journeys-top > div[class] > p > a[href^="https://policy.medium.com/medium-privacy-policy-"])
m.facebook.com###page > div[data-sigil=" m-layer-root"]
telegraph.co.uk,gizmodo.com##div[id^="sp_message_container_"]
mytime.de#$#.modal__opened { overflow: visible !important; }
mytime.de#$#.modal--cookie-notice { display: none !important; }
||assets-aws.casualportals.com/gdpr/
legal-entrepreneurship.org##.avia-cookie-consent-wrap
paypal.com###ccpaCookieBanner
vakifbank.com.tr##.fixed-cookie-content
kalkinma.com.tr###notify-cookie
parafcard.com.tr#$#body { padding-top: 45px !important; }
parafcard.com.tr#$#.topMenuBarMobile { top: 0 !important; }
parafcard.com.tr#$#.personaWarn { display: none !important; }
emlakkatilim.com.tr##.o-cookie__inner
worldbank.org###cookieconsentpopup
backup4all.com###cookie-gdpr
mubi.com##.css-1emd6ky
linkedin.com##.notice-notification[alert-id][data-transition-id]
rocket-league.com#$#body { overflow: visible!important; }
rocket-league.com#$##privacyPolicyInfo { display: none!important; }
moneylo.fr###gatsby-focus-wrapper > div[style*="position: fixed;"][style*="z-index: 999;"][style*="bottom: 0px;"]
navigium.de#$?##placeholder > div.modal:has(div.modal-header > h5:contains(Cookies)) { display: none!important; }
navigium.de#$#.modal-backdrop { display: none!important; }
navigium.de#$#body { overflow: visible!important; }
imgur.com,tumblr.com,joe.ie,joe.co.uk##.qc-cmp2-container
ethias.be###gdpr-consent-popup
shop.rangers.co.uk###shopify-section-fixed-message
hallebessermachen.de#$##wdw-cookie-consent { display: none !important; }
hallebessermachen.de#$#body.v--modal-block-scroll { overflow: visible !important; }
traderepublic.com#$#.cookie-banner:not(body):not(html) { display: none !important; }
traderepublic.com#$#body { overflow: auto !important; }
lawrievetgroup.co.uk#$#body.noscroll { overflow: visible !important; }
lawrievetgroup.co.uk#$##js-consent-wrapper { display: none !important; }
vollmacht-muster.de#$##cookie-law-info-bar { display: none!important; }
vollmacht-muster.de#$#.cli-popupbar-overlay { display: none!important; }
vollmacht-muster.de#$#body { overflow: visible!important; }
cameglelive.com##div[style^="display: flex; flex-direction: column;"][style$="width: 100%;"] + div[class^="c"][class*=" "]:not([data-ta-locator]) > h3
cameglelive.com##div[style^="display: flex; flex-direction: column;"][style$="width: 100%;"] + div[class^="c"][class*=" "]:not([data-ta-locator]) > h3 ~ *
rocketbank.ru##._1zhzBm
gamezop.com###cookieCard
maximiles.com.tr###divAcceptCookie
misli.com##.infoBarCookies
gmx.at,gmx.net,web.de##atl-third-party-dialog
serverprofis.de#$#body.cli-barmodal-open { overflow: visible !important; }
serverprofis.de#$##cliSettingsPopup ~ .cli-modal-backdrop { display: none !important; }
||telia.se/.resources/telia-sitewide-resources/website-cookie-consent/
mercadolivre.com.br###cookieDisclaimerBanner
numero.com##.component-cookie-bar
facebook.com#$#div[data-testid="cookie-policy-banner"] { display: none !important; }
facebook.com#$#.hasCookieBanner { overflow: visible !important; }
coloros.com##.privacyTips
fei.org###modal-gdpr
ifsamerkezi.com##.cdk-overlay-container cookie-notice
kermi.de###legalCookieLayer
ooma.com#$#html { overflow: auto !important; }
ooma.com#$#.gdpr_cookie_overlay { display: none !important; }
rbc.ua##.privacy
vsk.ru##.confidentiality
agazeta.com.br##.box-aviso-cookies
avid.com##.cookies-notification--wrap
lurker.pl###app > .uk-alert-primary.uk-flex-center
acapellas.eu###cookies-m-c
hochzeits-location.info,quackr.io##.cc_dialog
downforme.org##body > #cc
viu.com###cookie_consent_box
significatocanzoni.it###wpca-box
flixone.com##.tc-cookie-compliance
github.com##.js-cookie-consent-banner
letras.mus.br##.modalLGPD
redbull.com#$#html { overflow: auto !important; }
redbull.com#$#body { overflow: auto !important; }
southparkstudios.com##.module-container-bala
bang-olufsen.com##.cookie-row
rappler.com##div[class^="GDPRBanner_"]
bilmerbilgisayar.com,bin1.com.tr,butikeva.com.tr###cerez-politikasi
avva.com.tr##.cookieavva
bikopek.com##.fixed-cookie
jacotei.com.br##.termos-politica
zoom.com.br,buscape.com.br##div[class^="PrivacyPolicy"]
molotov.tv##.eRnhI
halle-entdecken.de###myModal
thomann.de##.thomann-cookie-consent-overlay
nebenan.de###main > .c-layout > .c-layout-wrap + article[class^="index-module_root__"]
wehkamp.nl###header > aside.bg-light.full-width.full-height.z-higher.position-fixed.is-opaque
rapidtables.com##body > #banner
webqc.org###cookie-consent-dialog
ovh.es,ovhtelecom.fr,ovh.de,ovhcloud.com,ovh.com###tc-privacy-wrapper
ovh.es,ovhtelecom.fr,ovh.de,ovhcloud.com,ovh.com###tc_priv_CustomOverlay
findicons.com##.navbar-qards
mihoyo.com##.mihoyo-cookie-tips
4game.com##.fcw-wrap
toplitz-productions.com##.mod_cookiebar_optin
about.me##div[class^="cookie_notice-scope-"]
reuters.com###_evh-button
m.lamoda.ru##._12Etfw_uoPOmXzyAfvKXds
nagolderseife.de##main + div[class*=" _"]
autodna.ru##.privacy_policy-info
nitrome.com###gdpr__container
vin-info.com#$#.gdprcookie { display: none !important; }
vin-info.com#$#body { overflow: visible !important; }
ep.de#$#.cookies-overlay-widget { display: none !important; }
ep.de#$#body.cookielayer-open { overflow: auto !important; }
infobus.eu#?#body > #layer1:has(> div#layer2 > div.layer-message-container button.cookies_yes)
portaloswiatowy.pl#$#.overlay-cookie { display: none !important; }
portaloswiatowy.pl#$#.overlay-hidden-cookie { overflow: visible !important; }
easycosmetic.de##.footer-cookies
easycosmetic.de##.overlay
easycosmetic.de##.cookies-consent-container
easybell.de###cookieman-modal
bramanminiofmiami.com##.consumer-privacy-banner
koran.rocks#$#body { filter: none !important; pointer-events: auto !important; }
hot.at#$#.bootbox { display: none!important; }
hot.at#$#.modal-backdrop { display: none!important; }
hot.at#$#body { overflow: visible!important; }
pushsquare.com##.dgp-consent
vectornator.io,do-slez.com##.cookies-wrap
glavcom.ua##.kyk_menu
aljazeera.com##.ensNotifyBannerContainer
veeam.com##.cookie_messaging
teknotalk.com##.notification-wrapper-bottom
||peterburg2.ru/js/alex/cookiePopup-js.js
gununfirsati.com##body > div.toast
||thearamaicscriptures.com/gdpr/gdprscript.js
nordiskradio.se###cookieWindow
kilicoffice.com###st_notification_4
soubarato.com.br,submarino.com.br,americanas.com.br###footer-lgpd
seb.ee##.seb-cookiemessage
internalpointers.com##.ip-cookie-banner
developer.samsung.com###cookie-bottom-layer
speedtesting.herokuapp.com##body > div[style^="z-index:90000"][style*="background-color:white;"]
techtudo.com.br###cookie-banner-lgpd
0rechner.de#$##cookieconsentmodal { display: none !important; }
gamestar.de#$#.modal-open { overflow: visible !important; }
gamestar.de#$##cmp-modal { display: none !important; }
gamestar.de#$#.modal-backdrop { display:none !important; }
gamestar.de#$#.modal-cmp { filter: none !important; }
giffits.de##.cookie_opt_in
kohlhammer.de##div[id^="cookieConsentPanel"]
appgallery.huawei.com##.cookieBootom
zomato.com###root > div.jnxZPg
sigortammax.com##.snackbar-container
||urachhaus.de/out/urachhaus/src/js/libs/jquery.cookie.min.js
||cdn.vandalism-sounds.com/pub/static/version*/Magento_Cookie/js/notices.min.js
obi.de##.colorbox-cookiepolicy
ozmenpc.com##.cookie-agreement-module
hostettler.com##.cookie-bar-notification
web.dev#?#.web-snackbar__surface:has(> .web-snackbar__actions > a[href="https://policies.google.com/technologies/cookies"])
rec.uk.com##.bar[data-behaviour="cookie-consent"]
kfc.ru##._3l3oK3nIbn
catsbest.de#$##cookieNotice { display: none !important; }
catsbest.de#$##blockBody { filter: blur(0px) !important; }
online.business.ru##.savecook
skidka.ru##.bottom-notification__container
pagesix.com,nypost.com##.nyp-sitewide-notice
core77.com#$#.cookie_policy_banner { display: none !important; }
core77.com#$#.core77.extra_padd_me { padding-top: 0 !important; }
fastcompany.com##.privacyPolicyPopup
meteomedia.com##div[class^="cookieBar_"]
uaudio.de###cookie-disclaimer-new
habblet.city##.cookies-accept-container
hager.de##.cookie-hint-container
grweb.ics.forth.gr#$#.form-group[style="display: none;"] { display: block !important; }
autouncle.it###cookie-background-overlay
excalibour.com##.cookies-layer
homecredit.ru##div[class*="BlockCookies"]
market.homecredit.ru##div[class*="CookiesConsentStyled"]
trendyone.de##.zgdpr-container-holder
remarkable.com##div[class^="CookieBarstyles__Bar-"]
medipolis-intensivshop.de###cookiesMessageContainer
sigortam.net##div[class^="hidden-"].opened[ng-class="{'opened':$root.showCookieMsg}"]
opmar.com.tr##.opmar_cookie
orbisana.de#$#.reveal-overlay { display: none!important; }
orbisana.de#$#html { position: relative!important; }
enbiosis.com##.cookie-consent-banner
blog.remarkable.com,medium.com,blog.sikayetvar.com##.butterBar--CCPA
blog.sikayetvar.com##body > div#root ~ div:not([class]):not([id]) > div[class^="db t k"]
sanalmagaza.droetker.com.tr,discounto.de,apteka24.ua,damelibros.com,hashflare.io##.alert-dismissible
generali.com.tr##.kvk-footer
sapixcraft.com###myCookieConsent
m.2gis.ru,m.2gis.ua,m.2gis.kz##div[data-n="wat-banner-police-privacy"]
2gis.ru,2gis.ua,2gis.kz##footer[data-n="wat-footer-police-privacy"]
apotheke-marienbrunn.de###cookie-message ~ .design
cookpad.com##div[data-id="cookie_dialog"]
allday.com.tr##.cerez-politikasi
alvinaonline.com###CookieNotificationArea
warnerbros.com###WB-floating-notice
hsbc.ca##.cookie-banner-optout
krotosaudio.com###krotos-cookie-consent
helpsetup.ru###cookie_notification
||content.gallup.com/ux/gcb/gcb.en-us.min.js
montanatechcomponents.com##.policy-popup-content
aldi.co.uk##.notification__item--cookie
netmeter.eu##div[id^="eu-cookies"]
ableton.com##.test-cookie-banner
msn.com###onetrust-consent-sdk
toontrack.com##.cookie-sign-wrapper
hetmanrecovery.com##._cookie-bar
billiger-telefonieren.de###uc-central-banner-modal
podcloud.fr###rgpd-modal
actualidad.rt.com##.CookiesBanner-isReact
||digikey.*/-/media/Designer/EnavGDPR/JS/consent.js
aws.amazon.com###awsccc-sb-ux-c
saturn.de##div[class^="CookieLayer__"]
dafont.com###sd-cmp
||thestrad-gb.thestrad.com^
birkenstock.com#$#div[class*="privacy-overlay"] { display: none!important; }
birkenstock.com#$#body { position: relative!important; }
f1tr.com###cookie_cerceve
lenta.com##.cookie-usage-notice
anzahcraft.de##.notices--floating
freedomplatform.tv##.lr-consent
biobellinda.com.tr##.kvk-cookie
mobilevikings.be#$#.cookieWall { display: none !important; }
mobilevikings.be#$#.no-scroll { overflow: visible !important; }
schwaebische.de##div[class*="tc-privacy-"]
crysis.com##.cookiemodal
nianticlabs.com##ark-cookiebar
ege-study.ru##.modal-cookie
macupdate.com##.mu_cookie
kleankanteen.ru.com###client-cookies-notice
go2bus.ru###useragreement
||cmp2.pcwelt.de/wrapper/*/gdpr/
weatherbug.com##div[class^="notificationFooter__Container-"]
mtv.com.lb##.cookiesDisclaimer
primevideo.com##.cookie-notification-msg
oeffnungszeitenbuch.de###CCcont
menshealth.de##.v-A_-cookie__monster
carstens-stiftung.de##.waconcookiemanagement
hidromek.com.tr##.cookie-notification-es
bio-oil.com##.bo--notification-banner
wheely.com##div[class^="disclaimer__"]
ethereumprice.org##.zxc-msg
altin.in###kvkk
rockstargames.com###rockstar-site > footer + div > div[data-locale]
pruefungsratgeber.de#$##cookie-law-info-bar { display: none !important; }
pruefungsratgeber.de#$#.cli-popupbar-overlay { display: none !important; }
pruefungsratgeber.de#$#.cli-barmodal-open { overflow: visible !important; }
mymuesli.com#$#div[data-identifier="cookies-consent"] { display: none !important; }
quora.com##.q-box > div.qu-overflow--hidden[class*="Banner___StyledFlex-"]
nordkurier.de###nk-cookie-consent
qp.com.tr###cerez-politikasi-top
makfa.ru##.bottom-disclaimer
gittigidiyor.com##section[class^="styles__PolicyAlertWrapper-"]
nebo.app##.app-notifications
lordiz.com###rb-cookie
nkolayode.com##.sticky-info-band
m.economictimes.com##.privacy_block
||economictimes.indiatimes.com/gdpr_consent.cms
kutahyaporselen.com.tr###mcTopTooltip
shein.com##.welcome-privacy
zepter.ru###cookies-info-bar
total-liban.com##.cookie_banner_background
tevapharm.com##.vi-alert-CookieBlock
softline.ru##div[class$="_content_cookie"]
store.softline.ru###stripe_permission_use_cookie
radio.net##div[data-testid="cookienotice-container"]
webradio.de##.radioplayer-cookie-consent
novavax.com,serumshop.ru,kartoteka.by##.privacy-popup
picnic.app###modal
serverschmiede.com###cookieCheck
wallpapershome.ru##.cc-dialog
cbr.ru##div[data-popup-cookies]
n-tv.de###gujems-cookie-banner
kodak.com##.c_cookie_notice
iobroker.net##.jss120
iobroker.net##.jss110
henkel-adhesives.com##.cookienote__base
etos.nl#$#body { overflow: visible!important; }
jacob.de###jcc-consent
perwoll.com.tr,bref.com.tr,vernel.com.tr##.global-cookie-bar
blitz.bg###cookieRules
emerson.com##div[class$="global-cookie-notification"]
clickbaits.de,gesundheitswissen.de#$##ccm-widget { display: none !important; }
allergan.com.tr##.agn-cookie-consent-outer-wrapper
evermotion.org##.full-overlay
belkacar.ru##.confirm-cookie
beymen.com##.cookie-band
thomassixt.de##.gdprMotus
salonsecret.ru##div[class^="Cookie_root__"]
gzt.com##.cookie-policy-block
astrazeneca.com###CookieReportsBannerAZ
sika.com##.cmp-cookie
izmitsu.com.tr###cerez_div
pastebin.com##.popup-box.-cookies
oppo.com###use_cookies
neovolt.ru##.pop-up-cookie-alert-block
fitomarket.ru###cookie_pop
duplichecker.com###cookie_directive_container
football24.ua##.privete-polisy
m.timesofindia.com###myConsentFlow
hutch.io##.eytau7z0
mckinsey.com##.cookie-warning-wrapper
hyperxgaming.com,toluna.com##.notification-center
open.tube##.privacy-concerns
aptoide.com#$#html.no-scroll { overflow: auto !important; }
aptoide.com#$#div[class^="cookie-notice_"] { display: none !important; }
financial-ombudsman.org.uk##.cookie-banner-body-overlay
financial-ombudsman.org.uk#$#.overlay-showing { margin-top: 0px !important; }
cio.com.br##.cookies-conteudo
delta.com###ensModalWrapper
hobbybaecker.de#$#.modal-open { overflow: visible !important; }
hobbybaecker.de#$#.modal-backdrop { display: none !important; }
sonyentertainmentnetwork.com,my.account.sony.com###js-SIEWS1lib-header
doodlr.io###cookie_area
airsoft.ch,chargecloud.de##.cb
ulker.com.tr##.information-cookie
investors.com###investors-policy-terms-consent-dialog
automeme.io##div[style^="width: 400px;"][style*="padding:25px"]
all4shooters.com##.cookie-consent-dialogue__advertising
support.theguardian.com##.component-consent-banner-consent-banner
enbw.com#$#dialog[aria-label="Cookie Consent"] { display: none!important; }
enbw.com#$#body { overflow: visible!important; }
weather.com##div[id^="WxuPrivacyDataNotice-"]
farmasiint.org###st_notification_2
farmasiint.org###st_notification_3
starbucksrtd.com##.c-cookie-popup
spiceworks.com###zdprivacy-content
leroymerlin.ru##.cookie-notification-modal
open.spotify.com##section[data-testid="cookie-notice"]
headspin.io##.privacy-consent-container
samedi.de##.cookieslider
swatch.com##.reveal-modal-bg
naturalnews.com###bottompopup
vatlib.it,vaticanlibrary.va###cookieAd
alimar.com.tr###terms-and-conditions
akcansa.com.tr###divCookieInfoSrv
yesilirmakedas.com###header-announcement
theregister.com##.RegCTBWF_wrapper
wko.at#$#.popup__cookie { display: none !important; }
wko.at#$#body.hasPopup > * { opacity: 1 !important; }
||scripts.tv2a.dk/oil-sdk^
konzolstudio.hu#$#body { overflow: visible !important; }
konzolstudio.hu#$#html { overflow: visible !important; }
base.com###cookie-popup-outer
pcland.hu##.cookieNoticeBox
walmart.ca###privacy-policies-banner
lidl.hu##.notification__content
enerya.com.tr###kvkk_notification
coruhaksa.com,firataksa.com,firatedas.com.tr,coruhedas.com.tr,aksadogalgaz.com.tr##.cerezDiv
amazon.com.tr,amazon.ca,amazon.co.uk,amazon.de,amazon.es,amazon.fr,amazon.in,amazon.it###sp-cc[action^="/cookieprefs"]
yfood.eu##body > div[style^="background: rgb(246, 246, 246)"][style*="bottom: 0px;"]
limakcimento.com###divCerezUyarisi
budni.de##div[class*="CookieBar__CookieBarContainer"]
buecher.de###klaro
tri-it-fit.de##.pixelmate-big-wrapper
swordz.io###cookieMessage
account.oup.com###fixedHeader > #banners
hekimoglu.com.tr###kwkbilgilendirme
atombilgisayar.com##.module-notification[data-options*="cookie"]
kit.co,jamieoliver.com###ccc
gesundheitswissen.de##.cookie_statement
th-owl.de###c-cookie-note
arbys.com##.ccpa-banner
gillettevenus.com.tr###divOneTrustButton
derby.com.tr###f-cookie-alert
hepsievcil.com###menu-cookie-bottom
goodyear.eu##.cmp-responsivegrid--behavior-cookie
freemake.com###bottombar
allinonedownloader.com##.gdprbanner
marketpaketi.com.tr###cookiePrivacyArea
avclub.com,clickhole.com,deadspin.com,gizmodo.com,jalopnik.com,jezebel.com,kotaku.com,lifehacker.com,splinternews.com,theinventory.com,theonion.com,theroot.com,thetakeout.com,motorcyclenews.com###sp_privacy_manager_container
start.ru##div[class^="HeaderCookie_cookie_agreement"]
vprok.ru##.fo-cookies-policy
||conclude.com/assets/build/combined.*.js
nutrimmun.de###hellotrust_cookie_popup
express.dhl.ru###modcookie
bolumsonucanavari.com,donanimhaber.com##.cookie-kutu
planner5d.com###modal-cookies-policy
agcocorp.com##.disclaimerpopup
agcocorp.com###cookie_privacy_policy
bumudur.com###wboxA
socialclub.rockstargames.com##div[class^="CookiesBanner__"]
partnerize.com###cookie_opt_out_wrapper
sravnibank.com.ua##.csppp-container
creditznatok.com.ua###cookierookie
otelrezervasyon.com##.datapolicy-wrapper
tatilsepeti.com##.cookie-confirmation
etorazvesex.ru##div[data-storage-item^="t886cookiename_"]
msn.com###cookiebanner
pracuj.pl###kansas-header > div[data-test="section-cookies-prompt"]
kuehne.com.tr##.kue-cookie-notification
karaca.com.tr##.cerezbilgi
yourdictionary.com##.GDPR
warmhaus.com.tr##.cookie-description
thinkwithgoogle.com##.global-toast
fidusinfosec.com##.popup_cookies
weleda.de##.mod-cookiebar
dm.de##div[data-dmid="cookiebar-dm-overlay"]
cashtocode.com###cookie-usage
||channelpartner.de/messaging.js
wkv.com###priv-notice-container
dreamcruiseline.com##.gdpr-banner-wrapper
femina.in##body > .blocked
aksa.com,dsmart.com.tr##.kvkk
gulfnews.com##.gn-cookies-warning
generasimaju.co.id###cookiesAcceptanceWrapper
hse.ru##.gdpr_bar
tk.de#$#.g-consentmanager { display: none!important; }
tk.de#$#body { overflow-y: visible !important; }
stayer.su##.info-panel
millet-mountain.com##.banner-cookies-alert
shop-lot.ru###jnr-cookie
istegelsin.com##.privacy-cookies
imobie.com##.fixedbot
scania.com##c-cookie
dogemate.com###cconsent-bar
sutas.market##.footer-fixed-cookie-container
wasd.tv##.cookies__wrapper
zeoob.com#$##cookies_modal { display: none !important; }
zeoob.com#$#.modal-backdrop { display: none !important; }
zeoob.com#$#body { overflow: visible !important; padding-right: 0 !important; }
onroad.hu##body > div[class][style*="z-index: 999999"]
ghanaweb.com##body > #bk
yota.ru##.b-info-message
ratp.fr#$#html { overflow: visible !important; }
ratp.fr#$##tarteaucitronAlertBig { display: none !important; }
money.yandex.ru##div[class^="Gdpr__"]
kaspersky.com##section[data-at-selector="cookie-banner"]
edebiyatdefteri.com###kvkksozlesme
tarnkappe.info##body > #wrapper ~ div[style*="position: fixed; left: 0px; right: 0px; bottom: 0px"][style*="background-color"]
avclub.com,clickhole.com,deadspin.com,gizmodo.com,jalopnik.com,jezebel.com,kotaku.com,lifehacker.com,splinternews.com,theinventory.com,theonion.com,theroot.com,thetakeout.com,motorcyclenews.com##iframe[src^="https://notice.sp-prod.net"]
gear.cdprojektred.com##div[class^="main-cookies-"]
3332222.ru###root > main + div[class^="popup_"]
vtb.ru###cookiemsgoffpls
komoot.de##.css-t7ztk8
erco.com##.cookie-container_
check24.de##.c24-cookie
m.check24.de#$#.c24m-cookie { display: none !important; }
m.check24.de#$#.c24m-page.c24m-cookie-animate { top: 0 !important; }
misli.com##.cookiePolicyMain
bnl.it###cookielaw-popup-wrapper
ronesans.com##.cookie-fixed
play.pl##.cookies-mine
red.com##.cookie-warning-banner-view
abus.com###onetrust-banner-sdk
web-stat.com##.swal2-container
g2.com##.js-cookie-consent-overlay
disneyworld.eu###cookiesPolicyMessageLayout
||netmoms.de/content/themes/twentyfifteen/app/scripts/vendor/spmsg-*.js
trendsmap.com##.header-message
smartshop.hu,ikea-family.info##.cdk-overlay-container
yuzde100yerli.com##.pum-theme-cookiepolicy
interviewer.tns-sifo.se##.smb-cookies-consent
picapoint.de##.cookie--banner-wrapper
gundogdumobilya.com.tr,modalife.com##.policyPopupContainer
staykeen.com##.cookie-warnings
nspk.ru##.footer-personal-data
turkishcargo.com.tr##.warning-bar
sabanci.com###warning-bar
openrice.com##.facebook-floating-container
veepee.fr##.cookiesBanner
kizlararasinda.com,prima.com.tr##.dc-cookie-consent
video.foxbusiness.com##.notification-banner
braintreepayments.com###gdprComponent
magzter.com##.cookies__notification
istikbal.com.tr,bellona.com.tr,mondi.com.tr##.cookiepopup-container
risingstack.com##div[class^="CookieConsent__Container"]
go.veeam.com##.cookie_messaging
portal.pixelfederation.com##.announcement.cookies
diggysadventure.com###gdpr-modal
diggysadventure.com###gdpr-modal-backdrop
tproger.ru###cookie-notice-wrapper
103.by,103.ua,relax.by##.CookiesNotification
tsb.org.tr,otomatikbes.info###pop-capsul
liquidtelecom.com###lqt-cookie-app
singtel.com##.ux-consent-banner
store.my.games##.ph-cookies
autodesk.nl,autodesk.hu,autodesk.it,autodesk.dk,autodesk.de,autodesk.cz,autodesk.be,autodesk.es,autodesk.fr,autodesk.co.uk##.adsk-gdpr-footer-wrapper
yvesrocher.com.tr##.privacy-manager
bitwarden.com##.osano-cm-window
expatsportugal.com###uof_cookie_notice
optimumnutrition.com###block-cookiesmessage
dayoftheweek.org#$#body.overlayModalBody { overflow: visible!important; position: static!important; }
xxxlutz.de###w18lara_tgplugin_consent
olhares.com###divmensagemcookie1
ctwant.com##.m-GDPR
sakasu.com.tr###cerezPolitikasi
sirmagrup.com###stm_gdpr_popup-main
nestleprofessional.com.tr##.pane-cookie-disclaimer
yapimerkezi.com.tr###div_cerez
fibaemeklilik.com.tr##.fe__mainContent ~ .c-container
anime-odcinki.pl###moove_gdpr_save_popup_settings_button
zismo.biz###Cookie_message
correos.es###myCookies
notino.*###exponea-cookie-compliance
theenglishshavingcompany.com##.amgdpr-cookie
flyuia.com#$##cookieConfirm { display: none!important; }
flyuia.com#$#header { margin-top: 0!important; }
flyuia.com#$#main { margin-top: -90px!important; }
marstranslation.com##.cc_window
apc.com##.sdl-message-cookie-notification
ratemyprofessors.com##.ccpa-modal
ratemyprofessors.com##.reveal-modal-bg
m.n11.com##.header > div.warning
||wittetools.com/cookienote/
teb.com.tr###cokieMain
opentip.kaspersky.com##section[data-t="cks-dsc"] > div > div
shellsmart.com###evidonConsent
shellsmart.com##.header > #modal_container
bp.com##.nr-cookie-notification__wall
aytemiz.com.tr###Menu_cookieContainer
hansechirurgie.de##.cmpbox
daikin.com.tr###KVK_Cerez
n11.com##.guestKvkkLb
sony.nl##.evidon-background
robhost.de##body .cookie-consent-banner
new-work.se,xing.com#$#body[style*="overflow"] { overflow: visible!important; }
new-work.se,xing.com#$#div.consent-overlay { display: none!important; }
new-work.se,xing.com#$#div.consent-intro { display: none!important; }
xing.com#$#body > div[class^="skins-base-dimmer-"] { display: none!important; }
xing.com#$#div[class*="cookie-consent-CookieConsent-"] { display: none!important; }
enerjivetesisat.com###cookiesck
findaphd.com#$#.cookieNoticeA { display: none !important; }
findaphd.com#$#body.has-cookie-notice { margin-top: 0 !important; }
corrierecomunicazioni.it##.cookie-body-background
hopkinssports.com##.sidearm-gdpr-modal
kap-3.de,p4web.de###fhw_cookiehinweis
bbc.com##header[role="banner"] > div[dir="rtl"]
||tumblr.com/dashboard/iframe/consent
airfrance.am,airfrance.be,airfrance.bf,airfrance.bg,airfrance.bj,airfrance.ca,airfrance.cd,airfrance.cg,airfrance.ch,airfrance.cl,airfrance.co.ao,airfrance.co.il,airfrance.co.jp,airfrance.co.kr,airfrance.co.th,airfrance.co.uk,airfrance.com,airfrance.com.br,airfrance.com.cn,airfrance.com.co,airfrance.com.eg,airfrance.com.hk,airfrance.com.kh,airfrance.com.lb,airfrance.com.mx,airfrance.com.tw,airfrance.com.uy,airfrance.cz,airfrance.de,airfrance.es,airfrance.fr,airfrance.gf,airfrance.gp,airfrance.ht,airfrance.hu,airfrance.id,airfrance.it,airfrance.mq,airfrance.mu,airfrance.my,airfrance.nc,airfrance.ne,airfrance.pa,airfrance.pe,airfrance.pf,airfrance.pl,airfrance.pt,airfrance.re,airfrance.ro,airfrance.ru,airfrance.sa,airfrance.sg,airfrance.si,airfrance.tg,airfrance.ua,airfrance.us,airfrance.vn#$##gdpr_popin { display: none!important; }
airfrance.am,airfrance.be,airfrance.bf,airfrance.bg,airfrance.bj,airfrance.ca,airfrance.cd,airfrance.cg,airfrance.ch,airfrance.cl,airfrance.co.ao,airfrance.co.il,airfrance.co.jp,airfrance.co.kr,airfrance.co.th,airfrance.co.uk,airfrance.com,airfrance.com.br,airfrance.com.cn,airfrance.com.co,airfrance.com.eg,airfrance.com.hk,airfrance.com.kh,airfrance.com.lb,airfrance.com.mx,airfrance.com.tw,airfrance.com.uy,airfrance.cz,airfrance.de,airfrance.es,airfrance.fr,airfrance.gf,airfrance.gp,airfrance.ht,airfrance.hu,airfrance.id,airfrance.it,airfrance.mq,airfrance.mu,airfrance.my,airfrance.nc,airfrance.ne,airfrance.pa,airfrance.pe,airfrance.pf,airfrance.pl,airfrance.pt,airfrance.re,airfrance.ro,airfrance.ru,airfrance.sa,airfrance.sg,airfrance.si,airfrance.tg,airfrance.ua,airfrance.us,airfrance.vn#$#body[style] { overflow: visible!important; position: static!important; }
softlist.com.ua##.cookie-notify-block
t3n.de##.c-cookienotice
decathlon.com.tr###container-screen
playisgame.com,playway.com###sp-cookie-consent
danbolig.dk#$#div[id^="CybotCookiebotDialog"] { display: none!important; }
danbolig.dk#$#html { overflow: visible!important; }
danbolig.dk#$#body { overflow: visible!important; }
gtamaxprofit.com##.sqs-cookie-banner-v2-enabled
unifrance.org##div[class="appMobileOff headerInfos"]
safeposter.com##.wpfresh5-cookie-pop
bat.com###sysCookieMessage
muenzenwert.de###callout
kadinlarbilir.com##.cookie-consent-jolt
viewsonic.com##body > .alert-dismissible
yougov.co.uk,yougov.com##yg-cookie-confirm
arkadium.com##div[class^="CookieMessage-"]
nielsen.com###privacy-alert-container
langweiledich.net###cookie4help
ffeel.de##.cookiehinweis
planet.com##.pl-cookies-cta-contain
||gsk.baycloud.com/tggsk.js
4frontcarsales.co.uk###cookiepopup-horiz
oppo.com##div[class^="cp-cookie-tip"]
gram.pl###cookie-box-container-inner
||privacy-mgmt.com/mms^
greatist.com###ccpa-banner
fossil.com###consent-tracking
baydoner.com##body > .alert-dismissible[role="alert"]
yellowpages.pl###section-cookies
fitcurves.org##.foot-cookie
opowi.pl###ci-info-box
||chrono24.*/cookie/*
citibank.ru##.bn-alert-tracking-block
phys.org###js-popup-cookies
kartotekaonline.pl##body > .ui-pnotify[style^="width: 300px; opacity:"]
desktopsolution.org###cookie-law-info-bar
desktopsolution.org###cookie-law-info-again
marc-o-polo.com##.overlay__shadow--cookie-settings
muzeumslaskie.pl##body > #popup
gelia.fi,gelia.no,gelia.se#$#.cookie-information { display: none !important; }
coolors.co##body > div.banner
famedly.com###concord-banner-container
zoomadmin.com##.showPrivacy
francetvinfo.fr##.newsletter
fnac.com##.consent-notice
dominos.com.tr##div[class^="styled__CookiePolicyWrapper-"]
tarihiyolculuk.com##.cookie-policy-footer
ticket.io###cookie-layer-container
autokino-duesseldorf.ticket.io#$#.modal-cookie { display: none !important; }
autokino-duesseldorf.ticket.io#$#.modal-backdrop { display: none !important; }
lbry.tv##.nag
neftegaz.ru##.rule-cookie
nordbayern.de###privacyBanner
mostik.info##.wb_cookie_policy
kliniken.de###k-cookie-warning
unicode-table.com###js-cookie
sophos.com###cookie-policy-wrapper
tsn.ua##.c-notification__box
prospera.hn###gatsby-focus-wrapper > main ~ div[width="full"]:last-child
arkhis.ru,015.by##.privacy-policy-cookies-informer
tele1.com.tr###sa_cookie_wrapper
cardgames.io###gdpr-notice
playlive.net##.paper-client-privacy-agreement
olx.ro,olx.kz,olx.pl,olx.pt,olx.ua,olx.uz,olx.in,olx.com##div[data-testid="cookies-overlay__container"]
olx.ro,olx.kz,olx.pl,olx.pt,olx.ua,olx.uz,olx.in,olx.com###cookiesBar
trud.com##.disclaimer
openweathermap.org###stick-footer-panel
barum-tires.ru##.js-old-cookie-message
||cmp.dreamlab.pl/static-v*/cmp.bundle.js
spw.ru##.confidential-block
spar.at##.cookie-notification__outer
spar.at##html.has-cookie-notification > body::before
moviepilot.de##.gzthuz
icscards.nl#$#body > [class^="page-"][style^="filter:"] { filter: none!important; }
moulinex.com.tr###dialog
skidka.ru###ckc
leagueoflegends.com,playvalorant.com###riotbar-alerts-container
playvalorant.com##.riotbar-cookie-policy-v2
engineering.fb.com###GDPRConsentBar
cpomagazine.com,smallstep.com###clym-widget-privacy-frame
donostiakultura.eus###NLC_textLayer
juedische-allgemeine.de##section.cc
cbc-ag.de###tqconsent-popup-essential_or_all
aixfoam.com,aixfoam.de,aixfoam.dk,aixfoam.fi,aixfoam.fr,aixfoam.nl,aixfoam.se#$#.content-blurred { filter: none!important; }
tandmore.de###cookie-master
skidki.academic.ru##.cookie-private
fanatical.com##.cookie-collapsible
globo.com###cookie-banner-lgpd
mitsubishi-motors.com.tr##.kvkkDisplay
mazda.com.tr#$#div[id][data-component-type="cookiePanel"] { display: none!important; }
mazda.com.tr#$#.cookie-panel-enabled[data-module="header"] > div[class^="mxp-main-"][class*="navigation"] { padding-top: 0!important; }
mini.com.tr,bmw-abudhabi.com,bmw-albania.com,bmw.dz,bmw.co.ao,bmw.com.ar,bmw.am,bmw.com.au,bmw.at,bmw.az,bmw-bahrain.com,bmw.com.bd,bmw.by,bmw.be,bmw.com.bo,bmw.ba,bmw.com.br,bmw.com.bn,bmw.bg,bmw.com.kh,bmw.ca,bmw.cl,bmw.com.cn,bmw.com.co,bmw.co.cr,bmw.hr,bmw.com.cy,bmw.cz,bmw.dk,bmw.com.do,bmw-dubai.com,bmw.com.ec,bmw-eg.com,bmw.com.sv,bmw.ee,bmw.fi,bmw.fr,bmw.com.ge,bmw.de,bmw-ghana.com,bmw.gr,bmw-antilles.fr,akguam.com,bmw.com.gt,bmw.hn,bmw.hu,bmw.is,bmw.in,bmw.co.id,bmw-iraq.com,bmw.ie,bmw.co.il,bmw.it,bmwjamaica.com,bmw.co.jp,bmw-jordan.com,bmw.kz,bmw.co.kr,bmw-kuwait.com,bmw-lao.la,bmw.lv,bmw-lebanon.com,bmw.ly,bmw.lt,bmw.lu,bmw.com.mk,bmw.com.my,bmw.com.mt,bmw.mu,bmw.com.mx,bmw-me.com,bmw.md,bmw.ma,bmwmyanmar.com,bmw.nl,bmw.nc,bmw.co.nz,bmw-nigeria.com,bmw.no,bmw-oman.com,bmw-pakistan.com,bmw.com.pa,bmw.com.py,bmw.com.pe,bmw.com.ph,bmw.pl,bmw.pt,bmw-qatar.com,bmw.ro,bmw.ru,bmw.re,bmw-saudiarabia.com,bmw.sn,bmw.rs,bmw.com.sg,bmw.sk,bmw.si,bmw.co.za,bmw.es,bmw.lk,bmw.se,bmw.ch,bmw.co.th,bmw.tt,bmw-tunisia.com,bmw.com.tr,bmwusa.com,bmw.ua,bmw.co.uk,bmw.com.uy,bmw.vn,bmw-yemen.com,bmw.com##epaas-consent-drawer-shell
dahadaha.com##div[class*="home_cookie_"]
landrover.com.tr,jaguar-turkiye.com##.cookies-warning-footer
dontpayfull.com##.cookies-gdpr
englishdom.com##.js-gdpr-tooltip
drp.su,driverpack.io##.GdprBanner__bg
twin.com##.cookiePolicyView
symbolab.com##.nl-cookiepolicy
puzzles.msn.com##div[class^="CookieBanner__Banner_"]
coral.ru##.cookieAgreement
volksbund.de###ig-cookie-simple
brillen-sehhilfen.de###datenschutzhinweis
vikingtemizlik.com.tr##.privacy
wandermap.net##body > ul.messages.temporary > .info
geberit.com.tr##.page-hint-box
fiverr.com###react-cookie-approval
badisches-tagblatt.de###m_wctrlCookieConsent
aeg.de#$#.CookieConsent-overlay { display: none !important; }
aeg.de#$#.CookieConsent { display: none !important; }
aeg.de#$#body { position: relative !important; }
petshop.ru##div[class^="CookieInformer_"]
leroymerlin.ru##uc-cookie-notification
udacity.com##.banner-container
turktelekomakademi.com.tr###kvkk-banner-header
higherlogic.com,miro.com,perceptyx.com,articulatemarketing.com,npmjs.com,transparent.com###hs-eu-cookie-confirmation
cointelegraph.com##.privacy-policy
atresplayer.com##aside[class^="app_gdpr"]
mediafire.com###cookie-accept-footer
yatasbedding.com.tr##.n-cookies-container
decrypt.co##.iDynzw
fialkaspb.ru##.bottom__cookie_block
thecustomdroid.com###cookie-consent-lite
wolframalpha.com###__next > div[class] > header ~ section[class]
mail.ru###cmpbox
printscreenshot.com,photoeditor.com##.consent-overlay
enzahome.com.tr###kvkkFooter
aljazeera.net##.ensNotifyBannerContainer
medicalnewstoday.com,healthline.com###ccpa-banner
icl-group.de###drkf5_overlay
kriptoparahaber.com,konsolenfan.de##.wpgdprc-consent-bar
melitta-momentum.com###__next > footer ~ div[class]
btegitim.com###cookieid
melitta-group.com##.messages[data-cycon-module="element-message"]
immohal.de##.wrap__cookie
||immohal.de/*/ext/nb_cookie_banner/Resources/Public/Scripts/cookie.js
radio-internetowe.com##body > #cc
freeyou.ag#$#.cookies { display: none !important; }
motionarray.com##.site-accept-tos-warning
inc.com##div[class*="privacyPolicyPopup"]
tumblr.com##.tmblr-iframe--gdpr-banner
definition-of.com##body > div[style="z-index:9900;position:relative"]:not([class]):not([id])
thekitchn.com##.GdprBanner
bynogame.com##.cookie_agreements
pantaflix.com##div[class^="CookieBar__"]
rushop.lg.com##.cookie-mode__wrap
siemens-home.bsh-group.*,bosch-home.com##body div.o-cookielaw
paradoxwikis.com##.pdx-cookie-container
creative.com##.ck-notiz
chessbase.com###askForCookies
saalesparkasse.de#$#.if6_eprivacy { display: none!important; }