Skip to content

Commit

Permalink
Support for reported websites (#64)
Browse files Browse the repository at this point in the history
* - Fixed for thekey.academy Closes #63

* Added support for voebb.onleihe.de closes #51

* Small fix for voebb.onleihe.de closes #61

* Support for prosciutteriasandaniele.it closes #59

* Support for schobuell-wetter.de closes #56

* Support for yellow.systems closes #53

* Support withings.com closes #62
  • Loading branch information
OhMyGuus committed Oct 1, 2022
1 parent 0164171 commit f0ab25f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/data/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -13910,7 +13910,9 @@ toujou-consent-widget,
#cookie-info-more-options-layer,
#ppms_cm_bar_overlay[class*="cm"],
#website-cookie-consent-banner,
.opc-manager-cookie
.opc-manager-cookie,
.tkCookieBox,
.cookie_consent_withings

/* 14112 */ {
display: none !important;
Expand Down
2 changes: 2 additions & 0 deletions src/data/js/common3.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ function getItem(h) {
{ strict: false, key: "vl_disable_tracking", value: "true" },
{ strict: false, key: "vl_disable_usecookie", value: "selected" },
];
case "yellow.systems":
return { strict: false, key: "isCookiesNotificationHidden", value: true };
}

const parts = h.split(".");
Expand Down
2 changes: 2 additions & 0 deletions src/data/js/common6.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,8 @@ function getE(h) {
];
case "kaptainmusic.com":
return ["mandatoryCookiesAccepted=false"];
case "voebb.onleihe.de":
return ["onleiheTracking=false"];
}

const parts = h.split(".");
Expand Down
8 changes: 8 additions & 0 deletions src/data/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ const commons = {
95: "#SITE_ROOT ~ .siteAspectsContainer{display:none !important}",
97: "#gpdr,#GPDR,#gdpr,#GDPR{display:none !important}",
98: "#info_message{display:none !important}",
99: "body{overflow-y: unset !important; overflow: unset !important;}",
};

const rules = {
Expand Down Expand Up @@ -15119,6 +15120,13 @@ const rules = {
s: '#soapbox > [data-testid="banner"]{display:none !important}',
},
"kaptainmusic.com": { j: "6" },
"voebb.onleihe.de": { j: "6" },
"prosciutteriasandaniele.it": {
s: "#page_hider{display:none !important} body{overflow-y: unset !important;}",
},
"schobuell-wetter.de": { c: "16" },
"yellow.systems": { j: "3" },
"withings.com": { c: "99" },
};

const blockUrls = {
Expand Down

0 comments on commit f0ab25f

Please sign in to comment.