Created
June 21, 2011 22:09
-
-
Save NocturnDragon/1039050 to your computer and use it in GitHub Desktop.
Open current safari tab in Google 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
property storedURL : "" | |
tell application "Safari" | |
set storedURL to URL of current tab of front window | |
end tell | |
tell application "Google Chrome" | |
try | |
set URL of active tab of front window to storedURL | |
on error | |
make new window | |
set URL of active tab of front window to storedURL | |
end try | |
activate | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment