Compare commits

...

11 Commits

Author SHA1 Message Date
Adam af47bc6055 Remove v1.6.1 from updates.json 2019-11-22 21:09:47 -08:00
Adam aaab4ce174 Prepare for v1.6.2 release 2019-11-22 21:03:11 -08:00
Adam 34643026b8 Revert "Cleanup contentScript.js a little, convert tabs to spaces"
This reverts commit e57feb2a3c.
2019-11-22 20:53:56 -08:00
Adam f8b6f6e05c Prepare for v1.6.1 release 2019-11-21 20:55:48 -08:00
Adam 62db2cba77 Merge branch 'master' of https://github.com/iamadamdev/bypass-paywalls-firefox 2019-11-21 20:53:38 -08:00
Adam 18b81c88b2
Merge pull request #393 from ohadcn/master
use googlebot user agent for haaretz.co.il
2019-11-21 20:52:35 -08:00
Adam e2cf59009f
Merge pull request #359 from Kamleeonau/master
Add support for themercury.com.au
2019-11-21 20:51:57 -08:00
Adam a9b1c5fd88
Merge branch 'master' into master 2019-11-21 20:42:57 -08:00
Ohad 878233292c use googlebot user agent for haaretz.co.il; it stopped bypassing with referrer 2019-11-21 23:22:09 +02:00
Phil Price ccba868ac2 Fixed ordering, reverted .gitignore 2019-11-01 12:31:54 +11:00
Phil Price e03cd29be8 Add support for themercury.com.au 2019-10-29 10:25:53 +11:00
6 changed files with 187 additions and 173 deletions

View File

