Skip to content

Instantly share code, notes, and snippets.

@idbrii
Created March 14, 2015 14:08
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save idbrii/e00b2c62120bc002ec1d to your computer and use it in GitHub Desktop.
Save idbrii/e00b2c62120bc002ec1d to your computer and use it in GitHub Desktop.
BugMeNot Bookmarklet
// 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