shellfox/manifest.json

49 lines
777 B
JSON
Raw Normal View History

{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "0.1",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://hak.xwx.moe/jadedctrl/shellfox",
"default_locale": "en",
"icons": {
2024-03-03 09:16:16 -06:00
"250": "res/shellfox.png",
"38": "res/shellfox-38.png",
"19": "res/shellfox-19.png"
},
"page_action": {
"default_icon": {
"19": "res/shellfox-19.png",
"38": "res/shellfox-38.png"
},
"default_title": "__MSG_pageActionName__"
},
"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"
}
}