Cloud Vision

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

Vad är Cloud Vision?

Cloud Vision är en Chrome-tillägg utvecklad av https://imjasonh.com, och dess huvudfunktion är "Adds a right-click menu item to images to detect text, labels and faces.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Cloud Vision-förlängningens CRX-fil

Ladda ner Cloud Vision-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

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

Grundläggande Information om Tillägg

Namn Cloud Vision Cloud Vision
ID nblmokgbialjjgfhfofbgfcghhbkejac
Officiell webbadress https://chromewebstore.google.com/detail/cloud-vision/nblmokgbialjjgfhfofbgfcghhbkejac
Beskrivning Adds a right-click menu item to images to detect text, labels and faces.
Filstorlek 7.68 KB
Antal Installationer 901
Aktuell Version 0.0.9
Senast Uppdaterad 2016-03-25
Publiceringsdatum 2016-03-25
Betyg 4.07/5 Totalt 15 Betyg
Utvecklare https://imjasonh.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}