Created
April 6, 2018 05:25
-
-
Save mutsune/4e37a415e4a704e3a56eefc89ac7c088 to your computer and use it in GitHub Desktop.
Chrome で開いているタブを Safari の Reading List へ追加する AppleScript
This file contains hidden or 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
| 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