FFFFFF to EBEBEB

By pile0nades Last update Nov 4, 2006 — Installed 2,258 times. Daily Installs: 6, 0, 3, 8, 1, 1, 0, 1, 3, 7, 1, 1, 1, 18, 1, 5, 4, 4, 4, 10, 5, 13, 7, 0, 1, 6, 8, 5, 3, 7, 2, 1
// ==UserScript==
// @name           FFFFFF to EBEBEB
// @namespace      http://pile0nades.wordpress.com/
// @description    Change white background to grey on web pages
// @include        *
// ==/UserScript==


var everything = document.getElementsByTagName("*");
var bgcolor = [];
for(var i=0; i<everything.length; i++) {
  bgcolor[i] = document.defaultView.getComputedStyle(everything[i], "").getPropertyValue("background-color");
  if(
    bgcolor[i] == "rgb(255, 255, 255)" ||
    bgcolor[i] == "rgb(254, 254, 254)"
  ) {
    everything[i].style.backgroundColor = "#EBEBEB";
  }

}