OCRit

Capture the page and receive text by OCR

Hvad er OCRit?

OCRit er en Chrome-udvidelse udviklet af OCRitApp, og dens hovedfunktion er "Capture the page and receive text by OCR".

Download OCRit-udvidelses-CRX-fil

Download OCRit-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn OCRit OCRit
ID ggfngjhbdkiidblbnepmmfhnjgmecgmn
Officiel URL https://chrome.google.com/webstore/detail/ocrit/ggfngjhbdkiidblbnepmmfhnjgmecgmn
Beskrivelse Capture the page and receive text by OCR
Filstørrelse 190 KB
Antal Installationer 125
Nuværende Version 1.0.1
Senest Opdateret 2015-05-16
Udgivelsesdato 2015-05-16
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler OCRitApp
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}