Skip to content

Instantly share code, notes, and snippets.

@mutsune
Created April 6, 2018 05:25
Show Gist options
  • Select an option

  • Save mutsune/4e37a415e4a704e3a56eefc89ac7c088 to your computer and use it in GitHub Desktop.

Select an option

Save mutsune/4e37a415e4a704e3a56eefc89ac7c088 to your computer and use it in GitHub Desktop.
Chrome で開いているタブを Safari の Reading List へ追加する AppleScript
tell application "Google Chrome"
set myURL to get URL of active tab of first window
set myTitle to get title of active tab of first window
end tell
tell application "Safari" to add reading list item myURL with title myTitle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment