Indic OCR

Highlight Indic/English text in images and transliterate them

Co to jest Indic OCR?

Indic OCR to rozszerzenie Chrome opracowane przez RKVS Raman, a jego główną funkcją jest „Highlight Indic/English text in images and transliterate them”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Indic OCR

Pobierz pliki rozszerzeń Indic OCR w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        indic OCR helps users to select a rectangular section of an image containing text in English and Indian Languages and Transliterate them to other Indian / English language.

Indic OCR uses an OCR service hosted at  http://35.164.84.230:8081/ though you can change to any other URL if you are hosting your own ocr service. 

Please visit http://indic-ocr.github.io for more information                    

Podstawowe informacje o rozszerzeniu

Nazwa Indic OCR Indic OCR
ID fejbddkpnmcnobmalnkflaljnlffblma
Oficjalny URL https://chromewebstore.google.com/detail/indic-ocr/fejbddkpnmcnobmalnkflaljnlffblma
Opis Highlight Indic/English text in images and transliterate them
Rozmiar pliku 25.65 KB
Liczba instalacji 315
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2016-12-07
Data Publikacji 2016-12-07
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper RKVS Raman
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Indic OCR",
    "manifest_version": 2,
    "version": "0.1",
    "description": "Highlight Indic\/English text in images and transliterate them ",
    "homepage_url": "http:\/\/indic-ocr.github.io",
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [
                "speech-bubble.css"
            ]
        }
    ],
    "icons": {
        "32": "indicocr32.png",
        "64": "indicocr64.png",
        "128": "indicocr128.png"
    },
    "browser_action": {
        "default_icon": "indicocr32.png"
    },
    "background": {
        "scripts": [
            "bg.js",
            "contextmenu.js"
        ]
    },
    "permissions": [
        "",
        "contextMenus",
        "storage"
    ]
}