mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 01:11:04 +00:00
Remove bloomberg paywall
This commit is contained in:
parent
5fe7d7c40f
commit
14a78fe5fd
@ -3,14 +3,14 @@ if (window.location.href.indexOf("bizjournals.com") !== -1) {
|
||||
const hiddenStory = document.getElementsByClassName(
|
||||
"js-pre-chunks__story-body"
|
||||
);
|
||||
if (hiddenStory && hiddenStory.length>0) {
|
||||
if (hiddenStory && hiddenStory.length > 0) {
|
||||
hiddenStory[0].style.display = "block";
|
||||
}
|
||||
|
||||
const payWallMessage = document.getElementsByClassName(
|
||||
"chunk chunk--flex@lg chunk--paywall"
|
||||
);
|
||||
if (payWallMessage && payWallMessage.length>0 ) {
|
||||
if (payWallMessage && payWallMessage.length > 0) {
|
||||
payWallMessage[0].style.display = "none";
|
||||
}
|
||||
} else if (window.location.href.indexOf("businessinsider.com") !== -1) {
|
||||
@ -69,7 +69,7 @@ if (window.location.href.indexOf("bizjournals.com") !== -1) {
|
||||
}
|
||||
} else if (window.location.href.indexOf("wsj.com") !== -1) {
|
||||
if (location.href.includes('/articles/')) {
|
||||
setTimeout(function() {
|
||||
setTimeout(function () {
|
||||
document.querySelector('.close-btn').click();
|
||||
}, 2000);
|
||||
}
|
||||
@ -77,7 +77,7 @@ if (window.location.href.indexOf("bizjournals.com") !== -1) {
|
||||
if (location.href.includes('/gdpr-consent/')) {
|
||||
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');
|
||||
if (gdprcheckbox) {
|
||||
@ -89,3 +89,16 @@ if (window.location.href.indexOf("bizjournals.com") !== -1) {
|
||||
}, 300); // Delay (in milliseconds)
|
||||
}
|
||||
}
|
||||
|
||||
if (window.location.href.indexOf("bloomberg.com") !== -1) {
|
||||
console.log('inside bloomberg')
|
||||
const paywall = document.getElementById('paywall-banner');
|
||||
removeDOMElement(paywall);
|
||||
}
|
||||
|
||||
function removeDOMElement(...elements) {
|
||||
for (let element of elements) {
|
||||
if (element) element.remove();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user