Delicious 2.0 readability tweaks

By bradsucks Last update Aug 1, 2008 — Installed 728 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 2, 2, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 2, 1

There are 1 previous version of this script.

// ==UserScript==
// @name           Delicious 2.0 readability tweaks
// @namespace      http://userscripts.org/scripts/show/30916
// @description    Some readability tweaks to the new Delicious
// @include        http://delicious.com/*
// ==/UserScript==

(function() {
var css = "@namespace url(http://www.w3.org/1999/xhtml); /**/ h4 .taggedlink { font-weight: 900 !important; } .full-url a { color: #888 !important;} h4 .taggedlink:visited { color: #804480 !important; } /**/";
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); 
	}
}
})();