-
-
Save jesus2099/c7a796418a3e3829807ebd51470109ff to your computer and use it in GitHub Desktop.
BugMeNot Bookmarklet
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
// The bookmarklet you can find online for bugmenot doesn't work. Looks like | |
// bugmenot now wants just the hostname instead of the full url. Here's one | |
// that works. | |
javascript:(function() { var url = ('http://www.bugmenot.com/view/' + escape(location.hostname)); w = open(url, 'w', 'location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=500,height=400,modal=yes,dependent=yes'); if (w) { setTimeout('w.focus()', 1000) } else { location = url } })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment