Cam Scroller

This extension lets a user scroll webpages using webcam gestures.

Τι είναι το Cam Scroller;

Το Cam Scroller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jwexler, και η κύρια λειτουργία του είναι "This extension lets a user scroll webpages using webcam gestures.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Cam Scroller

Λήψη αρχείων επέκτασης Cam Scroller σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Cam Scroller Cam Scroller
ID egljnginfcbpehnpfojpbogiopdgjjak
Επίσημο URL https://chromewebstore.google.com/detail/cam-scroller/egljnginfcbpehnpfojpbogiopdgjjak
Περιγραφή This extension lets a user scroll webpages using webcam gestures.
Μέγεθος Αρχείου 172 KB
Αριθμός Εγκαταστάσεων 44
Τρέχουσα Έκδοση 0.1.2
Τελευταία Ενημέρωση 2018-03-29
Ημερομηνία Δημοσίευσης 2018-03-29
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής jwexler
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/PAIR-code/cam-scroller
Υποστηριζόμενες Γλώσσες 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"
    ]
}