Cloud Vision

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

Was ist Cloud Vision?

Cloud Vision ist eine Chrome-Erweiterung, die von https://imjasonh.com entwickelt wurde, und ihr Hauptmerkmal ist "Adds a right-click menu item to images to detect text, labels and faces.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Cloud Vision-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cloud Vision-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/)                    

Grundlegende Informationen zur Erweiterung

Name Cloud Vision Cloud Vision
ID nblmokgbialjjgfhfofbgfcghhbkejac
Offizielle URL https://chromewebstore.google.com/detail/cloud-vision/nblmokgbialjjgfhfofbgfcghhbkejac
Beschreibung Adds a right-click menu item to images to detect text, labels and faces.
Dateigröße 7.68 KB
Installationsanzahl 901
Aktuelle Version 0.0.9
Letztes Update 2016-03-25
Veröffentlichungsdatum 2016-03-25
Bewertung 4.07/5 Insgesamt 15 Bewertungen
Entwickler https://imjasonh.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}