Chrome - 全局键盘快捷键实际上不是全局的。

时间:2015-12-19 01:14:30

标签: google-chrome google-chrome-extension

我正在使用处理下一个操作的快捷键开发扩展程序。我在manifest.json

中声明它
"commands": {
      "perform-next": {
        "description": "Performs the Next action",
        "suggested_key": {
          "default": "Ctrl+Shift+0"
        },
        "global": true
      }

它在键盘快捷键下正确显示,可在Chrome,Windows桌面和某些程序中使用,但在Photoshop等其他程序中无法使用。没有竞争程序使用组合键。任何的想法?

1 个答案:

答案 0 :(得分:1)

可能是这样: Chrome无法读取以管理员身份运行的应用程序的键盘快捷键,除非Chrome也以管理员身份运行。您的Photoshop或其他问题应用程序是否以管理员身份运行?

我在弄清楚为什么Google Play音乐快捷方式无法在Steam游戏中工作时了解到这一点。