Created
December 20, 2021 16:12
-
-
Save ValentinH/280c9095465cd6d53f5fc2f856da3b65 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