This commit is contained in:
Gabe Yuan
2023-07-18 15:23:16 +08:00
commit 428c7a68b6
53 changed files with 1613 additions and 0 deletions

33
dist/firefox/manifest.json vendored Normal file
View File

@@ -0,0 +1,33 @@
{
"manifest_version": 2,
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
"version": "1.0.1",
"default_locale": "zh",
"author": "Gabe<yugang2002@gmail.com>",
"homepage_url": "https://github.com/fishjar/kiss-translator",
"background": {
"scripts": ["static/js/background.js"]
},
"content_scripts": [
{
"js": ["static/js/content.js"],
"matches": ["<all_urls>"]
}
],
"permissions": ["<all_urls>", "storage"],
"icons": {
"192": "images/logo192.png"
},
"browser_action": {
"default_icon": {
"192": "images/logo192.png"
},
"default_title": "__MSG_app_name__",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}