如何将“ctrl + shift + right arrow”绑定为manifest.json中的默认键?

时间:2013-08-22 16:27:04

标签: google-chrome-extension

最近通过键盘快捷键自定义窗口实现了这一点:

enter image description here

然而,我已经尝试过组合,我可以想到尝试在manifest.json中表达这个值。所有组合都会导致清单文件无效。在网站上似乎没有这种组合的例子。

这样的事情:

"commands": {
    "nextVideo": {
      "suggested_key": { "default": "Ctrl+Shift+Right Arrow" },
      "description": "Tells the player to play next video."
    }
}

如果有人知道正确的字符串,那就太有必要了。

1 个答案:

答案 0 :(得分:3)

documentation page说:

  

支持的键:A-Z,0-9,逗号,句号,主页,结束,PageUp,PageDown,插入,删除,制表符和箭头键(向上,向下,向左,向右)。

箭头简称为上,下,左,右。所以你要找的价值是:

"Ctrl+Shift+Right"