Skip to content

Instantly share code, notes, and snippets.

@ValentinH
Created December 20, 2021 16:13
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 ValentinH/8cc2b73cfa9aad5f752f30265bb1cdd3 to your computer and use it in GitHub Desktop.
Save ValentinH/8cc2b73cfa9aad5f752f30265bb1cdd3 to your computer and use it in GitHub Desktop.
// Menu: Meet
// Description: Start new meet and paste on Slack
// Author: Valentin Hervieu
// Twitter: @ValentinHervieu
import "@johnlindquist/kit"
async function sleep(time = 1000) {
return new Promise(resolve => setTimeout(resolve, time))
}
browse('https://meet.new')
let count = 1
let tab = ''
while (count < 20) {
await sleep(500)
tab = await getActiveTab("Brave")
if (!tab.startsWith('https://meet.google.com/new')) break
count += 1
}
tab = tab.split('?')[0]
await copy(tab)
await focusWindow('Slack', '')
await setSelectedText(tab)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment