Created
July 30, 2017 01:15
-
-
Save avishaan/accc432efebed0ca7c71139bef274159 to your computer and use it in GitHub Desktop.
Love using Chrome but miss being able to add the current page to your 'reading list' in Safari, run this script
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
-- Script will open Chrome, put url of active view onto clipboard, open Safari, add to reading list, wait for abit while added to reading list | |
tell application "Google Chrome" | |
activate | |
set the clipboard to (URL of active tab of first window as text) | |
end tell | |
tell application "Safari" | |
activate | |
add reading list item (get the clipboard) | |
delay 3 | |
quit | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment