seraaam

Added by Rendy Ferdian@userstyles, Created: Apr 17, 2009, Updated: Apr 19, 2009
With the style applied

Description:

// ==UserScript==
// @name Slashdot ad removal
// @namespace http://userstyles.org
// @description Removes ads at slashdot.org.
// @author Jason Barnabe (np)
// @homepage Stylish test style
// @include http://slashdot.org/*
// @include https://slashdot.org/*
// @include http://*.slashdot.org/*
// @include https://*.slashdot.org/*
// ==/UserScript==
(function() {
var css = "#advertisement-content { display: none; } #advertisement-title { display: none; } .ad1, .ad2, .ad3, .ad4, .ad5, .ad6, .ad7, .ad8, .ad9, .ad10 { display: none; }";
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
heads[0].appendChild(node);
}
}
})();

Installs:
Applies to:
facebook.com

Related styles:

WARNING: This webware is not functioning properly. Please enable javascript in your browser and try again.