Created
July 14, 2009 15:32
-
-
Save granth/147017 to your computer and use it in GitHub Desktop.
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
-- save as "Add Pinboard Bookmark.scpt" in ~/Library/Scripts/Applications/Safari | |
-- assign it ⌘D in FastScripts to use instead of Safari's bookmarks | |
tell application "Safari" | |
set pinboardBookmarklet to " | |
document.location = 'http://pinboard.in/add?next=same' + | |
'&url=' + encodeURIComponent(location.href) + | |
'&title=' + encodeURIComponent(document.title); | |
" | |
do JavaScript pinboardBookmarklet in document 1 | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment