Skip to content

Instantly share code, notes, and snippets.

@webdev
Created August 21, 2017 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webdev/8d22b33c64dc1bb8135a49fb64a281a9 to your computer and use it in GitHub Desktop.
Save webdev/8d22b33c64dc1bb8135a49fb64a281a9 to your computer and use it in GitHub Desktop.
Safari tab cycler
tell application "Safari"
repeat
repeat with i from (count of tabs of window 1) to 1 by -1
set thisTab to tab i of window 1
set current tab of window 1 to thisTab
delay 1
end repeat
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment