1-Click Translator
A Translate Browser Extension
什么是1-Click Translator?
1-Click Translator是由huling4u开发的Chrome扩展程序,该扩展的主要功能是“A Translate Browser Extension”。
扩展截图
下载1-Click Translator扩展crx文件
下载1-Click Translator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A very simple Google browser plug-in, select the words or statements to be translated, and randomly obtain the query results from the free translation service provider.Support more than 16 translation engines, including Google, Baidu, etc. 扩展基本信息
| 名称 | |
| ID | ofbjheffhcmloemhpdlnnjhhfenidnap |
| 官方URL | https://chromewebstore.google.com/detail/1-click-translator/ofbjheffhcmloemhpdlnnjhhfenidnap |
| 简介 | A Translate Browser Extension |
| 文件大小 | 571 KB |
| 安装次数 | 24 |
| 当前版本 | 0.24.01 |
| 更新时间 | 2024-02-24 |
| 上架时间 | 2022-11-22 |
| 开发者 | huling4u |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"icons": {
"16": "icons\/icon-16x16.png",
"48": "icons\/icon-48x48.png",
"128": "icons\/icon-128x128.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/*\/*"
],
"action": {
"default_title": "Click the mouse to select words and sentences, and click the button to get the translation",
"default_popup": "www\/index.html#\/options"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"css": [
"assets\/content.css"
],
"js": [
"page-content-script.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"name": "1-Click Translator",
"short_name": "1-Click Translator",
"description": "A Translate Browser Extension",
"version": "0.24.01"
} | |