"Out of Ambit" Blackener
By WCityMike
—
Last update Apr 14, 2007
—
Installed
108 times.
// Diane Duane Blackener
// version 0.1
// Gina Trapani
// 2005-11-29
// Released to the public domain.
//
// ==UserScript==
// @name Diane Duane Blackener
// @description Changes the post text color from gray to black on Diane's weblog.
// @include http://dianeduane.com/*
// @include http://www.dianeduane.com/*
// ==/UserScript==
//
// ==RevisionHistory==
// Version 0.1:
// Released: 2005-11-29.
// Initial release.
// ==/RevisionHistory==
(function () {
//EDIT ME
var newstyle = ".entry p, .entry blockquote, .entry ul li, .entry ol li { color:black!important; }";
//END EDIT ME
var ss = document.createElement("style");
var t = document.createTextNode(newstyle);
var root = (document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0]);
ss.appendChild(t);
root.appendChild(ss);
})();