I'm trying to make an extension and which uses chrome.contextMenu
. I create a contextMenu element and it works fine, but now I'm wondering if it is possible to add a keyboard shortcut to my element? I've looked through the documentation but could not find anything. Thanks!
Adding keyboard shortcut to context menu for Google Chrome extensions?
4.8k Views Asked by gimmian At
2
There are 2 best solutions below
0

One workaround is you can create commands and assign shortcut keys. You can make the context menu item and the command trigger the same functionality.
https://developer.chrome.com/docs/extensions/reference/commands/
Sadly, no. There is an open feature request for it from 2012.
Issue 142840 in chromium: Add "shortcut" property to chrome.contextMenus API
also see How can I display keyboard shortcuts to the context menu options created by my chrome extension?
I would also love to see a way to underline one of the letters in a custom context menu listing for ALT access but that appears to also be unsupported.