Cam Scroller

This extension lets a user scroll webpages using webcam gestures.

Wat is Cam Scroller?

Cam Scroller is een Chrome-extensie ontwikkeld door jwexler, en de belangrijkste functie is "This extension lets a user scroll webpages using webcam gestures.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Cam Scroller

Download Cam Scroller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Cam Scroller Cam Scroller
ID egljnginfcbpehnpfojpbogiopdgjjak
Officiële URL https://chromewebstore.google.com/detail/cam-scroller/egljnginfcbpehnpfojpbogiopdgjjak
Beschrijving This extension lets a user scroll webpages using webcam gestures.
Bestandsgrootte 172 KB
Aantal Installaties 44
Huidige Versie 0.1.2
Laatst Bijgewerkt 2018-03-29
Publicatiedatum 2018-03-29
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar jwexler
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/PAIR-code/cam-scroller
Ondersteunde Talen 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"
    ]
}