Cam Scroller

This extension lets a user scroll webpages using webcam gestures.

Cos'è Cam Scroller?

Cam Scroller è un'estensione di Chrome sviluppata da jwexler, e la sua funzione principale è "This extension lets a user scroll webpages using webcam gestures.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cam Scroller

Scarica i file di estensione Cam Scroller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cam Scroller Cam Scroller
ID egljnginfcbpehnpfojpbogiopdgjjak
URL Ufficiale https://chromewebstore.google.com/detail/cam-scroller/egljnginfcbpehnpfojpbogiopdgjjak
Descrizione This extension lets a user scroll webpages using webcam gestures.
Dimensione del File 172 KB
Conteggio Installazioni 44
Versione Corrente 0.1.2
Ultimo Aggiornamento 2018-03-29
Data di Pubblicazione 2018-03-29
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore jwexler
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/PAIR-code/cam-scroller
Lingue Supportate 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"
    ]
}