Created
December 13, 2017 17:11
-
-
Save karschsp/1defbb85e5154325799b9182ff350bb7 to your computer and use it in GitHub Desktop.
instapaper text bookmarklet
This file contains hidden or 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: function iptxt() { | |
var d = document; | |
try { | |
if (!d.body) throw (0); | |
window.location = 'http://www.instapaper.com/text?u=' + encodeURIComponent(d.location.href); | |
} catch (e) { | |
alert('Please wait until the page has loaded.'); | |
} | |
} | |
iptxt(); | |
void(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment