mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 07:07:47 +01:00
Merge branch 'master' into feature/Add-bloomberg-qunit
This commit is contained in:
commit
f8f5ad665b
1 changed files with 83 additions and 77 deletions
160
contentScript.js
160
contentScript.js
|
@ -1,93 +1,93 @@
|
||||||
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');
|
const msg = document.getElementById('article-wrapper');
|
||||||
if (msg) {
|
if (msg) {
|
||||||
msg.style['display'] = 'none';
|
msg.style['display'] = 'none';
|
||||||
}
|
}
|
||||||
} else if (window.location.href.indexOf("nzherald.co.nz") !== -1) {
|
} else if (window.location.href.indexOf("nzherald.co.nz") !== -1) {
|
||||||
const paywall = document.getElementById(
|
const paywall = document.getElementById(
|
||||||
"article-content"
|
"article-content"
|
||||||
);
|
);
|
||||||
if (paywall) {
|
if (paywall) {
|
||||||
paywall.classList.remove('premium-content');
|
paywall.classList.remove('premium-content');
|
||||||
paywall.classList.add('full-content');
|
paywall.classList.add('full-content');
|
||||||
var paras = paywall.querySelectorAll("p, span, h2, div");
|
var paras = paywall.querySelectorAll("p, span, h2, div");
|
||||||
var delClass = "";
|
var delClass = "";
|
||||||
for (var i = 0; i < paras.length; i++) {
|
for (var i = 0; i < paras.length; i++) {
|
||||||
if (paras[i].nodeName == 'P' || paras[i].nodeName == 'SPAN') {
|
if (paras[i].nodeName == 'P' || paras[i].nodeName == 'SPAN') {
|
||||||
paras[i].classList.remove("ellipsis");
|
paras[i].classList.remove("ellipsis");
|
||||||
if (delClass == "" && paras[i].className != "") {
|
if (delClass == "" && paras[i].className != "") {
|
||||||
delClass = paras[i].className;
|
delClass = paras[i].className;
|
||||||
} else {
|
} else {
|
||||||
if (delClass != "") {
|
if (delClass != "") {
|
||||||
paras[i].classList.remove(delClass);
|
paras[i].classList.remove(delClass);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
paras[i].removeAttribute('style');
|
paras[i].removeAttribute('style');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (location.hostname.endsWith('rep.repubblica.it')) {
|
} else if (location.hostname.endsWith('rep.repubblica.it')) {
|
||||||
if (location.href.includes("/pwa/")) {
|
if (location.href.includes("/pwa/")) {
|
||||||
location.href = location.href.replace("/pwa/", "/ws/detail/");
|
location.href = location.href.replace("/pwa/", "/ws/detail/");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (location.href.includes("/ws/detail/")) {
|
if (location.href.includes("/ws/detail/")) {
|
||||||
const paywall = document.querySelector('.paywall[subscriptions-section="content"]');
|
const paywall = document.querySelector('.paywall[subscriptions-section="content"]');
|
||||||
if (paywall) {
|
if (paywall) {
|
||||||
paywall.removeAttribute('subscriptions-section');
|
paywall.removeAttribute('subscriptions-section');
|
||||||
const preview = document.querySelector('div[subscriptions-section="content-not-granted"]');
|
const preview = document.querySelector('div[subscriptions-section="content-not-granted"]');
|
||||||
if (preview) {
|
if (preview) {
|
||||||
preview.remove();
|
preview.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (window.location.href.indexOf("wsj.com") !== -1) {
|
} else if (window.location.href.indexOf("wsj.com") !== -1) {
|
||||||
if (location.href.includes('/articles/')) {
|
if (location.href.includes('/articles/')) {
|
||||||
setTimeout(function() {
|
setTimeout(function () {
|
||||||
document.querySelector('.close-btn').click();
|
document.querySelector('.close-btn').click();
|
||||||
}, 2000);
|
}, 2000);
|
||||||
}
|
}
|
||||||
} else if (window.location.href.indexOf("washingtonpost.com") !== -1) {
|
} else if (window.location.href.indexOf("washingtonpost.com") !== -1) {
|
||||||
if (location.href.includes('/gdpr-consent/')) {
|
if (location.href.includes('/gdpr-consent/')) {
|
||||||
document.querySelector('.gdpr-consent-container .continue-btn.button.free').click();
|
document.querySelector('.gdpr-consent-container .continue-btn.button.free').click();
|
||||||
|
|
||||||
setTimeout(function (){
|
setTimeout(function () {
|
||||||
|
|
||||||
const gdprcheckbox = document.querySelector('.gdpr-consent-container .consent-page:not(.hide) #agree');
|
const gdprcheckbox = document.querySelector('.gdpr-consent-container .consent-page:not(.hide) #agree');
|
||||||
if (gdprcheckbox) {
|
if (gdprcheckbox) {
|
||||||
gdprcheckbox.checked = true;
|
gdprcheckbox.checked = true;
|
||||||
gdprcheckbox.dispatchEvent(new Event('change'));
|
gdprcheckbox.dispatchEvent(new Event('change'));
|
||||||
|
|
||||||
document.querySelector('.gdpr-consent-container .consent-page:not(.hide) .continue-btn.button.accept-consent').click();
|
document.querySelector('.gdpr-consent-container .consent-page:not(.hide) .continue-btn.button.accept-consent').click();
|
||||||
}
|
}
|
||||||
}, 300); // Delay (in milliseconds)
|
}, 300); // Delay (in milliseconds)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (window.location.href.indexOf("bloombergquint.com") !== -1) {
|
if (window.location.href.indexOf("bloombergquint.com") !== -1) {
|
||||||
|
@ -96,6 +96,12 @@ if (window.location.href.indexOf("bloombergquint.com") !== -1) {
|
||||||
removeDOMElement(articlesLeftModal, paywall);
|
removeDOMElement(articlesLeftModal, paywall);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (window.location.href.indexOf("bloomberg.com") !== -1) {
|
||||||
|
console.log('inside bloomberg')
|
||||||
|
const paywall = document.getElementById('paywall-banner');
|
||||||
|
removeDOMElement(paywall);
|
||||||
|
}
|
||||||
|
|
||||||
function removeDOMElement(...elements) {
|
function removeDOMElement(...elements) {
|
||||||
for (let element of elements) {
|
for (let element of elements) {
|
||||||
if (element) element.remove();
|
if (element) element.remove();
|
||||||
|
|
Loading…
Reference in a new issue