OCRit

Capture the page and receive text by OCR

Apa itu OCRit?

OCRit adalah ekstensi Chrome yang dikembangkan oleh OCRitApp, dan fitur utamanya adalah "Capture the page and receive text by OCR".

Unduh Berkas CRX Ekstensi OCRit

Unduh file ekstensi OCRit dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama OCRit OCRit
ID ggfngjhbdkiidblbnepmmfhnjgmecgmn
URL Resmi https://chrome.google.com/webstore/detail/ocrit/ggfngjhbdkiidblbnepmmfhnjgmecgmn
Deskripsi Capture the page and receive text by OCR
Ukuran File 190 KB
Jumlah Instalasi 125
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2015-05-16
Tanggal Publikasi 2015-05-16
Penilaian 3.67/5 Total 3 Penilaian
Pengembang OCRitApp
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}