Last active
May 29, 2020 14:55
-
-
Save AdrianSkar/da1f68fee4a6c1865fea85938da3e129 to your computer and use it in GitHub Desktop.
Reveal a button to run a Zoom meeting in the browser without having to clic on download first.
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
window.addEventListener("load", function(){ | |
var curU = window.location.href; // get current URL | |
var newU = curU.replace('/j/', '/wc/join/'); // Set URL for running metting in the browser | |
var browMe = document.createElement('a'); | |
browMe.setAttribute('href', newU); | |
browMe.innerHTML = 'Run in browser'; | |
document.querySelector('div[role="main"]').appendChild(browMe); // Add button to Zoom's content | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can be directly installed on Violentmonkey or your userscript extension of preference.