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 |
| 官方網址 | 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"
} | |