Fix-update Australia News Corp (amp)

This commit is contained in:
magnolia1234 2020-10-18 14:49:32 +02:00
parent 4e1d0e0a43
commit e271e2a615
4 changed files with 89 additions and 78 deletions

View file

@ -12,10 +12,10 @@
### Installation ### Installation
You can install the add-on from Mozilla add-ons (AMO): [Bypass Paywalls Clean](https://addons.mozilla.org/en-US/firefox/addon/bypass-paywalls-clean) You can install the add-on from Mozilla add-ons (AMO): [Bypass Paywalls Clean](https://addons.mozilla.org/en-US/firefox/addon/bypass-paywalls-clean)
Or download and install the latest version from [BitBucket](https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/downloads) Or download and install the latest version from [BitBucket](https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/downloads)
By default BPC has limited permissions, but you can opt-in to enable custom sites (and also clear cookies for non-listed sites). By default BPC has limited permissions, but you can opt-in to enable custom sites (and also clear cookies/block general paywall-scripts for non-listed sites).
Install add-on by downloading xpi-file. Install add-on by downloading xpi-file.
On Android this add-on only works with Firefox 68 (Fennec); Firefox 79 (Fenix) only supports 9 add-ons (for now). On Android this add-on only works with Firefox 68 (Fennec); Firefox 79 (Fenix) only supports 9 add-ons (for now).
So don't update to Firefox 79 or use F-droid's [Fennec-release](https://f-droid.org/en/packages/org.mozilla.fennec_fdroid/) So don't update to Firefox 79 or use Firefox Nightly (and load BPC from a custom add-on collection).
### List of supported websites ### List of supported websites

View file

@ -322,6 +322,7 @@ ext_api.storage.sync.get({
for (let domain of au_news_corp_domains) { for (let domain of au_news_corp_domains) {
allow_cookies.push(domain); allow_cookies.push(domain);
use_google_bot.push(domain); use_google_bot.push(domain);
blockedRegexes[domain] = /cdn\.ampproject\.org\/v\d\/amp-access-.+\.js/;
} }
} else } else
disabledSites = disabledSites.concat(au_news_corp_domains); disabledSites = disabledSites.concat(au_news_corp_domains);
@ -573,9 +574,10 @@ ext_api.webRequest.onBeforeSendHeaders.addListener(function(details) {
let inkl_site = (matchUrlDomain('cdn.jsdelivr.net', details.url) && matchUrlDomain('inkl.com', header_referer) && isSiteEnabled({url: header_referer})); let inkl_site = (matchUrlDomain('cdn.jsdelivr.net', details.url) && matchUrlDomain('inkl.com', header_referer) && isSiteEnabled({url: header_referer}));
let bloomberg_site = (matchUrlDomain('assets.bwbx.io', details.url) && matchUrlDomain('bloomberg.com', header_referer) && isSiteEnabled({url: header_referer})); let bloomberg_site = (matchUrlDomain('assets.bwbx.io', details.url) && matchUrlDomain('bloomberg.com', header_referer) && isSiteEnabled({url: header_referer}));
let au_nc_amp_site = (matchUrlDomain('cdn.ampproject.org', details.url) && matchUrlDomain(au_news_corp_domains, header_referer) && isSiteEnabled({url: header_referer}));
let au_apn_site = (header_referer && (urlHost(header_referer).endsWith('com.au') || urlHost(header_referer).endsWith('net.au')) && details.url.includes('https://media.apnarm.net.au/')); let au_apn_site = (header_referer && (urlHost(header_referer).endsWith('com.au') || urlHost(header_referer).endsWith('net.au')) && details.url.includes('https://media.apnarm.net.au/'));
let au_swm_site = (header_referer && urlHost(header_referer).endsWith('com.au') && details.url.includes('https://s.thewest.com.au/')); let au_swm_site = (header_referer && urlHost(header_referer).endsWith('com.au') && details.url.includes('https://s.thewest.com.au/'));
if (!isSiteEnabled(details) && !(inkl_site) && !(bloomberg_site) && !(au_apn_site) && !(au_swm_site)) { if (!isSiteEnabled(details) && !(inkl_site) && !(bloomberg_site) && !(au_nc_amp_site) && !(au_apn_site) && !(au_swm_site)) {
return; return;
} }

View file

@ -5,6 +5,7 @@ Post-release
Add NYmag-sites Grub Street, The Cut & Vulture Add NYmag-sites Grub Street, The Cut & Vulture
Add Quotidiano.net (Italy) Add Quotidiano.net (Italy)
Add The West Australian (+ regional) Add The West Australian (+ regional)
Fix-update Australia News Corp (amp)
Fix-update Inkl (disable newsletter login) Fix-update Inkl (disable newsletter login)
Fix-update Toronto Star (external cookie-script) Fix-update Toronto Star (external cookie-script)
Update opt-in tab (default settings) Update opt-in tab (default settings)

View file

@ -65,9 +65,9 @@ else if (domain = matchDomain(["brisbanetimes.com.au", "smh.com.au", "theage.com
else if (window.location.hostname.endsWith(".com.au") || window.location.hostname.endsWith(".net.au")) { else if (window.location.hostname.endsWith(".com.au") || window.location.hostname.endsWith(".net.au")) {
// Australian Community Media newspapers // Australian Community Media newspapers
let au_sites = ['bendigoadvertiser.com.au', 'bordermail.com.au', 'canberratimes.com.au', 'centralwesterndaily.com.au', 'dailyadvertiser.com.au', 'dailyliberal.com.au', 'examiner.com.au', 'illawarramercury.com.au', 'newcastleherald.com.au', 'northerndailyleader.com.au', 'portnews.com.au', 'standard.net.au', 'theadvocate.com.au', 'thecourier.com.au', 'westernadvocate.com.au']; let au_cm_sites = ['bendigoadvertiser.com.au', 'bordermail.com.au', 'canberratimes.com.au', 'centralwesterndaily.com.au', 'dailyadvertiser.com.au', 'dailyliberal.com.au', 'examiner.com.au', 'illawarramercury.com.au', 'newcastleherald.com.au', 'northerndailyleader.com.au', 'portnews.com.au', 'standard.net.au', 'theadvocate.com.au', 'thecourier.com.au', 'westernadvocate.com.au'];
let au_piano_script = document.querySelector('script[src="https://cdn-au.piano.io/api/tinypass.min.js"]'); let au_piano_script = document.querySelector('script[src="https://cdn-au.piano.io/api/tinypass.min.js"]');
if (matchDomain(au_sites) || au_piano_script) { if (matchDomain(au_cm_sites) || au_piano_script) {
const subscribe_truncate = document.querySelector('.subscribe-truncate'); const subscribe_truncate = document.querySelector('.subscribe-truncate');
if (subscribe_truncate) if (subscribe_truncate)
subscribe_truncate.classList.remove('subscribe-truncate'); subscribe_truncate.classList.remove('subscribe-truncate');
@ -76,6 +76,13 @@ else if (window.location.hostname.endsWith(".com.au") || window.location.hostnam
subscriber_hider.classList.remove('subscriber-hider'); subscriber_hider.classList.remove('subscriber-hider');
} }
} else if (window.location.hostname.endsWith(".com.au")) { } else if (window.location.hostname.endsWith(".com.au")) {
// Australia News Corp
let au_nc_sites = ['adelaidenow.com.au', 'cairnspost.com.au', 'couriermail.com.au', 'dailytelegraph.com.au', 'geelongadvertiser.com.au', 'goldcoastbulletin.com.au', 'heraldsun.com.au', 'ntnews.com.au', 'theaustralian.com.au', 'themercury.com.au', 'townsvillebulletin.com.au', 'weeklytimesnow.com.au'];
if (matchDomain(au_nc_sites) && window.location.hostname.startsWith('amp.')) {
let div_hidden_all = document.querySelectorAll('div[amp-access="access AND subscriber"]');
for (let div_hidden of div_hidden_all)
div_hidden.removeAttribute('amp-access-hide');
} else {
// Australian Seven West Media // Australian Seven West Media
let swm_script = document.querySelector('script[src^="https://s.thewest.com.au"]'); let swm_script = document.querySelector('script[src^="https://s.thewest.com.au"]');
if (matchDomain("thewest.com.au") || swm_script) { if (matchDomain("thewest.com.au") || swm_script) {
@ -158,6 +165,7 @@ else if (window.location.hostname.endsWith(".com.au") || window.location.hostnam
} }
} }
} }
}
else if (matchDomain('rep.repubblica.it')) { else if (matchDomain('rep.repubblica.it')) {
window.setTimeout(function () { window.setTimeout(function () {