Skip to content

Instantly share code, notes, and snippets.

@briandfoy
Created September 13, 2019 17:23
Show Gist options
  • Save briandfoy/e601ba5b888fe153c2d853ed469452f2 to your computer and use it in GitHub Desktop.
Save briandfoy/e601ba5b888fe153c2d853ed469452f2 to your computer and use it in GitHub Desktop.
List the URLs in safari tabs
#!/usr/bin/osascript
tell application "Safari"
repeat with w from 1 to number of windows
repeat with t from 1 to number of tabs in window w
log URL of tab t of window w as string
end repeat
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment