OCRit

Capture the page and receive text by OCR

What is OCRit?

OCRit is a Chrome extension developed by OCRitApp, and its main feature is "Capture the page and receive text by OCR".

Download OCRit Extension CRX File

Download OCRit extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name OCRit OCRit
ID ggfngjhbdkiidblbnepmmfhnjgmecgmn
Official URL https://chrome.google.com/webstore/detail/ocrit/ggfngjhbdkiidblbnepmmfhnjgmecgmn
Description Capture the page and receive text by OCR
File Size 190 KB
Installation Count 125
Current Version 1.0.1
Last Updated 2015-05-16
Publish Date 2015-05-16
Rating 3.67/5 Total 3 Ratings
Developer OCRitApp
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}