// ==UserScript== // @name Locate Domain in Search Results // @filename locate_domain_in_search_.user.js // @author Mark Stoecker // @homepage http://www.poundbangwhack.com // @namespace // http://www.poundbangwhack.com/greasemonkey/highlight-domain-in-search-results/ // @version 1.0 // @description Locate a specific domain easily within the results of a // Google, Yahoo!, or Bing Search // @include http://www.google.com/search* // @include http://google.com/search* // @include http://search.yahoo.com/* // @include http://bing.com/search* // @include http://www.bing.com/search* // ==/UserScript== //***********************BEGIN CONFIGURATION**********************// // Set the site variable to the site you wish to locate (without www is best) // Set the color variable to the background color you wish to use to highlight // your domain (defaults to light red) var site='' var color='#fcc'; //************************END CONFIGURATION***********************// //*******************DO NOT EDIT PAST THIS LINE*******************// //****************UNLESS YOU KNOW WHAT YOU'RE DOING***************// var all_links=document.getElementsByTagName('a'); if (location.hostname.indexOf("google.com")!=-1) { for (i=0; i