Skip to content

Instantly share code, notes, and snippets.

@squirelo
Last active August 29, 2015 14:08
Show Gist options
  • Save squirelo/87ae00ffe30cdeba2b09 to your computer and use it in GitHub Desktop.
Save squirelo/87ae00ffe30cdeba2b09 to your computer and use it in GitHub Desktop.
tell application "Google Chrome"
repeat with w in windows
set i to 1
repeat with t in tabs of w
if URL of t starts with "https://mail.google" then
set active tab index of w to i
set index of w to 1
return
end if
set i to i + 1
end repeat
end repeat
open location "https://mail.google.com/mail/u/0/#inbox"
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment