Chrome扩展程序 - 使用带有num pad的命令(键盘快捷键)

时间:2013-06-14 08:51:41

标签: google-chrome-extension

我正在尝试将键盘快捷键实施到Chrome扩展程序中。

我已经设法了,但是我想要一个键盘快捷键,它使用数字键盘而不是顶部的数字(除此之外)。

以下是我的清单和脚本。

这可能是Chrome命令的限制。

的manifest.json

{
    "name": "Shortcut Test",
    "version": "1",
    "manifest_version": 2,
    "background": {"scripts": ["background.js"]},
    "commands": {
        "shortcut_test": {
            "suggested_key": {
                "default": "Ctrl+0",
        "windows": "Ctrl+0"
            },
            "description": "A test shortcut"
        }
    }
}

background.js

chrome.commands.onCommand.addListener(function(command){
    console.log(command);
});

1 个答案:

答案 0 :(得分:3)

是的,命令目前的键选择非常有限。只是普通的字母和数字。