NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Hide Lemonde Subscriber Nag
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.lemonde.fr/*
// @icon https://www.google.com/s2/favicons?domain=lemonde.fr
// @grant GM_addStyle
// @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;
}
`);
})();