mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 08:37:47 +01:00
Add Ruhr Nachrichten (Germany)
This commit is contained in:
parent
132f406c35
commit
6f1ee9a468
6 changed files with 14 additions and 1 deletions
|
@ -248,6 +248,7 @@ Groupe Rossel sites (grouped in options) like
|
||||||
[Krautreporter.de](https://krautreporter.de) -
|
[Krautreporter.de](https://krautreporter.de) -
|
||||||
[Kurier.at](https://kurier.at) -
|
[Kurier.at](https://kurier.at) -
|
||||||
[Piqd.de](https://www.piqd.de) -
|
[Piqd.de](https://www.piqd.de) -
|
||||||
|
[Ruhr Nachrichten](https://www.ruhrnachrichten.de) -
|
||||||
[Sächsische Zeitung](https://www.saechsische.de) -
|
[Sächsische Zeitung](https://www.saechsische.de) -
|
||||||
[Schweriner Volkszeitung](https://www.svz.de) -
|
[Schweriner Volkszeitung](https://www.svz.de) -
|
||||||
[Süddeutsche Zeitung](https://www.sueddeutsche.de) -
|
[Süddeutsche Zeitung](https://www.sueddeutsche.de) -
|
||||||
|
|
|
@ -95,6 +95,7 @@ var allow_cookies_default = [
|
||||||
'quora.com',
|
'quora.com',
|
||||||
'repubblica.it',
|
'repubblica.it',
|
||||||
'rollingstone.com',
|
'rollingstone.com',
|
||||||
|
'ruhrnachrichten.de',
|
||||||
'saechsische.de',
|
'saechsische.de',
|
||||||
'scribd.com',
|
'scribd.com',
|
||||||
'seekingalpha.com',
|
'seekingalpha.com',
|
||||||
|
@ -167,6 +168,7 @@ var use_google_bot_default = [
|
||||||
'piqd.de',
|
'piqd.de',
|
||||||
'quora.com',
|
'quora.com',
|
||||||
'republic.ru',
|
'republic.ru',
|
||||||
|
'ruhrnachrichten.de',
|
||||||
'seekingalpha.com',
|
'seekingalpha.com',
|
||||||
'thetimes.co.uk',
|
'thetimes.co.uk',
|
||||||
'usinenouvelle.com',
|
'usinenouvelle.com',
|
||||||
|
@ -273,6 +275,7 @@ var blockedRegexes = {
|
||||||
'quotidiano.net': /cdn\.tinypass\.com\/.+/,
|
'quotidiano.net': /cdn\.tinypass\.com\/.+/,
|
||||||
'repubblica.it': /scripts\.repubblica\.it\/pw\/pw\.js.+/,
|
'repubblica.it': /scripts\.repubblica\.it\/pw\/pw\.js.+/,
|
||||||
'rollingstone.com': /cdn\.cxense\.com\/.+/,
|
'rollingstone.com': /cdn\.cxense\.com\/.+/,
|
||||||
|
'ruhrnachrichten.de': /\.tinypass\.com\/.+/,
|
||||||
'sacbee.com': /cdn\.ampproject\.org\/v\d\/amp-subscriptions-.+\.js/,
|
'sacbee.com': /cdn\.ampproject\.org\/v\d\/amp-subscriptions-.+\.js/,
|
||||||
'saechsische.de': /cdn\.tinypass\.com\/.+/,
|
'saechsische.de': /cdn\.tinypass\.com\/.+/,
|
||||||
'science-et-vie.com': /.+\.qiota\.com\/.+/,
|
'science-et-vie.com': /.+\.qiota\.com\/.+/,
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
Changelog Bypass Paywalls Clean - Firefox
|
Changelog Bypass Paywalls Clean - Firefox
|
||||||
|
|
||||||
Post-release
|
Post-release
|
||||||
|
Add Ruhr Nachrichten (Germany)
|
||||||
Fix-update El Pais (Spain)
|
Fix-update El Pais (Spain)
|
||||||
|
|
||||||
* v2.0.4.0 (2021-01-17)
|
* v2.0.4.0 (2021-01-17)
|
||||||
|
|
|
@ -1986,6 +1986,12 @@ else if (matchDomain('sudouest.fr')) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (matchDomain('ruhrnachrichten.de')) {
|
||||||
|
let paywall = document.querySelector('.PianoContent');
|
||||||
|
if (paywall)
|
||||||
|
paywall.classList.remove('PianoContent');
|
||||||
|
}
|
||||||
|
|
||||||
else if (!matchDomain(['belfasttelegraph.co.uk', 'independent.ie']))
|
else if (!matchDomain(['belfasttelegraph.co.uk', 'independent.ie']))
|
||||||
csDone = true;
|
csDone = true;
|
||||||
|
|
||||||
|
|
|
@ -305,6 +305,7 @@
|
||||||
"*://*.republic.ru/*",
|
"*://*.republic.ru/*",
|
||||||
"*://*.republicain-lorrain.fr/*",
|
"*://*.republicain-lorrain.fr/*",
|
||||||
"*://*.rollingstone.com/*",
|
"*://*.rollingstone.com/*",
|
||||||
|
"*://*.ruhrnachrichten.de/*",
|
||||||
"*://*.sacbee.com/*",
|
"*://*.sacbee.com/*",
|
||||||
"*://*.saechsische.de/*",
|
"*://*.saechsische.de/*",
|
||||||
"*://*.sandiegouniontribune.com/*",
|
"*://*.sandiegouniontribune.com/*",
|
||||||
|
@ -432,5 +433,5 @@
|
||||||
"*://*.stripe.com/*",
|
"*://*.stripe.com/*",
|
||||||
"*://*.userzoom.com/*"
|
"*://*.userzoom.com/*"
|
||||||
],
|
],
|
||||||
"version": "2.0.4.1"
|
"version": "2.0.4.2"
|
||||||
}
|
}
|
1
sites.js
1
sites.js
|
@ -164,6 +164,7 @@ var defaultSites =
|
||||||
"Quotidiano.net": "quotidiano.net",
|
"Quotidiano.net": "quotidiano.net",
|
||||||
"Republic.ru": "republic.ru",
|
"Republic.ru": "republic.ru",
|
||||||
"Rolling Stone": "rollingstone.com",
|
"Rolling Stone": "rollingstone.com",
|
||||||
|
"Ruhr Nachrichten": "ruhrnachrichten.de",
|
||||||
"Sächsische Zeitung": "saechsische.de",
|
"Sächsische Zeitung": "saechsische.de",
|
||||||
"San Diego Union Tribune": "sandiegouniontribune.com",
|
"San Diego Union Tribune": "sandiegouniontribune.com",
|
||||||
"San Francisco Chronicle": "sfchronicle.com",
|
"San Francisco Chronicle": "sfchronicle.com",
|
||||||
|
|
Loading…
Reference in a new issue