OCRit

Capture the page and receive text by OCR

¿Qué es OCRit?

OCRit es una extensión de Chrome desarrollada por OCRitApp, y su función principal es "Capture the page and receive text by OCR".

Descargar Archivo CRX de la Extensión OCRit

Descarga archivos de extensión OCRit en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        ** 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.                    

Información Básica de la Extensión

Nombre OCRit OCRit
ID ggfngjhbdkiidblbnepmmfhnjgmecgmn
URL Oficial https://chrome.google.com/webstore/detail/ocrit/ggfngjhbdkiidblbnepmmfhnjgmecgmn
Descripción Capture the page and receive text by OCR
Tamaño del Archivo 190 KB
Cantidad de Instalaciones 125
Versión Actual 1.0.1
Última Actualización 2015-05-16
Fecha de Publicación 2015-05-16
Calificación 3.67/5 Total de 3 Calificaciones
Desarrollador OCRitApp
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}