Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smithua/1033e15cf07ccb8bd3b18c3a4e4d66e9 to your computer and use it in GitHub Desktop.
Save smithua/1033e15cf07ccb8bd3b18c3a4e4d66e9 to your computer and use it in GitHub Desktop.
open chrome tabs in safari
tell application "Google Chrome"
set tab_list to every tab in the front window
repeat with the_tab in tab_list
set the_url to the URL of the_tab
tell application "Safari" to open location the_url
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment