@duckduckgo/autoconsent 9.6.0 → 9.7.1

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.
Files changed (69) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/addon-firefox/background.bundle.js +7 -0
  3. package/dist/addon-firefox/content.bundle.js +7 -0
  4. package/dist/addon-firefox/manifest.json +1 -1
  5. package/dist/addon-firefox/rules.json +897 -4
  6. package/dist/addon-mv3/background.bundle.js +7 -0
  7. package/dist/addon-mv3/content.bundle.js +7 -0
  8. package/dist/addon-mv3/manifest.json +1 -1
  9. package/dist/addon-mv3/rules.json +897 -4
  10. package/dist/autoconsent.cjs.js +7 -0
  11. package/dist/autoconsent.esm.js +7 -0
  12. package/dist/autoconsent.playwright.js +1 -1
  13. package/dist/autoconsent.unit.js +904 -4
  14. package/lib/eval-snippets.ts +7 -0
  15. package/package.json +1 -1
  16. package/rules/autoconsent/abconcerts.be.json +39 -0
  17. package/rules/autoconsent/aliexpress.json +39 -0
  18. package/rules/autoconsent/arbeitsagentur.json +36 -0
  19. package/rules/autoconsent/asus.json +43 -0
  20. package/rules/autoconsent/cookieacceptbar.json +26 -0
  21. package/rules/autoconsent/cookieconsent2.json +32 -0
  22. package/rules/autoconsent/cookieconsent3.json +29 -0
  23. package/rules/autoconsent/dndbeyond.json +31 -0
  24. package/rules/autoconsent/hashicorp.json +31 -0
  25. package/rules/autoconsent/hu-manity.json +28 -0
  26. package/rules/autoconsent/jdsports.json +39 -0
  27. package/rules/autoconsent/lineagrafica.json +26 -0
  28. package/rules/autoconsent/livejasmin.json +39 -0
  29. package/rules/autoconsent/om.json +40 -0
  30. package/rules/autoconsent/openli.json +26 -0
  31. package/rules/autoconsent/ourworldindata.json +28 -0
  32. package/rules/autoconsent/pabcogypsum.json +25 -0
  33. package/rules/autoconsent/productz.com.json +28 -0
  34. package/rules/autoconsent/setapp.com.json +29 -0
  35. package/rules/autoconsent/svt.se.json +31 -0
  36. package/rules/autoconsent/taunton.json +36 -0
  37. package/rules/autoconsent/termsfeed.json +26 -0
  38. package/rules/autoconsent/termsfeed3.json +27 -0
  39. package/rules/autoconsent/twitch-mobile.json +29 -0
  40. package/rules/autoconsent/wolframalpha.json +29 -0
  41. package/rules/autoconsent/xe.com.json +39 -0
  42. package/rules/create-rule.mjs +2 -2
  43. package/rules/rules.json +897 -4
  44. package/tests/abconcerts.be.spec.ts +7 -0
  45. package/tests/aliexpress.spec.ts +6 -0
  46. package/tests/arbeitsagentur.spec.ts +5 -0
  47. package/tests/asus.spec.ts +6 -0
  48. package/tests/cookieacceptbar.spec.ts +6 -0
  49. package/tests/cookieconsent2.spec.ts +7 -0
  50. package/tests/cookieconsent3.spec.ts +5 -0
  51. package/tests/dndbeyond.spec.ts +5 -0
  52. package/tests/hashicorp.spec.ts +5 -0
  53. package/tests/hu-manity.spec.ts +7 -0
  54. package/tests/jdsports.spec.ts +5 -0
  55. package/tests/lineagrafica.spec.ts +5 -0
  56. package/tests/livejasmin.spec.ts +5 -0
  57. package/tests/om.spec.ts +9 -0
  58. package/tests/openli.spec.ts +6 -0
  59. package/tests/ourworldindata.spec.ts +5 -0
  60. package/tests/pabcogypsum.spec.ts +5 -0
  61. package/tests/productz.com.spec.ts +5 -0
  62. package/tests/setapp.com.spec.ts +5 -0
  63. package/tests/svt.se.spec.ts +5 -0
  64. package/tests/taunton.spec.ts +11 -0
  65. package/tests/termsfeed.spec.ts +6 -0
  66. package/tests/termsfeed3.spec.ts +7 -0
  67. package/tests/twitch-mobile.spec.ts +5 -0
  68. package/tests/wolframalpha.spec.ts +5 -0
  69. package/tests/xe.com.spec.ts +5 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ # v9.7.1 (Fri Feb 02 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Avoid :has selectors in detect rules [#370](https://github.com/duckduckgo/autoconsent/pull/370) ([@muodov](https://github.com/muodov))
6
+
7
+ #### Authors: 1
8
+
9
+ - Maxim Tsoy ([@muodov](https://github.com/muodov))
10
+
11
+ ---
12
+
13
+ # v9.7.0 (Fri Feb 02 2024)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - More rules for common CMPs [#367](https://github.com/duckduckgo/autoconsent/pull/367) ([@muodov](https://github.com/muodov))
18
+ - More site-specific pop-ups [#366](https://github.com/duckduckgo/autoconsent/pull/366) ([@muodov](https://github.com/muodov))
19
+
20
+ #### Authors: 1
21
+
22
+ - Maxim Tsoy ([@muodov](https://github.com/muodov))
23
+
24
+ ---
25
+
1
26
  # v9.6.0 (Wed Jan 31 2024)
2
27
 
3
28
  #### 🚀 Enhancement
@@ -34,6 +34,7 @@
34
34
  EVAL_ADROLL_0: () => !document.cookie.includes("__adroll_fpc"),
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
+ EVAL_ARBEITSAGENTUR_TEST: () => document.cookie.includes("cookie_consent=denied"),
37
38
  EVAL_AXEPTIO_0: () => document.cookie.includes("axeptio_authorized_vendors=%2C%2C"),
38
39
  EVAL_BAHN_TEST: () => utag.gdpr.getSelectedCategories().length === 1,
39
40
  EVAL_BING_0: () => document.cookie.includes("AL=0") && document.cookie.includes("AD=0") && document.cookie.includes("SM=0"),
@@ -44,6 +45,8 @@
44
45
  EVAL_CC_BANNER2_0: () => !!document.cookie.match(/sncc=[^;]+D%3Dtrue/),
45
46
  EVAL_CLICKIO_0: () => document.cookie.includes("__lxG__consent__v2_daisybit="),
46
47
  EVAL_CLINCH_0: () => document.cookie.includes("ctc_rejected=1"),
48
+ EVAL_COOKIECONSENT2_TEST: () => document.cookie.includes("cc_cookie="),
49
+ EVAL_COOKIECONSENT3_TEST: () => document.cookie.includes("cc_cookie="),
47
50
  EVAL_COINBASE_0: () => JSON.parse(decodeURIComponent(document.cookie.match(/cm_(eu|default)_preferences=([0-9a-zA-Z\\{\\}\\[\\]%:]*);?/)[2])).consent.length <= 1,
48
51
  EVAL_COMPLIANZ_BANNER_0: () => document.cookie.includes("cmplz_banner-status=dismissed"),
49
52
  EVAL_COOKIE_LAW_INFO_0: () => CLI.disableAllCookies() || CLI.reject_close() || true,
@@ -60,6 +63,7 @@
60
63
  EVAL_COOKIEINFORMATION_2: () => document.cookie.includes("CookieInformationConsent="),
61
64
  EVAL_COOKIEYES_0: () => document.cookie.includes("advertisement:no"),
62
65
  EVAL_DAILYMOTION_0: () => !!document.cookie.match("dm-euconsent-v2"),
66
+ EVAL_DNDBEYOND_TEST: () => document.cookie.includes("cookie-consent=denied"),
63
67
  EVAL_DSGVO_0: () => !document.cookie.includes("sp_dsgvo_cookie_settings"),
64
68
  EVAL_DUNELM_0: () => document.cookie.includes("cc_functional=0") && document.cookie.includes("cc_targeting=0"),
65
69
  EVAL_ETSY_0: () => document.querySelectorAll(".gdpr-overlay-body input").forEach((toggle) => {
@@ -97,10 +101,12 @@
97
101
  EVAL_SIRDATA_0: () => document.cookie.includes("euconsent-v2"),
98
102
  EVAL_SNIGEL_0: () => !!document.cookie.match("snconsent"),
99
103
  EVAL_STEAMPOWERED_0: () => JSON.parse(decodeURIComponent(document.cookie.split(";").find((s) => s.trim().startsWith("cookieSettings")).split("=")[1])).preference_state === 2,
104
+ EVAL_SVT_TEST: () => document.cookie.includes('cookie-consent-1={"optedIn":true,"functionality":false,"statistics":false}'),
100
105
  EVAL_TAKEALOT_0: () => document.body.classList.remove("freeze") || (document.body.style = "") || true,
101
106
  EVAL_TARTEAUCITRON_0: () => tarteaucitron.userInterface.respondAll(false) || true,
102
107
  EVAL_TARTEAUCITRON_1: () => tarteaucitron.userInterface.respondAll(true) || true,
103
108
  EVAL_TARTEAUCITRON_2: () => document.cookie.match(/tarteaucitron=[^;]*/)[0].includes("false"),
109
+ EVAL_TAUNTON_TEST: () => document.cookie.includes("taunton_user_consent_submitted=true"),
104
110
  EVAL_TEALIUM_0: () => typeof window.utag !== "undefined" && typeof utag.gdpr === "object",
105
111
  EVAL_TEALIUM_1: () => utag.gdpr.setConsentValue(false) || true,
106
112
  EVAL_TEALIUM_DONOTSELL: () => utag.gdpr.dns?.setDnsState(false) || true,
@@ -125,6 +131,7 @@
125
131
  EVAL_WAITROSE_0: () => Array.from(document.querySelectorAll("label[id$=cookies-deny-label]")).forEach((e) => e.click()) || true,
126
132
  EVAL_WAITROSE_1: () => document.cookie.includes("wtr_cookies_advertising=0") && document.cookie.includes("wtr_cookies_analytics=0"),
127
133
  EVAL_WP_COOKIE_NOTICE_0: () => document.cookie.includes("wpl_viewed_cookie=no"),
134
+ EVAL_XE_TEST: () => document.cookie.includes("xeConsentState={%22performance%22:false%2C%22marketing%22:false%2C%22compliance%22:false}"),
128
135
  EVAL_XING_0: () => document.cookie.includes("userConsent=%7B%22marketing%22%3Afalse"),
129
136
  EVAL_YOUTUBE_DESKTOP_0: () => !!document.cookie.match(/SOCS=CAE/),
130
137
  EVAL_YOUTUBE_MOBILE_0: () => !!document.cookie.match(/SOCS=CAE/)
@@ -481,6 +481,7 @@
481
481
  EVAL_ADROLL_0: () => !document.cookie.includes("__adroll_fpc"),
482
482
  EVAL_ALMACMP_0: () => document.cookie.includes('"name":"Google","consent":false'),
483
483
  EVAL_AFFINITY_SERIF_COM_0: () => document.cookie.includes("serif_manage_cookies_viewed") && !document.cookie.includes("serif_allow_analytics"),
484
+ EVAL_ARBEITSAGENTUR_TEST: () => document.cookie.includes("cookie_consent=denied"),
484
485
  EVAL_AXEPTIO_0: () => document.cookie.includes("axeptio_authorized_vendors=%2C%2C"),
485
486
  EVAL_BAHN_TEST: () => utag.gdpr.getSelectedCategories().length === 1,
486
487
  EVAL_BING_0: () => document.cookie.includes("AL=0") && document.cookie.includes("AD=0") && document.cookie.includes("SM=0"),
@@ -491,6 +492,8 @@
491
492
  EVAL_CC_BANNER2_0: () => !!document.cookie.match(/sncc=[^;]+D%3Dtrue/),
492
493
  EVAL_CLICKIO_0: () => document.cookie.includes("__lxG__consent__v2_daisybit="),
493
494
  EVAL_CLINCH_0: () => document.cookie.includes("ctc_rejected=1"),
495
+ EVAL_COOKIECONSENT2_TEST: () => document.cookie.includes("cc_cookie="),
496
+ EVAL_COOKIECONSENT3_TEST: () => document.cookie.includes("cc_cookie="),
494
497
  EVAL_COINBASE_0: () => JSON.parse(decodeURIComponent(document.cookie.match(/cm_(eu|default)_preferences=([0-9a-zA-Z\\{\\}\\[\\]%:]*);?/)[2])).consent.length <= 1,
495
498
  EVAL_COMPLIANZ_BANNER_0: () => document.cookie.includes("cmplz_banner-status=dismissed"),
496
499
  EVAL_COOKIE_LAW_INFO_0: () => CLI.disableAllCookies() || CLI.reject_close() || true,
@@ -507,6 +510,7 @@
507
510
  EVAL_COOKIEINFORMATION_2: () => document.cookie.includes("CookieInformationConsent="),
508
511
  EVAL_COOKIEYES_0: () => document.cookie.includes("advertisement:no"),
509
512
  EVAL_DAILYMOTION_0: () => !!document.cookie.match("dm-euconsent-v2"),
513
+ EVAL_DNDBEYOND_TEST: () => document.cookie.includes("cookie-consent=denied"),
510
514
  EVAL_DSGVO_0: () => !document.cookie.includes("sp_dsgvo_cookie_settings"),
511
515
  EVAL_DUNELM_0: () => document.cookie.includes("cc_functional=0") && document.cookie.includes("cc_targeting=0"),
512
516
  EVAL_ETSY_0: () => document.querySelectorAll(".gdpr-overlay-body input").forEach((toggle) => {
@@ -544,10 +548,12 @@
544
548
  EVAL_SIRDATA_0: () => document.cookie.includes("euconsent-v2"),
545
549
  EVAL_SNIGEL_0: () => !!document.cookie.match("snconsent"),
546
550
  EVAL_STEAMPOWERED_0: () => JSON.parse(decodeURIComponent(document.cookie.split(";").find((s) => s.trim().startsWith("cookieSettings")).split("=")[1])).preference_state === 2,
551
+ EVAL_SVT_TEST: () => document.cookie.includes('cookie-consent-1={"optedIn":true,"functionality":false,"statistics":false}'),
547
552
  EVAL_TAKEALOT_0: () => document.body.classList.remove("freeze") || (document.body.style = "") || true,
548
553
  EVAL_TARTEAUCITRON_0: () => tarteaucitron.userInterface.respondAll(false) || true,
549
554
  EVAL_TARTEAUCITRON_1: () => tarteaucitron.userInterface.respondAll(true) || true,
550
555
  EVAL_TARTEAUCITRON_2: () => document.cookie.match(/tarteaucitron=[^;]*/)[0].includes("false"),
556
+ EVAL_TAUNTON_TEST: () => document.cookie.includes("taunton_user_consent_submitted=true"),
551
557
  EVAL_TEALIUM_0: () => typeof window.utag !== "undefined" && typeof utag.gdpr === "object",
552
558
  EVAL_TEALIUM_1: () => utag.gdpr.setConsentValue(false) || true,
553
559
  EVAL_TEALIUM_DONOTSELL: () => utag.gdpr.dns?.setDnsState(false) || true,
@@ -572,6 +578,7 @@
572
578
  EVAL_WAITROSE_0: () => Array.from(document.querySelectorAll("label[id$=cookies-deny-label]")).forEach((e) => e.click()) || true,
573
579
  EVAL_WAITROSE_1: () => document.cookie.includes("wtr_cookies_advertising=0") && document.cookie.includes("wtr_cookies_analytics=0"),
574
580
  EVAL_WP_COOKIE_NOTICE_0: () => document.cookie.includes("wpl_viewed_cookie=no"),
581
+ EVAL_XE_TEST: () => document.cookie.includes("xeConsentState={%22performance%22:false%2C%22marketing%22:false%2C%22compliance%22:false}"),
575
582
  EVAL_XING_0: () => document.cookie.includes("userConsent=%7B%22marketing%22%3Afalse"),
576
583
  EVAL_YOUTUBE_DESKTOP_0: () => !!document.cookie.match(/SOCS=CAE/),
577
584
  EVAL_YOUTUBE_MOBILE_0: () => !!document.cookie.match(/SOCS=CAE/)
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 2,
3
3
  "name": "Autoconsent",
4
- "version": "2024.1.31",
4
+ "version": "2024.2.2",
5
5
  "background": {
6
6
  "scripts": [
7
7
  "background.bundle.js"