Fix SfChronicle (reload loop)

Exclusion from localstorage.clear (contentScript.js).
master
magnolia1234 2019-11-19 13:45:15 +01:00 committed by GitHub
parent 84bd514809
commit f63d7be419
1 changed files with 8 additions and 6 deletions

View File

@ -1,4 +1,11 @@
window.localStorage.clear();
var arr_localstorage_hold = ['sfchronicle.com'];
var localstorage_hold = arr_localstorage_hold.some(function(url) {
return window.location.href.indexOf(url) !== -1;
});
if (!localstorage_hold){
window.localStorage.clear();
}
if (location.hostname.endsWith('rep.repubblica.it')) {
if (location.href.includes('/pwa/')) {
@ -170,11 +177,6 @@ if (window.location.href.indexOf("ledevoir.com") !== -1) {
removeDOMElement(counter);
}
if (window.location.href.includes('ft.com')) {
const cookie_banner = document.querySelector('.n-messaging-banner__outer');
removeDOMElement(cookie_banner);
}
if (window.location.href.indexOf("thehindu.com") !== -1) {
const paywall = document.getElementById('test');
removeDOMElement(paywall);