Created
July 6, 2015 08:00
-
-
Save aerobounce/56693bdccf46d00e2a32 to your computer and use it in GitHub Desktop.
Chromium から Safariのリーディングリストにページを追加する
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
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