Fix Il Fatto Quotidiano

merge-requests/2/head
magnolia1234 3 years ago
parent 7bbadfc479
commit b2fc329f03

@ -3,6 +3,7 @@ Changelog Bypass Paywalls Clean - Firefox
Post-release
Fix Barron's (timing)
Fix Il Fatto Quotidiano
Fix Boston Globe (incognito mode)
Fix Westfaelische Nachrichten & Westfalen-Blatt

@ -1074,9 +1074,9 @@ else if (matchDomain('ilfattoquotidiano.it')) {
let amp_ads = document.querySelectorAll('amp-ad, div#_4sVideoContainer');
removeDOMElement(...amp_ads);
} else {
let paywall = pageContains('section.article-body > p', '[...]');
if (paywall.length > 0) {
removeDOMElement(...paywall);
let paywall = document.querySelector('div.read-more');
if (paywall) {
removeDOMElement(paywall);
window.location.href = url.split('?')[0] + 'amp';
}
}

Loading…
Cancel
Save