bypass-paywalls-firefox/contentScript.js

69 lines
2.4 KiB
JavaScript
Raw Normal View History

window.localStorage.clear();
2018-07-07 15:11:09 -07:00
if (window.location.href.indexOf("bizjournals.com") !== -1) {
2018-06-30 12:48:40 -07:00
const hiddenStory = document.getElementsByClassName(
"js-pre-chunks__story-body"
);
2018-06-30 12:53:50 -07:00
if (hiddenStory && hiddenStory.length>0) {
2018-06-30 12:48:40 -07:00
hiddenStory[0].style.display = "block";
}
2018-06-30 12:53:50 -07:00
const payWallMessage = document.getElementsByClassName(
"chunk chunk--flex@lg chunk--paywall"
);
if (payWallMessage && payWallMessage.length>0 ) {
2018-06-30 12:48:40 -07:00
payWallMessage[0].style.display = "none";
}
2018-07-07 15:11:09 -07:00
} else if (window.location.href.indexOf("businessinsider.com") !== -1) {
const paywall = document.getElementsByClassName(
"tp-modal"
);
while (paywall.length > 0) {
paywall[0].parentNode.removeChild(paywall[0]);
}
} else if (location.hostname.endsWith('haaretz.co.il')) {
const html = document.getElementsByTagName('html');
if (html && html.length > 0) {
html[0].style['overflow-y'] = 'auto';
}
const msg = document.getElementById('article-wrapper');
if (msg) {
msg.style['display'] = 'none';
}
2018-12-06 13:23:04 -08:00
} else if (location.hostname.endsWith('rep.repubblica.it')) {
if (location.href.includes("/pwa/")) {
location.href = location.href.replace("/pwa/", "/ws/detail/");
}
if (location.href.includes("/ws/detail/")) {
2019-01-25 07:29:06 -08:00
const paywall = document.querySelector('.paywall[subscriptions-section="content"]');
2018-12-11 03:02:43 -08:00
if (paywall) {
2019-01-25 07:29:06 -08:00
paywall.removeAttribute('subscriptions-section');
const preview = document.querySelector('div[subscriptions-section="content-not-granted"]');
if (preview) {
preview.remove();
}
2018-12-06 13:23:04 -08:00
}
}
2019-06-23 12:42:33 -07:00
} else if (window.location.href.indexOf("wsj.com") !== -1) {
if (location.href.includes('/articles/')) {
setTimeout(function() {
document.querySelector('.close-btn').click();
}, 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)
}
}