Last active
March 5, 2024 13:13
-
-
Save wgroenewold/a92dde9b98bd63206afef52210b24de7 to your computer and use it in GitHub Desktop.
Greasemonkey script to auto-click "Join now" in a Google Meet screen.
This file contains hidden or 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
// ==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