简体   繁体   中英

Open Browser Action's Popup with keyboard shortcut

I'm developing a Google Chrome extension with a Browser Action Popup. When the user clicks on the icon, the popup appears.

Is there a way to open this popup with a keyboard shortcut like CTRL +something?

chrome.commands api允许用户绑定热键(带有您对热键的建议),这将触发打开浏览器操作等命令。

You need to add a "commands" object to your manifest.json , as shown at https://developer.chrome.com/extensions/commands . If your extension's popup is a "browser_action" popup (indicated by a "browser_action" key in your manifest.json ), you'll need the "_execute_browser_action" command; for a "page_action" popup, you'll need the "_execute_page_action" command. An example manifest.json using the former looks like this:

{
  "manifest_version": 2,
  "name": "Example Extension",
  "description": "La la la",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "linux": "Ctrl+Shift+K",
        "windows": "Alt+Shift+P",
        "mac": "Alt+Shift+P"
      }
    }
  }
}

Note that, per the docs:

Certain Chrome shortcuts (eg window management) always take priority over Extension Command shortcuts and can not be overwritten.

As far as I know, there's no canonical list of what these commands are; you just have to experiment with different possible suggested shortcuts until you find one that actually works.

Sorry, currently not possible. Here is corresponding feature request , you can star it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM