diff --git a/README.md b/README.md index 36c7970e..b7ef5212 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,12 @@ By default BPC has limited permissions, but you can opt-in to enable custom site Check for updates (in about:addons) and allow permissions for newly supported sites (else no update will be installed). #### Android -On Android this add-on only works with Firefox 68 (Fennec); Firefox 79+ (Fenix) only supports 9 'recommended' add-ons (for now).\ -BPC add-on works fine in Firefox Nightly (or IceRaven) though (when you load BPC from a [custom add-on collection](https://blog.mozilla.org/addons/2020/09/29/expanded-extension-support-in-firefox-for-android-nightly)).\ -For Firefox Nightly you have to make your own custom add-on collection (or use another that contains BPC). \ +On Android this add-on doesn't work with latest Firefox v84 (Fenix); it only supports 9 'recommended' add-ons (for now).\ +BPC add-on works fine in [Firefox Nightly](https://play.google.com/store/apps/details?id=org.mozilla.fenix), [Fennec F-Droid](https://f-droid.org/en/packages/org.mozilla.fennec_fdroid/) or [IceRaven](https://github.com/fork-maintainers/iceraven-browser) though (when you load BPC from a [custom add-on collection](https://blog.mozilla.org/addons/2020/09/29/expanded-extension-support-in-firefox-for-android-nightly)).\ +For Firefox Nightly or Fennec F-Droid (based on latest Firefox for Android) you have to make your own custom add-on collection (or use another that contains BPC). \ [Iceraven (Fenix fork)](https://github.com/fork-maintainers/iceraven-browser) uses: [What I want on Fenix](https://addons.mozilla.org/en-US/firefox/collections/16201230/What-I-want-on-Fenix)\ -It has a custom add-ons account: 16201230 & collection: What-I-want-on-Fenix, but somehow it's not working in Firefox Nightly. +It has a custom add-ons account: 16201230 & collection: What-I-want-on-Fenix.\ +In IceRaven all add-ons are shown (with search option), but In Firefox Nightly and Fennec F-Droid only the first 50 add-ons are shown (including this add-on). #### Chrome/Chromium Visit the [Chrome repository](https://gitlab.com/magnolia1234/bypass-paywalls-chrome-clean) of Bypass Paywall Clean. @@ -320,6 +321,9 @@ Grouped in options:\ [Trouw](https://www.trouw.nl) - [Volkskrant](https://www.volkskrant.nl) +##### Portugal +[Observador](https://observador.pt) + ##### Russia [Republic.ru](https://republic.ru) @@ -490,7 +494,7 @@ Check 'Options'-link in popup-menu and go to custom sites. Make sure the (new) site is checked under Options (or check on/off-button). By default sites' cookies/local storage are removed after page loads (to bypass article limit). Also you can enable Googlebot user-agent or disable Javascript for (sub)domain(s)/external sources.\ -PS enabling custom sites (optional permissions) isn't working on Android (Firefox Nightly or IceRaven). +PS enabling custom sites (optional permissions) isn't working on Android (Firefox Nightly, Fennec F-Droid or IceRaven). ### Add excluded site Add excluded sites/domains (for your subscriptions).\ diff --git a/background.js b/background.js index fb3df7c5..e56338e5 100644 --- a/background.js +++ b/background.js @@ -16,6 +16,7 @@ const restrictions = { 'barrons.com': /.+\.barrons\.com\/(amp\/)?article(s)?\/.+/, 'bloombergquint.com': /^((?!\.bloombergquint\.com\/bq-blue-exclusive\/).)*$/, 'elcomercio.pe': /.+\/elcomercio\.pe\/.+((\w)+(\-)+){3,}.+/, + 'elpais.com': /(\/elpais\.com\/$|\/(.+\.)?elpais\.com\/.+\.html)/, 'faz.net': /^((?!\/.+\.faz\.net\/aktuell\/(\?switchfaznet)?$).)*$/, 'foreignaffairs.com': /.+\.foreignaffairs\.com\/(articles|fa-caching|interviews|reviews|sites)\/.+/, 'ft.com': /.+\.ft.com\/content\//, @@ -89,6 +90,7 @@ var allow_cookies_default = [ 'nybooks.com', 'nytimes.com', 'nzz.ch', + 'observador.pt', 'parismatch.com', 'piqd.de', 'quotidiano.net', @@ -271,6 +273,7 @@ var blockedRegexes = { 'newsweek.com': /js\.pelcro\.com\/.+/, 'newyorker.com': /.+\.newyorker\.com\/verso\/static\/presenter-articles.+\.js/, 'nytimes.com': /(meter-svc\.nytimes\.com\/meter\.js|mwcm\.nyt\.com\/.+\.js)/, + 'observador.pt': /\.tinypass\.com\/.+/, 'parismatch.com': /.+\.poool\.fr\/.+/, 'quotidiano.net': /\.tinypass\.com\/.+/, 'repubblica.it': /scripts\.repubblica\.it\/pw\/pw\.js.+/, diff --git a/changelog.txt b/changelog.txt index d9a6d38e..906323f5 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,7 @@ Changelog Bypass Paywalls Clean - Firefox Post-release +Add Observador (Portugal) Add Ruhr Nachrichten (Germany) Fix-update El Pais (Spain) Fix-update MIT Sloan Management Review diff --git a/contentScript.js b/contentScript.js index 7c540e09..f7fbea7a 100644 --- a/contentScript.js +++ b/contentScript.js @@ -1992,6 +1992,12 @@ else if (matchDomain('ruhrnachrichten.de')) { paywall.classList.remove('PianoContent'); } +else if (matchDomain('observador.pt')) { + let paywall = document.querySelector('.premium-article'); + if (paywall) + paywall.classList.remove('premium-article'); +} + else if (!matchDomain(['belfasttelegraph.co.uk', 'independent.ie'])) csDone = true; diff --git a/manifest.json b/manifest.json index 07270a49..e9b69435 100644 --- a/manifest.json +++ b/manifest.json @@ -282,6 +282,7 @@ "*://*.nytimes.com/*", "*://*.nzherald.co.nz/*", "*://*.nzz.ch/*", + "*://*.observador.pt/*", "*://*.ocregister.com/*", "*://*.orlandosentinel.com/*", "*://*.ostsee-zeitung.de/*", @@ -433,5 +434,5 @@ "*://*.stripe.com/*", "*://*.userzoom.com/*" ], - "version": "2.0.4.2" + "version": "2.0.4.3" } \ No newline at end of file diff --git a/sites.js b/sites.js index d9a1f461..461ecb09 100644 --- a/sites.js +++ b/sites.js @@ -151,6 +151,7 @@ var defaultSites = "NRC Handelsblad": "nrc.nl", "O Estado de S. Paulo": "estadao.com.br", "O Globo": "globo.com", + "Observador.pt": "observador.pt", "Orange County Register": "ocregister.com", "Orlando Sentinel": "orlandosentinel.com", "Palo Alto Online": "paloaltoonline.com",