Greasy Fork is available in English.

Il Messaggero - paywall

Read articles from ilmessaggero.it

// ==UserScript==
// @name         Il Messaggero - paywall
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Read articles from ilmessaggero.it
// @author       You
// @match        https://www.ilmessaggero.it/*
// @icon         https://www.google.com/s2/favicons?domain=ilmessaggero.it
// @grant        none
// ==/UserScript==

/*jshint esversion: 6 */

(function() {
    'use strict';
    const remove = () => {
        console.log('remove called');
        // re-enable scrolling
        const article = document.querySelector('#premium');
        article.style.overflow = 'auto';
        // remove paywall wrapper
        const elem = document.querySelector('#paywall_wrapper');
        elem.parentNode.removeChild(elem);
    };

    setTimeout(remove, 5000);

})();