Deploying to gh-pages from @ fishjar/kiss-translator@5260ed8c8d 🚀

This commit is contained in:
fishjar
2023-08-15 03:32:08 +00:00
parent ec033a0f91
commit 59c12c7b91
18 changed files with 116144 additions and 0 deletions

38
manifest.json Normal file
View File

@@ -0,0 +1,38 @@
{
"manifest_version": 3,
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
"version": "1.4.2",
"default_locale": "zh_CN",
"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>"]
}
],
"permissions": ["storage"],
"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
}
}