OCR Scanner

An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…

Wat is OCR Scanner?

OCR Scanner is een Chrome-extensie ontwikkeld door vncat, en de belangrijkste functie is "An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie OCR Scanner

Download OCR Scanner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam OCR Scanner OCR Scanner
ID icpcaonhnofngeapallehocmhbillkpg
Officiële URL https://chrome.google.com/webstore/detail/ocr-scanner/icpcaonhnofngeapallehocmhbillkpg
Beschrijving An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…
Bestandsgrootte 893 KB
Aantal Installaties 5,737
Huidige Versie 0.0.4
Laatst Bijgewerkt 2022-02-13
Publicatiedatum 2021-05-31
Beoordeling 3.41/5 Totaal 34 Beoordelingen
Ontwikkelaar vncat
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://vncatdev.web.app/extensions/privacy
Ondersteunde Talen 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"
        }
    }
}