Add new Dutch papers

master
magnolia1234 2019-10-16 10:10:01 +02:00 committed by GitHub
parent a7d5634b2d
commit 14787ebc02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 1 deletions

View File

@ -88,10 +88,26 @@ if (window.location.href.indexOf("bizjournals.com") !== -1) {
}
}, 300); // Delay (in milliseconds)
}
} else if (window.location.href.indexOf('telegraaf.nl') !== -1) {
const paywall = document.getElementById('TEMPRORARY_METERING_ID');
if (paywall) {
window.location.reload(1);
}
} else 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;
}
} else 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);
});
}
if (window.location.href.indexOf("bloomberg.com") !== -1) {
console.log('inside bloomberg')
const paywall = document.getElementById('paywall-banner');
removeDOMElement(paywall);
}