@duckduckgo/autoconsent 9.3.0 → 9.5.0
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/CHANGELOG.md +39 -0
- package/dist/addon-firefox/background.bundle.js +2 -2
- package/dist/addon-firefox/content.bundle.js +8 -5
- package/dist/addon-firefox/rules.json +414 -65
- package/dist/addon-mv3/background.bundle.js +2 -2
- package/dist/addon-mv3/content.bundle.js +8 -5
- package/dist/addon-mv3/rules.json +414 -65
- package/dist/autoconsent.cjs.js +8 -5
- package/dist/autoconsent.esm.js +8 -5
- package/dist/autoconsent.playwright.js +1 -1
- package/dist/autoconsent.unit.js +422 -70
- package/lib/cmps/base.ts +3 -1
- package/lib/cmps/consentmanager.ts +2 -0
- package/lib/cmps/sourcepoint-frame.ts +1 -1
- package/lib/cmps/uniconsent.ts +2 -2
- package/lib/eval-snippets.ts +2 -2
- package/package.json +3 -3
- package/rules/autoconsent/bahn-de.json +47 -0
- package/rules/autoconsent/complianz-categories.json +16 -7
- package/rules/autoconsent/complianz-notice.json +9 -3
- package/rules/autoconsent/complianz-opt-both.json +14 -0
- package/rules/autoconsent/complianz-optin.json +23 -10
- package/rules/autoconsent/cookie-law-info.json +4 -1
- package/rules/autoconsent/ecosia.json +28 -0
- package/rules/autoconsent/eu-cookie-compliance.json +10 -3
- package/rules/autoconsent/europa-eu.json +29 -0
- package/rules/autoconsent/fides.json +25 -0
- package/rules/autoconsent/instagram.json +31 -0
- package/rules/autoconsent/ketch.json +23 -20
- package/rules/autoconsent/osano.json +3 -4
- package/rules/autoconsent/paypal-us.json +3 -3
- package/rules/autoconsent/temu.json +28 -0
- package/rules/autoconsent/transcend.json +26 -0
- package/rules/autoconsent/xvideos.json +28 -0
- package/rules/rules.json +414 -65
- package/tests/bahn-de.spec.ts +5 -0
- package/tests/complianz-opt-both.spec.ts +5 -0
- package/tests/ecosia.spec.ts +5 -0
- package/tests/eu-cookie-compliance-banner.spec.ts +1 -1
- package/tests/europa-eu.spec.ts +6 -0
- package/tests/fides.spec.ts +5 -0
- package/tests/instagram.spec.ts +5 -0
- package/tests/ketch.spec.ts +1 -1
- package/tests/temu.spec.ts +5 -0
- package/tests/transcend.spec.ts +5 -0
- package/tests/xvideos.spec.ts +5 -0
|
@@ -509,6 +509,55 @@
|
|
|
509
509
|
}
|
|
510
510
|
]
|
|
511
511
|
},
|
|
512
|
+
{
|
|
513
|
+
"name": "bahn-de",
|
|
514
|
+
"vendorUrl": "https://www.bahn.de/",
|
|
515
|
+
"cosmetic": false,
|
|
516
|
+
"runContext": {
|
|
517
|
+
"main": true,
|
|
518
|
+
"frame": false,
|
|
519
|
+
"urlPattern": "^https://(www\\.)?bahn\\.de/"
|
|
520
|
+
},
|
|
521
|
+
"intermediate": false,
|
|
522
|
+
"prehideSelectors": [],
|
|
523
|
+
"detectCmp": [
|
|
524
|
+
{
|
|
525
|
+
"exists": [
|
|
526
|
+
"body > div:first-child",
|
|
527
|
+
"#consent-layer"
|
|
528
|
+
]
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
"detectPopup": [
|
|
532
|
+
{
|
|
533
|
+
"visible": [
|
|
534
|
+
"body > div:first-child",
|
|
535
|
+
"#consent-layer"
|
|
536
|
+
]
|
|
537
|
+
}
|
|
538
|
+
],
|
|
539
|
+
"optIn": [
|
|
540
|
+
{
|
|
541
|
+
"waitForThenClick": [
|
|
542
|
+
"body > div:first-child",
|
|
543
|
+
"#consent-layer .js-accept-all-cookies"
|
|
544
|
+
]
|
|
545
|
+
}
|
|
546
|
+
],
|
|
547
|
+
"optOut": [
|
|
548
|
+
{
|
|
549
|
+
"waitForThenClick": [
|
|
550
|
+
"body > div:first-child",
|
|
551
|
+
"#consent-layer .js-accept-essential-cookies"
|
|
552
|
+
]
|
|
553
|
+
}
|
|
554
|
+
],
|
|
555
|
+
"test": [
|
|
556
|
+
{
|
|
557
|
+
"eval": "EVAL_BAHN_TEST"
|
|
558
|
+
}
|
|
559
|
+
]
|
|
560
|
+
},
|
|
512
561
|
{
|
|
513
562
|
"name": "bbb.org",
|
|
514
563
|
"runContext": {
|
|
@@ -1176,26 +1225,42 @@
|
|
|
1176
1225
|
],
|
|
1177
1226
|
"optIn": [
|
|
1178
1227
|
{
|
|
1179
|
-
"
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1228
|
+
"any": [
|
|
1229
|
+
{
|
|
1230
|
+
"click": ".cc-accept-all"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"click": ".cc-allow-all"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"click": ".cc-allow"
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"click": ".cc-dismiss"
|
|
1240
|
+
}
|
|
1241
|
+
]
|
|
1189
1242
|
}
|
|
1190
1243
|
],
|
|
1191
1244
|
"optOut": [
|
|
1192
1245
|
{
|
|
1193
|
-
"
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1246
|
+
"if": {
|
|
1247
|
+
"exists": ".cc-type-categories[aria-describedby=\"cookieconsent:desc\"] .cc-dismiss"
|
|
1248
|
+
},
|
|
1249
|
+
"then": [
|
|
1250
|
+
{
|
|
1251
|
+
"click": ".cc-dismiss"
|
|
1252
|
+
}
|
|
1253
|
+
],
|
|
1254
|
+
"else": [
|
|
1255
|
+
{
|
|
1256
|
+
"click": ".cc-type-categories input[type=checkbox]:not([disabled]):checked",
|
|
1257
|
+
"all": true,
|
|
1258
|
+
"optional": true
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
"click": ".cc-save"
|
|
1262
|
+
}
|
|
1263
|
+
]
|
|
1199
1264
|
}
|
|
1200
1265
|
]
|
|
1201
1266
|
},
|
|
@@ -1207,12 +1272,12 @@
|
|
|
1207
1272
|
"cosmetic": true,
|
|
1208
1273
|
"detectCmp": [
|
|
1209
1274
|
{
|
|
1210
|
-
"exists": ".cc-type-info[aria-describedby=\"cookieconsent:desc\"]"
|
|
1275
|
+
"exists": ".cc-type-info[aria-describedby=\"cookieconsent:desc\"] .cc-compliance .cc-btn"
|
|
1211
1276
|
}
|
|
1212
1277
|
],
|
|
1213
1278
|
"detectPopup": [
|
|
1214
1279
|
{
|
|
1215
|
-
"visible": ".cc-type-info[aria-describedby=\"cookieconsent:desc\"]"
|
|
1280
|
+
"visible": ".cc-type-info[aria-describedby=\"cookieconsent:desc\"] .cc-compliance .cc-btn"
|
|
1216
1281
|
}
|
|
1217
1282
|
],
|
|
1218
1283
|
"optIn": [
|
|
@@ -1231,23 +1296,35 @@
|
|
|
1231
1296
|
],
|
|
1232
1297
|
"optOut": [
|
|
1233
1298
|
{
|
|
1234
|
-
"
|
|
1299
|
+
"if": {
|
|
1300
|
+
"exists": ".cc-deny"
|
|
1301
|
+
},
|
|
1302
|
+
"then": [
|
|
1303
|
+
{
|
|
1304
|
+
"click": ".cc-deny"
|
|
1305
|
+
}
|
|
1306
|
+
],
|
|
1307
|
+
"else": [
|
|
1308
|
+
{
|
|
1309
|
+
"hide": "[aria-describedby=\"cookieconsent:desc\"]"
|
|
1310
|
+
}
|
|
1311
|
+
]
|
|
1235
1312
|
}
|
|
1236
1313
|
]
|
|
1237
1314
|
},
|
|
1238
1315
|
{
|
|
1239
|
-
"name": "Complianz
|
|
1316
|
+
"name": "Complianz opt-both",
|
|
1240
1317
|
"prehideSelectors": [
|
|
1241
|
-
"
|
|
1318
|
+
"[aria-describedby=\"cookieconsent:desc\"] .cc-type-opt-both"
|
|
1242
1319
|
],
|
|
1243
1320
|
"detectCmp": [
|
|
1244
1321
|
{
|
|
1245
|
-
"exists": "
|
|
1322
|
+
"exists": "[aria-describedby=\"cookieconsent:desc\"] .cc-type-opt-both"
|
|
1246
1323
|
}
|
|
1247
1324
|
],
|
|
1248
1325
|
"detectPopup": [
|
|
1249
1326
|
{
|
|
1250
|
-
"visible": "
|
|
1327
|
+
"visible": "[aria-describedby=\"cookieconsent:desc\"] .cc-type-opt-both"
|
|
1251
1328
|
}
|
|
1252
1329
|
],
|
|
1253
1330
|
"optIn": [
|
|
@@ -1266,24 +1343,78 @@
|
|
|
1266
1343
|
],
|
|
1267
1344
|
"optOut": [
|
|
1268
1345
|
{
|
|
1269
|
-
"
|
|
1270
|
-
}
|
|
1346
|
+
"waitForThenClick": ".cc-deny"
|
|
1347
|
+
}
|
|
1348
|
+
]
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
"name": "Complianz optin",
|
|
1352
|
+
"prehideSelectors": [
|
|
1353
|
+
".cc-type-opt-in[aria-describedby=\"cookieconsent:desc\"]"
|
|
1354
|
+
],
|
|
1355
|
+
"detectCmp": [
|
|
1271
1356
|
{
|
|
1272
|
-
"
|
|
1273
|
-
}
|
|
1357
|
+
"exists": ".cc-type-opt-in[aria-describedby=\"cookieconsent:desc\"]"
|
|
1358
|
+
}
|
|
1359
|
+
],
|
|
1360
|
+
"detectPopup": [
|
|
1274
1361
|
{
|
|
1275
|
-
"
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1362
|
+
"visible": ".cc-type-opt-in[aria-describedby=\"cookieconsent:desc\"]"
|
|
1363
|
+
}
|
|
1364
|
+
],
|
|
1365
|
+
"optIn": [
|
|
1279
1366
|
{
|
|
1280
|
-
"
|
|
1281
|
-
|
|
1367
|
+
"any": [
|
|
1368
|
+
{
|
|
1369
|
+
"click": ".cc-accept-all"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"click": ".cc-allow"
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
"click": ".cc-dismiss"
|
|
1376
|
+
}
|
|
1377
|
+
]
|
|
1282
1378
|
}
|
|
1283
1379
|
],
|
|
1284
|
-
"
|
|
1380
|
+
"optOut": [
|
|
1285
1381
|
{
|
|
1286
|
-
"
|
|
1382
|
+
"if": {
|
|
1383
|
+
"visible": ".cc-deny"
|
|
1384
|
+
},
|
|
1385
|
+
"then": [
|
|
1386
|
+
{
|
|
1387
|
+
"click": ".cc-deny"
|
|
1388
|
+
}
|
|
1389
|
+
],
|
|
1390
|
+
"else": [
|
|
1391
|
+
{
|
|
1392
|
+
"if": {
|
|
1393
|
+
"visible": ".cc-settings"
|
|
1394
|
+
},
|
|
1395
|
+
"then": [
|
|
1396
|
+
{
|
|
1397
|
+
"waitForThenClick": ".cc-settings"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"waitForVisible": ".cc-settings-view"
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
"click": ".cc-settings-view input[type=checkbox]:not([disabled]):checked",
|
|
1404
|
+
"all": true,
|
|
1405
|
+
"optional": true
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"click": ".cc-settings-view .cc-btn-accept-selected"
|
|
1409
|
+
}
|
|
1410
|
+
],
|
|
1411
|
+
"else": [
|
|
1412
|
+
{
|
|
1413
|
+
"click": ".cc-dismiss"
|
|
1414
|
+
}
|
|
1415
|
+
]
|
|
1416
|
+
}
|
|
1417
|
+
]
|
|
1287
1418
|
}
|
|
1288
1419
|
]
|
|
1289
1420
|
},
|
|
@@ -1295,6 +1426,9 @@
|
|
|
1295
1426
|
"detectCmp": [
|
|
1296
1427
|
{
|
|
1297
1428
|
"exists": "#cookie-law-info-bar"
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"eval": "EVAL_COOKIE_LAW_INFO_DETECT"
|
|
1298
1432
|
}
|
|
1299
1433
|
],
|
|
1300
1434
|
"detectPopup": [
|
|
@@ -2005,6 +2139,36 @@
|
|
|
2005
2139
|
}
|
|
2006
2140
|
]
|
|
2007
2141
|
},
|
|
2142
|
+
{
|
|
2143
|
+
"name": "ecosia",
|
|
2144
|
+
"vendorUrl": "https://www.ecosia.org/",
|
|
2145
|
+
"runContext": {
|
|
2146
|
+
"urlPattern": "^https://www\\.ecosia\\.org/"
|
|
2147
|
+
},
|
|
2148
|
+
"prehideSelectors": [
|
|
2149
|
+
".cookie-wrapper"
|
|
2150
|
+
],
|
|
2151
|
+
"detectCmp": [
|
|
2152
|
+
{
|
|
2153
|
+
"exists": ".cookie-wrapper > .cookie-notice"
|
|
2154
|
+
}
|
|
2155
|
+
],
|
|
2156
|
+
"detectPopup": [
|
|
2157
|
+
{
|
|
2158
|
+
"visible": ".cookie-wrapper > .cookie-notice"
|
|
2159
|
+
}
|
|
2160
|
+
],
|
|
2161
|
+
"optIn": [
|
|
2162
|
+
{
|
|
2163
|
+
"waitForThenClick": "[data-test-id=cookie-notice-accept]"
|
|
2164
|
+
}
|
|
2165
|
+
],
|
|
2166
|
+
"optOut": [
|
|
2167
|
+
{
|
|
2168
|
+
"waitForThenClick": "[data-test-id=cookie-notice-reject]"
|
|
2169
|
+
}
|
|
2170
|
+
]
|
|
2171
|
+
},
|
|
2008
2172
|
{
|
|
2009
2173
|
"name": "etsy",
|
|
2010
2174
|
"prehideSelectors": [
|
|
@@ -2049,12 +2213,12 @@
|
|
|
2049
2213
|
"name": "eu-cookie-compliance-banner",
|
|
2050
2214
|
"detectCmp": [
|
|
2051
2215
|
{
|
|
2052
|
-
"exists": ".eu-cookie-compliance-
|
|
2216
|
+
"exists": "body.eu-cookie-compliance-popup-open"
|
|
2053
2217
|
}
|
|
2054
2218
|
],
|
|
2055
2219
|
"detectPopup": [
|
|
2056
2220
|
{
|
|
2057
|
-
"exists": ".eu-cookie-compliance-popup-open"
|
|
2221
|
+
"exists": "body.eu-cookie-compliance-popup-open"
|
|
2058
2222
|
}
|
|
2059
2223
|
],
|
|
2060
2224
|
"optIn": [
|
|
@@ -2064,8 +2228,14 @@
|
|
|
2064
2228
|
],
|
|
2065
2229
|
"optOut": [
|
|
2066
2230
|
{
|
|
2067
|
-
"
|
|
2068
|
-
|
|
2231
|
+
"if": {
|
|
2232
|
+
"visible": ".decline-button,.eu-cookie-compliance-save-preferences-button"
|
|
2233
|
+
},
|
|
2234
|
+
"then": [
|
|
2235
|
+
{
|
|
2236
|
+
"click": ".decline-button,.eu-cookie-compliance-save-preferences-button"
|
|
2237
|
+
}
|
|
2238
|
+
]
|
|
2069
2239
|
},
|
|
2070
2240
|
{
|
|
2071
2241
|
"hide": ".eu-cookie-compliance-banner-info, #sliding-popup"
|
|
@@ -2112,6 +2282,37 @@
|
|
|
2112
2282
|
}
|
|
2113
2283
|
]
|
|
2114
2284
|
},
|
|
2285
|
+
{
|
|
2286
|
+
"name": "europa-eu",
|
|
2287
|
+
"vendorUrl": "https://ec.europa.eu/",
|
|
2288
|
+
"runContext": {
|
|
2289
|
+
"urlPattern": "^https://[^/]*europa\\.eu/"
|
|
2290
|
+
},
|
|
2291
|
+
"prehideSelectors": [
|
|
2292
|
+
"#cookie-consent-banner"
|
|
2293
|
+
],
|
|
2294
|
+
"detectCmp": [
|
|
2295
|
+
{
|
|
2296
|
+
"exists": ".cck-container"
|
|
2297
|
+
}
|
|
2298
|
+
],
|
|
2299
|
+
"detectPopup": [
|
|
2300
|
+
{
|
|
2301
|
+
"visible": ".cck-container"
|
|
2302
|
+
}
|
|
2303
|
+
],
|
|
2304
|
+
"optIn": [
|
|
2305
|
+
{
|
|
2306
|
+
"waitForThenClick": ".cck-actions-button[href=\"#accept\"]"
|
|
2307
|
+
}
|
|
2308
|
+
],
|
|
2309
|
+
"optOut": [
|
|
2310
|
+
{
|
|
2311
|
+
"waitForThenClick": ".cck-actions-button[href=\"#refuse\"]",
|
|
2312
|
+
"hide": ".cck-container"
|
|
2313
|
+
}
|
|
2314
|
+
]
|
|
2315
|
+
},
|
|
2115
2316
|
{
|
|
2116
2317
|
"name": "EZoic",
|
|
2117
2318
|
"prehideSelectors": [
|
|
@@ -2198,6 +2399,33 @@
|
|
|
2198
2399
|
}
|
|
2199
2400
|
]
|
|
2200
2401
|
},
|
|
2402
|
+
{
|
|
2403
|
+
"name": "fides",
|
|
2404
|
+
"vendorUrl": "https://github.com/ethyca/fides",
|
|
2405
|
+
"prehideSelectors": [
|
|
2406
|
+
"#fides-overlay"
|
|
2407
|
+
],
|
|
2408
|
+
"detectCmp": [
|
|
2409
|
+
{
|
|
2410
|
+
"exists": "#fides-overlay #fides-banner"
|
|
2411
|
+
}
|
|
2412
|
+
],
|
|
2413
|
+
"detectPopup": [
|
|
2414
|
+
{
|
|
2415
|
+
"visible": "#fides-overlay #fides-banner"
|
|
2416
|
+
}
|
|
2417
|
+
],
|
|
2418
|
+
"optIn": [
|
|
2419
|
+
{
|
|
2420
|
+
"waitForThenClick": "#fides-banner [data-testid=\"Accept all-btn\"]"
|
|
2421
|
+
}
|
|
2422
|
+
],
|
|
2423
|
+
"optOut": [
|
|
2424
|
+
{
|
|
2425
|
+
"waitForThenClick": "#fides-banner [data-testid=\"Reject all-btn\"]"
|
|
2426
|
+
}
|
|
2427
|
+
]
|
|
2428
|
+
},
|
|
2201
2429
|
{
|
|
2202
2430
|
"name": "funding-choices",
|
|
2203
2431
|
"prehideSelectors": [
|
|
@@ -2607,6 +2835,39 @@
|
|
|
2607
2835
|
}
|
|
2608
2836
|
]
|
|
2609
2837
|
},
|
|
2838
|
+
{
|
|
2839
|
+
"name": "instagram",
|
|
2840
|
+
"vendorUrl": "https://instagram.com",
|
|
2841
|
+
"runContext": {
|
|
2842
|
+
"urlPattern": "^https://www\\.instagram\\.com/"
|
|
2843
|
+
},
|
|
2844
|
+
"prehideSelectors": [
|
|
2845
|
+
".x78zum5.xdt5ytf.xg6iff7.x1n2onr6"
|
|
2846
|
+
],
|
|
2847
|
+
"detectCmp": [
|
|
2848
|
+
{
|
|
2849
|
+
"exists": ".x1qjc9v5.x9f619.x78zum5.xdt5ytf.x1iyjqo2.xl56j7k"
|
|
2850
|
+
}
|
|
2851
|
+
],
|
|
2852
|
+
"detectPopup": [
|
|
2853
|
+
{
|
|
2854
|
+
"visible": ".x1qjc9v5.x9f619.x78zum5.xdt5ytf.x1iyjqo2.xl56j7k"
|
|
2855
|
+
}
|
|
2856
|
+
],
|
|
2857
|
+
"optIn": [
|
|
2858
|
+
{
|
|
2859
|
+
"waitForThenClick": "._a9--._a9_0"
|
|
2860
|
+
}
|
|
2861
|
+
],
|
|
2862
|
+
"optOut": [
|
|
2863
|
+
{
|
|
2864
|
+
"waitForThenClick": "._a9--._a9_1"
|
|
2865
|
+
},
|
|
2866
|
+
{
|
|
2867
|
+
"wait": 2000
|
|
2868
|
+
}
|
|
2869
|
+
]
|
|
2870
|
+
},
|
|
2610
2871
|
{
|
|
2611
2872
|
"name": "ionos.de",
|
|
2612
2873
|
"prehideSelectors": [
|
|
@@ -2852,6 +3113,7 @@
|
|
|
2852
3113
|
},
|
|
2853
3114
|
{
|
|
2854
3115
|
"name": "ketch",
|
|
3116
|
+
"vendorUrl": "https://www.ketch.com",
|
|
2855
3117
|
"runContext": {
|
|
2856
3118
|
"frame": false,
|
|
2857
3119
|
"main": true
|
|
@@ -2877,7 +3139,7 @@
|
|
|
2877
3139
|
},
|
|
2878
3140
|
"then": [
|
|
2879
3141
|
{
|
|
2880
|
-
"waitForThenClick": "#lanyard_root div[class
|
|
3142
|
+
"waitForThenClick": "#lanyard_root div[class*=buttons] > :nth-child(2)"
|
|
2881
3143
|
},
|
|
2882
3144
|
{
|
|
2883
3145
|
"click": "#lanyard_root button[class='confirmButton']"
|
|
@@ -2885,43 +3147,42 @@
|
|
|
2885
3147
|
],
|
|
2886
3148
|
"else": [
|
|
2887
3149
|
{
|
|
2888
|
-
"waitForThenClick": "#lanyard_root div[class
|
|
3150
|
+
"waitForThenClick": "#lanyard_root div[class*=buttons] > :nth-child(2)"
|
|
2889
3151
|
}
|
|
2890
3152
|
]
|
|
2891
3153
|
}
|
|
2892
3154
|
],
|
|
2893
3155
|
"optOut": [
|
|
2894
3156
|
{
|
|
2895
|
-
"
|
|
3157
|
+
"if": {
|
|
3158
|
+
"exists": "#lanyard_root [aria-describedby=banner-description]"
|
|
3159
|
+
},
|
|
3160
|
+
"then": [
|
|
3161
|
+
{
|
|
3162
|
+
"waitForThenClick": "#lanyard_root div[class*=buttons] > button[class*=secondaryButton]",
|
|
3163
|
+
"comment": "can be either settings or reject button"
|
|
3164
|
+
}
|
|
3165
|
+
]
|
|
3166
|
+
},
|
|
3167
|
+
{
|
|
3168
|
+
"waitFor": "#lanyard_root [aria-describedby=preference-description],#lanyard_root [aria-describedby=modal-description]",
|
|
3169
|
+
"timeout": 1000,
|
|
2896
3170
|
"optional": true
|
|
2897
3171
|
},
|
|
2898
3172
|
{
|
|
2899
3173
|
"if": {
|
|
2900
|
-
"exists": "#lanyard_root
|
|
3174
|
+
"exists": "#lanyard_root [aria-describedby=preference-description],#lanyard_root [aria-describedby=modal-description]"
|
|
2901
3175
|
},
|
|
2902
3176
|
"then": [
|
|
2903
3177
|
{
|
|
2904
|
-
"waitForThenClick": "#lanyard_root button[class*=
|
|
3178
|
+
"waitForThenClick": "#lanyard_root button[class*=rejectButton]"
|
|
2905
3179
|
},
|
|
2906
3180
|
{
|
|
2907
|
-
"click": "#lanyard_root button[class*=
|
|
2908
|
-
}
|
|
2909
|
-
],
|
|
2910
|
-
"else": [
|
|
2911
|
-
{
|
|
2912
|
-
"click": "#lanyard_root div[class^='buttons'] > :nth-child(1)",
|
|
2913
|
-
"optional": true
|
|
2914
|
-
},
|
|
2915
|
-
{
|
|
2916
|
-
"waitForThenClick": "#lanyard_root input:checked"
|
|
2917
|
-
},
|
|
2918
|
-
{
|
|
2919
|
-
"click": "#consentsTab > div:nth-child(2) > div > div[class^='actions'] > button:nth-child(1)"
|
|
3181
|
+
"click": "#lanyard_root button[class*=confirmButton],#lanyard_root div[class*=actions_] > button:nth-child(1)"
|
|
2920
3182
|
}
|
|
2921
3183
|
]
|
|
2922
3184
|
}
|
|
2923
|
-
]
|
|
2924
|
-
"test": []
|
|
3185
|
+
]
|
|
2925
3186
|
},
|
|
2926
3187
|
{
|
|
2927
3188
|
"name": "kleinanzeigen-de",
|
|
@@ -3619,9 +3880,8 @@
|
|
|
3619
3880
|
{
|
|
3620
3881
|
"name": "osano",
|
|
3621
3882
|
"prehideSelectors": [
|
|
3622
|
-
".osano-cm-window"
|
|
3883
|
+
".osano-cm-window,.osano-cm-dialog"
|
|
3623
3884
|
],
|
|
3624
|
-
"cosmetic": true,
|
|
3625
3885
|
"detectCmp": [
|
|
3626
3886
|
{
|
|
3627
3887
|
"exists": ".osano-cm-window"
|
|
@@ -3640,7 +3900,7 @@
|
|
|
3640
3900
|
],
|
|
3641
3901
|
"optOut": [
|
|
3642
3902
|
{
|
|
3643
|
-
"
|
|
3903
|
+
"waitForThenClick": ".osano-cm-denyAll"
|
|
3644
3904
|
}
|
|
3645
3905
|
]
|
|
3646
3906
|
},
|
|
@@ -3677,12 +3937,12 @@
|
|
|
3677
3937
|
],
|
|
3678
3938
|
"detectCmp": [
|
|
3679
3939
|
{
|
|
3680
|
-
"exists": "#ccpaCookieBanner, .privacy-
|
|
3940
|
+
"exists": "#ccpaCookieBanner, .privacy-sheet-content"
|
|
3681
3941
|
}
|
|
3682
3942
|
],
|
|
3683
3943
|
"detectPopup": [
|
|
3684
3944
|
{
|
|
3685
|
-
"exists": "#ccpaCookieBanner, .privacy-
|
|
3945
|
+
"exists": "#ccpaCookieBanner, .privacy-sheet-content"
|
|
3686
3946
|
}
|
|
3687
3947
|
],
|
|
3688
3948
|
"optIn": [
|
|
@@ -3702,7 +3962,7 @@
|
|
|
3702
3962
|
],
|
|
3703
3963
|
"else": [
|
|
3704
3964
|
{
|
|
3705
|
-
"waitForVisible": ".privacy-
|
|
3965
|
+
"waitForVisible": ".privacy-sheet-content #formContent"
|
|
3706
3966
|
},
|
|
3707
3967
|
{
|
|
3708
3968
|
"click": "#formContent .cookiepref-11m2iee-checkbox_base input:checked",
|
|
@@ -4514,6 +4774,36 @@
|
|
|
4514
4774
|
}
|
|
4515
4775
|
]
|
|
4516
4776
|
},
|
|
4777
|
+
{
|
|
4778
|
+
"name": "temu",
|
|
4779
|
+
"vendorUrl": "https://temu.com",
|
|
4780
|
+
"runContext": {
|
|
4781
|
+
"urlPattern": "^https://[^/]*temu\\.com/"
|
|
4782
|
+
},
|
|
4783
|
+
"prehideSelectors": [
|
|
4784
|
+
"._2d-8vq-W,._1UdBUwni"
|
|
4785
|
+
],
|
|
4786
|
+
"detectCmp": [
|
|
4787
|
+
{
|
|
4788
|
+
"exists": "._3YCsmIaS"
|
|
4789
|
+
}
|
|
4790
|
+
],
|
|
4791
|
+
"detectPopup": [
|
|
4792
|
+
{
|
|
4793
|
+
"visible": "._3YCsmIaS"
|
|
4794
|
+
}
|
|
4795
|
+
],
|
|
4796
|
+
"optIn": [
|
|
4797
|
+
{
|
|
4798
|
+
"waitForThenClick": "._3fKiu5wx._3zN5SumS._3tAK973O.IYOfhWEs.VGNGF1pA"
|
|
4799
|
+
}
|
|
4800
|
+
],
|
|
4801
|
+
"optOut": [
|
|
4802
|
+
{
|
|
4803
|
+
"waitForThenClick": "._3fKiu5wx._1_XToJBF._3tAK973O.IYOfhWEs.VGNGF1pA"
|
|
4804
|
+
}
|
|
4805
|
+
]
|
|
4806
|
+
},
|
|
4517
4807
|
{
|
|
4518
4808
|
"name": "Termly",
|
|
4519
4809
|
"prehideSelectors": [
|
|
@@ -4823,6 +5113,37 @@
|
|
|
4823
5113
|
}
|
|
4824
5114
|
]
|
|
4825
5115
|
},
|
|
5116
|
+
{
|
|
5117
|
+
"name": "transcend",
|
|
5118
|
+
"vendorUrl": "https://unknown",
|
|
5119
|
+
"cosmetic": true,
|
|
5120
|
+
"prehideSelectors": [
|
|
5121
|
+
"#transcend-consent-manager"
|
|
5122
|
+
],
|
|
5123
|
+
"detectCmp": [
|
|
5124
|
+
{
|
|
5125
|
+
"exists": "#transcend-consent-manager"
|
|
5126
|
+
}
|
|
5127
|
+
],
|
|
5128
|
+
"detectPopup": [
|
|
5129
|
+
{
|
|
5130
|
+
"visible": "#transcend-consent-manager"
|
|
5131
|
+
}
|
|
5132
|
+
],
|
|
5133
|
+
"optIn": [
|
|
5134
|
+
{
|
|
5135
|
+
"waitForThenClick": [
|
|
5136
|
+
"#transcend-consent-manager",
|
|
5137
|
+
"#consentManagerMainDialog .inner-container button"
|
|
5138
|
+
]
|
|
5139
|
+
}
|
|
5140
|
+
],
|
|
5141
|
+
"optOut": [
|
|
5142
|
+
{
|
|
5143
|
+
"hide": "#transcend-consent-manager"
|
|
5144
|
+
}
|
|
5145
|
+
]
|
|
5146
|
+
},
|
|
4826
5147
|
{
|
|
4827
5148
|
"name": "transip-nl",
|
|
4828
5149
|
"runContext": {
|
|
@@ -5647,6 +5968,34 @@
|
|
|
5647
5968
|
}
|
|
5648
5969
|
]
|
|
5649
5970
|
},
|
|
5971
|
+
{
|
|
5972
|
+
"name": "xvideos",
|
|
5973
|
+
"vendorUrl": "https://xvideos.com",
|
|
5974
|
+
"runContext": {
|
|
5975
|
+
"urlPattern": "^https://[^/]*xvideos\\.com/"
|
|
5976
|
+
},
|
|
5977
|
+
"prehideSelectors": [],
|
|
5978
|
+
"detectCmp": [
|
|
5979
|
+
{
|
|
5980
|
+
"exists": ".disclaimer-opened #disclaimer-cookies"
|
|
5981
|
+
}
|
|
5982
|
+
],
|
|
5983
|
+
"detectPopup": [
|
|
5984
|
+
{
|
|
5985
|
+
"visible": ".disclaimer-opened #disclaimer-cookies"
|
|
5986
|
+
}
|
|
5987
|
+
],
|
|
5988
|
+
"optIn": [
|
|
5989
|
+
{
|
|
5990
|
+
"waitForThenClick": "#disclaimer-accept_cookies"
|
|
5991
|
+
}
|
|
5992
|
+
],
|
|
5993
|
+
"optOut": [
|
|
5994
|
+
{
|
|
5995
|
+
"waitForThenClick": "#disclaimer-reject_cookies"
|
|
5996
|
+
}
|
|
5997
|
+
]
|
|
5998
|
+
},
|
|
5650
5999
|
{
|
|
5651
6000
|
"name": "Yahoo",
|
|
5652
6001
|
"runContext": {
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
EVAL_ALMACMP_0: () => document.cookie.includes('"name":"Google","consent":false'),
|
|
36
36
|
EVAL_AFFINITY_SERIF_COM_0: () => document.cookie.includes("serif_manage_cookies_viewed") && !document.cookie.includes("serif_allow_analytics"),
|
|
37
37
|
EVAL_AXEPTIO_0: () => document.cookie.includes("axeptio_authorized_vendors=%2C%2C"),
|
|
38
|
+
EVAL_BAHN_TEST: () => utag.gdpr.getSelectedCategories().length === 1,
|
|
38
39
|
EVAL_BING_0: () => document.cookie.includes("AL=0") && document.cookie.includes("AD=0") && document.cookie.includes("SM=0"),
|
|
39
40
|
EVAL_BLOCKSY_0: () => document.cookie.includes("blocksy_cookies_consent_accepted=no"),
|
|
40
41
|
EVAL_BORLABS_0: () => !JSON.parse(decodeURIComponent(document.cookie.split(";").find((c) => c.indexOf("borlabs-cookie") !== -1).split("=", 2)[1])).consents.statistics,
|
|
@@ -45,10 +46,9 @@
|
|
|
45
46
|
EVAL_CLINCH_0: () => document.cookie.includes("ctc_rejected=1"),
|
|
46
47
|
EVAL_COINBASE_0: () => JSON.parse(decodeURIComponent(document.cookie.match(/cm_(eu|default)_preferences=([0-9a-zA-Z\\{\\}\\[\\]%:]*);?/)[2])).consent.length <= 1,
|
|
47
48
|
EVAL_COMPLIANZ_BANNER_0: () => document.cookie.includes("cmplz_banner-status=dismissed"),
|
|
48
|
-
EVAL_COMPLIANZ_CATEGORIES_0: () => !!document.cookie.match(/cmplz_[^=]+=deny/),
|
|
49
|
-
EVAL_COMPLIANZ_OPTIN_0: () => !!document.cookie.match(/cookieconsent_preferences_disabled=[^;]+/),
|
|
50
49
|
EVAL_COOKIE_LAW_INFO_0: () => CLI.disableAllCookies() || CLI.reject_close() || true,
|
|
51
50
|
EVAL_COOKIE_LAW_INFO_1: () => document.cookie.indexOf("cookielawinfo-checkbox-non-necessary=yes") === -1,
|
|
51
|
+
EVAL_COOKIE_LAW_INFO_DETECT: () => !!window.CLI,
|
|
52
52
|
EVAL_COOKIE_MANAGER_POPUP_0: () => JSON.parse(document.cookie.split(";").find((c) => c.trim().startsWith("CookieLevel")).split("=")[1]).social === false,
|
|
53
53
|
EVAL_COOKIEALERT_0: () => document.querySelector("body").removeAttribute("style") || true,
|
|
54
54
|
EVAL_COOKIEALERT_1: () => document.querySelector("body").removeAttribute("style") || true,
|