Skip to content

Instantly share code, notes, and snippets.

@wgroenewold
Last active March 5, 2024 13:13
Show Gist options
  • Save wgroenewold/a92dde9b98bd63206afef52210b24de7 to your computer and use it in GitHub Desktop.
Save wgroenewold/a92dde9b98bd63206afef52210b24de7 to your computer and use it in GitHub Desktop.
Greasemonkey script to auto-click "Join now" in a Google Meet screen.
// ==UserScript==
// @name Click
// @version 0.1
// @match *://meet.google.com/*
// @author woutergroenewold
// @grant GM_addStyle
// @require http://code.jquery.com/jquery-2.1.0.min.js
// ==/UserScript==
//- The @grant directive is needed to restore the proper sandbox.
$(document).ready(function() {
setTimeout(function() {
$("span:contains('Join now')").click();
}, 5000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment