Skip to content

Instantly share code, notes, and snippets.

@AdrianSkar
Last active May 29, 2020 14:55
Show Gist options
  • Save AdrianSkar/da1f68fee4a6c1865fea85938da3e129 to your computer and use it in GitHub Desktop.
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.
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
});
@AdrianSkar
Copy link
Author

Can be directly installed on Violentmonkey or your userscript extension of preference.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment