shellfox/manifest.json
Jaidyn Ann 40b5ae16cb Context-menu items to run a page/link’s command
Now you can right-click on a page and see a
“Run shell command” item or a
“Run command on link” item.
2024-03-02 11:39:44 -06:00

45 lines
680 B
JSON

{
"manifest_version": 2,
"name": "Shellfox",
"version": "0.1",
"description": "Run command-line programs from Firefox, easily.",
"homepage_url": "https://hak.xwx.moe/jadedctrl/shellfox",
"icons": {
"48": "res/shellfox.png"
},
"page_action": {
"default_icon": {
"19": "res/shellfox-19.png",
"38": "res/shellfox-38.png"
},
"default_title": "Shellfox"
},
"permissions": [
"activeTab",
"nativeMessaging",
"menus",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "shellfox@xwx.moe",
"strict_min_version": "57.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html"
}
}