@ -1,6 +1,6 @@
# Bypass Paywalls for Firefox # Bypass Paywalls for Firefox
## [Download and install the latest version](https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.6.0/bypass_paywalls-1.6.0-an+fx.xpi) ## [Download and install the latest version](https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.6.2/bypass_paywalls-1.6.2-an+fx.xpi)
### Bypass the following sites' paywalls with this extension ### Bypass the following sites' paywalls with this extension
@ -73,6 +73,7 @@
[The Japan Times](https://www.japantimes.co.jp)\ [The Japan Times](https://www.japantimes.co.jp)\
[TheMarker](https://www.themarker.com)\ [TheMarker](https://www.themarker.com)\
[The Mercury News](https://www.mercurynews.com)\ [The Mercury News](https://www.mercurynews.com)\
[The Mercury Tasmania](https://www.themercury.com.au)\
[The Morning Call](https://www.mcall.com)\ [The Morning Call](https://www.mcall.com)\
[The Nation](https://www.thenation.com)\ [The Nation](https://www.thenation.com)\
[The New York Times](https://www.nytimes.com)\ [The New York Times](https://www.nytimes.com)\

View File

@ -69,6 +69,7 @@ var defaultSites = {
'The Hindu': 'thehindu.com', 'The Hindu': 'thehindu.com',
'The Japan Times': 'japantimes.co.jp', 'The Japan Times': 'japantimes.co.jp',
'TheMarker': 'themarker.com', 'TheMarker': 'themarker.com',
'The Mercury Tasmania': 'themercury.com.au',
'The Mercury News': 'mercurynews.com', 'The Mercury News': 'mercurynews.com',
'The Morning Call': 'mcall.com', 'The Morning Call': 'mcall.com',
'The Nation': 'thenation.com', 'The Nation': 'thenation.com',
@ -128,6 +129,7 @@ const allow_cookies = [
'theatlantic.com', 'theatlantic.com',
'theaustralian.com.au', 'theaustralian.com.au',
'thediplomat.com', 'thediplomat.com',
'themercury.com.au',
'thestar.com', 'thestar.com',
'towardsdatascience.com', 'towardsdatascience.com',
'trouw.nl', 'trouw.nl',
@ -198,8 +200,10 @@ const use_google_bot = [
'quora.com', 'quora.com',
'telegraph.co.uk', 'telegraph.co.uk',
'theaustralian.com.au', 'theaustralian.com.au',
'themercury.com.au',
'thetimes.co.uk', 'thetimes.co.uk',
'wsj.com', 'wsj.com',
'haaretz.co.il',
] ]
function setDefaultOptions() { function setDefaultOptions() {

View File

@ -1,183 +1,188 @@
window.localStorage.clear() window.localStorage.clear();
if (window.location.href.indexOf('bizjournals.com') !== -1) { if (window.location.href.indexOf("bizjournals.com") !== -1) {
const hiddenStory = document.getElementsByClassName( const hiddenStory = document.getElementsByClassName(
'js-pre-chunks__story-body' "js-pre-chunks__story-body"
) );
if (hiddenStory && hiddenStory.length > 0) { if (hiddenStory && hiddenStory.length > 0) {
hiddenStory[0].style.display = 'block' hiddenStory[0].style.display = "block";
} }
const payWallMessage = document.getElementsByClassName( const payWallMessage = document.getElementsByClassName(
'chunk chunk--flex@lg chunk--paywall' "chunk chunk--flex@lg chunk--paywall"
) );
if (payWallMessage && payWallMessage.length > 0) { if (payWallMessage && payWallMessage.length > 0) {
payWallMessage[0].style.display = 'none' payWallMessage[0].style.display = "none";
} }
} else if (window.location.href.indexOf('businessinsider.com') !== -1) { } else if (window.location.href.indexOf("businessinsider.com") !== -1) {
const paywall = document.getElementsByClassName( const paywall = document.getElementsByClassName(
'tp-modal' "tp-modal"
) );
while (paywall.length > 0) { while (paywall.length > 0) {
paywall[0].parentNode.removeChild(paywall[0]) paywall[0].parentNode.removeChild(paywall[0]);
} }
} else if (location.hostname.endsWith('haaretz.co.il')) { } else if (location.hostname.endsWith('haaretz.co.il')) {
const html = document.getElementsByTagName('html') const html = document.getElementsByTagName('html');
if (html && html.length > 0) { if (html && html.length > 0) {
html[0].style['overflow-y'] = 'auto' html[0].style['overflow-y'] = 'auto';
}
const msg = document.getElementById('article-wrapper')
if (msg) {
msg.style.display = 'none'
}
} else if (window.location.href.indexOf('nzherald.co.nz') !== -1) {
const paywall = document.getElementById(
'article-content'
)
if (paywall) {
paywall.classList.remove('premium-content')
paywall.classList.add('full-content')
removeClassesByPrefix(paywall, 'QUnW')
const paras = paywall.querySelectorAll('p, span, h2, div')
for (let i = paras.length - 1; i > -1; i--) {
removeClassesByPrefix(paras[i], 'QUnW')
paras[i].classList.remove('ellipsis')
paras[i].removeAttribute('style')
} }
} const msg = document.getElementById('article-wrapper');
} else if (location.hostname.endsWith('rep.repubblica.it')) { if (msg) {
if (location.href.includes('/pwa/')) { msg.style['display'] = 'none';
location.href = location.href.replace('/pwa/', '/ws/detail/') }
} } else if (window.location.href.indexOf("nzherald.co.nz") !== -1) {
const paywall = document.getElementById(
if (location.href.includes('/ws/detail/')) { "article-content"
const paywall = document.querySelector('.paywall[subscriptions-section="content"]') );
if (paywall) { if (paywall) {
paywall.removeAttribute('subscriptions-section') paywall.classList.remove('premium-content');
const preview = document.querySelector('div[subscriptions-section="content-not-granted"]') paywall.classList.add('full-content');
if (preview) { removeClassesByPrefix(paywall, 'QUnW');
preview.remove() let paras = paywall.querySelectorAll("p, span, h2, div");
} for (let i = paras.length - 1; i > -1; i--) {
removeClassesByPrefix(paras[i], 'QUnW');
paras[i].classList.remove("ellipsis");
paras[i].removeAttribute('style');
}
} }
} } else if (location.hostname.endsWith('rep.repubblica.it')) {
} else if (window.location.href.indexOf('wsj.com') !== -1) { if (location.href.includes("/pwa/")) {
if (location.href.includes('/articles/')) { location.href = location.href.replace("/pwa/", "/ws/detail/");
document.addEventListener('DOMContentLoaded', () => { }
const paywall = document.getElementById('cx-scrim')
const candybar = document.getElementById('cx-candybar') if (location.href.includes("/ws/detail/")) {
removeDOMElement(paywall, candybar) const paywall = document.querySelector('.paywall[subscriptions-section="content"]');
}) if (paywall) {
/** paywall.removeAttribute('subscriptions-section');
const preview = document.querySelector('div[subscriptions-section="content-not-granted"]');
if (preview) {
preview.remove();
}
}
}
} else if (window.location.href.indexOf("wsj.com") !== -1) {
if (location.href.includes('/articles/')) {
document.addEventListener('DOMContentLoaded', () => {
const paywall = document.getElementById('cx-scrim');
const candybar = document.getElementById('cx-candybar');
removeDOMElement(paywall, candybar);
});
/**
setTimeout(function () { setTimeout(function () {
const close_button = document.querySelector('.close-btn'); const close_button = document.querySelector('.close-btn');
if (close_button) if (close_button)
close_button.click(); close_button.click();
}, 2000); }, 2000);
**/ **/
}
} else if (window.location.href.indexOf('washingtonpost.com') !== -1) {
if (location.href.includes('/gdpr-consent/')) {
document.querySelector('.gdpr-consent-container .continue-btn.button.free').click()
setTimeout(function () {
const gdprcheckbox = document.querySelector('.gdpr-consent-container .consent-page:not(.hide) #agree')
if (gdprcheckbox) {
gdprcheckbox.checked = true
gdprcheckbox.dispatchEvent(new Event('change'))
document.querySelector('.gdpr-consent-container .consent-page:not(.hide) .continue-btn.button.accept-consent').click()
}
}, 300) // Delay (in milliseconds)
}
}
if (window.location.href.indexOf('medium.com') !== -1) {
const bottomMessageText = 'Get one more story in your member preview when you sign up. Its free.'
const DOMElementsToTextDiv = pageContains('div', bottomMessageText)
if (DOMElementsToTextDiv[2]) removeDOMElement(DOMElementsToTextDiv[2])
}
if (window.location.href.indexOf('bloombergquint.com') !== -1) {
const articlesLeftModal = document.getElementsByClassName('paywall-meter-module__story-paywall-container__1UgCE')[0]
const paywall = document.getElementById('paywallDmp')
removeDOMElement(articlesLeftModal, paywall)
}
if (window.location.href.indexOf('bloomberg.com') !== -1) {
document.addEventListener('DOMContentLoaded', () => {
const fence = document.querySelector('.fence-body')
if (fence) {
fence.classList.remove('fence-body')
} }
const paywall = document.getElementById('paywall-banner') } else if (window.location.href.indexOf("washingtonpost.com") !== -1) {
removeDOMElement(paywall) if (location.href.includes('/gdpr-consent/')) {
}) document.querySelector('.gdpr-consent-container .continue-btn.button.free').click();
setTimeout(function () {
const gdprcheckbox = document.querySelector('.gdpr-consent-container .consent-page:not(.hide) #agree');
if (gdprcheckbox) {
gdprcheckbox.checked = true;
gdprcheckbox.dispatchEvent(new Event('change'));
document.querySelector('.gdpr-consent-container .consent-page:not(.hide) .continue-btn.button.accept-consent').click();
}
}, 300); // Delay (in milliseconds)
}
}
if (window.location.href.indexOf("medium.com") !== -1) {
const bottomMessageText = 'Get one more story in your member preview when you sign up. Its free.';
const DOMElementsToTextDiv = pageContains('div', bottomMessageText);
if (DOMElementsToTextDiv[2]) removeDOMElement(DOMElementsToTextDiv[2]);
}
if (window.location.href.indexOf("bloombergquint.com") !== -1) {
const articlesLeftModal = document.getElementsByClassName('paywall-meter-module__story-paywall-container__1UgCE')[0];
const paywall = document.getElementById('paywallDmp');
removeDOMElement(articlesLeftModal, paywall);
}
if (window.location.href.indexOf("bloomberg.com") !== -1) {
document.addEventListener('DOMContentLoaded', () => {
const fence = document.querySelector('.fence-body');
if (fence){
fence.classList.remove('fence-body');
}
const paywall = document.getElementById('paywall-banner');
removeDOMElement(paywall);
});
} }
if (window.location.href.indexOf('telegraaf.nl') !== -1) { if (window.location.href.indexOf('telegraaf.nl') !== -1) {
setTimeout(function () { setTimeout(function () {
const paywall = document.getElementById('TEMPRORARY_METERING_ID') const paywall = document.getElementById('TEMPRORARY_METERING_ID');
if (paywall) { if (paywall) {
window.location.reload(true) window.location.reload(true);
} }
}, 1000) // Delay (in milliseconds) }, 1000); // Delay (in milliseconds)
} }
if (window.location.href.indexOf('ad.nl') !== -1 || window.location.href.indexOf('ed.nl') !== -1) { if (window.location.href.indexOf('ad.nl') !== -1 || window.location.href.indexOf('ed.nl') !== -1) {
const paywall = document.querySelector('.article__component.article__component--paywall-module-notification') let paywall = document.querySelector('.article__component.article__component--paywall-module-notification');
removeDOMElement(paywall) removeDOMElement(paywall);
} }
if (window.location.href.indexOf('parool.nl') !== -1 || window.location.href.indexOf('trouw.nl') !== -1 || window.location.href.indexOf('volkskrant.nl') !== -1) { if (window.location.href.indexOf("parool.nl") !== -1 || window.location.href.indexOf("trouw.nl") !== -1 || window.location.href.indexOf("volkskrant.nl") !== -1) {
document.addEventListener('DOMContentLoaded', () => { document.addEventListener('DOMContentLoaded', () => {
const paywall = document.querySelector('div[data-temptation-position="ARTICLE_BOTTOM"]') const paywall = document.querySelector('div[data-temptation-position="ARTICLE_BOTTOM"]');
const hidden_section = document.querySelector('div[data-temptation-position="ARTICLE_INLINE"]') const hidden_section = document.querySelector('div[data-temptation-position="ARTICLE_INLINE"]');
removeDOMElement(paywall, hidden_section) removeDOMElement(paywall, hidden_section);
}) });
} }
if (window.location.href.indexOf('lemonde.fr') !== -1) { if (window.location.href.indexOf('lemonde.fr') !== -1) {
document.addEventListener('DOMContentLoaded', () => { document.addEventListener('DOMContentLoaded', () => {
const hidden_section = document.getElementsByClassName('article__content--restricted-media')[0] const hidden_section = document.getElementsByClassName('article__content--restricted-media')[0];
if (hidden_section) { hidden_section.classList.remove('article__content--restricted-media') } if (hidden_section)
const longform_article_restricted = document.getElementsByClassName('article__content--restricted')[0] hidden_section.classList.remove('article__content--restricted-media');
if (longform_article_restricted) { longform_article_restricted.classList.remove('article__content--restricted') } const longform_article_restricted = document.getElementsByClassName('article__content--restricted')[0];
const longform_paywall = document.getElementsByClassName('paywall--longform')[0] if (longform_article_restricted)
if (longform_paywall) { longform_paywall.classList.remove('paywall--longform') } longform_article_restricted.classList.remove('article__content--restricted');
const paywall = document.getElementById('js-paywall-content') const longform_paywall = document.getElementsByClassName('paywall--longform')[0];
const friend_paywall = document.getElementsByClassName('friend--paywall')[0] if (longform_paywall)
const cookie_banner = document.getElementById('cookie-banner') longform_paywall.classList.remove('paywall--longform');
removeDOMElement(paywall, friend_paywall, cookie_banner) const paywall = document.getElementById('js-paywall-content');
}) const friend_paywall = document.getElementsByClassName('friend--paywall')[0];
const cookie_banner = document.getElementById('cookie-banner');
removeDOMElement(paywall, friend_paywall, cookie_banner);
});
} }
if (window.location.href.indexOf('nytimes.com') !== -1) { if (window.location.href.indexOf("nytimes.com") !== -1) {
const preview_button = document.querySelector('.css-3s1ce0') const preview_button = document.querySelector('.css-3s1ce0');
if (preview_button) { preview_button.click() } if (preview_button)
preview_button.click();
} }
if (window.location.href.indexOf('caixinglobal.com') !== -1) { if (window.location.href.indexOf("caixinglobal.com") !== -1) {
const appContent = document.getElementById('appContent') const appContent = document.getElementById('appContent');
if (appContent) { if (appContent) {
const p_hidden = document.querySelectorAll('p:not([style="display:block;"]') const p_hidden = document.querySelectorAll('p:not([style="display:block;"]');
for (var i = 0; i < p_hidden.length; i++) { for (var i = 0; i < p_hidden.length; i++) {
p_hidden[i].setAttribute('style', 'display:block;') p_hidden[i].setAttribute('style', 'display:block;');
}
} }
}
} }
function removeDOMElement (...elements) { function removeDOMElement(...elements) {
for (const element of elements) { for (let element of elements) {
if (element) element.remove() if (element) element.remove();
} }
} }
function removeClassesByPrefix (el, prefix) { function removeClassesByPrefix(el, prefix) {
for (let i = el.classList.length - 1; i >= 0; i--) { for (let i = el.classList.length - 1; i >= 0; i--) {
if (el.classList[i].startsWith(prefix)) { if (el.classList[i].startsWith(prefix)) {
el.classList.remove(el.classList[i]) el.classList.remove(el.classList[i]);
}
} }
}
} }
function pageContains (selector, text) { function pageContains (selector, text) {

View File

@ -5,22 +5,22 @@
"content_scripts": [ "content_scripts": [
{ {
"matches": [ "matches": [
"*://*.bizjournals.com/*", "*://*.bizjournals.com/*",
"*://*.bloomberg.com/*", "*://*.bloomberg.com/*",
"*://*.businessinsider.com/*", "*://*.businessinsider.com/*",
"*://*.caixinglobal.com/*", "*://*.caixinglobal.com/*",
"*://*.ad.nl/*", "*://*.ad.nl/*",
"*://*.ed.nl/*", "*://*.ed.nl/*",
"*://*.haaretz.co.il/*", "*://*.haaretz.co.il/*",
"*://*.lemonde.fr/*", "*://*.lemonde.fr/*",
"*://*.nytimes.com/*", "*://*.nytimes.com/*",
"*://*.nzherald.co.nz/*", "*://*.nzherald.co.nz/*",
"*://*.parool.nl/*", "*://*.parool.nl/*",
"*://*.repubblica.it/*", "*://*.repubblica.it/*",
"*://*.telegraaf.nl/*", "*://*.telegraaf.nl/*",
"*://*.trouw.nl/*", "*://*.trouw.nl/*",
"*://*.volkskrant.nl/*", "*://*.volkskrant.nl/*",
"*://*.washingtonpost.com/*" "*://*.washingtonpost.com/*"
], ],
"js": ["contentScript.js"] "js": ["contentScript.js"]
} }
@ -106,6 +106,7 @@
"*://*.theadvocate.com.au/*", "*://*.theadvocate.com.au/*",
"*://*.theage.com.au/*", "*://*.theage.com.au/*",
"*://*.theaustralian.com.au/*", "*://*.theaustralian.com.au/*",
"*://*.themercury.com.au/*",
"*://*.afr.com/*", "*://*.afr.com/*",
"*://*.bostonglobe.com/*", "*://*.bostonglobe.com/*",
"*://*.bizjournals.com/*", "*://*.bizjournals.com/*",
@ -142,9 +143,9 @@
"*://*.trouw.nl/*", "*://*.trouw.nl/*",
"*://*.vn.nl/*", "*://*.vn.nl/*",
"*://*.lemonde.fr/*", "*://*.lemonde.fr/*",
"*://*.scientificamerican.com/*", "*://*.scientificamerican.com/*",
"*://*.thehindu.com/*", "*://*.thehindu.com/*",
"*://*.demorgen.be/*" "*://*.demorgen.be/*"
], ],
"version": "1.6.0" "version": "1.6.2"
} }

View File

@ -68,6 +68,7 @@ var defaultSites = {
'The Japan Times': 'japantimes.co.jp', 'The Japan Times': 'japantimes.co.jp',
'TheMarker': 'themarker.com', 'TheMarker': 'themarker.com',
'The Mercury News': 'mercurynews.com', 'The Mercury News': 'mercurynews.com',
'The Mercury Tasmania': 'themercury.com.au',
'The Morning Call': 'mcall.com', 'The Morning Call': 'mcall.com',
'The Nation': 'thenation.com', 'The Nation': 'thenation.com',
'The New York Times': 'nytimes.com', 'The New York Times': 'nytimes.com',

View File

@ -32,8 +32,10 @@
{ "version": "1.5.9", { "version": "1.5.9",
"update_link": "https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.5.9/bypass_paywalls-1.5.9-an+fx.xpi" }, "update_link": "https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.5.9/bypass_paywalls-1.5.9-an+fx.xpi" },
{ "version": "1.6.0", { "version": "1.6.0",
"update_link": "https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.6.0/bypass_paywalls-1.6.0-an+fx.xpi" } "update_link": "https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.6.0/bypass_paywalls-1.6.0-an+fx.xpi" },
{ "version": "1.6.2",
"update_link": "https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.6.2/bypass_paywalls-1.6.2-an+fx.xpi" }
] ]
} }
} }
} }