Created
December 20, 2021 16:14
-
-
Save ValentinH/cb636bbd1f0ebd4231ff16482ee8dd5c to your computer and use it in GitHub Desktop.
This file contains 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
// 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