shellfox/manifest.json
2024-03-04 14:34:56 -06:00

51 lines
849 B
JSON

{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "0.12",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://hak.xwx.moe/jadedctrl/shellfox",
"default_locale": "en",
"icons": {
"250": "img/shellfox.png",
"38": "img/shellfox-38.png",
"19": "img/shellfox-19.png"
},
"page_action": {
"default_icon": {
"250": "img/shellfox-action.png",
"38": "img/shellfox-action-38.png",
"19": "img/shellfox-action-19.png"
},
"default_title": "__MSG_pageActionName__"
},
"permissions": [
"activeTab",
"downloads",
"nativeMessaging",
"menus",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "shellfox@xwx.moe",
"strict_min_version": "57.0"
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "html/options.html"
}
}