屏蔽所有网站的ctrl+s操作 close_ctrl_s

2020/5/13 下午5:28:13

目前為 2020-05-13 提交的版本,檢視 最新版本

// ==UserScript==
// @name        屏蔽所有网站的ctrl+s操作 close_ctrl_s
// @namespace   Violentmonkey Scripts
// @match       *://*/*
// @grant       none
// @version     1.0
// @author      [email protected]
// @description 2020/5/13 下午5:28:13
// ==/UserScript==
document.onkeydown = function(e){
      var keyCode = e.keyCode || e.which || e.charCode;
      var ctrlKey = e.ctrlKey || e.metaKey;
      if(ctrlKey && keyCode == 83) {
        console.log("stop ctrl+s")
        e.preventDefault();
        return false;
      }
}

QingJ © 2025

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