OCR Scanner
An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…
OCR Scanner là gì?
OCR Scanner là một tiện ích mở rộng Chrome được phát triển bởi vncat, và tính năng chính của nó là "An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng OCR Scanner
Tải xuống các tệp mở rộng OCR Scanner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | icpcaonhnofngeapallehocmhbillkpg |
URL Chính Thức | https://chrome.google.com/webstore/detail/ocr-scanner/icpcaonhnofngeapallehocmhbillkpg |
Mô tả | An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a… |
Kích Thước Tệp | 893 KB |
Số Lần Cài Đặt | 5,737 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2022-02-13 |
Ngày Phát Hành | 2021-05-31 |
Đánh Giá | 3.41/5 Tổng số 34 Đánh Giá |
Nhà Phát Triển | vncat |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://vncatdev.web.app/extensions/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |