NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Maximize display of LeMonde subscriber articles // @namespace http://tampermonkey.net/ // @version 0.2 // @description Ensure all unrestricted text of subscriber articles on lemonde.fr is visible // @author throwawaygsquant // @match https://www.lemonde.fr/* // @icon https://www.google.com/s2/favicons?domain=lemonde.fr // @grant GM_addStyle // @updateURL https://openuserjs.org/meta/throwawaygsquant/Maximize_display_of_LeMonde_subscriber_articles.meta.js // @downloadURL https://openuserjs.org/install/throwawaygsquant/Maximize_display_of_LeMonde_subscriber_articles.user.js // @copyright 2021, throwawaygsquant (https://openuserjs.org/users/throwawaygsquant) // @license MIT // ==/UserScript== (function() { 'use strict'; GM_addStyle(` .article__content--restricted { height: 100% !important; } .article__content--restricted-media { height: 100% !important; } .paywall__container::before { height: 0; top: 0; } `); })();