Skip to content

Instantly share code, notes, and snippets.

@happiness801
Last active November 10, 2025 16:53
Show Gist options
  • Select an option

  • Save happiness801/9c8f63a473375b38e72a98fe3541c288 to your computer and use it in GitHub Desktop.

Select an option

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.3
// @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);
setTimeout(window.close, 3500);
setTimeout(window.close, 15000);
})();
@hungdoansy
Copy link

Haha. Very simple !!!

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