@duckduckgo/autoconsent 9.5.0 → 9.7.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 +31 -0
- package/dist/addon-firefox/background.bundle.js +7 -0
- package/dist/addon-firefox/content.bundle.js +20 -6
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-firefox/rules.json +948 -13
- package/dist/addon-mv3/background.bundle.js +7 -0
- package/dist/addon-mv3/content.bundle.js +20 -6
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/addon-mv3/rules.json +948 -13
- package/dist/autoconsent.cjs.js +20 -6
- package/dist/autoconsent.esm.js +20 -6
- package/dist/autoconsent.playwright.js +1 -1
- package/dist/autoconsent.unit.js +966 -17
- package/lib/eval-snippets.ts +7 -0
- package/lib/web.ts +13 -10
- package/package.json +1 -1
- package/rules/autoconsent/abconcerts.be.json +39 -0
- package/rules/autoconsent/aliexpress.json +39 -0
- package/rules/autoconsent/arbeitsagentur.json +36 -0
- package/rules/autoconsent/asus.json +43 -0
- package/rules/autoconsent/cookieacceptbar.json +26 -0
- package/rules/autoconsent/cookieconsent2.json +32 -0
- package/rules/autoconsent/cookieconsent3.json +29 -0
- package/rules/autoconsent/dndbeyond.json +31 -0
- package/rules/autoconsent/hashicorp.json +31 -0
- package/rules/autoconsent/hu-manity.json +28 -0
- package/rules/autoconsent/jdsports.json +39 -0
- package/rules/autoconsent/lineagrafica.json +26 -0
- package/rules/autoconsent/livejasmin.json +39 -0
- package/rules/autoconsent/om.json +40 -0
- package/rules/autoconsent/openli.json +26 -0
- package/rules/autoconsent/ourworldindata.json +28 -0
- package/rules/autoconsent/pabcogypsum.json +25 -0
- package/rules/autoconsent/productz.com.json +28 -0
- package/rules/autoconsent/reddit.json +19 -5
- package/rules/autoconsent/setapp.com.json +29 -0
- package/rules/autoconsent/svt.se.json +31 -0
- package/rules/autoconsent/taunton.json +36 -0
- package/rules/autoconsent/tealium.json +4 -4
- package/rules/autoconsent/termsfeed.json +26 -0
- package/rules/autoconsent/termsfeed3.json +27 -0
- package/rules/autoconsent/twitch-mobile.json +29 -0
- package/rules/autoconsent/webflow.json +34 -0
- package/rules/autoconsent/wolframalpha.json +29 -0
- package/rules/autoconsent/xe.com.json +39 -0
- package/rules/create-rule.mjs +2 -2
- package/rules/rules.json +948 -13
- package/tests/abconcerts.be.spec.ts +7 -0
- package/tests/aliexpress.spec.ts +6 -0
- package/tests/arbeitsagentur.spec.ts +5 -0
- package/tests/asus.spec.ts +6 -0
- package/tests/cookieacceptbar.spec.ts +6 -0
- package/tests/cookieconsent2.spec.ts +7 -0
- package/tests/cookieconsent3.spec.ts +5 -0
- package/tests/dndbeyond.spec.ts +5 -0
- package/tests/hashicorp.spec.ts +5 -0
- package/tests/hu-manity.spec.ts +7 -0
- package/tests/jdsports.spec.ts +5 -0
- package/tests/lineagrafica.spec.ts +5 -0
- package/tests/livejasmin.spec.ts +5 -0
- package/tests/om.spec.ts +9 -0
- package/tests/openli.spec.ts +6 -0
- package/tests/ourworldindata.spec.ts +5 -0
- package/tests/pabcogypsum.spec.ts +5 -0
- package/tests/productz.com.spec.ts +5 -0
- package/tests/setapp.com.spec.ts +5 -0
- package/tests/svt.se.spec.ts +5 -0
- package/tests/taunton.spec.ts +11 -0
- package/tests/termsfeed.spec.ts +6 -0
- package/tests/termsfeed3.spec.ts +7 -0
- package/tests/twitch-mobile.spec.ts +5 -0
- package/tests/webflow.spec.ts +7 -0
- package/tests/wolframalpha.spec.ts +5 -0
- package/tests/xe.com.spec.ts +5 -0
package/tests/om.spec.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import generateCMPTests from "../playwright/runner";
|
|
2
|
+
|
|
3
|
+
generateCMPTests('om', [
|
|
4
|
+
'https://olli-machts.de/en/extension/cookie-manager',
|
|
5
|
+
'https://www.uni-assist.de/',
|
|
6
|
+
'https://www.unisabana.edu.co/',
|
|
7
|
+
'https://deutsche-alzheimer.de/',
|
|
8
|
+
'https://avstumpfl.com/en/',
|
|
9
|
+
]);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import generateCMPTests from "../playwright/runner";
|
|
2
|
+
|
|
3
|
+
generateCMPTests('taunton', [
|
|
4
|
+
'https://www.greenbuildingadvisor.com/',
|
|
5
|
+
'https://www.finegardening.com/',
|
|
6
|
+
'https://www.finehomebuilding.com/',
|
|
7
|
+
'https://www.finewoodworking.com/',
|
|
8
|
+
'https://www.threadsmagazine.com/',
|
|
9
|
+
'https://www.keepcraftalive.org/',
|
|
10
|
+
'https://www.tauntonstore.com/',
|
|
11
|
+
]);
|