te4.org link color change
Posted: Wed Mar 13, 2013 2:50 pm
userscript for chrome tampermonkey to change eye hurting white color of links on http://te4.org ; ), you can ofc change color to whatever you like ( i like ooze color cause of incoming v1.0.1 ; p )
Code: Select all
// ==UserScript==
// @name Change TE4 links color
// @namespace
// @version 1.0
// @description enter dragon
// @match http://te4.org/*
// @copyright 2012+, nomnom
// ==/UserScript==
function addCss(cssString)
{
var head = document.getElementsByTagName('head')[0];
var newCss = document.createElement('style');
newCss.type = "text/css";
newCss.innerHTML = cssString;
head.appendChild(newCss);
}
addCss ( 'a { color: #63E052 !important; }' );