Zoom autoclose

Autoclose the zoom page when zoom in launched

  1. // ==UserScript==
  2. // @name Zoom autoclose
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.33
  5. // @description Autoclose the zoom page when zoom in launched
  6. // @author You
  7. // @match *://us05web.zoom.us/*
  8. // @match https://us05web.zoom.us/
  9. // @grant none
  10. // @license MIT
  11.  
  12. // ==/UserScript==
  13.  
  14. //YT: https://www.youtube.com/channel/UCOA8lE9-0XnEIdHqjfQUz1A
  15. // @license MIT
  16. console.log("a"), document.domain.includes("zoom") && (window.onhashchange = function(o) {
  17. window.close(), history.back()
  18. }), location.hash.includes("suc") && (window.close(), history.back(), console.log("Back"));

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址