2017-07-08 14:16:27 -07:00
|
|
|
window.localStorage.clear();
|
2018-12-07 13:43:16 +01:00
|
|
|
|
|
|
|
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-16 12:29:16 +01:00
|
|
|
const paywall = document.querySelector('.paywall[subscriptions-section="content"]');
|
2018-12-10 16:29:37 +01:00
|
|
|
if (paywall) {
|
2019-01-16 12:29:16 +01:00
|
|
|
paywall.removeAttribute('subscriptions-section');
|
|
|
|
const preview = document.querySelector('div[subscriptions-section="content-not-granted"]');
|
|
|
|
if (preview) {
|
|
|
|
preview.remove();
|
|
|
|
}
|
2018-12-07 13:43:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-12 22:27:15 -07:00
|
|
|
|
|
|
|
if (window.location.href.indexOf("americanbanker.com") !== -1) {
|
|
|
|
const paywall = document.getElementsByClassName(
|
|
|
|
"embargo-content"
|
|
|
|
);
|
|
|
|
if (paywall && paywall.length>0 ) {
|
|
|
|
paywall[0].className = "";
|
|
|
|
}
|
2019-06-02 13:33:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (window.location.href.indexOf('telegraaf.nl') !== -1) {
|
|
|
|
const paywall = document.getElementById('TEMPRORARY_METERING_ID');
|
|
|
|
if (paywall) {
|
|
|
|
window.location.reload(1);
|
|
|
|
}
|
2019-06-02 13:38:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (window.location.href.indexOf('ed.nl') !== -1) {
|
|
|
|
const paywall = document.querySelector('.article__component.article__component--paywall-module-notification');
|
|
|
|
if (paywall) {
|
|
|
|
paywall.remove();
|
|
|
|
paywall = null;
|
|
|
|
}
|
2019-06-16 16:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (window.location.href.indexOf("washingtonpost.com") !== -1) {
|
|
|
|
if (location.href.includes('/gdpr-consent/')) {
|
|
|
|
document.querySelector('.gdpr-consent-container .continue-btn.button.free').click();
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-20 21:54:32 -07:00
|
|
|
|
|
|
|
if (window.location.href.indexOf("wsj.com") !== -1) {
|
|
|
|
if (location.href.includes('/articles/')) {
|
|
|
|
document.querySelector('.close-btn').click();
|
|
|
|
}
|
|
|
|
}
|
2019-06-20 22:28:29 -07:00
|
|
|
|
|
|
|
if (window.location.href.indexOf("sloanreview.mit.edu") !== -1) {
|
|
|
|
document.querySelector('#cboxClose').click();
|
|
|
|
}
|
|
|
|
|