Last active
March 9, 2018 04:32
-
-
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
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
// (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