78 lines
1.8 KiB
JSON
78 lines
1.8 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "__MSG_app_name__",
|
|
"description": "__MSG_app_description__",
|
|
"version": "2.0.4",
|
|
"default_locale": "en",
|
|
"author": "Gabe<yugang2002@gmail.com>",
|
|
"homepage_url": "https://github.com/fishjar/kiss-translator",
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"js": ["content.js"],
|
|
"matches": ["<all_urls>", "file://*/*"],
|
|
"all_frames": true
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": ["injector-subtitle.js"],
|
|
"matches": ["https://www.youtube.com/*"]
|
|
},
|
|
{
|
|
"resources": ["injector-shadowroot.js"],
|
|
"matches": ["<all_urls>"]
|
|
}
|
|
],
|
|
"commands": {
|
|
"_execute_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": ["storage", "contextMenus", "scripting", "declarativeNetRequest", "declarativeNetRequestWithHostAccess"],
|
|
"host_permissions": ["<all_urls>"],
|
|
"icons": {
|
|
"16": "images/logo16.png",
|
|
"32": "images/logo32.png",
|
|
"48": "images/logo48.png",
|
|
"128": "images/logo128.png"
|
|
},
|
|
"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
|
|
}
|
|
}
|