Fix update check (GitLab CORS issue or BitBucket http error 429)

master
magnolia1234 2022-02-22 17:34:52 +01:00
parent d9e2405ac9
commit e983d63d1f
5 changed files with 9 additions and 13 deletions

View File

@ -123,10 +123,8 @@ function setDefaultOptions() {
}
function check_sites_updated() {
let url = 'https://gitlab.com/magnolia1234/bypass-paywalls-' + url_loc + '-clean/-/raw/master/sites_updated.json';
//let url = 'https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/raw/master/sites_updated.json';
let proxyurl = 'https://bpc2-cors-anywhere.herokuapp.com/';
fetch(proxyurl + url, {headers: {"Content-Type": "text/plain", "X-Requested-With": "XMLHttpRequest"} })
let sites_updated_json = 'https://gitlab.com/magnolia1234/bypass-paywalls-' + url_loc + '-clean/-/raw/master/sites_updated.json';
fetch(sites_updated_json)
.then(response => {
if (response.ok) {
response.json().then(json => {
@ -1131,10 +1129,8 @@ function updateBadge(activeTab) {
var ext_version_new;
function check_update() {
let url = 'https://gitlab.com/magnolia1234/bypass-paywalls-' + url_loc + '-clean/raw/master/manifest.json';
//let url = 'https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/raw/master/manifest.json';
let proxyurl = 'https://bpc2-cors-anywhere.herokuapp.com/';
fetch(proxyurl + url, {headers: {"Content-Type": "text/plain", "X-Requested-With": "XMLHttpRequest"} })
let manifest_new = 'https://gitlab.com/magnolia1234/bypass-paywalls-' + url_loc + '-clean/raw/master/manifest.json';
fetch(manifest_new)
.then(response => {
if (response.ok) {
response.json().then(json => {

View File

@ -2,6 +2,7 @@
Changelog Bypass Paywalls Clean - Chrome
Post-release
Fix update check (GitLab CORS issue or BitBucket http error 429)
* v2.5.7.0 (2022-02-20)
Remove Ruhr Nachrichten (fix obsolete)

View File

@ -39,5 +39,5 @@
"webRequestBlocking",
"<all_urls>"
],
"version": "2.5.7.0"
"version": "2.5.7.1"
}

View File

@ -591,6 +591,7 @@
"*://*.epimg.net/*",
"*://*.flip-pay.com/*",
"*://*.gannett-cdn.com/*",
"*://*.gitlab.com/magnolia1234/*",
"*://*.hearstnp.com/*",
"*://*.jsdelivr.net/*",
"*://*.lightboxcdn.com/*",
@ -607,5 +608,5 @@
"*://*.wallkit.net/*",
"*://*.wsj.net/*"
],
"version": "2.5.7.0"
"version": "2.5.7.1"
}

View File

@ -44,9 +44,7 @@ function show_update(ext_version_new, check = true) {
function check_version_update(ext_version_new, popup) {
if (!popup) {
let manifest_new = 'https://gitlab.com/magnolia1234/bypass-paywalls-' + url_loc + '-clean/raw/master/manifest.json';
//let manifest_new = 'https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/raw/master/manifest.json';
let proxyurl = 'https://bpc2-cors-anywhere.herokuapp.com/';
fetch(proxyurl + manifest_new, {headers: {"Content-Type": "text/plain", "X-Requested-With": "XMLHttpRequest"} })
fetch(manifest_new)
.then(response => {
if (response.ok) {
response.json().then(json => {