Skip to content

Instantly share code, notes, and snippets.

@happiness801
Last active December 14, 2020 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save happiness801/9c8f63a473375b38e72a98fe3541c288 to your computer and use it in GitHub Desktop.
Save happiness801/9c8f63a473375b38e72a98fe3541c288 to your computer and use it in GitHub Desktop.
Zoom - Auto Remove Join Meeting Tabs
// ==UserScript==
// @name Zoom - Close Stupid Windows
// @namespace http://onai.net/
// @version 0.2
// @description Just close the pointless "Joining meeting..." tabs
// @author Kevin Gwynn
// @match https://*.zoom.us/j/*
// @match https://*.zoom.us/w/*
// @grant window.close
// ==/UserScript==
(function() {
'use strict';
setTimeout(() => {
window.close()
}, 1500)
})();
@hungdoansy
Copy link

Haha. Very simple !!!

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