Skip to content

Commit

Permalink
Support for reported websites #4 (#118)
Browse files Browse the repository at this point in the history
* support for xvideos.com closes #101

* support for worktop-express.de closes #119

* support for fitnessstudios.fitness closes #120

* Support for palmangels.com closes #127
  • Loading branch information
OhMyGuus authored Oct 20, 2022
1 parent ab73dbd commit 1e58aa5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/data/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -13957,7 +13957,9 @@ div.cookie-notice-wrapper,
div.cookie-policy-banner,
div.cookie-wrapper,
div.v-cookie,
div.box_lgpd
div.box_lgpd,
.messagecookies-container-popup:not(body):not(html)


/* 14113 */ {
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 @@ -62,6 +62,8 @@ function getItem(h) {
return { strict: false, key: "isCookiesNotificationHidden", value: true };
case "schlauer-shop24.de":
return { strict: false, key: "Shop4CookieConsentAdv", value: false };
case "palmangels.com":
return { strict: false, key: "SHOW_COOKIE_BANNER", value: "no" };
}

const parts = h.split(".");
Expand Down
1 change: 1 addition & 0 deletions src/data/js/common5.js
Original file line number Diff line number Diff line change
Expand Up @@ -2620,6 +2620,7 @@ function getSelector(host) {
'.ReactModal__Overlay--after-open a[href*="Datenschutzerklaerung"]',
".ReactModal__Overlay--after-open footer > div:last-child button:first-child"
);
case "xvideos.com":
case "anyxvideos.com":
return ".disclaimer-opened #disclaimer-save-preferences";
case "gx.games":
Expand Down
5 changes: 4 additions & 1 deletion src/data/rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +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;}",
99: "html,body{overflow-y: unset !important; overflow: unset !important;}",
};

const rules = {
Expand Down Expand Up @@ -15171,6 +15171,9 @@ const rules = {
"agazeta.com.br": { s: ".notification-footer{display:none !important}" },
"pisoscentro.com": { c: "3" },
"hintertuxergletscher.at": { j: "6" },
"xvideos.com": { j: "5" },
"worktop-express.de": { c: "99" },
"palmangels.com": { j: "3" },
};

const blockUrls = {
Expand Down

0 comments on commit 1e58aa5

Please sign in to comment.