禁用F1帮助窗口

chrome、edge等浏览器中F1会弹出帮助窗口,经常会误触,故禁用所有页面中的F1快捷键

// ==UserScript==
// @name         禁用F1帮助窗口
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  chrome、edge等浏览器中F1会弹出帮助窗口,经常会误触,故禁用所有页面中的F1快捷键
// @author       forcier
// @match        *://*/*
// @license      MIT
// @run-at document-start
// @grant        none
// ==/UserScript==
(function () {
    "use strict";
    document.addEventListener("keydown", function (e) {
        "F1" == e.key && e.preventDefault();
    });
})();