Disable keyboard shortcuts

Stop websites from highjacking keyboard shortcuts

目前为 2018-02-07 提交的版本。查看 最新版本

// ==UserScript==
// @name           Disable keyboard shortcuts
// @description    Stop websites from highjacking keyboard shortcuts
//
// @run-at         document-start
// @include        *
// @grant          none
// @version 0.0.1.20180207065400
// @namespace https://greasyfork.org/users/30
// ==/UserScript==

var keycodes = [191,111] // Keycode for '/', add more keycodes to disable other key captures

document.addEventListener('keydown', function(e) {
//    alert(e.keyCode); //uncomment to find out the keycode for any given key
    if (keycodes.indexOf(e.keyCode) != -1)
    {
        e.cancelBubble = true;
        e.stopPropagation();
        e.stopImmediatePropagation();
        return false;
    }
});