OCR Scanner
An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…
OCR Scannerคืออะไร?
OCR Scanner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vncat และคุณลักษณะหลักของมันคือ "An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OCR Scanner
ดาวน์โหลดไฟล์ส่วนขยาย OCR Scanner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a translation tool when reading protected pdf files on Chrome. This extension adds a button to your browser toolbar. After user clicks on the button and select a region, the extension captures the snapshot from the region, recognize text inside this region, and translate it to the user's preferred language.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | icpcaonhnofngeapallehocmhbillkpg |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/ocr-scanner/icpcaonhnofngeapallehocmhbillkpg |
คำอธิบาย | An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a… |
ขนาดไฟล์ | 893 KB |
จำนวนการติดตั้ง | 5,737 |
เวอร์ชันปัจจุบัน | 0.0.4 |
อัปเดตครั้งล่าสุด | 2022-02-13 |
วันที่เผยแพร่ | 2021-05-31 |
คะแนน | 3.41/5 รวมทั้งหมด 34 คะแนน |
ผู้พัฒนา | vncat |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://vncatdev.web.app/extensions/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OCR Scanner", "version": "0.0.4", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "permissions": [ "activeTab", "storage", "identity", "identity.email" ], "content_scripts": [ { "js": [ "contentscript.js" ], "css": [ "contentscript.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Click me to extract and translate text", "default_icon": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" } } } |