commit
949c48f227
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Cookie Dialog Monster",
|
"name": "Cookie Dialog Monster",
|
||||||
"version": "5.4.2",
|
"version": "5.4.3",
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_appDesc__",
|
"description": "__MSG_appDesc__",
|
||||||
"icons": {
|
"icons": {
|
||||||
@ -23,7 +23,8 @@
|
|||||||
"exclude_matches": [
|
"exclude_matches": [
|
||||||
"*://*.gfycat.com/*",
|
"*://*.gfycat.com/*",
|
||||||
"*://*.gmx.com/*",
|
"*://*.gmx.com/*",
|
||||||
"*://*.rundschau-online.de/*"
|
"*://*.rundschau-online.de/*",
|
||||||
|
"*://*.mediathekviewweb.de/*"
|
||||||
],
|
],
|
||||||
"js": ["scripts/content.js"],
|
"js": ["scripts/content.js"],
|
||||||
"matches": ["http://*/*", "https://*/*"],
|
"matches": ["http://*/*", "https://*/*"],
|
||||||
|
@ -29,13 +29,14 @@ const hostname = document.location.hostname;
|
|||||||
* @description Is consent preview page?
|
* @description Is consent preview page?
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const isPreview = hostname.startsWith("consent.");
|
const isPreview =
|
||||||
|
hostname.startsWith("consent.") || hostname.startsWith("myprivacy.");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Options provided to observer
|
* @description Options provided to observer
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const options = { attributes: true, childList: true, subtree: true };
|
const options = { childList: true, subtree: true };
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Selectors list
|
* @description Selectors list
|
||||||
|
Loading…
Reference in New Issue
Block a user