@duckduckgo/autoconsent 9.7.1 → 10.0.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/.github/workflows/asana.yml +5 -1
- package/CHANGELOG.md +46 -0
- package/Jenkinsfile +36 -11
- package/data/coverage.json +1529 -889
- package/dist/addon-firefox/rules.json +24 -12
- package/dist/addon-mv3/rules.json +24 -12
- package/dist/autoconsent.playwright.js +1 -1
- package/dist/autoconsent.unit.js +24 -12
- package/package.json +5 -5
- package/playwright/runner.ts +1 -1
- package/rules/autoconsent/clinch.json +21 -9
- package/rules/autoconsent/dndbeyond.json +1 -1
- package/rules/autoconsent/jdsports.json +1 -1
- package/rules/autoconsent/livejasmin.json +1 -1
- package/rules/rules.json +24 -12
|
@@ -1253,15 +1253,27 @@
|
|
|
1253
1253
|
],
|
|
1254
1254
|
"optOut": [
|
|
1255
1255
|
{
|
|
1256
|
-
"
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
"
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
"
|
|
1256
|
+
"if": {
|
|
1257
|
+
"exists": "#consent_reject"
|
|
1258
|
+
},
|
|
1259
|
+
"then": [
|
|
1260
|
+
{
|
|
1261
|
+
"click": "#consent_reject"
|
|
1262
|
+
}
|
|
1263
|
+
],
|
|
1264
|
+
"else": [
|
|
1265
|
+
{
|
|
1266
|
+
"click": "#manage_cookie_preferences"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"click": "#cookie_consent_preferences input:checked",
|
|
1270
|
+
"all": true,
|
|
1271
|
+
"optional": true
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"click": "#consent_save"
|
|
1275
|
+
}
|
|
1276
|
+
]
|
|
1265
1277
|
}
|
|
1266
1278
|
],
|
|
1267
1279
|
"test": [
|
|
@@ -2315,7 +2327,7 @@
|
|
|
2315
2327
|
"name": "dndbeyond",
|
|
2316
2328
|
"vendorUrl": "https://www.dndbeyond.com/",
|
|
2317
2329
|
"runContext": {
|
|
2318
|
-
"urlPattern": "^https://www\\.dndbeyond\\.com/"
|
|
2330
|
+
"urlPattern": "^https://(www\\.)?dndbeyond\\.com/"
|
|
2319
2331
|
},
|
|
2320
2332
|
"prehideSelectors": [
|
|
2321
2333
|
"[id^=cookie-consent-banner]"
|
|
@@ -3359,7 +3371,7 @@
|
|
|
3359
3371
|
"name": "jdsports",
|
|
3360
3372
|
"vendorUrl": "https://www.jdsports.co.uk/",
|
|
3361
3373
|
"runContext": {
|
|
3362
|
-
"urlPattern": "^https://www\\.jdsports\\."
|
|
3374
|
+
"urlPattern": "^https://(www|m)\\.jdsports\\."
|
|
3363
3375
|
},
|
|
3364
3376
|
"prehideSelectors": [
|
|
3365
3377
|
".miniConsent,#PrivacyPolicyBanner"
|
|
@@ -3760,7 +3772,7 @@
|
|
|
3760
3772
|
"name": "livejasmin",
|
|
3761
3773
|
"vendorUrl": "https://www.livejasmin.com/",
|
|
3762
3774
|
"runContext": {
|
|
3763
|
-
"urlPattern": "^https://www\\.livejasmin\\.com/"
|
|
3775
|
+
"urlPattern": "^https://(m|www)\\.livejasmin\\.com/"
|
|
3764
3776
|
},
|
|
3765
3777
|
"prehideSelectors": [
|
|
3766
3778
|
"#consent_modal"
|
|
@@ -1253,15 +1253,27 @@
|
|
|
1253
1253
|
],
|
|
1254
1254
|
"optOut": [
|
|
1255
1255
|
{
|
|
1256
|
-
"
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
"
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
"
|
|
1256
|
+
"if": {
|
|
1257
|
+
"exists": "#consent_reject"
|
|
1258
|
+
},
|
|
1259
|
+
"then": [
|
|
1260
|
+
{
|
|
1261
|
+
"click": "#consent_reject"
|
|
1262
|
+
}
|
|
1263
|
+
],
|
|
1264
|
+
"else": [
|
|
1265
|
+
{
|
|
1266
|
+
"click": "#manage_cookie_preferences"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"click": "#cookie_consent_preferences input:checked",
|
|
1270
|
+
"all": true,
|
|
1271
|
+
"optional": true
|
|
1272
|
+
},
|
|
1273
|
+
{
|
|
1274
|
+
"click": "#consent_save"
|
|
1275
|
+
}
|
|
1276
|
+
]
|
|
1265
1277
|
}
|
|
1266
1278
|
],
|
|
1267
1279
|
"test": [
|
|
@@ -2315,7 +2327,7 @@
|
|
|
2315
2327
|
"name": "dndbeyond",
|
|
2316
2328
|
"vendorUrl": "https://www.dndbeyond.com/",
|
|
2317
2329
|
"runContext": {
|
|
2318
|
-
"urlPattern": "^https://www\\.dndbeyond\\.com/"
|
|
2330
|
+
"urlPattern": "^https://(www\\.)?dndbeyond\\.com/"
|
|
2319
2331
|
},
|
|
2320
2332
|
"prehideSelectors": [
|
|
2321
2333
|
"[id^=cookie-consent-banner]"
|
|
@@ -3359,7 +3371,7 @@
|
|
|
3359
3371
|
"name": "jdsports",
|
|
3360
3372
|
"vendorUrl": "https://www.jdsports.co.uk/",
|
|
3361
3373
|
"runContext": {
|
|
3362
|
-
"urlPattern": "^https://www\\.jdsports\\."
|
|
3374
|
+
"urlPattern": "^https://(www|m)\\.jdsports\\."
|
|
3363
3375
|
},
|
|
3364
3376
|
"prehideSelectors": [
|
|
3365
3377
|
".miniConsent,#PrivacyPolicyBanner"
|
|
@@ -3760,7 +3772,7 @@
|
|
|
3760
3772
|
"name": "livejasmin",
|
|
3761
3773
|
"vendorUrl": "https://www.livejasmin.com/",
|
|
3762
3774
|
"runContext": {
|
|
3763
|
-
"urlPattern": "^https://www\\.livejasmin\\.com/"
|
|
3775
|
+
"urlPattern": "^https://(m|www)\\.livejasmin\\.com/"
|
|
3764
3776
|
},
|
|
3765
3777
|
"prehideSelectors": [
|
|
3766
3778
|
"#consent_modal"
|