I am building a Google Chrome Extension which uses some shortcut keys, set using a Content Script. The shortcuts work on all http:// and https:// pages, but I would like the keyboard shortcuts to also be loaded on a user's "New Tab" page as well as on any "chrome://" pages. I am not sure if this is possible. Any help would be greatly appreciated.
I included the relevant parts of my current manifest.json file:
"permissions": [
"tabs", "*://*/*", "storage"
],
"content_scripts": [
{
"matches": ["*://*/*"]
}
],