mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 01:11:04 +00:00
Add Outside
This commit is contained in:
parent
2b1b18d129
commit
5bb0036a3d
@ -152,6 +152,7 @@ Grouped in options:\
|
|||||||
[First Things](https://www.firstthings.com) -
|
[First Things](https://www.firstthings.com) -
|
||||||
[Medium](https://www.medium.com/topics) (for custom domains enable custom sites) -
|
[Medium](https://www.medium.com/topics) (for custom domains enable custom sites) -
|
||||||
[National Review](https://www.nationalreview.com) -
|
[National Review](https://www.nationalreview.com) -
|
||||||
|
[Outside](https://www.outsideonline.com) -
|
||||||
[Rolling Stone](https://www.rollingstone.com) -
|
[Rolling Stone](https://www.rollingstone.com) -
|
||||||
[Slate](https://slate.com) -
|
[Slate](https://slate.com) -
|
||||||
[SofRep](https://sofrep.com) -
|
[SofRep](https://sofrep.com) -
|
||||||
|
@ -3,6 +3,7 @@ Changelog Bypass Paywalls Clean - Firefox
|
|||||||
|
|
||||||
Post-release
|
Post-release
|
||||||
Add Huffingtonpost.it
|
Add Huffingtonpost.it
|
||||||
|
Add Outside
|
||||||
Fix Asia Times
|
Fix Asia Times
|
||||||
Fix Challenges.fr
|
Fix Challenges.fr
|
||||||
Fix Clarin
|
Fix Clarin
|
||||||
|
@ -3198,12 +3198,12 @@ else if (matchDomain('usatoday.com')) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (matchDomain('velonews.com')) {
|
else if (matchDomain(['velonews.com', 'outsideonline.com'])) {
|
||||||
let paywall = document.querySelector('div.o-membership-overlay');
|
let paywall = document.querySelector('div.o-membership-overlay');
|
||||||
if (paywall) {
|
if (paywall) {
|
||||||
let is_gated = document.querySelector('.is-gated');
|
let is_gated = document.querySelectorAll('[class*="is-gated"]');
|
||||||
if (is_gated)
|
for (let elem of is_gated)
|
||||||
is_gated.classList.remove('is-gated');
|
removeClassesByPrefix(elem, 'is-gated');
|
||||||
removeDOMElement(paywall);
|
removeDOMElement(paywall);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -407,6 +407,7 @@
|
|||||||
"*://*.orlandosentinel.com/*",
|
"*://*.orlandosentinel.com/*",
|
||||||
"*://*.ostsee-zeitung.de/*",
|
"*://*.ostsee-zeitung.de/*",
|
||||||
"*://*.otz.de/*",
|
"*://*.otz.de/*",
|
||||||
|
"*://*.outsideonline.com/*",
|
||||||
"*://*.paloaltoonline.com/*",
|
"*://*.paloaltoonline.com/*",
|
||||||
"*://*.paris-normandie.fr/*",
|
"*://*.paris-normandie.fr/*",
|
||||||
"*://*.parismatch.com/*",
|
"*://*.parismatch.com/*",
|
||||||
@ -602,5 +603,5 @@
|
|||||||
"*://*.wsj.net/*",
|
"*://*.wsj.net/*",
|
||||||
"*://*.zephr.com/*"
|
"*://*.zephr.com/*"
|
||||||
],
|
],
|
||||||
"version": "2.5.2.4"
|
"version": "2.5.2.5"
|
||||||
}
|
}
|
||||||
|
5
sites.js
5
sites.js
@ -1180,6 +1180,11 @@ var defaultSites = {
|
|||||||
allow_cookies: 1,
|
allow_cookies: 1,
|
||||||
block_regex: /(\.tinypass\.com\/|cdn\.ampproject\.org\/v\d\/amp-((sticky-)?ad|subscriptions)-.+\.js)/
|
block_regex: /(\.tinypass\.com\/|cdn\.ampproject\.org\/v\d\/amp-((sticky-)?ad|subscriptions)-.+\.js)/
|
||||||
},
|
},
|
||||||
|
"Outside": {
|
||||||
|
domain: "outsideonline.com",
|
||||||
|
allow_cookies: 1,
|
||||||
|
block_regex: /\.outsideonline\.com\/.+\/scripts\/contentGate.+\.js/
|
||||||
|
},
|
||||||
"Palo Alto Online": {
|
"Palo Alto Online": {
|
||||||
domain: "paloaltoonline.com"
|
domain: "paloaltoonline.com"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user