@duckduckgo/autoconsent 14.91.0 → 14.93.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 +30 -0
- package/dist/addon-firefox/background.bundle.js +5 -1
- package/dist/addon-firefox/compact-rules.json +1 -1
- package/dist/addon-firefox/content.bundle.js +33 -2
- package/dist/addon-firefox/manifest.json +1 -1
- package/dist/addon-firefox/popup.bundle.js +5 -1
- package/dist/addon-firefox/rules.json +1 -1
- package/dist/addon-mv3/background.bundle.js +5 -1
- package/dist/addon-mv3/compact-rules.json +1 -1
- package/dist/addon-mv3/content.bundle.js +33 -2
- package/dist/addon-mv3/manifest.json +1 -1
- package/dist/addon-mv3/popup.bundle.js +5 -1
- package/dist/addon-mv3/rules.json +1 -1
- package/dist/autoconsent.cjs.js +33 -2
- package/dist/autoconsent.esm.js +33 -2
- package/dist/autoconsent.extra.cjs.js +33 -2
- package/dist/autoconsent.extra.esm.js +33 -2
- package/dist/autoconsent.playwright.js +33 -2
- package/dist/types/messages.d.ts +4 -1
- package/dist/types/types.d.ts +2 -0
- package/dist/types/web.d.ts +8 -0
- package/lib/cmps/base.ts +4 -0
- package/lib/messages.ts +11 -1
- package/lib/types.ts +2 -0
- package/lib/utils.ts +1 -0
- package/lib/web.ts +31 -2
- package/package.json +1 -1
- package/rules/autoconsent/vivenu.json +31 -0
- package/rules/compact-rules.json +1 -1
- package/rules/rules.json +1 -1
- package/tests/vivenu.spec.ts +5 -0
|
@@ -711,7 +711,8 @@
|
|
|
711
711
|
errors: true,
|
|
712
712
|
messages: false,
|
|
713
713
|
waits: false
|
|
714
|
-
}
|
|
714
|
+
},
|
|
715
|
+
performanceLoggingEnabled: false
|
|
715
716
|
};
|
|
716
717
|
const updatedConfig = copyObject(defaultConfig);
|
|
717
718
|
for (const key of Object.keys(defaultConfig)) {
|
|
@@ -744,6 +745,9 @@
|
|
|
744
745
|
waits: true
|
|
745
746
|
};
|
|
746
747
|
}
|
|
748
|
+
if (storedConfig.performanceLoggingEnabled === void 0) {
|
|
749
|
+
storedConfig.performanceLoggingEnabled = true;
|
|
750
|
+
}
|
|
747
751
|
return normalizeConfig(storedConfig);
|
|
748
752
|
}
|
|
749
753
|
async function showOptOutStatus(tabId, status, cmp = "") {
|