Skip to content

Instantly share code, notes, and snippets.

@reacuna
Forked from granth/Add Pinboard Bookmark
Created October 15, 2011 18:01
Show Gist options
  • Save reacuna/1289899 to your computer and use it in GitHub Desktop.
Save reacuna/1289899 to your computer and use it in GitHub Desktop.
-- 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