Created
June 3, 2011 01:37
-
-
Save rosskarchner/1005705 to your computer and use it in GitHub Desktop.
In Automator, service to bookmark current Chrome tab in Pukka
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
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