NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name FreeTheIndep' // @namespace Violentmonkey Scripts // @grant none // @match http://www.lindependant.fr/* // @version 0.1 // @description Display complete text from premium articles of www.lindependant.fr // @updateURL https://openuserjs.org/meta/PierroNegro/FreeTheIndep.meta.js // ==/UserScript== document.body.onload = function() { document.getElementsByClassName('article-long')[0].style.display=""; document.getElementsByClassName('gp-article-bottom-premium-strip')[0].style.display="none"; document.getElementsByClassName('article-short')[0].style.display="none"; alert("!! Free the Indep' !!!"); };