Created
October 26, 2010 10:06
-
-
Save martinbean/646639 to your computer and use it in GitHub Desktop.
Want to quickly do a WHOIS look-up of the domain of the current website you're browsing? Simple save the following snippet as a bookmark in your favourite WebKit-enabled web browser...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:var loc=window.location.host;window.location.href='http://whois.domaintools.com/'+loc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Want WHOIS details to open in a new window as opposed to your current working window? Simply use the following bookmarklet instead:
javascript:var loc=window.location.host;window.open('http'+'://whois.domaintools.com/'+loc);