所以,我想点击一个扩展名来激活它,但我想要不用鼠标就可以。我尝试使用tab
按钮,但它转到< - ,然后转到 - >,而不是刷新按钮,有关网站的信息,网址输入,然后转到webcontent元素。
我想点击此处(红色圆圈中的照片),以使此扩展程序处于活动状态。
是否有可能,如果是 - 我该怎么做?
答案 0 :(得分:0)
如果您正在开发chrome扩展程序,则可以添加快捷键。请参阅此官方doc。
我是您的清单文件,您需要添加如下代码。
{
"name": "My extension",
...
"commands": {
"toggle-feature-foo": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Toggle feature foo"
},
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+J"
}
},
"_execute_page_action": {
"suggested_key": {
"default": "Ctrl+Shift+E",
"windows": "Alt+Shift+P",
"mac": "Alt+Shift+P"
}
}
},
...
}