Skip to content

Instantly share code, notes, and snippets.

@kosho
Created July 23, 2018 23:39
Show Gist options
  • Save kosho/7dcdbc04d25b92f3aa2363e13cdec471 to your computer and use it in GitHub Desktop.
Save kosho/7dcdbc04d25b92f3aa2363e13cdec471 to your computer and use it in GitHub Desktop.
# via http://apple.stackexchange.com/questions/39430/automatically-scan-cycle-through-safari-tabs
tell application "Safari"
repeat
repeat with i from (count of tabs of window 1) to 1 by -1
set current tab of window 1 to tab i of window 1
delay 10
end repeat
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment