Merge pull request #35 from wanhose/5.4.5

5.4.5
This commit is contained in:
wanhose 2022-01-09 12:12:40 +01:00 committed by GitHub
commit 3b6fa84cc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 44 deletions

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Cookie Dialog Monster",
"version": "5.4.4",
"version": "5.4.5",
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
@ -19,7 +19,6 @@
},
"content_scripts": [
{
"all_frames": true,
"exclude_matches": [
"*://*.gfycat.com/*",
"*://*.gmx.com/*",

View File

@ -68,13 +68,8 @@ const check = (node) =>
const clean = () => {
if (selectors.length) {
const nodes = document.querySelectorAll(selectors);
nodes.forEach((node) => {
const valid = check(node);
if (valid) node.outerHTML = "";
});
const nodes = Array.from(document.querySelectorAll(selectors));
nodes.filter(check).forEach((node) => (node.outerHTML = ""));
}
};
@ -84,20 +79,14 @@ const clean = () => {
const fix = () => {
const body = document.body;
const frame = !(window === window.parent || window.opener);
const html = document.documentElement;
if (body && html) {
body.classList.remove(...classes);
html.classList.remove(...classes);
if (!frame) {
body.style.setProperty("position", "initial", "important");
body.style.setProperty("overflow-y", "initial", "important");
html.style.setProperty("position", "initial", "important");
html.style.setProperty("overflow-y", "initial", "important");
}
}
body?.classList.remove(...classes);
body?.style.setProperty("position", "initial", "important");
body?.style.setProperty("overflow-y", "initial", "important");
html?.classList.remove(...classes);
html?.style.setProperty("position", "initial", "important");
html?.style.setProperty("overflow-y", "initial", "important");
fixes.forEach((fix) => {
const [match, selector, action, property] = fix.split("##");
@ -106,26 +95,17 @@ const fix = () => {
switch (action) {
case "click":
const submit = document.querySelector(selector);
if (submit && submit instanceof HTMLElement) {
submit.click();
}
submit?.click?.();
break;
case "reset":
const node = document.querySelector(selector);
if (node && node instanceof HTMLElement) {
node.style.setProperty(property, "initial", "important");
}
node?.style?.setProperty?.(property, "initial", "important");
break;
case "resetAll":
const nodes = document.querySelectorAll(selector);
nodes.forEach((node) => {
if (node instanceof HTMLElement) {
node.style.setProperty(property, "initial", "important");
}
});
nodes.forEach((node) =>
node?.style?.setProperty?.(property, "initial", "important")
);
break;
default:
break;
@ -211,15 +191,13 @@ dispatch({ hostname, type: "GET_CACHE" }, null, async ({ enabled }) => {
dispatch({ type: "ENABLE_POPUP" });
if (enabled) {
dispatch({ type: "ENABLE_ICON" });
const results = await Promise.all([
queryClasses(),
queryFixes(),
querySelectors(),
]);
classes = results[0].classes;
fixes = results[1].fixes;
selectors = results[2].selectors;
const promises = [queryClasses(), queryFixes(), querySelectors()];
const results = await Promise.all(promises);
classes = results[0]?.classes ?? [];
fixes = results[1]?.fixes ?? [];
selectors = results[2]?.selectors ?? [];
observer.observe(target, options);
dispatch({ type: "ENABLE_ICON" });
}
});