OCRit

Capture the page and receive text by OCR

Cos'è OCRit?

OCRit è un'estensione di Chrome sviluppata da OCRitApp, e la sua funzione principale è "Capture the page and receive text by OCR".

Scarica il file CRX dell'estensione OCRit

Scarica i file di estensione OCRit in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome OCRit OCRit
ID ggfngjhbdkiidblbnepmmfhnjgmecgmn
URL Ufficiale https://chrome.google.com/webstore/detail/ocrit/ggfngjhbdkiidblbnepmmfhnjgmecgmn
Descrizione Capture the page and receive text by OCR
Dimensione del File 190 KB
Conteggio Installazioni 125
Versione Corrente 1.0.1
Ultimo Aggiornamento 2015-05-16
Data di Pubblicazione 2015-05-16
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore OCRitApp
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}