diff --git a/changelog.txt b/changelog.txt index 587deabe..3c2ea0fe 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,8 @@ Changelog Bypass Paywalls Clean - Firefox Post-release + +* v2.1.0.0 (2021-02-28) Add Die Rheinpfalz (Germany) Add Gannett Group (local USA Today; opt-in to custom sites) Add New York Daily News (local USA) diff --git a/contentScript.js b/contentScript.js index 379e9187..f3bd4b7d 100644 --- a/contentScript.js +++ b/contentScript.js @@ -304,7 +304,9 @@ else if (matchDomain("americanbanker.com")) { else if (matchDomain('telegraaf.nl')) { if (window.location.href.startsWith('https://www.telegraaf.nl/error?ref=/')) { - window.location.href = window.location.href.split('&')[0].replace('error?ref=/', ''); + window.setTimeout(function () { + window.location.href = window.location.href.split('&')[0].replace('error?ref=/', ''); + }, 500); } let refresh = document.querySelector('div[id="content"] > meta[http-equiv="refresh"]'); if (refresh) { diff --git a/manifest.json b/manifest.json index 16c8cb9b..2481cda3 100644 --- a/manifest.json +++ b/manifest.json @@ -481,5 +481,5 @@ "*://*.wallkit.net/*", "*://*.wsj.net/*" ], - "version": "2.0.9.8" + "version": "2.1.0.0" } \ No newline at end of file diff --git a/updates.json b/updates.json index f437d969..85fd5b71 100644 --- a/updates.json +++ b/updates.json @@ -2,8 +2,8 @@ "addons": { "magnolia@12.34": { "updates": [ - { "version": "2.0.9.1", - "update_link": "https://gitlab.com/magnolia1234/bpc-uploads/-/raw/master/bypass_paywalls_clean-2.0.9.1.xpi" } + { "version": "2.1.0.0", + "update_link": "https://gitlab.com/magnolia1234/bpc-uploads/-/raw/master/bypass_paywalls_clean-2.1.0.0.xpi" } ] } }