Created
March 7, 2020 14:57
-
-
Save blpabhishek/89f85d3219dc1966bf5a56f0e06d9a54 to your computer and use it in GitHub Desktop.
Switch Safari's 5 opened tabs on 2 second delay.
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
tell application "Safari" | |
activate | |
set counter to 0 | |
repeat | |
set counter to (counter + 1) | |
tell front window of application "Safari" to set current tab to tab (counter) | |
delay 2 | |
set counter to (counter mod 5) | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment