Le Parisiene Full Text Articles

Show the full text of Le Parisiene

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name            Le Parisiene Full Text Articles
// @name:it         Le Parisiene Articoli
// @namespace       *
// @version         2.0.0
// @description     Show the full text of Le Parisiene
// @description:it  Mostra il testo completo degli articoli su Le Parisiene
// @description:fr  Afficher le texte intégral des articles Le Parisiene
// @author          Matteo De Marchi
// @match           https://www.leparisien.fr/*
// @grant           none
// @license         GPL version 3 or any later version; http://www.gnu.org/copyleft/gpl.html
// ==/UserScript==


(function () {
  'use strict';
    var timer = setInterval(function() {
        /*CHECK EVERY 1 SECONDS BECAUSE OBFUSCATION START AFTER N SECONDS*/
        var _elements = document.getElementsByClassName("content paywall-abo blurText")
        if(_elements){
            var i;
            for (i = 0; i < _elements.length; i++) {
                _elements[i].classList.remove("blurText");
            }
            clearInterval(timer);
        }
    }, 1000);
})()