// ==UserScript== // @name Kelluvat sitaatit hiiteen @ yle.fi // @namespace Rennex/yle.fi // @description Poistaa YLEn uutisista turhat kelluvat sitaatit // @include https://yle.fi/* // @version 1.3 // @grant none // @downloadURL https://update.greasyfork.cloud/scripts/4963/Kelluvat%20sitaatit%20hiiteen%20%40%20ylefi.user.js // @updateURL https://update.greasyfork.cloud/scripts/4963/Kelluvat%20sitaatit%20hiiteen%20%40%20ylefi.meta.js // ==/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, .yle__article__quote { display: none !important; }")