双击关闭页面

双击页面任意位置即可关闭页面

  1. // ==UserScript==
  2. // @name 双击关闭页面
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 双击页面任意位置即可关闭页面
  6. // @author inch
  7. // @match http*://*/*
  8. // @run-at document-start
  9. // @grant unsafeWindow
  10. // @grant window.close
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. document.addEventListener('dblclick', function (e) {
  15. window.close();
  16. });
  17. })();

QingJ © 2025

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