Indic OCR

Highlight Indic/English text in images and transliterate them

Что такое Indic OCR?

Indic OCR - это расширение Chrome, разработанное RKVS Raman, и его основная функция - "Highlight Indic/English text in images and transliterate them".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Indic OCR

Скачайте файлы расширений Indic OCR в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Indic OCR Indic OCR
ID fejbddkpnmcnobmalnkflaljnlffblma
Официальный URL https://chromewebstore.google.com/detail/indic-ocr/fejbddkpnmcnobmalnkflaljnlffblma
Описание Highlight Indic/English text in images and transliterate them
Размер файла 25.65 KB
Количество установок 315
Текущая Версия 0.1
Последнее Обновление 2016-12-07
Дата публикации 2016-12-07
Рейтинг 1.00/5 Всего 1 оценок
Разработчик RKVS Raman
Тип оплаты free
Поддерживаемые языки 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"
    ]
}