varzight / Parisien.fr sans limite

// ==UserScript==
// @name         Parisien.fr sans limite
// @require http://code.jquery.com/jquery-latest.js
// @namespace    http://varzight.fr
// @version      0.1
// @description  Enleve le modal qui cache les articles a partir de 5. Remove annoying modal hiding articles.
// @author       varzight
// @match        http*://www.leparisien.fr/*
// @match        http*://leparisien.fr/*
// @grant        none
// ==/UserScript==

$(document).ready(function() {

    // as simple as this:

    $('.overlay__background').remove();
});