Last active
January 17, 2025 12:44
-
-
Save francisfeng/11bb59ccd9d6fb30fa038c780e7ea2c0 to your computer and use it in GitHub Desktop.
Save all tabs of Safari’s current window to Anybox
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
tell application "Safari" | |
repeat with tabItem in tabs of window 1 | |
set link to URL of tabItem | |
tell application id "cc.anybox.Anybox" | |
save link | |
end tell | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment