OCRit

Capture the page and receive text by OCR

Qu'est-ce que OCRit ?

OCRit est une extension Chrome développée par OCRitApp, et sa fonction principale est "Capture the page and receive text by OCR".

Télécharger le fichier CRX de l'extension OCRit

Téléchargez les fichiers d'extension OCRit 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

                        ** Currently in BETA**

Just click on the icon, drag to select the part of the page you want recognized, and receive a copy-able version of the text within seconds!

* Currently supports English only.                    

Informations de Base sur l'Extension

Nom OCRit OCRit
ID ggfngjhbdkiidblbnepmmfhnjgmecgmn
URL Officiel https://chrome.google.com/webstore/detail/ocrit/ggfngjhbdkiidblbnepmmfhnjgmecgmn
Description Capture the page and receive text by OCR
Taille du Fichier 190 KB
Nombre d'Installations 125
Version Actuelle 1.0.1
Dernière Mise à Jour 2015-05-16
Date de Publication 2015-05-16
Évaluation 3.67/5 Total 3 Évaluations
Développeur OCRitApp
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OCRit",
    "description": "Capture the page and receive text by OCR",
    "version": "1.0.1",
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        ""
    ],
    "browser_action": {
        "default_title": "OCRit",
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "capture_cs.js",
                "jquery-1.11.3.min.js",
                "html2canvas.js"
            ]
        }
    ]
}