Last active
June 26, 2020 01:46
-
-
Save silvers/183fe399d8e083b975939c5c0382615b to your computer and use it in GitHub Desktop.
zoomのタブから離れたら閉じる君
This file contains 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
// ==UserScript== | |
// @name Close Zoom Tab | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description close zoom tab on success | |
// @author silvers | |
// @match https://*.zoom.us/j/* | |
// @match https://zoom.us/j/* | |
// @grant window.close | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.addEventListener("visibilitychange", function() { | |
if (document.hidden) { | |
window.close(); | |
} | |
}, false); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for Tampermonkey
https://gist.githubusercontent.com/silvers/183fe399d8e083b975939c5c0382615b/raw/auto-close-zoom-tab.user.js