diff --git a/changelog.txt b/changelog.txt index 50de5cd..8269ed0 100644 --- a/changelog.txt +++ b/changelog.txt @@ -3,6 +3,7 @@ Changelog Bypass Paywalls Clean - Firefox Updates (install signed xpi-file): https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean/-/releases Post-release +Fix Bloomberg (Live TV limit) Fix La Vanguardia (xhr) Fix Roularta Media Group (js) diff --git a/contentScript.js b/contentScript.js index 45c4e57..8a4ceae 100644 --- a/contentScript.js +++ b/contentScript.js @@ -3080,6 +3080,11 @@ else if (matchDomain('bloomberg.com')) { } } } + if (window.location.pathname.startsWith('/live/')) { + setInterval(function () { + window.localStorage.clear(); + }, 15 * 60 * 1000); + } } else if (matchDomain('bloombergadria.com')) { diff --git a/custom/manifest.json b/custom/manifest.json index 2b313fd..bdc38a1 100644 --- a/custom/manifest.json +++ b/custom/manifest.json @@ -51,5 +51,5 @@ "webRequestBlocking", "*://*/*" ], - "version": "3.1.5.2" + "version": "3.1.5.3" } diff --git a/manifest.json b/manifest.json index 4dd899e..00761dd 100644 --- a/manifest.json +++ b/manifest.json @@ -753,5 +753,5 @@ "*://html.onlineviewer.net/*", "*://webcache.googleusercontent.com/*" ], - "version": "3.1.5.2" + "version": "3.1.5.3" }