bypass-paywalls-chrome-clean/contentScript.js

27 lines
792 B
JavaScript
Raw Normal View History

2017-07-08 14:16:27 -07:00
window.localStorage.clear();
2018-12-07 04:43:16 -08: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 03:29:16 -08:00
const paywall = document.querySelector('.paywall[subscriptions-section="content"]');
2018-12-10 07:29:37 -08:00
if (paywall) {
2019-01-16 03:29:16 -08:00
paywall.removeAttribute('subscriptions-section');
const preview = document.querySelector('div[subscriptions-section="content-not-granted"]');
if (preview) {
preview.remove();
}
2018-12-07 04:43:16 -08: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 = "";
}
}