Feedly: hide adverts

By Adam Bull Last update Sep 12, 2009 — Installed 2,582 times.
// ==UserScript==
// @name           Feedly: hide adverts
// @include        http://www.feedly.com/home
// ==/UserScript==
function addCss(cssCode) {
    var styleElement = document.createElement("style");
    styleElement.type = "text/css";
    if (styleElement.styleSheet) {
	styleElement.styleSheet.cssText = cssCode;
    } else {
	styleElement.appendChild(document.createTextNode(cssCode));
    }
    document.getElementsByTagName("head")[0].appendChild(styleElement);
}
addCss('#products { display: none; }')