Skip to content

Instantly share code, notes, and snippets.

View alissonperez's full-sized avatar

Alisson R. Perez alissonperez

  • São Paulo, SP, Brasil
View GitHub Profile

Keybase proof

I hereby claim:

  • I am alissonperez on github.
  • I am alissonrperez (https://keybase.io/alissonrperez) on keybase.
  • I have a public key whose fingerprint is 2172 F752 816A 0123 4D9F 123B 2506 9817 F5D2 5CE7

To claim this, I am signing this object:

@alissonperez
alissonperez / gist:10a17496d63caca36fcdb1c2d8a636ac
Last active October 22, 2022 15:23 — forked from mayoff/gist:1138816
AppleScript to make Google Chrome Canary open/reload a URL
(* To the extent possible under law, Rob Mayoff has waived all copyright and related or neighboring rights to “AppleScript to make Google Chrome open/reload a URL”. This work is published from: United States. https://creativecommons.org/publicdomain/zero/1.0/ *)
tell application "Google Chrome Canary"
activate
set i to 0
repeat with w in (windows) -- loop over each window
set j to 1 -- tabs are not zeroeth
repeat with t in (tabs of w) -- loop over each tab
if title of t starts with "Meet:" then
set (active tab index of w) to j -- set Meet tab to active
set index of w to 1 -- set window with Meet tab to active