// ==UserScript== // @name Kelluvat sitaatit hiiteen @ yle.fi // @namespace Rennex/yle.fi // @description Poistaa YLEn uutisista turhat kelluvat sitaatit // @include http://yle.fi/uutiset/* // @include https://yle.fi/uutiset/* // @version 1.2 // @grant none // @downloadURL none // ==/UserScript== function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } addGlobalStyle("article blockquote { display: none !important; }")