@duckduckgo/autoconsent 14.18.0 → 14.20.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 +24 -0
- package/dist/addon-firefox/content.bundle.js +60 -1
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-firefox/rules.json +1 -1
- package/dist/addon-mv3/content.bundle.js +60 -1
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/addon-mv3/rules.json +1 -1
- package/dist/autoconsent.cjs.js +60 -1
- package/dist/autoconsent.esm.js +60 -1
- package/dist/autoconsent.extra.cjs.js +60 -1
- package/dist/autoconsent.extra.esm.js +60 -1
- package/dist/autoconsent.playwright.js +61 -2
- package/lib/heuristics.ts +64 -0
- package/package.json +1 -1
- package/rules/autoconsent/web.de.json +1 -1
- package/rules/compact-rules.json +1 -1
- package/rules/rules.json +1 -1
- package/tests/web.de.spec.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v14.20.0 (Thu Sep 04 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Expand web.de rule to gmx.net [#925](https://github.com/duckduckgo/autoconsent/pull/925) ([@muodov](https://github.com/muodov))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v14.19.0 (Wed Sep 03 2025)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- Add heuristic patterns for NL,FR,DE [#930](https://github.com/duckduckgo/autoconsent/pull/930) ([@muodov](https://github.com/muodov))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Maxim Tsoy ([@muodov](https://github.com/muodov))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v14.18.0 (Fri Aug 29 2025)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -12813,10 +12813,69 @@
|
|
|
12813
12813
|
/we and our partners.*cookies/gi,
|
|
12814
12814
|
/we.*store.*information.*such as.*cookies/gi,
|
|
12815
12815
|
/store and\/or access information.*on a device/gi,
|
|
12816
|
-
/personalised ads and content, ad and content measurement/gi
|
|
12816
|
+
/personalised ads and content, ad and content measurement/gi,
|
|
12817
12817
|
// it might be tempting to add the patterns below, but they cause too many false positives. Don't do it :)
|
|
12818
12818
|
// /cookies? settings/i,
|
|
12819
12819
|
// /cookies? preferences/i,
|
|
12820
|
+
// FR
|
|
12821
|
+
/utilisons.*des.*cookies/gi,
|
|
12822
|
+
/nous.*utilisons.*des/gi,
|
|
12823
|
+
/des.*cookies.*pour/gi,
|
|
12824
|
+
/des.*informations.*sur/gi,
|
|
12825
|
+
/retirer.*votre.*consentement/gi,
|
|
12826
|
+
/accéder.*à.*des/gi,
|
|
12827
|
+
/à.*des.*informations/gi,
|
|
12828
|
+
/et.*nos.*partenaires/gi,
|
|
12829
|
+
/publicités.*et.*du.*contenu/gi,
|
|
12830
|
+
/utilise.*des.*cookies/gi,
|
|
12831
|
+
/utilisent.*des.*cookies/gi,
|
|
12832
|
+
/stocker.*et.*ou.*accéder/gi,
|
|
12833
|
+
/consentement.*à.*tout.*moment/gi,
|
|
12834
|
+
/votre.*consentement/gi,
|
|
12835
|
+
/accepter.*tout/gi,
|
|
12836
|
+
/utilisation.*des.*cookies/gi,
|
|
12837
|
+
/cookies.*ou.*technologies/gi,
|
|
12838
|
+
/acceptez.*l.*utilisation/gi,
|
|
12839
|
+
/continuer sans accepter/gi,
|
|
12840
|
+
/tout refuser/gi,
|
|
12841
|
+
/(refuser|rejeter) tous les cookies/gi,
|
|
12842
|
+
/je refuse/gi,
|
|
12843
|
+
/refuser et continuer/gi,
|
|
12844
|
+
/refuser les cookies/gi,
|
|
12845
|
+
/seulement nécessaires/gi,
|
|
12846
|
+
/je désactive les finalités non essentielles/gi,
|
|
12847
|
+
/cookies essentiels uniquement/gi,
|
|
12848
|
+
/nécessaires uniquement/gi,
|
|
12849
|
+
// DE
|
|
12850
|
+
/wir.*verwenden.*cookies/gi,
|
|
12851
|
+
/wir.*und.*unsere.*partner/gi,
|
|
12852
|
+
/zugriff.*auf.*informationen.*auf/gi,
|
|
12853
|
+
/inhalte.*messung.*von.*werbeleistung.*und/gi,
|
|
12854
|
+
/cookies.*und.*andere/gi,
|
|
12855
|
+
/verwendung.*von.*cookies/gi,
|
|
12856
|
+
/wir.*nutzen.*cookies/gi,
|
|
12857
|
+
/verwendet.*cookies/gi,
|
|
12858
|
+
/sie.*können.*ihre.*auswahl/gi,
|
|
12859
|
+
/und.*ähnliche.*technologien/gi,
|
|
12860
|
+
/cookies.*wir.*verwenden/gi,
|
|
12861
|
+
/alles?.*ablehnen/gi,
|
|
12862
|
+
/(nur|nicht).*(zusätzliche|essenzielle|funktionale|notwendige|erforderliche).*(cookies|akzeptieren|erlauben|ablehnen)/gi,
|
|
12863
|
+
/weiter.*(ohne|mit).*(einwilligung|zustimmung|cookies)/gi,
|
|
12864
|
+
/(cookies|einwilligung).*ablehnen/gi,
|
|
12865
|
+
/nur funktionale cookies akzeptieren/gi,
|
|
12866
|
+
/optionale ablehnen/gi,
|
|
12867
|
+
/zustimmung verweigern/gi,
|
|
12868
|
+
// NL
|
|
12869
|
+
/gebruik.*van.*cookies/gi,
|
|
12870
|
+
/(we|wij).*gebruiken.*cookies.*om/gi,
|
|
12871
|
+
/cookies.*en.*vergelijkbare/gi,
|
|
12872
|
+
/(alles|cookies).*(afwijzen|weigeren|verwerpen)/gi,
|
|
12873
|
+
/alleen.*noodzakelijke?\b/gi,
|
|
12874
|
+
/cookies weigeren/gi,
|
|
12875
|
+
/weiger.*(cookies|alles)/gi,
|
|
12876
|
+
/doorgaan zonder (te accepteren|akkoord te gaan)/gi,
|
|
12877
|
+
/alleen.*(optionele|functionele|functioneel|noodzakelijke|essentiële).*cookies/gi,
|
|
12878
|
+
/wijs alles af/gi
|
|
12820
12879
|
];
|
|
12821
12880
|
function checkHeuristicPatterns() {
|
|
12822
12881
|
const allText = document.documentElement?.innerText;
|