1-Click Translator
A Translate Browser Extension
1-Click Translatorคืออะไร?
1-Click Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย huling4u และคุณลักษณะหลักของมันคือ "A Translate Browser Extension"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 1-Click Translator
ดาวน์โหลดไฟล์ส่วนขยาย 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"
} | |