OCRit

Capture the page and receive text by OCR

O que é OCRit?

OCRit é uma extensão do Chrome desenvolvida por OCRitApp, e sua principal característica é "Capture the page and receive text by OCR".

Baixar o arquivo CRX da Extensão OCRit

Baixe arquivos de extensão OCRit no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome OCRit OCRit
ID ggfngjhbdkiidblbnepmmfhnjgmecgmn
URL Oficial https://chrome.google.com/webstore/detail/ocrit/ggfngjhbdkiidblbnepmmfhnjgmecgmn
Descrição Capture the page and receive text by OCR
Tamanho do Arquivo 190 KB
Contagem de Instalações 125
Versão Atual 1.0.1
Última Atualização 2015-05-16
Data de Publicação 2015-05-16
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor OCRitApp
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}