OCR Scanner

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

Qu'est-ce que OCR Scanner ?

OCR Scanner est une extension Chrome développée par vncat, et sa fonction principale est "An optical character recognition (OCR) extension to extract and translate text from snapshot. This extension can be used as a…".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension OCR Scanner

Téléchargez les fichiers d'extension OCR Scanner au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom OCR Scanner OCR Scanner
ID icpcaonhnofngeapallehocmhbillkpg
URL Officiel 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…
Taille du Fichier 893 KB
Nombre d'Installations 5,737
Version Actuelle 0.0.4
Dernière Mise à Jour 2022-02-13
Date de Publication 2021-05-31
Évaluation 3.41/5 Total 34 Évaluations
Développeur vncat
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://vncatdev.web.app/extensions/privacy
Langues Prises en Charge 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"
        }
    }
}