Clarin Leer Sin Registrarse

Permite navegar por Clarin sin tener que registrarse o abrir ventanas de incognito

// ==UserScript==
// @name         Clarin Leer Sin Registrarse
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Permite navegar por Clarin sin tener que registrarse o abrir ventanas de incognito
// @author       PatoÑato
// @match        https://*.clarin.com/*
// @require http://code.jquery.com/jquery-3.4.1.min.js
// @grant        none

// ==/UserScript==
(function() {
    'use strict';

    // Your code here...
    var $ = window.jQuery;
    $(".mfp-container").remove();
    $(".mfp-wrap").remove();

})();