diff --git a/README.md b/README.md index 24c9411..94d732a 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ _* free articles only._ [Entrepreneur](https://www.entrepreneur.com) - [Forbes](https://www.forbes.com) - [Fortune](https://fortune.com) - -[Harvard Business Review](https://www.hbr.org) - +[Harvard Business Review](https://www.hbr.org)* - [Inc.com](https://www.inc.com) - [Law.com](https://www.law.com)* - [Law360](https://www.law360.com)* - diff --git a/changelog.txt b/changelog.txt index 5228a5e..d712f0f 100644 --- a/changelog.txt +++ b/changelog.txt @@ -7,6 +7,7 @@ Remove Alma Talent sites (hold Iltalehti.fi) Remove NTNews.com.au (fix obsolete) Remove Nuernberger Nachrichten (fix obsolete) Fix Corriere dello Sport (subdomains) +Fix GEDI.it (only Googlebot) Fix WaPo * v2.8.7.0 (2022-10-02) diff --git a/contentScript.js b/contentScript.js index ad3b38b..5003632 100644 --- a/contentScript.js +++ b/contentScript.js @@ -1780,9 +1780,7 @@ else if (matchDomain('rep.repubblica.it')) { } else if (matchDomain(it_gedi_domains)) { - if (matchDomain('huffingtonpost.it')) { - csDoneOnce = true; - } else if (matchDomain('lescienze.it')) { + if (matchDomain('lescienze.it')) { let paywall = document.querySelector('.paywall-adagio'); if (paywall) { let body_paywall = document.querySelector('#detail-body-paywall'); @@ -1796,43 +1794,19 @@ else if (matchDomain(it_gedi_domains)) { csDoneOnce = true; } } else if (matchDomain('limesonline.com')) { - let url = window.location.href; - if (url.includes('prv=true')) { + if (window.location.search.includes('prv=true')) { window.setTimeout(function () { - window.location.href = url.split('?')[0]; + window.location.href = window.location.pathname; }, 500); } else csDoneOnce = true; } else { - let url = window.location.href.split('?')[0]; - if (!url.match(/\amp(\/)?$/)) { - let premium = document.querySelector('#paywall, iframe#__limio_frame'); - if (premium) { - removeDOMElement(premium); - let amphtml = document.querySelector('link[rel="amphtml"]'); - if (amphtml) - window.location.href = amphtml.href; - } else if (matchDomain('gelocal.it')) { - premium = document.querySelector('.paywall-adagio'); - if (premium) { - removeDOMElement(premium); - window.setTimeout(function () { - let article_body = document.querySelector('div#article-body[style]'); - if (article_body) - article_body.removeAttribute('style'); - }, 1000); - } - } + if (!window.location.pathname.match(/\amp(\/)?$/)) { let ads = document.querySelectorAll('div[id^="adv"]'); removeDOMElement(...ads); } else { - if (matchDomain(['lastampa.it', 'www.repubblica.it'])) { - let paywall = document.querySelector('div[id^="paywall-banner"]'); - removeDOMElement(paywall); - amp_unhide_subscr_section('amp-ad, amp-embed'); - } else { + if (matchDomain('espresso.repubblica.it')) amp_unhide_access_hide('="showContent"', '', 'amp-ad, amp-embed') - } } } } diff --git a/sites.js b/sites.js index 2393e5a..1a33f3a 100644 --- a/sites.js +++ b/sites.js @@ -775,7 +775,7 @@ var defaultSites = { "Harper's Magazine": { domain: "harpers.org" }, - "Harvard Business Review": { + "Harvard Business Review (free articles only)": { domain: "hbr.org", block_regex: /(\.tinypass\.com\/|cdn\.ampproject\.org\/v\d\/amp-access-.+\.js)/ },