Translate Scanner
This extension is made by Salure for AFAS translate purposes
Translate Scannerคืออะไร?
Translate Scanner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Salure ICT และคุณลักษณะหลักของมันคือ "This extension is made by Salure for AFAS translate purposes"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Translate Scanner
ดาวน์โหลดไฟล์ส่วนขยาย Translate Scanner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The extension aims to simplify the translation process and improve its efficiency by seamlessly fetching text from the active tab's DOM, parsing it, and storing the translated text for later use. Through the utilization of activeTab, tabs, storage, and host permissions, your extension can access the necessary information from websites and present it in a user-friendly format, thus providing a smoother translation experience. Ultimately, the purpose of your extension is to enhance the translation process for users, enabling them to perform translations with ease and convenience.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Translate Scanner |
ID | jpacphhdikilnebipcihgigdcoagcpei |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei |
คำอธิบาย | This extension is made by Salure for AFAS translate purposes |
ขนาดไฟล์ | 461 KB |
จำนวนการติดตั้ง | 37 |
เวอร์ชันปัจจุบัน | 2.1.2 |
อัปเดตครั้งล่าสุด | 2023-07-18 |
วันที่เผยแพร่ | 2023-03-19 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Salure ICT |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Translate Scanner", "description": "This extension is made by Salure for AFAS translate purposes", "version": "2.1.2", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_end", "js": [ "content.js" ] } ], "background": { "service_worker": "service_worker.js" }, "permissions": [ "activeTab", "tabs", "storage" ], "action": { "default_icon": "icon.png", "default_popup": "index.html", "default_title": "Salure Translate" }, "content_security_policy": [] } |