Cloud Vision

Adds a right-click menu item to images to detect text, labels and faces.

Что такое Cloud Vision?

Cloud Vision - это расширение Chrome, разработанное https://imjasonh.com, и его основная функция - "Adds a right-click menu item to images to detect text, labels and faces.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Right-click an image and select "Text detection" to have detected text copied to your clipboard. Select "Label detection" to display terms to label your image. Select "Face detection" to outline faces detected in the image.

Powered by the Google Cloud Vision API: https://cloud.google.com/vision/

Source available at https://github.com/GoogleCloudPlatform/cloud-vision/tree/master/chrome-extension

Icons made by Freepik (http://www.freepik.com) from Flaticon (http://www.flaticon.com) is licensed by CC 3.0 BY (http://creativecommons.org/licenses/by/3.0/)                    

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

Название Cloud Vision Cloud Vision
ID nblmokgbialjjgfhfofbgfcghhbkejac
Официальный URL https://chromewebstore.google.com/detail/cloud-vision/nblmokgbialjjgfhfofbgfcghhbkejac
Описание Adds a right-click menu item to images to detect text, labels and faces.
Размер файла 7.68 KB
Количество установок 901
Текущая Версия 0.0.9
Последнее Обновление 2016-03-25
Дата публикации 2016-03-25
Рейтинг 4.07/5 Всего 15 оценок
Разработчик https://imjasonh.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cloud Vision",
    "description": "Adds a right-click menu item to images to detect text, labels and faces.",
    "version": "0.0.9",
    "permissions": [
        "clipboardWrite",
        "contextMenus",
        "notifications",
        "file:\/\/*",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "128": "images\/icon128.png"
    }
}