Fix-update Cors Anywhere (link to allow access)

This commit is contained in:
magnolia1234 2021-02-08 21:44:18 +01:00
parent 0a552e0200
commit 7f27f70f69
3 changed files with 9 additions and 1 deletions

View file

@ -2,6 +2,7 @@
Changelog Bypass Paywalls Clean - Firefox
Post-release
Fix-update Cors Anywhere (link to allow access)
* v2.0.7.0 (2021-02-07)
Add Diario de Ibiza/Mallorca, Faro de Vigo & La Provincia (Spain)

View file

@ -2144,6 +2144,13 @@ function replaceDomElementExt(url, proxy, base64, selector, text_fail = '') {
a_link.href = url;
a_link.target = '_blank';
text_fail_div.appendChild(a_link);
text_fail_div.appendChild(document.createElement('br'));
let cors_link = document.createElement('a');
cors_link.innerText = '-> bpc: allow temporary access to cors-anywhere';
cors_link.href = 'https://cors-anywhere.herokuapp.com/corsdemo';
cors_link.target = '_blank';
cors_link.setAttribute('style', 'font-weight: bold;');
text_fail_div.appendChild(cors_link);
}
article.insertBefore(text_fail_div, article.firstChild);
}

View file

@ -460,5 +460,5 @@
"*://*.userzoom.com/*",
"*://*.wsj.net/*"
],
"version": "2.0.7.0"
"version": "2.0.7.1"
}