// ==STAN==
// @name        Link Highlighter
// @namespace   http://johnbokma.com/firefox/greasemonkey/
// @description Highlights link(s) to location given in script
// @include     *
// @exclude     http://www.antoineleroux.fr*
// ==/STAN==


var links = document.getElementsByTagName( 'a' );
var element;

for ( var i = 0; i < links.length; i++ ) {

    element = links[ i ];

    if ( element.href.indexOf( "http://www.antoineleroux.fr" ) == 0 ) {

        element.style.color = "#ff0000";
        element.style.backgroundColor = "#ffffcc";
    }
}
