Files
kiss-translator/public/manifest.firefox.json

63 lines
1.4 KiB
JSON
Raw Normal View History

2023-07-20 13:45:41 +08:00
{
"manifest_version": 2,
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
2023-10-25 16:08:06 +08:00
"version": "1.7.9",
2023-08-15 12:30:32 +08:00
"default_locale": "en",
2023-07-20 13:45:41 +08:00
"author": "Gabe<yugang2002@gmail.com>",
"homepage_url": "https://github.com/fishjar/kiss-translator",
"background": {
2023-08-04 04:45:20 +08:00
"scripts": ["background.js"]
2023-07-20 13:45:41 +08:00
},
"content_scripts": [
{
2023-08-04 04:45:20 +08:00
"js": ["content.js"],
2023-08-26 12:02:16 +08:00
"matches": ["<all_urls>"],
"all_frames": true
2023-07-20 13:45:41 +08:00
}
],
2023-08-21 14:03:39 +08:00
"commands": {
2023-09-02 13:14:27 +08:00
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+K"
}
},
2023-08-21 14:03:39 +08:00
"toggleTranslate": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "__MSG_toggle_translate__"
2023-08-21 16:06:21 +08:00
},
"toggleStyle": {
"suggested_key": {
"default": "Alt+C"
},
"description": "__MSG_toggle_style__"
2023-09-10 13:56:11 +08:00
},
"openOptions": {
"suggested_key": {
"default": "Alt+O"
},
"description": "__MSG_open_options__"
2023-08-21 14:03:39 +08:00
}
},
2023-07-20 13:45:41 +08:00
"permissions": ["<all_urls>", "storage"],
"icons": {
2023-08-11 14:54:14 +08:00
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
2023-07-20 13:45:41 +08:00
},
"browser_action": {
"default_icon": {
2023-08-11 14:54:14 +08:00
"128": "images/logo128.png"
2023-07-20 13:45:41 +08:00
},
"default_title": "__MSG_app_name__",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}