我正在创建Chrome扩展程序,当我正在测试键盘快捷键时,我正在尝试在用户输入快捷方式时将消息记录到控制台。不过,我有两个奇怪的问题。我在下方添加了manifest.json
和background.js
的文字。
这是manifest.json的相关文本:
"commands": {
"do_something": {
"suggested_key": {
"default": "Ctrl+Shift+U"
},
"description": "Toggle feature foo"
}
这是我的background.js:
chrome.commands.onCommand.addListener(function(command) {
console.log('Command:', command);
});
以下是我的清单的背景部分:
"background": {
"scripts": ["jquery-2.1.4.min.js", "background.js"],
"persistent": false
},
如果相关,我正在运行Chrome 43.