Dev12 / GrupoNacion - Clean Style

// ==UserScript==
// @name        GrupoNacion - Clean Style
// @namespace   gruponacion-clean
// @description GrupoNacion Clean Style
// @include     http://www.nacion.com/*
// @include     http://www.aldia.cr/*
// @include     http://www.elfinancierocr.com/*
// @version     1.4
// @grant       none
// ==/UserScript==

$(document)
    .ready(function() {
        document.body.innerHTML = document.body.innerHTML.replace(/position: absolute; z-index: 10000; top: 0px; left: 0px;/g, 'position: absolute; z-index: 10000; top: 0px; left: 0px; display:none;');
        document.getElementsByClassName('boxleft').style.display = 'none';
        document.getElementById('doc').style.position = 'static'; 
        document.getElementById('nacion-login-bar').style.display = 'none'; 
        document.getElementById('alerta_suscripcion_paywall').style.display = 'none';
    });