OCRit

Capture the page and receive text by OCR

Was ist OCRit?

OCRit ist eine Chrome-Erweiterung, die von OCRitApp entwickelt wurde, und ihr Hauptmerkmal ist "Capture the page and receive text by OCR".

OCRit-Erweiterungs-CRX-Datei herunterladen

Laden Sie OCRit-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name OCRit OCRit
ID ggfngjhbdkiidblbnepmmfhnjgmecgmn
Offizielle URL https://chrome.google.com/webstore/detail/ocrit/ggfngjhbdkiidblbnepmmfhnjgmecgmn
Beschreibung Capture the page and receive text by OCR
Dateigröße 190 KB
Installationsanzahl 125
Aktuelle Version 1.0.1
Letztes Update 2015-05-16
Veröffentlichungsdatum 2015-05-16
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler OCRitApp
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}