commit
4e90f128af
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Cookie Dialog Monster",
|
"name": "Cookie Dialog Monster",
|
||||||
"version": "5.5.2",
|
"version": "5.5.3",
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_appDesc__",
|
"description": "__MSG_appDesc__",
|
||||||
"icons": {
|
"icons": {
|
||||||
|
@ -12,6 +12,13 @@ const apiUrl = 'https://api.cookie-dialog-monster.com/rest/v1';
|
|||||||
|
|
||||||
const baseDataUrl = 'https://raw.githubusercontent.com/wanhose/cookie-dialog-monster/main/data';
|
const baseDataUrl = 'https://raw.githubusercontent.com/wanhose/cookie-dialog-monster/main/data';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Cache data
|
||||||
|
* @type {{ attributes: string[], classes: string[], fixes: string[], selectors: string[], skips: string[] }}
|
||||||
|
*/
|
||||||
|
|
||||||
|
let cache = undefined;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Context menu identifier
|
* @description Context menu identifier
|
||||||
* @type {string}
|
* @type {string}
|
||||||
@ -50,13 +57,13 @@ const enableIcon = (tabId) =>
|
|||||||
const enablePopup = (tabId) => chrome.browserAction.setPopup({ popup: 'popup.html', tabId });
|
const enablePopup = (tabId) => chrome.browserAction.setPopup({ popup: 'popup.html', tabId });
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Retrieves cache state
|
* @description Retrieves store
|
||||||
* @param {string} hostname
|
* @param {string} hostname
|
||||||
* @param {void} callback
|
* @param {void} callback
|
||||||
* @returns {{ enabled: boolean }}
|
* @returns {{ enabled: boolean }}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const getCache = (hostname, callback) => {
|
const getStore = (hostname, callback) => {
|
||||||
chrome.storage.local.get(null, (store) => {
|
chrome.storage.local.get(null, (store) => {
|
||||||
callback(store[hostname] ?? initial);
|
callback(store[hostname] ?? initial);
|
||||||
});
|
});
|
||||||
@ -64,24 +71,48 @@ const getCache = (hostname, callback) => {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @async
|
* @async
|
||||||
* @description Retrieves data from GitHub
|
* @description Get all data from GitHub
|
||||||
* @param {string} key
|
|
||||||
* @param {void} callback
|
* @param {void} callback
|
||||||
* @returns {Promise<{ any: string[] }>}
|
* @returns {Promise<{ attributes: string[], classes: string[], fixes: string[], selectors: string[], skips: string[] }>}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const query = async (key, callback) => {
|
const getData = async (callback) => {
|
||||||
try {
|
if (cache) {
|
||||||
const url = `${baseDataUrl}/${key}.txt`;
|
callback(cache);
|
||||||
const response = await fetch(url);
|
return;
|
||||||
const data = await response.text();
|
|
||||||
|
|
||||||
if (response.status !== 200) throw new Error();
|
|
||||||
|
|
||||||
callback({ [key]: data.split('\n') });
|
|
||||||
} catch {
|
|
||||||
callback({ [key]: [] });
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const data = await Promise.all([
|
||||||
|
query('classes'),
|
||||||
|
query('elements'),
|
||||||
|
query('fixes'),
|
||||||
|
query('skips'),
|
||||||
|
]);
|
||||||
|
|
||||||
|
const result = {
|
||||||
|
attributes: [
|
||||||
|
...new Set(
|
||||||
|
data[1].elements.flatMap((element) => {
|
||||||
|
const attributes = element.match(/(?<=\[)[^(){}[\]]+(?=\])/g);
|
||||||
|
|
||||||
|
return attributes?.length
|
||||||
|
? [
|
||||||
|
...attributes.flatMap((attribute) => {
|
||||||
|
return attribute ? [attribute.replace(/\".*\"|(=|\^|\*|\$)/g, '')] : [];
|
||||||
|
}),
|
||||||
|
]
|
||||||
|
: [];
|
||||||
|
})
|
||||||
|
),
|
||||||
|
],
|
||||||
|
classes: data[0].classes,
|
||||||
|
fixes: data[2].fixes,
|
||||||
|
selectors: data[1].elements,
|
||||||
|
skips: data[3].skips,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (Object.keys(result).every((key) => result[key].length > 0)) cache = result;
|
||||||
|
callback(result);
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -90,7 +121,7 @@ const query = async (key, callback) => {
|
|||||||
* @returns {Promise<{ id: string, location: string }>}
|
* @returns {Promise<{ id: string, location: string }>}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const queryTab = (callback) => {
|
const getTab = (callback) => {
|
||||||
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
|
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
|
||||||
callback({
|
callback({
|
||||||
id: tabs[0]?.id,
|
id: tabs[0]?.id,
|
||||||
@ -99,6 +130,27 @@ const queryTab = (callback) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @async
|
||||||
|
* @description Retrieves data from GitHub
|
||||||
|
* @param {string} key
|
||||||
|
* @returns {Promise<{ [key]: string[] }>}
|
||||||
|
*/
|
||||||
|
|
||||||
|
const query = async (key) => {
|
||||||
|
try {
|
||||||
|
const url = `${baseDataUrl}/${key}.txt`;
|
||||||
|
const response = await fetch(url);
|
||||||
|
const data = await response.text();
|
||||||
|
|
||||||
|
if (response.status !== 200) throw new Error();
|
||||||
|
|
||||||
|
return { [key]: [...new Set(data.split('\n'))] };
|
||||||
|
} catch {
|
||||||
|
return { [key]: [] };
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Reports active tab URL
|
* @description Reports active tab URL
|
||||||
*/
|
*/
|
||||||
@ -126,12 +178,12 @@ const report = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Update cache state
|
* @description Update store
|
||||||
* @param {string} [hostname]
|
* @param {string} [hostname]
|
||||||
* @param {object} [state]
|
* @param {object} [state]
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const updateCache = (hostname, state) => {
|
const updateStore = (hostname, state) => {
|
||||||
chrome.storage.local.get(null, (cache) => {
|
chrome.storage.local.get(null, (cache) => {
|
||||||
const current = cache[hostname];
|
const current = cache[hostname];
|
||||||
|
|
||||||
@ -162,26 +214,17 @@ chrome.runtime.onMessage.addListener((request, sender, callback) => {
|
|||||||
case 'ENABLE_POPUP':
|
case 'ENABLE_POPUP':
|
||||||
if (tabId) enablePopup(tabId);
|
if (tabId) enablePopup(tabId);
|
||||||
break;
|
break;
|
||||||
case 'GET_CACHE':
|
case 'GET_DATA':
|
||||||
getCache(hostname, callback);
|
getData(callback);
|
||||||
break;
|
break;
|
||||||
case 'GET_CLASSES':
|
case 'GET_STORE':
|
||||||
query('classes', callback);
|
getStore(hostname, callback);
|
||||||
break;
|
|
||||||
case 'GET_SKIPS':
|
|
||||||
query('skips', callback);
|
|
||||||
break;
|
|
||||||
case 'GET_FIXES':
|
|
||||||
query('fixes', callback);
|
|
||||||
break;
|
|
||||||
case 'GET_SELECTORS':
|
|
||||||
query('elements', callback);
|
|
||||||
break;
|
break;
|
||||||
case 'GET_TAB':
|
case 'GET_TAB':
|
||||||
queryTab(callback);
|
getTab(callback);
|
||||||
break;
|
break;
|
||||||
case 'UPDATE_CACHE':
|
case 'UPDATE_STORE':
|
||||||
updateCache(hostname, state);
|
updateStore(hostname, state);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
@ -196,6 +239,7 @@ chrome.runtime.onMessage.addListener((request, sender, callback) => {
|
|||||||
|
|
||||||
chrome.contextMenus.create({
|
chrome.contextMenus.create({
|
||||||
contexts: ['all'],
|
contexts: ['all'],
|
||||||
|
documentUrlPatterns: chrome.runtime.getManifest().content_scripts[0].matches,
|
||||||
id: contextMenuId,
|
id: contextMenuId,
|
||||||
title: chrome.i18n.getMessage('contextMenuText'),
|
title: chrome.i18n.getMessage('contextMenuText'),
|
||||||
});
|
});
|
||||||
|
@ -32,18 +32,18 @@ const fixes = [];
|
|||||||
|
|
||||||
const hostname = document.location.hostname.split('.').slice(-2).join('.');
|
const hostname = document.location.hostname.split('.').slice(-2).join('.');
|
||||||
|
|
||||||
/**
|
|
||||||
* @description Is consent preview page?
|
|
||||||
*/
|
|
||||||
|
|
||||||
const preview = hostname.startsWith('consent.') || hostname.startsWith('myprivacy.');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Options provided to observer
|
* @description Options provided to observer
|
||||||
* @type {MutationObserverInit}
|
* @type {MutationObserverInit}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const options = { attributes: true, childList: true, subtree: true };
|
const options = { childList: true, subtree: true };
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description Is consent preview page?
|
||||||
|
*/
|
||||||
|
|
||||||
|
const preview = hostname.startsWith('consent.') || hostname.startsWith('myprivacy.');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Selectors list
|
* @description Selectors list
|
||||||
@ -61,23 +61,26 @@ const target = document.body || document.documentElement;
|
|||||||
/**
|
/**
|
||||||
* @description Checks if node element is removable
|
* @description Checks if node element is removable
|
||||||
* @param {any} node
|
* @param {any} node
|
||||||
|
* @param {boolean} skipMatch
|
||||||
* @returns {boolean}
|
* @returns {boolean}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const check = (node) =>
|
const check = (node, skipMatch) =>
|
||||||
node instanceof HTMLElement &&
|
node instanceof HTMLElement &&
|
||||||
node.parentElement &&
|
node.parentElement &&
|
||||||
!['BODY', 'HTML'].includes(node.tagName) &&
|
!['BODY', 'HTML'].includes(node.tagName) &&
|
||||||
!(node.id && ['APP', 'ROOT'].includes(node.id.toUpperCase?.())) &&
|
!(node.id && ['APP', 'ROOT'].includes(node.id.toUpperCase?.())) &&
|
||||||
node.matches(selectors);
|
(skipMatch || node.matches(selectors));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Cleans DOM
|
* @description Cleans DOM
|
||||||
* @param {HTMLElement[]} nodes
|
* @param {HTMLElement[]} nodes
|
||||||
|
* @param {boolean} skipMatch
|
||||||
* @returns {void}
|
* @returns {void}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const clean = (nodes) => nodes.filter(check).forEach((node) => (node.outerHTML = ''));
|
const clean = (nodes, skipMatch) =>
|
||||||
|
nodes.filter((node) => check(node, skipMatch)).forEach((node) => (node.outerHTML = ''));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Fixes scroll issues
|
* @description Fixes scroll issues
|
||||||
@ -138,32 +141,19 @@ const observer = new MutationObserver((mutations, instance) => {
|
|||||||
instance.observe(target, options);
|
instance.observe(target, options);
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
|
||||||
* @description Gets data
|
|
||||||
* @returns {Promise<any[]>}
|
|
||||||
*/
|
|
||||||
|
|
||||||
const promiseAll = () =>
|
|
||||||
Promise.all([
|
|
||||||
new Promise((resolve) => dispatch({ type: 'GET_CLASSES' }, null, resolve)),
|
|
||||||
new Promise((resolve) => dispatch({ type: 'GET_FIXES' }, null, resolve)),
|
|
||||||
new Promise((resolve) => dispatch({ type: 'GET_SELECTORS' }, null, resolve)),
|
|
||||||
new Promise((resolve) => dispatch({ type: 'GET_SKIPS' }, null, resolve)),
|
|
||||||
]);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @description Cleans DOM again after all
|
* @description Cleans DOM again after all
|
||||||
* @listens document#readystatechange
|
* @listens document#readystatechange
|
||||||
*/
|
*/
|
||||||
|
|
||||||
document.addEventListener('readystatechange', () => {
|
document.addEventListener('readystatechange', () => {
|
||||||
dispatch({ hostname, type: 'GET_CACHE' }, null, async ({ enabled }) => {
|
dispatch({ hostname, type: 'GET_STORE' }, null, async ({ enabled }) => {
|
||||||
if (document.readyState === 'complete' && enabled && !preview) {
|
if (document.readyState === 'complete' && enabled && !preview) {
|
||||||
const nodes = selectors.length ? Array.from(document.querySelectorAll(selectors)) : [];
|
const nodes = selectors.length ? Array.from(document.querySelectorAll(selectors)) : [];
|
||||||
|
|
||||||
fix();
|
fix();
|
||||||
clean(nodes);
|
clean(nodes, true);
|
||||||
setTimeout(() => clean(nodes), 2000);
|
setTimeout(() => clean(nodes, true), 2000);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -179,17 +169,18 @@ window.addEventListener('unload', () => {});
|
|||||||
* @description Setups everything and starts to observe if enabled
|
* @description Setups everything and starts to observe if enabled
|
||||||
*/
|
*/
|
||||||
|
|
||||||
dispatch({ hostname, type: 'GET_CACHE' }, null, async ({ enabled }) => {
|
dispatch({ hostname, type: 'GET_STORE' }, null, ({ enabled }) => {
|
||||||
dispatch({ type: 'ENABLE_POPUP' });
|
dispatch({ type: 'ENABLE_POPUP' });
|
||||||
|
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
const results = await promiseAll();
|
dispatch({ type: 'GET_DATA' }, null, (data) => {
|
||||||
|
classes.push(...data.classes);
|
||||||
classes.push(...(results[0]?.classes ?? []));
|
fixes.push(...data.fixes);
|
||||||
fixes.push(...(results[1]?.fixes ?? []));
|
options.attributeFilter = data.attributes;
|
||||||
selectors.push(...(results[2]?.elements ?? []));
|
selectors.push(...data.selectors);
|
||||||
skips.push(...(results[3]?.skips ?? []));
|
skips.push(...data.skips);
|
||||||
observer.observe(target, options);
|
observer.observe(target, options);
|
||||||
dispatch({ type: 'ENABLE_ICON' });
|
dispatch({ type: 'ENABLE_ICON' });
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -36,14 +36,10 @@ const isChromium = chrome.runtime.getURL('').startsWith('chrome-extension://');
|
|||||||
|
|
||||||
const handlePowerChange = () => {
|
const handlePowerChange = () => {
|
||||||
dispatch({ type: 'GET_TAB' }, null, ({ hostname, id }) => {
|
dispatch({ type: 'GET_TAB' }, null, ({ hostname, id }) => {
|
||||||
dispatch({ hostname, type: 'GET_CACHE' }, null, ({ enabled }) => {
|
dispatch({ hostname, type: 'GET_STORE' }, null, ({ enabled }) => {
|
||||||
const power = document.getElementById('power');
|
const power = document.getElementById('power');
|
||||||
|
|
||||||
dispatch({
|
dispatch({ hostname, state: { enabled: !enabled }, type: 'UPDATE_STORE' });
|
||||||
hostname,
|
|
||||||
state: { enabled: !enabled },
|
|
||||||
type: 'UPDATE_CACHE',
|
|
||||||
});
|
|
||||||
if (!enabled === false) power.removeAttribute('checked');
|
if (!enabled === false) power.removeAttribute('checked');
|
||||||
if (!enabled === true) power.setAttribute('checked', 'checked');
|
if (!enabled === true) power.setAttribute('checked', 'checked');
|
||||||
chrome.tabs.reload(id, { bypassCache: true });
|
chrome.tabs.reload(id, { bypassCache: true });
|
||||||
@ -90,7 +86,7 @@ const handleRate = (event) => {
|
|||||||
|
|
||||||
const handleContentLoaded = () => {
|
const handleContentLoaded = () => {
|
||||||
dispatch({ type: 'GET_TAB' }, null, ({ hostname }) => {
|
dispatch({ type: 'GET_TAB' }, null, ({ hostname }) => {
|
||||||
dispatch({ hostname, type: 'GET_CACHE' }, null, ({ enabled }) => {
|
dispatch({ hostname, type: 'GET_STORE' }, null, ({ enabled }) => {
|
||||||
translate();
|
translate();
|
||||||
|
|
||||||
const host = document.getElementById('host');
|
const host = document.getElementById('host');
|
||||||
|
Loading…
Reference in New Issue
Block a user