NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Pulisci articoli SD // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.sciencedaily.com/releases/* // @grant none // @license MIT // ==/UserScript== (function() { var newSS, styles=" h1.headline{font-size: 4em; font-family: serif; !important; } p, .lead {font-size: 3em; font-family: serif; !important; } .lead {color: red; !important; } header{ display: none; } span.google-src-text{ display: block !important; padding-top: 30px; color: blue; } #wtgbr{ display: none; } #gt-c { display: none; } #contentframe { top:0px !important; height: 100% !important; } #navwrapper { display: none; } div.photo-caption{ display: none; } div.photo-credit{ display: none; } div.header { display: none; } div.head { display: none; } div.col-md-4.col-md-pull-8.less-padding-left.no-print{ display: none; } dt.no-print{ display: none; } div.fullstory{ display: none; } div.mobile-top-rectangle.hidden-md.hidden-lg{ display: none; } div.mobile-middle-rectangle.hidden-md.hidden-lg{ display: none; } div.mobile-bottom-rectangle.hidden-md.hidden-lg{ display: none; } div.sidebar { display: none; } #citations { display: none; } #trendmd-suggestions { display: none; } footer { display: none; } hr { display: none; } #share_top{ display: none; } #contents{ width: 100%; margin-top: 0px; padding:80px; } #related_releases{ display: none; } .aroundtheweb-title{ display: none; } .aroundtheweb-disclosure{ display: none; } #aroundtheweb-disclosure{ display: none; } div.col-sm-8.main.less-padding-right{ width: 100%; } div.col-md-8.col-md-push-4{ width: 100%; left: 0%; }.gmnoprint { display: none; } span.notranslate{ background-color: white !important; }"; if(document.createStyleSheet) { document.createStyleSheet("javascript:'"+styles+"'"); } else { newSS=document.createElement('link'); newSS.rel='stylesheet'; newSS.href='data:text/css,' + escape(styles); document.getElementsByTagName("head")[0].appendChild(newSS); } })();