OCR Scanner
An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…
Cos'è OCR Scanner?
OCR Scanner è un'estensione di Chrome sviluppata da vncat, e la sua funzione principale è "An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OCR Scanner
Scarica i file di estensione OCR Scanner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | icpcaonhnofngeapallehocmhbillkpg |
URL Ufficiale | https://chrome.google.com/webstore/detail/ocr-scanner/icpcaonhnofngeapallehocmhbillkpg |
Descrizione | An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a… |
Dimensione del File | 893 KB |
Conteggio Installazioni | 5,737 |
Versione Corrente | 0.0.4 |
Ultimo Aggiornamento | 2022-02-13 |
Data di Pubblicazione | 2021-05-31 |
Valutazione | 3.41/5 Totale 34 Valutazioni |
Sviluppatore | vncat |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://vncatdev.web.app/extensions/privacy |
Lingue Supportate | 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" } } } |