| DarthCarnivorouS |
12-14-2010 10:14 PM |
if you do not like calibrating monitors, there is an option to write a very easy javascript, that will change the links' colours for this particular website (unless you're using Opera, where such a script would change colours for links on all websites, I think).
just save this text here:
Code:
// @name Highlight Links
// @description Highlights links
(function() {
var root = typeof unsafeWindow != 'undefined' ? unsafeWindow : window;
if (root.location.href.indexOf('lucasforums.com') == -1) { return false; }
var links = document.getElementsByTagName('a');
for (var i = 0; i < links.length; i++) {
if (links[i].href != '') { links[i].style.color = '#bb0000'; }
}
})();
as highlightLinks.user.js
then search google for how to install scripts on your browser. it should work.
if not, simply post what's wrong in this thread.
|