Le Parisiene remove paywall

Removes the paywall for Le Parisiene articles.

// ==UserScript==
// @name            Le Parisiene remove paywall
// @namespace       StephenP
// @version         1.0.0
// @description     Removes the paywall for Le Parisiene articles.
// @author          StephenP
// @match           https://www.leparisien.fr/*
// @grant           none
// @run-at          document-idle
// ==/UserScript==
(function () {
  var css=document.createElement('style');
  css.innerHTML=".blurText{filter: none !important}";
  document.body.appendChild(css);
  document.getElementById('paywall-connect').remove();  
})()