diff --git a/changelog.txt b/changelog.txt index 4d90ee9..01a5c80 100644 --- a/changelog.txt +++ b/changelog.txt @@ -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 diff --git a/contentScript.js b/contentScript.js index 54c3376..72e92ed 100644 --- a/contentScript.js +++ b/contentScript.js @@ -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'; } }