Skip to content

Instantly share code, notes, and snippets.

@rosskarchner
Created June 3, 2011 01:37
Show Gist options
  • Save rosskarchner/1005705 to your computer and use it in GitHub Desktop.
Save rosskarchner/1005705 to your computer and use it in GitHub Desktop.
In Automator, service to bookmark current Chrome tab in Pukka
on run {input, parameters}
tell application "Google Chrome"
set myURL to URL of active tab of window 1
set myTitle to title of active tab of window 1
end tell
tell application "Pukka"
set post URL to myURL
set post title to myTitle
set index of window 1 to 1
end tell
return input
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment