mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 03:11:56 +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
|
||||
|
||||
[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
|
||||
[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
|
||||
|
||||
Post-release
|
||||
Add Follow the Money (Ftm.eu)
|
||||
Fix LeScienze.it
|
||||
Fix LeTelegramme.fr (css)
|
||||
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')) {
|
||||
let popup = document.querySelector('.persistent-banner');
|
||||
removeDOMElement(popup);
|
||||
|
|
|
@ -51,5 +51,5 @@
|
|||
"webRequestBlocking",
|
||||
"*://*/*"
|
||||
],
|
||||
"version": "3.2.1.1"
|
||||
"version": "3.2.1.2"
|
||||
}
|
||||
|
|
|
@ -262,6 +262,7 @@
|
|||
"*://*.freiepresse.de/*",
|
||||
"*://*.fresnobee.com/*",
|
||||
"*://*.ft.com/*",
|
||||
"*://*.ftm.eu/*",
|
||||
"*://*.ftm.nl/*",
|
||||
"*://*.gazzetta.it/*",
|
||||
"*://*.geelongadvertiser.com.au/*",
|
||||
|
@ -756,5 +757,5 @@
|
|||
"*://*.wyleex.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": {
|
||||
domain: "firstthings.com"
|
||||
},
|
||||
"Follow the Money (ftm.nl)": {
|
||||
"Follow the Money (ftm.nl & ftm.eu)": {
|
||||
domain: "ftm.nl",
|
||||
group: [
|
||||
"ftm.eu",
|
||||
"ftm.nl"
|
||||
],
|
||||
allow_cookies: 1,
|
||||
block_regex: /\.ftm\.nl\/js\/routing\?/
|
||||
block_regex: /\.ftm\.(nl|eu)\/js\/routing\?/
|
||||
},
|
||||
"Forbes": {
|
||||
domain: "forbes.com",
|
||||
|
|
Loading…
Reference in a new issue