mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-12 01:10:24 +00:00
Add Cellesche Zeitung
This commit is contained in:
parent
b0bb84d9b0
commit
1ea1cfd62d
@ -512,6 +512,7 @@ Grouped in options:\
|
||||
[Automobilwoche](https://www.automobilwoche.de) -
|
||||
[Badische Neueste Nachrichten](https://www.bnn.de) -
|
||||
[Berliner Zeitung](https://www.berliner-zeitung.de) -
|
||||
[Cellesche Zeitung](https://www.cz.de) -
|
||||
[Cicero](https://www.cicero.de) -
|
||||
[Der Spiegel (link to archive.is)](https://www.spiegel.de) -
|
||||
[Der Tagesspiegel (link to archive.is)](https://www.tagesspiegel.de) -
|
||||
|
@ -2,6 +2,7 @@
|
||||
Changelog Bypass Paywalls Clean - Firefox
|
||||
|
||||
Post-release
|
||||
Add Cellesche Zeitung
|
||||
|
||||
* v3.0.1.0 (2023-01-15)
|
||||
Fix Inc42
|
||||
|
@ -526,6 +526,33 @@ else if (matchDomain('cicero.de')) {
|
||||
removeDOMElement(...urban_ad_sign);
|
||||
}
|
||||
|
||||
else if (matchDomain('cz.de')) {
|
||||
let paywall = document.querySelector('#erasmo');
|
||||
if (paywall) {
|
||||
removeDOMElement(paywall);
|
||||
let article = document.querySelector('article');
|
||||
if (article) {
|
||||
article.classList.remove('news-read-not-allowed');
|
||||
fetch(window.location.href)
|
||||
.then(response => {
|
||||
if (response.ok) {
|
||||
response.text().then(html => {
|
||||
let parser = new DOMParser();
|
||||
let doc = parser.parseFromString(html, 'text/html');
|
||||
let content = document.querySelector('.field__items');
|
||||
let content_new = doc.querySelector('.field__items');
|
||||
if (content_new && content) {
|
||||
content.parentNode.replaceChild(content_new, content);
|
||||
}
|
||||
})
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
let banner = document.querySelector('.newsletter-signup-wrapper');
|
||||
removeDOMElement(banner);
|
||||
}
|
||||
|
||||
else if (matchDomain('faz.net')) {
|
||||
if (matchDomain('zeitung.faz.net')) {
|
||||
let paywall_z = document.querySelector('.c-red-carpet');
|
||||
|
@ -63,12 +63,6 @@
|
||||
"block_regex": "paywall\\.correiodopovo\\.com\\.br",
|
||||
"domain": "correiodopovo.com.br"
|
||||
},
|
||||
"Cz.de": {
|
||||
"allow_cookies": 1,
|
||||
"block_regex": "\\.cz\\.de\\/sites\\/default\\/files\\/js\\/js_.*\\.js",
|
||||
"cs_code": "[{\"cond\":\"#erasmo\", \"rm_elem\":1, \"elems\":[{\"cond\":\"article\",\"rm_class\":\"news-read-not-allowed\"},{\"cond\":\".newsletter-signup-wrapper\",\"rm_elem\":1}]}]",
|
||||
"domain": "cz.de"
|
||||
},
|
||||
"Dailyherald.com": {
|
||||
"allow_cookies": 1,
|
||||
"block_regex": "\\.tinypass\\.com",
|
||||
|
@ -165,6 +165,7 @@
|
||||
"*://*.curbed.com/*",
|
||||
"*://*.cw.com.tw/*",
|
||||
"*://*.cyclingtips.com/*",
|
||||
"*://*.cz.de/*",
|
||||
"*://*.dailyadvertiser.com.au/*",
|
||||
"*://*.dailyliberal.com.au/*",
|
||||
"*://*.dailypress.com/*",
|
||||
@ -719,5 +720,5 @@
|
||||
"*://*.wallkit.net/*",
|
||||
"*://webcache.googleusercontent.com/*"
|
||||
],
|
||||
"version": "3.0.1.0"
|
||||
"version": "3.0.1.1"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user