@duckduckgo/autoconsent 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/rules/autoconsent/aws-amazon.json +18 -0
- package/rules/autoconsent/baden-wuerttemberg-de.json +9 -0
- package/rules/autoconsent/borlabs.json +12 -0
- package/rules/autoconsent/bundesregierung-de.json +15 -0
- package/rules/autoconsent/destatis-de.json +8 -0
- package/rules/autoconsent/ionos-de.json +15 -0
- package/rules/autoconsent/mediamarkt-de.json +3 -3
- package/rules/autoconsent/motor-talk-de.json +24 -0
- package/rules/autoconsent/netflix-de.json +7 -0
- package/rules/autoconsent/obi-de.json +12 -0
- package/rules/autoconsent/onetrust.json +2 -2
- package/rules/autoconsent/otto-de.json +12 -0
- package/rules/autoconsent/paypal-de.json +12 -0
- package/rules/autoconsent/thalia-de.json +24 -0
- package/rules/autoconsent/usercentrics-1.json +8 -0
- package/rules/autoconsent/vodafone-de.json +10 -0
- package/rules/rules.json +393 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duckduckgo/autoconsent",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/autoconsent.cjs.js",
|
|
6
6
|
"module": "dist/autoconsent.esm.js",
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"author": "Sam Macbeth",
|
|
27
27
|
"license": "MPL-2.0",
|
|
28
|
+
"dependencies": {},
|
|
28
29
|
"devDependencies": {
|
|
29
30
|
"@playwright/test": "^1.17.1",
|
|
30
31
|
"@rollup/plugin-typescript": "^4.0.0",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "aws.amazon.com",
|
|
3
|
+
"prehideSelectors": ["#awsccc-cb-content", "#awsccc-cs-container-inner"],
|
|
4
|
+
"detectCmp": [{ "exists": "#awsccc-cb-content" }],
|
|
5
|
+
"detectPopup": [{ "visible": "#awsccc-cb-content" }],
|
|
6
|
+
"optIn": [{ "click": "button[data-id=awsccc-cb-btn-accept" }],
|
|
7
|
+
"optOut": [
|
|
8
|
+
{
|
|
9
|
+
"click": "button[data-id=awsccc-cb-btn-customize]"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"eval": "Array.from(document.querySelectorAll('input[aria-checked=true')).forEach(e => e.click()) || true"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"click": "button[data-id=awsccc-cs-btn-save]"
|
|
16
|
+
}
|
|
17
|
+
]
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "baden-wuerttemberg.de",
|
|
3
|
+
"isHidingRule": true,
|
|
4
|
+
"prehideSelectors": [".cookie-alert.t-dark"],
|
|
5
|
+
"detectCmp": [{ "exists": ".cookie-alert.t-dark" }],
|
|
6
|
+
"detectPopup": [{ "visible": ".cookie-alert.t-dark" }],
|
|
7
|
+
"optIn": [{ "click": ".cookie-alert__button" }],
|
|
8
|
+
"optOut": []
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "borlabs",
|
|
3
|
+
"prehideSelectors": ["#BorlabsCookieBox"],
|
|
4
|
+
"detectCmp": [{ "exists": "._brlbs-block-content"}],
|
|
5
|
+
"detectPopup": [{ "visible": "._brlbs-bar-wrap,._brlbs-box-wrap" }],
|
|
6
|
+
"optIn": [{ "click": "a[data-cookie-accept-all]" }],
|
|
7
|
+
"optOut": [
|
|
8
|
+
{
|
|
9
|
+
"click": "a[data-cookie-refuse]"
|
|
10
|
+
}
|
|
11
|
+
]
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bundesregierung.de",
|
|
3
|
+
"prehideSelectors": [".bpa-cookie-banner"],
|
|
4
|
+
"detectCmp": [{ "exists": ".bpa-cookie-banner" }],
|
|
5
|
+
"detectPopup": [{ "visible": ".bpa-module-full-hero" }],
|
|
6
|
+
"optIn": [{ "click": ".bpa-accept-all-button" }],
|
|
7
|
+
"optOut": [
|
|
8
|
+
{
|
|
9
|
+
"click": ".bpa-close-button"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"test": [
|
|
13
|
+
{"eval": "document.cookie.match('cookie-allow-tracking=0')"}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "destatis.de",
|
|
3
|
+
"prehideSelectors": ["div[aria-labelledby=cookiebannerhead]"],
|
|
4
|
+
"isHidingRule": true,
|
|
5
|
+
"detectCmp": [{ "exists": ".cookiebannerbox" }],
|
|
6
|
+
"detectPopup": [{ "visible": ".cookiebannerbox" }],
|
|
7
|
+
"optOut": [{ "hide": [".cookiebannerbox"] }]
|
|
8
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ionos.de",
|
|
3
|
+
"prehideSelectors": [".privacy-consent--backdrop", ".privacy-consent--modal"],
|
|
4
|
+
"detectCmp": [{ "exists": ".privacy-consent--modal"}],
|
|
5
|
+
"detectPopup": [{ "visible": ".privacy-consent--modal" }],
|
|
6
|
+
"optIn": [{ "click": "#selectAll" }],
|
|
7
|
+
"optOut": [
|
|
8
|
+
{
|
|
9
|
+
"click": ".footer-config-link"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"click": "#confirmSelection"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "mediamarkt
|
|
2
|
+
"name": "mediamarkt.de",
|
|
3
3
|
"prehideSelectors": [
|
|
4
|
-
"div[aria-labelledby
|
|
5
|
-
"div[class^=StyledConsentLayerWrapper"
|
|
4
|
+
"div[aria-labelledby=pwa-consent-layer-title]",
|
|
5
|
+
"div[class^=StyledConsentLayerWrapper-]"
|
|
6
6
|
],
|
|
7
7
|
"detectCmp": [{"exists": "div[aria-labelledby^=pwa-consent-layer-title]"}],
|
|
8
8
|
"detectPopup": [{"exists": "div[aria-labelledby^=pwa-consent-layer-title]"}],
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "motor-talk.de",
|
|
3
|
+
"prehideSelectors": [".mt-cc-bnnr__wrapper"],
|
|
4
|
+
"detectCmp": [
|
|
5
|
+
{
|
|
6
|
+
"exists": ".mt-cc-bnnr"
|
|
7
|
+
}
|
|
8
|
+
],
|
|
9
|
+
"detectPopup": [
|
|
10
|
+
{
|
|
11
|
+
"visible": ".mt-cc-bnnr__wrapper"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"optIn": [
|
|
15
|
+
{
|
|
16
|
+
"click": ".mt-cc-bnnr__button-main"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"optOut": [
|
|
20
|
+
{
|
|
21
|
+
"click": ".mt-cc-bnnr__decline-link"
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "obi.de",
|
|
3
|
+
"prehideSelectors": [".disc-cp--active"],
|
|
4
|
+
"detectCmp": [{ "exists": ".disc-cp-modal__modal" }],
|
|
5
|
+
"detectPopup": [{ "visible": ".disc-cp-modal__modal" }],
|
|
6
|
+
"optIn": [{ "click": ".js-disc-cp-accept-all" }],
|
|
7
|
+
"optOut": [
|
|
8
|
+
{
|
|
9
|
+
"click": ".js-disc-cp-deny-all"
|
|
10
|
+
}
|
|
11
|
+
]
|
|
12
|
+
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"name": "Onetrust",
|
|
3
3
|
"prehideSelectors": ["#onetrust-banner-sdk,#onetrust-consent-sdk,.optanon-alert-box-wrapper,.onetrust-pc-dark-filter,.js-consent-banner"],
|
|
4
4
|
"isHidingRule": true,
|
|
5
|
-
"detectCmp": [{ "exists": "#onetrust-banner-sdk,.optanon-alert-box-wrapper
|
|
6
|
-
"detectPopup": [{ "visible": "#onetrust-banner-sdk,.optanon-alert-box-wrapper
|
|
5
|
+
"detectCmp": [{ "exists": "#onetrust-banner-sdk,.optanon-alert-box-wrapper" }],
|
|
6
|
+
"detectPopup": [{ "visible": "#onetrust-banner-sdk,.optanon-alert-box-wrapper" }],
|
|
7
7
|
"optOut": [
|
|
8
8
|
{ "click": "#onetrust-pc-btn-handler,.ot-sdk-show-settings,button.js-cookie-settings" },
|
|
9
9
|
{ "waitFor": "#onetrust-consent-sdk", "timeout": 2000 },
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "otto.de",
|
|
3
|
+
"prehideSelectors": [".cookieBanner--visibility"],
|
|
4
|
+
"detectCmp": [{ "exists": ".cookieBanner--visibility"}],
|
|
5
|
+
"detectPopup": [{ "visible": ".cookieBanner__wrapper" }],
|
|
6
|
+
"optIn": [{ "click": ".js_cookieBannerPermissionButton" }],
|
|
7
|
+
"optOut": [
|
|
8
|
+
{
|
|
9
|
+
"click": ".js_cookieBannerProhibitionButton"
|
|
10
|
+
}
|
|
11
|
+
]
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "paypal.de",
|
|
3
|
+
"prehideSelectors": ["#gdprCookieBanner"],
|
|
4
|
+
"detectCmp": [{ "exists": "#gdprCookieBanner"}],
|
|
5
|
+
"detectPopup": [{ "visible": "#gdprCookieContent_wrapper" }],
|
|
6
|
+
"optIn": [{ "click": "#acceptAllButton" }],
|
|
7
|
+
"optOut": [
|
|
8
|
+
{
|
|
9
|
+
"click": ".gdprCookieBanner_decline-button"
|
|
10
|
+
}
|
|
11
|
+
]
|
|
12
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "thalia.de",
|
|
3
|
+
"prehideSelectors": [".consent-banner-box"],
|
|
4
|
+
"detectCmp": [
|
|
5
|
+
{
|
|
6
|
+
"exists": "consent-banner[component=consent-banner]"
|
|
7
|
+
}
|
|
8
|
+
],
|
|
9
|
+
"detectPopup": [
|
|
10
|
+
{
|
|
11
|
+
"visible": ".consent-banner-box"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"optIn": [
|
|
15
|
+
{
|
|
16
|
+
"click": ".button-zustimmen"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"optOut": [
|
|
20
|
+
{
|
|
21
|
+
"click": "button[data-consent=disagree]"
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "usercentrics-1",
|
|
3
|
+
"detectCmp": [{ "exists": "#usercentrics-root"}],
|
|
4
|
+
"detectPopup": [{ "eval": "!!document.querySelector('#usercentrics-root').shadowRoot.querySelector('#uc-center-container')"}],
|
|
5
|
+
"optIn": [{ "eval": "UC_UI.acceptAllConsents() || true"}, {"eval": "UC_UI.closeCMP() || true"}, {"eval": "UC_UI.areAllConsentsAccepted() === true"}],
|
|
6
|
+
"optOut": [{ "eval": "UC_UI.closeCMP() || UC_UI.denyAllConsents() || true"}],
|
|
7
|
+
"test": [{"eval": "UC_UI.areAllConsentsAccepted() === false"}]
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vodafone.de",
|
|
3
|
+
"prehideSelectors": [".dip-consent,.dip-consent-container"],
|
|
4
|
+
"detectCmp": [{ "exists": ".dip-consent-container" }],
|
|
5
|
+
"detectPopup": [{ "visible": ".dip-consent-content" }],
|
|
6
|
+
"optOut": [{"click": ".dip-consent-btn.white-btn"},
|
|
7
|
+
{"eval": "Array.from(document.querySelectorAll('.dip-consent-btn.red-btn')).filter(e => e.innerText === 'Auswahl bestätigen')[0].click()"}
|
|
8
|
+
],
|
|
9
|
+
"optIn": [{ "click": ".dip-consent-btn.red-btn"}]
|
|
10
|
+
}
|
package/rules/rules.json
CHANGED
|
@@ -52,6 +52,119 @@
|
|
|
52
52
|
}
|
|
53
53
|
]
|
|
54
54
|
},
|
|
55
|
+
{
|
|
56
|
+
"name": "aws.amazon.com",
|
|
57
|
+
"prehideSelectors": [
|
|
58
|
+
"#awsccc-cb-content",
|
|
59
|
+
"#awsccc-cs-container-inner"
|
|
60
|
+
],
|
|
61
|
+
"detectCmp": [
|
|
62
|
+
{
|
|
63
|
+
"exists": "#awsccc-cb-content"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"detectPopup": [
|
|
67
|
+
{
|
|
68
|
+
"visible": "#awsccc-cb-content"
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"optIn": [
|
|
72
|
+
{
|
|
73
|
+
"click": "button[data-id=awsccc-cb-btn-accept"
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"optOut": [
|
|
77
|
+
{
|
|
78
|
+
"click": "button[data-id=awsccc-cb-btn-customize]"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"eval": "Array.from(document.querySelectorAll('input[aria-checked=true')).forEach(e => e.click()) || true"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"click": "button[data-id=awsccc-cs-btn-save]"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "baden-wuerttemberg.de",
|
|
90
|
+
"isHidingRule": true,
|
|
91
|
+
"prehideSelectors": [
|
|
92
|
+
".cookie-alert.t-dark"
|
|
93
|
+
],
|
|
94
|
+
"detectCmp": [
|
|
95
|
+
{
|
|
96
|
+
"exists": ".cookie-alert.t-dark"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"detectPopup": [
|
|
100
|
+
{
|
|
101
|
+
"visible": ".cookie-alert.t-dark"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"optIn": [
|
|
105
|
+
{
|
|
106
|
+
"click": ".cookie-alert__button"
|
|
107
|
+
}
|
|
108
|
+
],
|
|
109
|
+
"optOut": []
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "borlabs",
|
|
113
|
+
"prehideSelectors": [
|
|
114
|
+
"#BorlabsCookieBox"
|
|
115
|
+
],
|
|
116
|
+
"detectCmp": [
|
|
117
|
+
{
|
|
118
|
+
"exists": "._brlbs-block-content"
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"detectPopup": [
|
|
122
|
+
{
|
|
123
|
+
"visible": "._brlbs-bar-wrap,._brlbs-box-wrap"
|
|
124
|
+
}
|
|
125
|
+
],
|
|
126
|
+
"optIn": [
|
|
127
|
+
{
|
|
128
|
+
"click": "a[data-cookie-accept-all]"
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"optOut": [
|
|
132
|
+
{
|
|
133
|
+
"click": "a[data-cookie-refuse]"
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "bundesregierung.de",
|
|
139
|
+
"prehideSelectors": [
|
|
140
|
+
".bpa-cookie-banner"
|
|
141
|
+
],
|
|
142
|
+
"detectCmp": [
|
|
143
|
+
{
|
|
144
|
+
"exists": ".bpa-cookie-banner"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"detectPopup": [
|
|
148
|
+
{
|
|
149
|
+
"visible": ".bpa-module-full-hero"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"optIn": [
|
|
153
|
+
{
|
|
154
|
+
"click": ".bpa-accept-all-button"
|
|
155
|
+
}
|
|
156
|
+
],
|
|
157
|
+
"optOut": [
|
|
158
|
+
{
|
|
159
|
+
"click": ".bpa-close-button"
|
|
160
|
+
}
|
|
161
|
+
],
|
|
162
|
+
"test": [
|
|
163
|
+
{
|
|
164
|
+
"eval": "document.cookie.match('cookie-allow-tracking=0')"
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
},
|
|
55
168
|
{
|
|
56
169
|
"name": "cc_banner",
|
|
57
170
|
"prehideSelectors": [
|
|
@@ -232,6 +345,30 @@
|
|
|
232
345
|
}
|
|
233
346
|
]
|
|
234
347
|
},
|
|
348
|
+
{
|
|
349
|
+
"name": "destatis.de",
|
|
350
|
+
"prehideSelectors": [
|
|
351
|
+
"div[aria-labelledby=cookiebannerhead]"
|
|
352
|
+
],
|
|
353
|
+
"isHidingRule": true,
|
|
354
|
+
"detectCmp": [
|
|
355
|
+
{
|
|
356
|
+
"exists": ".cookiebannerbox"
|
|
357
|
+
}
|
|
358
|
+
],
|
|
359
|
+
"detectPopup": [
|
|
360
|
+
{
|
|
361
|
+
"visible": ".cookiebannerbox"
|
|
362
|
+
}
|
|
363
|
+
],
|
|
364
|
+
"optOut": [
|
|
365
|
+
{
|
|
366
|
+
"hide": [
|
|
367
|
+
".cookiebannerbox"
|
|
368
|
+
]
|
|
369
|
+
}
|
|
370
|
+
]
|
|
371
|
+
},
|
|
235
372
|
{
|
|
236
373
|
"name": "Drupal",
|
|
237
374
|
"detectCmp": [
|
|
@@ -399,6 +536,36 @@
|
|
|
399
536
|
}
|
|
400
537
|
]
|
|
401
538
|
},
|
|
539
|
+
{
|
|
540
|
+
"name": "ionos.de",
|
|
541
|
+
"prehideSelectors": [
|
|
542
|
+
".privacy-consent--backdrop",
|
|
543
|
+
".privacy-consent--modal"
|
|
544
|
+
],
|
|
545
|
+
"detectCmp": [
|
|
546
|
+
{
|
|
547
|
+
"exists": ".privacy-consent--modal"
|
|
548
|
+
}
|
|
549
|
+
],
|
|
550
|
+
"detectPopup": [
|
|
551
|
+
{
|
|
552
|
+
"visible": ".privacy-consent--modal"
|
|
553
|
+
}
|
|
554
|
+
],
|
|
555
|
+
"optIn": [
|
|
556
|
+
{
|
|
557
|
+
"click": "#selectAll"
|
|
558
|
+
}
|
|
559
|
+
],
|
|
560
|
+
"optOut": [
|
|
561
|
+
{
|
|
562
|
+
"click": ".footer-config-link"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"click": "#confirmSelection"
|
|
566
|
+
}
|
|
567
|
+
]
|
|
568
|
+
},
|
|
402
569
|
{
|
|
403
570
|
"name": "johnlweis",
|
|
404
571
|
"prehideSelectors": [
|
|
@@ -467,10 +634,10 @@
|
|
|
467
634
|
]
|
|
468
635
|
},
|
|
469
636
|
{
|
|
470
|
-
"name": "mediamarkt
|
|
637
|
+
"name": "mediamarkt.de",
|
|
471
638
|
"prehideSelectors": [
|
|
472
|
-
"div[aria-labelledby
|
|
473
|
-
"div[class^=StyledConsentLayerWrapper"
|
|
639
|
+
"div[aria-labelledby=pwa-consent-layer-title]",
|
|
640
|
+
"div[class^=StyledConsentLayerWrapper-]"
|
|
474
641
|
],
|
|
475
642
|
"detectCmp": [
|
|
476
643
|
{
|
|
@@ -576,6 +743,32 @@
|
|
|
576
743
|
}
|
|
577
744
|
]
|
|
578
745
|
},
|
|
746
|
+
{
|
|
747
|
+
"name": "motor-talk.de",
|
|
748
|
+
"prehideSelectors": [
|
|
749
|
+
".mt-cc-bnnr__wrapper"
|
|
750
|
+
],
|
|
751
|
+
"detectCmp": [
|
|
752
|
+
{
|
|
753
|
+
"exists": ".mt-cc-bnnr"
|
|
754
|
+
}
|
|
755
|
+
],
|
|
756
|
+
"detectPopup": [
|
|
757
|
+
{
|
|
758
|
+
"visible": ".mt-cc-bnnr__wrapper"
|
|
759
|
+
}
|
|
760
|
+
],
|
|
761
|
+
"optIn": [
|
|
762
|
+
{
|
|
763
|
+
"click": ".mt-cc-bnnr__button-main"
|
|
764
|
+
}
|
|
765
|
+
],
|
|
766
|
+
"optOut": [
|
|
767
|
+
{
|
|
768
|
+
"click": ".mt-cc-bnnr__decline-link"
|
|
769
|
+
}
|
|
770
|
+
]
|
|
771
|
+
},
|
|
579
772
|
{
|
|
580
773
|
"name": "national-lottery-co-uk",
|
|
581
774
|
"prehideSelectors": [
|
|
@@ -608,6 +801,34 @@
|
|
|
608
801
|
}
|
|
609
802
|
]
|
|
610
803
|
},
|
|
804
|
+
{
|
|
805
|
+
"name": "netflix.de",
|
|
806
|
+
"detectCmp": [
|
|
807
|
+
{
|
|
808
|
+
"exists": "#cookie-disclosure"
|
|
809
|
+
}
|
|
810
|
+
],
|
|
811
|
+
"detectPopup": [
|
|
812
|
+
{
|
|
813
|
+
"visible": ".cookie-disclosure-message"
|
|
814
|
+
}
|
|
815
|
+
],
|
|
816
|
+
"optIn": [
|
|
817
|
+
{
|
|
818
|
+
"click": ".btn-accept"
|
|
819
|
+
}
|
|
820
|
+
],
|
|
821
|
+
"optOut": [
|
|
822
|
+
{
|
|
823
|
+
"hide": [
|
|
824
|
+
"#cookie-disclosure"
|
|
825
|
+
]
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
"click": ".btn-reject"
|
|
829
|
+
}
|
|
830
|
+
]
|
|
831
|
+
},
|
|
611
832
|
{
|
|
612
833
|
"name": "nhs",
|
|
613
834
|
"prehideSelectors": [
|
|
@@ -663,6 +884,32 @@
|
|
|
663
884
|
}
|
|
664
885
|
]
|
|
665
886
|
},
|
|
887
|
+
{
|
|
888
|
+
"name": "obi.de",
|
|
889
|
+
"prehideSelectors": [
|
|
890
|
+
".disc-cp--active"
|
|
891
|
+
],
|
|
892
|
+
"detectCmp": [
|
|
893
|
+
{
|
|
894
|
+
"exists": ".disc-cp-modal__modal"
|
|
895
|
+
}
|
|
896
|
+
],
|
|
897
|
+
"detectPopup": [
|
|
898
|
+
{
|
|
899
|
+
"visible": ".disc-cp-modal__modal"
|
|
900
|
+
}
|
|
901
|
+
],
|
|
902
|
+
"optIn": [
|
|
903
|
+
{
|
|
904
|
+
"click": ".js-disc-cp-accept-all"
|
|
905
|
+
}
|
|
906
|
+
],
|
|
907
|
+
"optOut": [
|
|
908
|
+
{
|
|
909
|
+
"click": ".js-disc-cp-deny-all"
|
|
910
|
+
}
|
|
911
|
+
]
|
|
912
|
+
},
|
|
666
913
|
{
|
|
667
914
|
"name": "Onetrust",
|
|
668
915
|
"prehideSelectors": [
|
|
@@ -671,12 +918,12 @@
|
|
|
671
918
|
"isHidingRule": true,
|
|
672
919
|
"detectCmp": [
|
|
673
920
|
{
|
|
674
|
-
"exists": "#onetrust-banner-sdk,.optanon-alert-box-wrapper
|
|
921
|
+
"exists": "#onetrust-banner-sdk,.optanon-alert-box-wrapper"
|
|
675
922
|
}
|
|
676
923
|
],
|
|
677
924
|
"detectPopup": [
|
|
678
925
|
{
|
|
679
|
-
"visible": "#onetrust-banner-sdk,.optanon-alert-box-wrapper
|
|
926
|
+
"visible": "#onetrust-banner-sdk,.optanon-alert-box-wrapper"
|
|
680
927
|
}
|
|
681
928
|
],
|
|
682
929
|
"optOut": [
|
|
@@ -740,6 +987,58 @@
|
|
|
740
987
|
}
|
|
741
988
|
]
|
|
742
989
|
},
|
|
990
|
+
{
|
|
991
|
+
"name": "otto.de",
|
|
992
|
+
"prehideSelectors": [
|
|
993
|
+
".cookieBanner--visibility"
|
|
994
|
+
],
|
|
995
|
+
"detectCmp": [
|
|
996
|
+
{
|
|
997
|
+
"exists": ".cookieBanner--visibility"
|
|
998
|
+
}
|
|
999
|
+
],
|
|
1000
|
+
"detectPopup": [
|
|
1001
|
+
{
|
|
1002
|
+
"visible": ".cookieBanner__wrapper"
|
|
1003
|
+
}
|
|
1004
|
+
],
|
|
1005
|
+
"optIn": [
|
|
1006
|
+
{
|
|
1007
|
+
"click": ".js_cookieBannerPermissionButton"
|
|
1008
|
+
}
|
|
1009
|
+
],
|
|
1010
|
+
"optOut": [
|
|
1011
|
+
{
|
|
1012
|
+
"click": ".js_cookieBannerProhibitionButton"
|
|
1013
|
+
}
|
|
1014
|
+
]
|
|
1015
|
+
},
|
|
1016
|
+
{
|
|
1017
|
+
"name": "paypal.de",
|
|
1018
|
+
"prehideSelectors": [
|
|
1019
|
+
"#gdprCookieBanner"
|
|
1020
|
+
],
|
|
1021
|
+
"detectCmp": [
|
|
1022
|
+
{
|
|
1023
|
+
"exists": "#gdprCookieBanner"
|
|
1024
|
+
}
|
|
1025
|
+
],
|
|
1026
|
+
"detectPopup": [
|
|
1027
|
+
{
|
|
1028
|
+
"visible": "#gdprCookieContent_wrapper"
|
|
1029
|
+
}
|
|
1030
|
+
],
|
|
1031
|
+
"optIn": [
|
|
1032
|
+
{
|
|
1033
|
+
"click": "#acceptAllButton"
|
|
1034
|
+
}
|
|
1035
|
+
],
|
|
1036
|
+
"optOut": [
|
|
1037
|
+
{
|
|
1038
|
+
"click": ".gdprCookieBanner_decline-button"
|
|
1039
|
+
}
|
|
1040
|
+
]
|
|
1041
|
+
},
|
|
743
1042
|
{
|
|
744
1043
|
"name": "quantcast",
|
|
745
1044
|
"prehideSelectors": [
|
|
@@ -917,6 +1216,32 @@
|
|
|
917
1216
|
}
|
|
918
1217
|
]
|
|
919
1218
|
},
|
|
1219
|
+
{
|
|
1220
|
+
"name": "thalia.de",
|
|
1221
|
+
"prehideSelectors": [
|
|
1222
|
+
".consent-banner-box"
|
|
1223
|
+
],
|
|
1224
|
+
"detectCmp": [
|
|
1225
|
+
{
|
|
1226
|
+
"exists": "consent-banner[component=consent-banner]"
|
|
1227
|
+
}
|
|
1228
|
+
],
|
|
1229
|
+
"detectPopup": [
|
|
1230
|
+
{
|
|
1231
|
+
"visible": ".consent-banner-box"
|
|
1232
|
+
}
|
|
1233
|
+
],
|
|
1234
|
+
"optIn": [
|
|
1235
|
+
{
|
|
1236
|
+
"click": ".button-zustimmen"
|
|
1237
|
+
}
|
|
1238
|
+
],
|
|
1239
|
+
"optOut": [
|
|
1240
|
+
{
|
|
1241
|
+
"click": "button[data-consent=disagree]"
|
|
1242
|
+
}
|
|
1243
|
+
]
|
|
1244
|
+
},
|
|
920
1245
|
{
|
|
921
1246
|
"name": "thefreedictionary",
|
|
922
1247
|
"prehideSelectors": [
|
|
@@ -943,6 +1268,69 @@
|
|
|
943
1268
|
}
|
|
944
1269
|
]
|
|
945
1270
|
},
|
|
1271
|
+
{
|
|
1272
|
+
"name": "usercentrics-1",
|
|
1273
|
+
"detectCmp": [
|
|
1274
|
+
{
|
|
1275
|
+
"exists": "#usercentrics-root"
|
|
1276
|
+
}
|
|
1277
|
+
],
|
|
1278
|
+
"detectPopup": [
|
|
1279
|
+
{
|
|
1280
|
+
"eval": "!!document.querySelector('#usercentrics-root').shadowRoot.querySelector('#uc-center-container')"
|
|
1281
|
+
}
|
|
1282
|
+
],
|
|
1283
|
+
"optIn": [
|
|
1284
|
+
{
|
|
1285
|
+
"eval": "UC_UI.acceptAllConsents() || true"
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"eval": "UC_UI.closeCMP() || true"
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"eval": "UC_UI.areAllConsentsAccepted() === true"
|
|
1292
|
+
}
|
|
1293
|
+
],
|
|
1294
|
+
"optOut": [
|
|
1295
|
+
{
|
|
1296
|
+
"eval": "UC_UI.closeCMP() || UC_UI.denyAllConsents() || true"
|
|
1297
|
+
}
|
|
1298
|
+
],
|
|
1299
|
+
"test": [
|
|
1300
|
+
{
|
|
1301
|
+
"eval": "UC_UI.areAllConsentsAccepted() === false"
|
|
1302
|
+
}
|
|
1303
|
+
]
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"name": "vodafone.de",
|
|
1307
|
+
"prehideSelectors": [
|
|
1308
|
+
".dip-consent,.dip-consent-container"
|
|
1309
|
+
],
|
|
1310
|
+
"detectCmp": [
|
|
1311
|
+
{
|
|
1312
|
+
"exists": ".dip-consent-container"
|
|
1313
|
+
}
|
|
1314
|
+
],
|
|
1315
|
+
"detectPopup": [
|
|
1316
|
+
{
|
|
1317
|
+
"visible": ".dip-consent-content"
|
|
1318
|
+
}
|
|
1319
|
+
],
|
|
1320
|
+
"optOut": [
|
|
1321
|
+
{
|
|
1322
|
+
"click": ".dip-consent-btn.white-btn"
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"eval": "Array.from(document.querySelectorAll('.dip-consent-btn.red-btn')).filter(e => e.innerText === 'Auswahl bestätigen')[0].click()"
|
|
1326
|
+
}
|
|
1327
|
+
],
|
|
1328
|
+
"optIn": [
|
|
1329
|
+
{
|
|
1330
|
+
"click": ".dip-consent-btn.red-btn"
|
|
1331
|
+
}
|
|
1332
|
+
]
|
|
1333
|
+
},
|
|
946
1334
|
{
|
|
947
1335
|
"name": "xing",
|
|
948
1336
|
"detectCmp": [
|