Files
kiss-translator/public/manifest.json

68 lines
1.5 KiB
JSON
Raw Normal View History

2023-07-20 13:45:41 +08:00
{
"manifest_version": 3,
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
2025-08-10 23:00:21 +08:00
"version": "1.9.2",
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
"service_worker": "background.js",
2023-07-20 13:45:41 +08:00
"type": "module"
},
"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_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
},
"openTranbox": {
2023-08-21 16:06:21 +08:00
"suggested_key": {
"default": "Alt+S"
2023-08-21 16:06:21 +08:00
},
"description": "__MSG_open_tranbox__"
},
"toggleStyle": {
2023-09-10 13:56:11 +08:00
"suggested_key": {
"default": "Alt+C"
2023-09-10 13:56:11 +08:00
},
"description": "__MSG_toggle_style__"
},
"openOptions": {
2023-09-10 13:56:11 +08:00
"description": "__MSG_open_options__"
2023-08-21 14:03:39 +08:00
}
},
2025-07-03 19:08:33 +08:00
"permissions": ["storage", "contextMenus", "scripting", "declarativeNetRequest"],
2023-07-20 13:45:41 +08:00
"host_permissions": ["<all_urls>"],
"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
},
"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
}
}