diff --git a/README.md b/README.md index 0eb6aa0..74cb928 100755 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ ### Installation instructions Due to [Google internal policy](https://developer.chrome.com/webstore/program_policies), the extension is not available on the Chrome Web Store. The following instructions are needed to install third-party extensions in [Chromium](https://en.wikipedia.org/wiki/Chromium_(web_browser))-based browsers: #### Chrome (Windows, MacOS, Linux), Microsoft Edge (version 79) -1. Download this repository as a [ZIP file from BitBucket](https://bitbucket.org/magnolia1234/bypass-paywalls-chrome-clean/downloads). +1. Download this repository as a [ZIP file from BitBucket](https://bitbucket.org/magnolia1234/bypass-paywalls-chrome-clean/get/master.zip). 2. Unzip the file and you should have a folder named `magnolia1234-bypass-paywalls-chrome-clean-master`. 3. Move the folder to a permanent location on your computer (do not delete the folder after installation). 4. Go to the extensions page (`chrome://extensions` or `edge://extensions`). diff --git a/contentScript.js b/contentScript.js index e289782..f2886ed 100755 --- a/contentScript.js +++ b/contentScript.js @@ -547,6 +547,13 @@ else if (matchDomain('gestion.pe')) { } } +else if (matchDomain("challenges.fr")) { + const hidden_par = document.querySelector('.corps[style="display:none"]'); + if (hidden_par) { + hidden_par.removeAttribute('style'); + } +} + // General Functions function removeDOMElement(...elements) { for (let element of elements) { diff --git a/popup.html b/popup.html index 887f4a2..45ecb4f 100644 --- a/popup.html +++ b/popup.html @@ -7,7 +7,7 @@