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

79 lines
1.6 KiB
JSON
Raw Normal View History

2025-02-13 14:50:33 +08:00
{
"manifest_version": 2,
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
2025-08-10 23:00:21 +08:00
"version": "1.9.2",
2025-02-13 14:50:33 +08:00
"default_locale": "en",
"author": "Gabe<yugang2002@gmail.com>",
"homepage_url": "https://github.com/fishjar/kiss-translator",
2025-02-14 14:57:38 +08:00
"browser_specific_settings": {
2025-02-13 14:50:33 +08:00
"gecko": {
2025-02-14 14:57:38 +08:00
"id": "yugang2002@gmail.com",
2025-02-13 14:50:33 +08:00
"strict_min_version": "78.0"
}
2025-07-03 19:08:33 +08:00
},
2025-02-13 14:50:33 +08:00
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"js": ["content.js"],
"matches": ["<all_urls>"],
"all_frames": true
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+K"
}
},
"toggleTranslate": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "__MSG_toggle_translate__"
},
"openTranbox": {
"suggested_key": {
"default": "Alt+S"
},
"description": "__MSG_open_tranbox__"
},
"toggleStyle": {
"suggested_key": {
"default": "Alt+C"
},
"description": "__MSG_toggle_style__"
},
"openOptions": {
"description": "__MSG_open_options__"
}
},
"permissions": [
2025-02-14 14:57:38 +08:00
"<all_urls>",
2025-02-13 14:50:33 +08:00
"storage",
"menus",
2025-07-03 19:08:33 +08:00
"messagesModify",
2025-02-14 14:57:38 +08:00
"scripting",
"declarativeNetRequest"
2025-02-13 14:50:33 +08:00
],
"icons": {
"16": "images/logo16.png",
"32": "images/logo32.png",
"48": "images/logo48.png",
"128": "images/logo128.png"
},
"browser_action": {
"default_icon": {
"128": "images/logo128.png"
},
"default_title": "__MSG_app_name__",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
2025-02-14 14:57:38 +08:00
}