diff --git a/README.md b/README.md index 7173696..386d8f6 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ * [License](#license) ### Installation - [Download and install the latest version](https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/downloads) - Here you can also find a limited permissions version (custom sites not working though). - Install add-on by downloading xpi-file (assets). +[Download and install the latest version](https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/downloads)
+Here you can also find a limited permissions version (custom sites will not be working though).
+Install add-on by downloading xpi-file. ### List of supported websites #### United States of America diff --git a/contentScript.js b/contentScript.js index 0d3e805..bda00f2 100644 --- a/contentScript.js +++ b/contentScript.js @@ -466,6 +466,10 @@ else if (matchDomain('ladepeche.fr')) { else if (matchDomain('challenges.fr')) { document.addEventListener('DOMContentLoaded', () => { + const hidden_par = document.querySelector('.corps[style="display:none"]'); + if (hidden_par) { + hidden_par.removeAttribute('style'); + } const hidden_image = document.querySelectorAll('img.lazyload'); for (let i = 0; i < hidden_image.length; i++) { var src = hidden_image[i].src;