Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aerobounce/56693bdccf46d00e2a32 to your computer and use it in GitHub Desktop.
Save aerobounce/56693bdccf46d00e2a32 to your computer and use it in GitHub Desktop.
Chromium から Safariのリーディングリストにページを追加する
on run {input, parameters}
tell application "Chromium"
set pageUrl to get URL of active tab of first window
end tell
tell application "Safari" to add reading list item pageUrl
display notification pageUrl with title "⭕️リーディングリストに追加しました"
return input
end run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment