2019-12-06 16:15:49 +01:00
|
|
|
|
var arr_localstorage_hold = ['economist.com'];
|
|
|
|
|
var localstorage_hold = arr_localstorage_hold.some(function(url) {
|
|
|
|
|
return window.location.href.indexOf(url) !== -1;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (!localstorage_hold){
|
|
|
|
|
window.localStorage.clear();
|
|
|
|
|
}
|
2019-12-10 20:08:01 +01:00
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
if (window.location.href.indexOf("bizjournals.com") !== -1) {
|
|
|
|
|
const hiddenStory = document.getElementsByClassName(
|
|
|
|
|
"js-pre-chunks__story-body"
|
|
|
|
|
);
|
|
|
|
|
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) {
|
|
|
|
|
payWallMessage[0].style.display = "none";
|
|
|
|
|
}
|
|
|
|
|
} 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]);
|
|
|
|
|
}
|
2018-12-02 05:33:21 +01:00
|
|
|
|
} else if (location.hostname.endsWith('haaretz.co.il')) {
|
2019-11-23 05:53:56 +01:00
|
|
|
|
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';
|
|
|
|
|
}
|
|
|
|
|
} 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');
|
|
|
|
|
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');
|
|
|
|
|
}
|
2019-11-22 05:17:21 +01:00
|
|
|
|
}
|
2018-12-06 22:23:04 +01:00
|
|
|
|
} else if (location.hostname.endsWith('rep.repubblica.it')) {
|
2019-11-23 05:53:56 +01:00
|
|
|
|
if (location.href.includes("/pwa/")) {
|
|
|
|
|
location.href = location.href.replace("/pwa/", "/ws/detail/");
|
|
|
|
|
}
|
2019-11-22 05:17:21 +01:00
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
if (location.href.includes("/ws/detail/")) {
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-22 05:17:21 +01:00
|
|
|
|
}
|
2019-11-23 05:53:56 +01:00
|
|
|
|
} 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);
|
|
|
|
|
});
|
|
|
|
|
/**
|
2019-11-22 05:17:21 +01:00
|
|
|
|
setTimeout(function () {
|
|
|
|
|
const close_button = document.querySelector('.close-btn');
|
|
|
|
|
if (close_button)
|
|
|
|
|
close_button.click();
|
|
|
|
|
}, 2000);
|
|
|
|
|
**/
|
2019-11-23 05:53:56 +01:00
|
|
|
|
}
|
|
|
|
|
} 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();
|
2019-11-22 05:17:21 +01:00
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
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)
|
|
|
|
|
}
|
2019-06-26 15:37:00 +02:00
|
|
|
|
}
|
2019-10-06 19:28:18 +02:00
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
if (window.location.href.indexOf("medium.com") !== -1) {
|
|
|
|
|
const bottomMessageText = 'Get one more story in your member preview when you sign up. It’s free.';
|
|
|
|
|
const DOMElementsToTextDiv = pageContains('div', bottomMessageText);
|
2019-10-08 17:41:09 +02:00
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
if (DOMElementsToTextDiv[2]) removeDOMElement(DOMElementsToTextDiv[2]);
|
2019-10-08 17:41:09 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
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);
|
2019-10-06 19:28:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
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);
|
|
|
|
|
});
|
2019-10-05 14:08:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-16 10:18:39 +02:00
|
|
|
|
if (window.location.href.indexOf('telegraaf.nl') !== -1) {
|
2019-11-23 05:53:56 +01:00
|
|
|
|
setTimeout(function () {
|
|
|
|
|
const paywall = document.getElementById('TEMPRORARY_METERING_ID');
|
|
|
|
|
if (paywall) {
|
|
|
|
|
window.location.reload(true);
|
|
|
|
|
}
|
|
|
|
|
}, 1000); // Delay (in milliseconds)
|
2019-10-16 10:18:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-16 22:57:23 +01:00
|
|
|
|
if (window.location.href.indexOf('ad.nl') !== -1 || window.location.href.indexOf('ed.nl') !== -1) {
|
2019-11-23 05:53:56 +01:00
|
|
|
|
let paywall = document.querySelector('.article__component.article__component--paywall-module-notification');
|
|
|
|
|
removeDOMElement(paywall);
|
2019-10-16 10:18:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
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', () => {
|
|
|
|
|
const paywall = document.querySelector('div[data-temptation-position="ARTICLE_BOTTOM"]');
|
|
|
|
|
const hidden_section = document.querySelector('div[data-temptation-position="ARTICLE_INLINE"]');
|
|
|
|
|
removeDOMElement(paywall, hidden_section);
|
|
|
|
|
});
|
2019-10-14 14:52:27 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-23 13:06:43 +02:00
|
|
|
|
if (window.location.href.indexOf('lemonde.fr') !== -1) {
|
2019-11-23 05:53:56 +01:00
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
|
const hidden_section = document.getElementsByClassName('article__content--restricted-media')[0];
|
|
|
|
|
if (hidden_section)
|
|
|
|
|
hidden_section.classList.remove('article__content--restricted-media');
|
|
|
|
|
const longform_article_restricted = document.getElementsByClassName('article__content--restricted')[0];
|
|
|
|
|
if (longform_article_restricted)
|
|
|
|
|
longform_article_restricted.classList.remove('article__content--restricted');
|
|
|
|
|
const longform_paywall = document.getElementsByClassName('paywall--longform')[0];
|
|
|
|
|
if (longform_paywall)
|
|
|
|
|
longform_paywall.classList.remove('paywall--longform');
|
|
|
|
|
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);
|
|
|
|
|
});
|
2019-10-23 13:06:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
if (window.location.href.indexOf("nytimes.com") !== -1) {
|
|
|
|
|
const preview_button = document.querySelector('.css-3s1ce0');
|
2019-12-24 14:10:43 +01:00
|
|
|
|
if (preview_button)
|
|
|
|
|
preview_button.click();
|
2019-11-11 22:11:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
if (window.location.href.indexOf("caixinglobal.com") !== -1) {
|
2019-12-20 19:13:21 +01:00
|
|
|
|
const pay_tip = document.querySelectorAll('.cons-pay-tip');
|
|
|
|
|
for (let i = 0; i < pay_tip.length; i++) {
|
|
|
|
|
pay_tip[i].removeAttribute('style');
|
|
|
|
|
}
|
2019-11-23 05:53:56 +01:00
|
|
|
|
const appContent = document.getElementById('appContent');
|
|
|
|
|
if (appContent) {
|
|
|
|
|
const p_hidden = document.querySelectorAll('p:not([style="display:block;"]');
|
2019-12-20 19:13:21 +01:00
|
|
|
|
for (let i = 0; i < p_hidden.length; i++) {
|
2019-11-23 05:53:56 +01:00
|
|
|
|
p_hidden[i].setAttribute('style', 'display:block;');
|
|
|
|
|
}
|
2019-11-22 05:17:21 +01:00
|
|
|
|
}
|
2019-11-11 23:19:57 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-27 19:23:00 +01:00
|
|
|
|
if (window.location.href.indexOf("economist.com") !== -1) {
|
2019-12-06 16:15:49 +01:00
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
|
const wrapper = document.getElementById('bottom-page-wrapper');
|
|
|
|
|
removeDOMElement(wrapper);
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
const paywall = document.querySelector('.layout-article-regwall');;
|
|
|
|
|
if (paywall) {
|
|
|
|
|
window.location.reload(true);
|
|
|
|
|
}
|
|
|
|
|
}, 600); // Delay (in milliseconds)
|
|
|
|
|
});
|
2019-11-27 19:23:00 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 21:32:20 +01:00
|
|
|
|
if (window.location.href.indexOf("the-tls.co.uk") !== -1) {
|
|
|
|
|
const paywall = document.querySelector('.tls-subscriptions-banner__closed-skin');
|
|
|
|
|
removeDOMElement(paywall);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-10 20:08:01 +01:00
|
|
|
|
if (window.location.href.indexOf("leparisien.fr") !== -1) {
|
|
|
|
|
window.removeEventListener('scroll', this.scrollListener);
|
|
|
|
|
const paywall = document.querySelector('.relative.piano-paywall.below_nav.sticky');
|
|
|
|
|
removeDOMElement(paywall);
|
|
|
|
|
setTimeout(function () {
|
|
|
|
|
var content = document.getElementsByClassName('content');
|
|
|
|
|
for (var i = 0; i < content.length; i++) {
|
|
|
|
|
content[i].removeAttribute("style");
|
|
|
|
|
}
|
|
|
|
|
}, 300); // Delay (in milliseconds)
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-24 14:10:43 +01:00
|
|
|
|
if (window.location.href.indexOf("nrc.nl") !== -1) {
|
|
|
|
|
const paywall = document.querySelector('.has-paywall');
|
|
|
|
|
if (paywall)
|
|
|
|
|
paywall.classList.remove("has-paywall");
|
|
|
|
|
const paywall_overlay = document.querySelector('.has-paywall-overlay');
|
|
|
|
|
if (paywall_overlay)
|
|
|
|
|
paywall_overlay.classList.remove("has-paywall-overlay");
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-05 13:02:44 +01:00
|
|
|
|
if (window.location.href.indexOf("theathletic.com") !== -1) {
|
|
|
|
|
const banner = document.querySelector('.border-bottom-cc');
|
|
|
|
|
const subscribe = document.querySelector('.subscribe-ad-text');
|
|
|
|
|
removeDOMElement(banner, subscribe);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-05 16:31:22 +01:00
|
|
|
|
if (window.location.href.indexOf("techinasia.com") !== -1) {
|
|
|
|
|
const paywall = document.querySelector('.paywall-content');
|
|
|
|
|
if (paywall){
|
|
|
|
|
paywall.classList.remove('paywall-content');
|
|
|
|
|
}
|
|
|
|
|
const splash_subscribe = document.querySelector('.splash-subscribe');
|
|
|
|
|
const paywall_hard = document.querySelector('.paywall-hard');
|
|
|
|
|
removeDOMElement(splash_subscribe, paywall_hard);
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-05 16:48:54 +01:00
|
|
|
|
if (window.location.href.indexOf("newcastleherald.com.au") !== -1) {
|
|
|
|
|
const subscribe_truncate = document.querySelector('.subscribe-truncate');
|
|
|
|
|
if (subscribe_truncate)
|
|
|
|
|
subscribe_truncate.classList.remove('subscribe-truncate');
|
|
|
|
|
const subscriber_hider = document.querySelectorAll('.subscriber-hider');
|
|
|
|
|
for (let i = 0; i < subscriber_hider.length; i++) {
|
|
|
|
|
subscriber_hider[i].classList.remove('subscriber-hider');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-05 17:08:07 +01:00
|
|
|
|
if (window.location.href.indexOf("thestar.com") !== -1) {
|
|
|
|
|
const paywall = document.querySelector('.basic-paywall-new');
|
|
|
|
|
removeDOMElement(paywall);
|
|
|
|
|
const tbc = document.querySelectorAll('.text-block-container');
|
|
|
|
|
for (let i = 0; i < tbc.length; i++) {
|
|
|
|
|
tbc[i].removeAttribute('style');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
function removeDOMElement(...elements) {
|
|
|
|
|
for (let element of elements) {
|
|
|
|
|
if (element) element.remove();
|
|
|
|
|
}
|
2019-10-06 19:28:18 +02:00
|
|
|
|
}
|
2019-10-08 17:41:09 +02:00
|
|
|
|
|
2019-11-23 05:53:56 +01:00
|
|
|
|
function removeClassesByPrefix(el, prefix) {
|
|
|
|
|
for (let i = el.classList.length - 1; i >= 0; i--) {
|
|
|
|
|
if (el.classList[i].startsWith(prefix)) {
|
|
|
|
|
el.classList.remove(el.classList[i]);
|
|
|
|
|
}
|
2019-11-22 05:17:21 +01:00
|
|
|
|
}
|
2019-11-21 03:19:36 +01:00
|
|
|
|
}
|
2019-11-11 01:37:41 +01:00
|
|
|
|
|
2019-11-22 05:17:21 +01:00
|
|
|
|
function pageContains (selector, text) {
|
|
|
|
|
const elements = document.querySelectorAll(selector)
|
|
|
|
|
return Array.prototype.filter.call(elements, function (element) {
|
|
|
|
|
return RegExp(text).test(element.textContent)
|
|
|
|
|
})
|
|
|
|
|
}
|