shellfox/manifest.json

44 lines
701 B
JSON
Raw Normal View History

{
"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",
"show_matches": ["<all_urls>"]
},
"permissions": [
"nativeMessaging"
],
"browser_specific_settings": {
"gecko": {
"id": "shellfox@xwx.moe",
"strict_min_version": "57.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}