fix description

This commit is contained in:
Gabe Yuan
2023-08-07 17:07:26 +08:00
parent 52cba0a3ec
commit 57377c481f
27 changed files with 298 additions and 9 deletions

View File

@@ -3,6 +3,6 @@
"message": "KISS Translator (by Gabe)"
},
"app_description": {
"message": "A simple translator extension"
"message": "A minimalist bilingual translation Extension & Greasemonkey Script"
}
}

View File

@@ -3,6 +3,6 @@
"message": "简约翻译 (by Gabe)"
},
"app_description": {
"message": "一个简约的翻译插件"
"message": "一个简约的双语网页翻译扩展 & 油猴脚本"
}
}

0
dist/edge/chrome/.nojekyll vendored Normal file
View File

View File

@@ -0,0 +1,8 @@
{
"app_name": {
"message": "KISS Translator (by Gabe)"
},
"app_description": {
"message": "A minimalist bilingual translation Extension & Greasemonkey Script"
}
}

View File

@@ -0,0 +1,8 @@
{
"app_name": {
"message": "简约翻译 (by Gabe)"
},
"app_description": {
"message": "一个简约的双语网页翻译扩展 & 油猴脚本"
}
}

9
dist/edge/chrome/asset-manifest.json vendored Normal file
View File

@@ -0,0 +1,9 @@
{
"popup.js": "/popup.js",
"options.js": "/options.js",
"background.js": "/background.js",
"content.js": "/content.js",
"content.html": "/content.html",
"options.html": "/options.html",
"popup.html": "/popup.html"
}

2
dist/edge/chrome/background.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */

1
dist/edge/chrome/content.html vendored Normal file

File diff suppressed because one or more lines are too long

2
dist/edge/chrome/content.js vendored Normal file

File diff suppressed because one or more lines are too long

41
dist/edge/chrome/content.js.LICENSE.txt vendored Normal file
View File

@@ -0,0 +1,41 @@
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
/**
* @license React
* react-dom.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* scheduler.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

BIN
dist/edge/chrome/favicon.ico vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
dist/edge/chrome/images/logo192.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

35
dist/edge/chrome/manifest.json vendored Normal file
View File

@@ -0,0 +1,35 @@
{
"manifest_version": 3,
"name": "__MSG_app_name__",
"description": "__MSG_app_description__",
"version": "1.3.5",
"default_locale": "zh",
"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": {
"192": "images/logo192.png"
},
"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
}
}

1
dist/edge/chrome/options.html vendored Normal file
View File

@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>KISS Translator</title><script defer="defer" src="/options.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

2
dist/edge/chrome/options.js vendored Normal file

File diff suppressed because one or more lines are too long

108
dist/edge/chrome/options.js.LICENSE.txt vendored Normal file
View File

@@ -0,0 +1,108 @@
/*!
* Determine if an object is a Buffer
*
* @author Feross Aboukhadijeh <https://feross.org>
* @license MIT
*/
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
/**
* @license React
* react-dom.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* scheduler.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @mui/styled-engine v5.11.11
*
* @license MIT
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @remix-run/router v1.5.0
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
/**
* React Router DOM v6.10.0
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
/**
* React Router v6.10.0
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
/** @license React v16.13.1
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

1
dist/edge/chrome/popup.html vendored Normal file
View File

@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>KISS Translator</title><script defer="defer" src="/popup.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>

2
dist/edge/chrome/popup.js vendored Normal file

File diff suppressed because one or more lines are too long

68
dist/edge/chrome/popup.js.LICENSE.txt vendored Normal file
View File

@@ -0,0 +1,68 @@
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
/**
* @license React
* react-dom.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* scheduler.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @mui/styled-engine v5.11.11
*
* @license MIT
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/** @license React v16.13.1
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

View File

@@ -3,6 +3,6 @@
"message": "KISS Translator (by Gabe)"
},
"app_description": {
"message": "A simple translator extension"
"message": "A minimalist bilingual translation Extension & Greasemonkey Script"
}
}

View File

@@ -3,6 +3,6 @@
"message": "简约翻译 (by Gabe)"
},
"app_description": {
"message": "一个简约的翻译插件"
"message": "一个简约的双语网页翻译扩展 & 油猴脚本"
}
}

View File

@@ -3,6 +3,6 @@
"message": "KISS Translator (by Gabe)"
},
"app_description": {
"message": "A simple translator extension"
"message": "A minimalist bilingual translation Extension & Greasemonkey Script"
}
}

View File

@@ -3,6 +3,6 @@
"message": "简约翻译 (by Gabe)"
},
"app_description": {
"message": "一个简约的翻译插件"
"message": "一个简约的双语网页翻译扩展 & 油猴脚本"
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "kiss-translator",
"description": "A simple translator extension",
"description": "A minimalist bilingual translation Extension & Greasemonkey Script",
"version": "1.3.5",
"author": "Gabe<yugang2002@gmail.com>",
"private": true,

View File

@@ -3,6 +3,6 @@
"message": "KISS Translator (by Gabe)"
},
"app_description": {
"message": "A simple translator extension"
"message": "A minimalist bilingual translation Extension & Greasemonkey Script"
}
}

View File

@@ -3,6 +3,6 @@
"message": "简约翻译 (by Gabe)"
},
"app_description": {
"message": "一个简约的翻译插件"
"message": "一个简约的双语网页翻译扩展 & 油猴脚本"
}
}