ImageToText
Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.
ImageToTextคืออะไร?
ImageToText เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pedro Henrique Santos Sousa และคุณลักษณะหลักของมันคือ "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ImageToText
ดาวน์โหลดไฟล์ส่วนขยาย ImageToText ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to copy text from any image on the internet, just like you do with normal text content. Simplicity, that is the goal with this application, right click the image, "copy image text" and that is it... you are ready to use and paste the text you saw in that particular image. It is useful for informational, ludicative, and code blocks images. Now you don't have to rewrite everything, use this extension and the problem is solved. To be able to process the image, this extension uses OCR.Space API.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ImageToText |
ID | ojmelblegakdgcjacaclnlgdmifgppdb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/imagetotext/ojmelblegakdgcjacaclnlgdmifgppdb |
คำอธิบาย | Copy text from images just like you do with normal text content. Right click it, and 'copy image text'. |
ขนาดไฟล์ | 34.94 KB |
จำนวนการติดตั้ง | 1,340 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2020-05-13 |
วันที่เผยแพร่ | 2020-05-12 |
คะแนน | 1.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Pedro Henrique Santos Sousa |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ImageToText", "description": "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.", "version": "0.0.1", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "functions.js" ] } ], "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon_tool_bar.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "clipboardWrite", "contextMenus", "notifications" ] } |