Created
May 23, 2012 09:06
-
-
Save nesterchung/2774059 to your computer and use it in GitHub Desktop.
Applescript: safari open with Chrome
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
tell application "Safari" | |
set u to the URL of the current tab of the first window | |
end tell | |
tell application "Google Chrome" | |
open location u | |
activate | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment