Version 0.3 of Latest Visitor Filter available
Posted by Fritz. in GreaseMonkey, Hacking, JavaScriptI’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: " + "<a href=\"" + httpAddress + "\">" + ipAddress + "</a>"; html += " -- "; html += "<a href=\"http:/www.google.com/search?q=%22" + ipAddress + "%22" + "\">" + "Google IP" + "</a>"; html += " -- "; html += "<a href=\"http://ws.arin.net/cgi-bin/whois.pl?queryinput=" + ipAddress + "\">" + "WhoIs" + "</a>"; html += " -- "; 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)

Entries (RSS)