Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grand-lotus-iroh/a72a167236a3332fe3708a7fb0102f77 to your computer and use it in GitHub Desktop.
Save grand-lotus-iroh/a72a167236a3332fe3708a7fb0102f77 to your computer and use it in GitHub Desktop.
open stumbleupon links outside of frame - you'll want to create a new bookmarklet in your browser bookmark toolbar and just copy / paste the below code snippet
// (R) click Bookmarks Toolbar
// New Bookmark
// Copy / Paste into Location
// Click Add
// minified version
javascript:(function()%7Bwindow.open(document.getElementsByClassName('stumble-frame')%5B0%5D.src%2C%20'_blank')%7D)()
// pretty version
javascript: (function() {
window.open(document.getElementsByClassName('stumble-frame')[0].src, '_blank')
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment