Cam Scroller

This extension lets a user scroll webpages using webcam gestures.

Co je Cam Scroller?

Cam Scroller je rozšíření Chrome vyvinuté jwexler, a jeho hlavní funkcí je „This extension lets a user scroll webpages using webcam gestures.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Cam Scroller

Stáhněte si soubory rozšíření Cam Scroller ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Cam Scroller is an open-source Chrome extension that uses your webcam and deeplearn.js to enable scrolling through webpages using custom gestures that you define. 

Check out the code at https://github.com/PAIR-code/cam-scroller

It makes use of the deeplearn.js KNN image classifier. In doing so, your webcam images are processed locally on your machine and at no time is any information collected or sent externally.

This simple Chrome extension is meant to show, through a minimal example, the types of experiences that can be enabled through the use of browser-based machine learning.

This is not an officially supported Google product.                    

Základní Informace o Rozšíření

Název Cam Scroller Cam Scroller
ID egljnginfcbpehnpfojpbogiopdgjjak
Oficiální URL https://chromewebstore.google.com/detail/cam-scroller/egljnginfcbpehnpfojpbogiopdgjjak
Popis This extension lets a user scroll webpages using webcam gestures.
Velikost souboru 172 KB
Počet instalací 44
Aktuální Verze 0.1.2
Poslední Aktualizace 2018-03-29
Datum Vydání 2018-03-29
Hodnocení 1.00/5 Celkem 1 Hodnocení
Vývojář jwexler
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/PAIR-code/cam-scroller
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cam Scroller",
    "description": "This extension lets a user scroll webpages using webcam gestures.",
    "version": "0.1.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage"
    ]
}