Skip to content

Instantly share code, notes, and snippets.

@schroneko
Created March 23, 2025 12:40
Show Gist options
  • Select an option

  • Save schroneko/1fb4994eb377e36190ce088447aa2e55 to your computer and use it in GitHub Desktop.

Select an option

Save schroneko/1fb4994eb377e36190ce088447aa2e55 to your computer and use it in GitHub Desktop.
Google Chrome で開いているすべてのタブを Safari で開き直す AppleScript
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