Indic OCR

Highlight Indic/English text in images and transliterate them

Vad är Indic OCR?

Indic OCR är en Chrome-tillägg utvecklad av RKVS Raman, och dess huvudfunktion är "Highlight Indic/English text in images and transliterate them".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Indic OCR-förlängningens CRX-fil

Ladda ner Indic OCR-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Indic OCR Indic OCR
ID fejbddkpnmcnobmalnkflaljnlffblma
Officiell webbadress https://chromewebstore.google.com/detail/indic-ocr/fejbddkpnmcnobmalnkflaljnlffblma
Beskrivning Highlight Indic/English text in images and transliterate them
Filstorlek 25.65 KB
Antal Installationer 315
Aktuell Version 0.1
Senast Uppdaterad 2016-12-07
Publiceringsdatum 2016-12-07
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare RKVS Raman
Betalningssätt free
Stödda Språk 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"
    ]
}