mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-13 01:34:16 +01:00
Add Follow the Money (Ftm.eu)
This commit is contained in:
parent
9d1e738961
commit
9a353cee42
6 changed files with 17 additions and 5 deletions
|
@ -398,7 +398,8 @@ Grouped in options:\
|
||||||
#### Europe
|
#### Europe
|
||||||
|
|
||||||
[Bloomberg Adria](https://www.bloombergadria.com) -
|
[Bloomberg Adria](https://www.bloombergadria.com) -
|
||||||
[EUobserver](https://euobserver.com)
|
[EUobserver](https://euobserver.com) -
|
||||||
|
[Follow the Money - ftm.eu](https://www.ftm.eu) -
|
||||||
|
|
||||||
##### United Kingdom/Ireland
|
##### United Kingdom/Ireland
|
||||||
[Belfast Telegraph](https://www.belfasttelegraph.co.uk) -
|
[Belfast Telegraph](https://www.belfasttelegraph.co.uk) -
|
||||||
|
|
|
@ -3,6 +3,7 @@ Changelog Bypass Paywalls Clean - Firefox
|
||||||
Updates (install signed xpi-file): https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean/-/releases
|
Updates (install signed xpi-file): https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean/-/releases
|
||||||
|
|
||||||
Post-release
|
Post-release
|
||||||
|
Add Follow the Money (Ftm.eu)
|
||||||
Fix LeScienze.it
|
Fix LeScienze.it
|
||||||
Fix LeTelegramme.fr (css)
|
Fix LeTelegramme.fr (css)
|
||||||
Fix The Athletic (timing)
|
Fix The Athletic (timing)
|
||||||
|
|
|
@ -3501,6 +3501,11 @@ else if (matchDomain('fortune.com')) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (matchDomain('ftm.eu')) {
|
||||||
|
let banners = document.querySelectorAll('div.banner-pp, a.readmore');
|
||||||
|
removeDOMElement(...banners);
|
||||||
|
}
|
||||||
|
|
||||||
else if (matchDomain('hbr.org')) {
|
else if (matchDomain('hbr.org')) {
|
||||||
let popup = document.querySelector('.persistent-banner');
|
let popup = document.querySelector('.persistent-banner');
|
||||||
removeDOMElement(popup);
|
removeDOMElement(popup);
|
||||||
|
|
|
@ -51,5 +51,5 @@
|
||||||
"webRequestBlocking",
|
"webRequestBlocking",
|
||||||
"*://*/*"
|
"*://*/*"
|
||||||
],
|
],
|
||||||
"version": "3.2.1.1"
|
"version": "3.2.1.2"
|
||||||
}
|
}
|
||||||
|
|
|
@ -262,6 +262,7 @@
|
||||||
"*://*.freiepresse.de/*",
|
"*://*.freiepresse.de/*",
|
||||||
"*://*.fresnobee.com/*",
|
"*://*.fresnobee.com/*",
|
||||||
"*://*.ft.com/*",
|
"*://*.ft.com/*",
|
||||||
|
"*://*.ftm.eu/*",
|
||||||
"*://*.ftm.nl/*",
|
"*://*.ftm.nl/*",
|
||||||
"*://*.gazzetta.it/*",
|
"*://*.gazzetta.it/*",
|
||||||
"*://*.geelongadvertiser.com.au/*",
|
"*://*.geelongadvertiser.com.au/*",
|
||||||
|
@ -756,5 +757,5 @@
|
||||||
"*://*.wyleex.com/*",
|
"*://*.wyleex.com/*",
|
||||||
"*://webcache.googleusercontent.com/*"
|
"*://webcache.googleusercontent.com/*"
|
||||||
],
|
],
|
||||||
"version": "3.2.1.1"
|
"version": "3.2.1.2"
|
||||||
}
|
}
|
||||||
|
|
8
sites.js
8
sites.js
|
@ -601,10 +601,14 @@ var defaultSites = {
|
||||||
"First Things": {
|
"First Things": {
|
||||||
domain: "firstthings.com"
|
domain: "firstthings.com"
|
||||||
},
|
},
|
||||||
"Follow the Money (ftm.nl)": {
|
"Follow the Money (ftm.nl & ftm.eu)": {
|
||||||
domain: "ftm.nl",
|
domain: "ftm.nl",
|
||||||
|
group: [
|
||||||
|
"ftm.eu",
|
||||||
|
"ftm.nl"
|
||||||
|
],
|
||||||
allow_cookies: 1,
|
allow_cookies: 1,
|
||||||
block_regex: /\.ftm\.nl\/js\/routing\?/
|
block_regex: /\.ftm\.(nl|eu)\/js\/routing\?/
|
||||||
},
|
},
|
||||||
"Forbes": {
|
"Forbes": {
|
||||||
domain: "forbes.com",
|
domain: "forbes.com",
|
||||||
|
|
Loading…
Reference in a new issue