diff --git a/README.md b/README.md index fa5d0a6..6357f24 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # Bypass Paywalls Clean for Firefox +Add-on allows you to read articles from (supported) sites that implement a paywall. +You can also add domains as custom site and try to bypass the paywall. +Weekly updates are released for fixes and new sites. + * [Installation](#installation) * [Update](#update) * [List of supported websites](#list-of-supported-websites) @@ -10,6 +14,7 @@ * [Troubleshooting](#troubleshooting) * [Changelog-releases](#changelog-releases) * [License](#license) +* [Disclaimer](#disclaimer) ### 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)\ @@ -666,3 +671,6 @@ You can also exclude a specific domain which is grouped in options. ### License Bypass Paywalls Clean is [MIT-licensed](https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean/-/blob/master/LICENSE). + +### Disclaimer +* This software is provided for educational purposes only and is provided "AS IS", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software. diff --git a/changelog.txt b/changelog.txt index 7453b4e..74e4376 100644 --- a/changelog.txt +++ b/changelog.txt @@ -5,6 +5,7 @@ Post-release Add Westfalen-Blatt (Germany) Remove Gazet van Antwerpen (obsolete) Remove Republic.ru (obsolete) +Fix Bloomberg (blur) Fix Boston Globe Fix El Periodico de Catalunya (amp) Fix Foreign Affairs (timing) diff --git a/contentScript.js b/contentScript.js index 37aa732..4cdf906 100644 --- a/contentScript.js +++ b/contentScript.js @@ -1664,6 +1664,11 @@ else if (matchDomain('bloomberg.com')) { hidden_image.setAttribute('src', hidden_image.getAttribute('data-native-src')); hidden_image.style.filter = 'none'; } + let blur = document.querySelector('div.blur[style]'); + if (blur) { + blur.classList.remove('blur'); + blur.removeAttribute('style'); + } let json_script = document.querySelector('script[data-component-props="ArticleBody"], script[data-component-props="FeatureBody"]'); if (json_script) { let json = JSON.parse(json_script.innerHTML); diff --git a/manifest.json b/manifest.json index 3ad6416..4860794 100644 --- a/manifest.json +++ b/manifest.json @@ -560,5 +560,5 @@ "*://*.wallkit.net/*", "*://*.wsj.net/*" ], - "version": "2.3.7.4" + "version": "2.3.7.5" } \ No newline at end of file