Skip to content

Instantly share code, notes, and snippets.

@fisadev
Created October 11, 2024 18:16
Show Gist options
  • Save fisadev/a55b665669c4e0cee242622f5dcc6c2c to your computer and use it in GitHub Desktop.
Save fisadev/a55b665669c4e0cee242622f5dcc6c2c to your computer and use it in GitHub Desktop.
Zoom web bookmarklet
javascript:(function(){var currentUrl=window.location.href;if(currentUrl.startsWith("https://us02web.zoom.us/j/")){var newUrl=currentUrl.replace("https://us02web.zoom.us/j/","https://zoom.us/wc/join/");window.location.href=newUrl;}else{alert("This URL does not match the expected Zoom pattern.");}})();
@fisadev
Copy link
Author

fisadev commented Oct 11, 2024

A small bookmarklet to be able to join via zoom web client, meant to be clicked when on the "join via app" zoom page.

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