I’ve updated the GreaseMonkey latest visitor filter to add links to WhoIs and BotsVsBrowsers. You can get latest version here.

The guts of the update are:


function Linkify( ipAddress )

{

  var httpAddress = "http://" + ipAddress;

  var html = "Host:&nbsp;" + "<a href=\"" + httpAddress + "\">" + ipAddress + "</a>";

  html += "&nbsp;--&nbsp;";

  html += "<a href=\"http:/www.google.com/search?q=%22" + ipAddress + "%22" + "\">" + "Google IP" + "</a>";

  html += "&nbsp;--&nbsp;";

  html += "<a href=\"http://ws.arin.net/cgi-bin/whois.pl?queryinput=" + ipAddress + "\">" + "WhoIs" + "</a>";

  html += "&nbsp;--&nbsp;";

  html += "<a href=\"http://www.botsvsbrowsers.com/ip/" + ipAddress + "/index.html\">" + "BotsVsBrowsers" + "</a>";

  return html;

}


(Converted to HTML by http://www.palfrader.org/code2html/code2html.html)

Leave a Reply

You must be logged in to post a comment. Login »