Skip to content

Commit

Permalink
[WIP] Fixed Reported websites ~ 19 (#2548)
Browse files Browse the repository at this point in the history
Co-authored-by: Guus van der Meer <info@guus.ninja>
  • Loading branch information
appeasementPolitik and OhMyGuus committed Jul 5, 2023
1 parent 944942c commit 3d710b6
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/data/js/3_localStorageHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,13 @@ function getItem(hostname) {
strict: false,
key: "data-driven-forms-cookie-consent",
value: "neccessary",
};
};
case "buki.org.pl":
return {
strict: false,
key: "cookiesInfo",
value: "1",
};
}

const parts = hostname.split(".");
Expand Down
2 changes: 2 additions & 0 deletions src/data/js/5_clickHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -7182,6 +7182,8 @@ function getSelector(host) {
return "#asfg > div";
case "vr.fi":
return 'button[data-testid="necessary"]';
case "starofservice.com":
return '[data-test="cookie_banner.accept"]';
}

if (host.parts.length > 2) {
Expand Down
4 changes: 4 additions & 0 deletions src/data/js/6_cookieHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,10 @@ function getE(hostname) {
return ["cookie_necessity=1", "cookie_performance=0"];
case "autohaus24.de":
return ["user_cookie_consent=essential"];
case "airitsystems.de":
return ["limz_consent_cookie=%7B%22accepted%22%3Atrue%2C%22preferences%22%3Afalse%2C%22statistics%22%3Afalse%2C%22marketing%22%3Afalse%2C%22version%22%3A1%7D"];
case "tatararazors.com":
return ["cookie-concent=%7B%22marketing%22%3Afalse%2C%22statistics%22%3Afalse%7D"];
}

const parts = hostname.split(".");
Expand Down
9 changes: 9 additions & 0 deletions src/data/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -16767,6 +16767,15 @@ const rules = {
"thedutchonlineacademy.com": {
s: "#cookie-consent{display:none !important}",
},
"mohrsiebeck.com": { s: "#cookieman-modal{display:none !important}" },
"starofservice.com": { j: "5" },
"tu.no": { s: "#__next > .fixed{display:none !important}" },
"digi.no": { s: "#__next > .fixed{display:none !important}" },
"buki.org.pl": { j: "3" },
"vicuspelle.ch": { s: ".cookie-model{display:none !important}" },
"airitsystems.de": { j: "6" },
"tatararazors.com": { j: "6" },
"sunsky-online.com": { s: "#cookiesHint_1{display:none !important}" },
"akakce.com": { s: ".banner{display:none !important}" },
};

Expand Down

0 comments on commit 3d710b6

Please sign in to comment.