Created
November 25, 2014 19:30
-
-
Save dillonhafer/ad31dcdbcbbba236f293 to your computer and use it in GitHub Desktop.
Translate selected text to Spanish with Google translate
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 newTab to make new tab at end of tabs of window 1 | |
set translateURL to "https://translate.google.com/#auto/es/" | |
set URL of newTab to translateURL & input | |
end tell | |
return input | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment