Indic OCR

Highlight Indic/English text in images and transliterate them

Hvad er Indic OCR?

Indic OCR er en Chrome-udvidelse udviklet af RKVS Raman, og dens hovedfunktion er "Highlight Indic/English text in images and transliterate them".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Indic OCR-udvidelses-CRX-fil

Download Indic OCR-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

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Indic OCR Indic OCR
ID fejbddkpnmcnobmalnkflaljnlffblma
Officiel URL https://chromewebstore.google.com/detail/indic-ocr/fejbddkpnmcnobmalnkflaljnlffblma
Beskrivelse Highlight Indic/English text in images and transliterate them
Filstørrelse 25.65 KB
Antal Installationer 315
Nuværende Version 0.1
Senest Opdateret 2016-12-07
Udgivelsesdato 2016-12-07
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler RKVS Raman
Betalingsmetode free
Understøttede Sprog 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"
    ]
}