Files
shortcutter/manifest.json
2025-08-12 15:47:55 -05:00

31 lines
528 B
JSON

{
"name": "shortcutter",
"description": "browser extension to inject keyboard shortcuts on any webpage",
"background": {
"scripts": [
"bin/browser-polyfill.js",
"bin/background.js"
]
},
"icons": {
"48": "icons/icon-48.png"
},
"content_scripts": [
{
"js": [
"bin/browser-polyfill.js",
"bin/main.js"
],
"matches": [
"<all_urls>"
]
}
],
"version": "0.0",
"manifest_version": 2,
"browser_specific_settings": {
"gecko": {
"id": "{a02b8c91-0da0-42b8-94ad-9b856aeaef7d}"
}
}
}