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 vncat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में OCR Scanner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } } |