我知道我们不能直接从后台javascript打开chrome扩展弹出窗口,但是有没有一种方法可以在用户按下某个组合键时打开弹出窗口呢?
xurqigkl1#
chrome.commands API允许用户绑定热键,这些热键将触发诸如打开浏览器操作之类的命令。示例:https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/_archive/mv2/api/commands(按Ctrl+Shift+F(Mac上按Command+Shift+F)打开浏览器操作弹出窗口,按Ctrl+Shift+Y发送事件(Mac上按Command+Shift+Y))
1条答案
按热度按时间xurqigkl1#
chrome.commands API允许用户绑定热键,这些热键将触发诸如打开浏览器操作之类的命令。
示例:https://github.com/GoogleChrome/chrome-extensions-samples/tree/main/_archive/mv2/api/commands(按Ctrl+Shift+F(Mac上按Command+Shift+F)打开浏览器操作弹出窗口,按Ctrl+Shift+Y发送事件(Mac上按Command+Shift+Y))