All Sites: Page Recolorization

By George Saunders Last update Sep 22, 2007 — Installed 1,161 times. Daily Installs: 0, 0, 2, 0, 2, 2, 1, 0, 0, 0, 2, 0, 0, 1, 0, 1, 0, 0, 0, 4, 0, 2, 0, 2, 2, 1, 1, 1, 2, 5, 3, 0
// ==UserScript==
// @name          All Sites: Page Recolorization
// @description   Changes the colors on web pages to be more simple
// ==/UserScript==

(function()
{

   var newSS;
   var styles = '* { background: white ! important; color: black !important } :link, :link * { color: #0000EE !important } :visited, :visited * { color: #551A8B !important }';
   newSS = window.document.createElement('link');
   newSS.rel='stylesheet';
   newSS.href='data:text/css,' + escape(styles);

	window.document.getElementsByTagName("head")[0].appendChild(newSS);
})();