OCR Scanner
An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…
What is OCR Scanner?
OCR Scanner is a Chrome extension developed by vncat, and its main feature is "An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…".
Extension Screenshots
Download OCR Scanner Extension CRX File
Download OCR Scanner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | icpcaonhnofngeapallehocmhbillkpg |
Official URL | https://chrome.google.com/webstore/detail/ocr-scanner/icpcaonhnofngeapallehocmhbillkpg |
Description | An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a… |
File Size | 893 KB |
Installation Count | 5,737 |
Current Version | 0.0.4 |
Last Updated | 2022-02-13 |
Publish Date | 2021-05-31 |
Rating | 3.41/5 Total 34 Ratings |
Developer | vncat |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://vncatdev.web.app/extensions/privacy |
Supported Languages | 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" } } } |