Smart scrolling

Scroll any pages without using your hand!

Was ist Smart scrolling?

Smart scrolling ist eine Chrome-Erweiterung, die von jane.hikaru entwickelt wurde, und ihr Hauptmerkmal ist "Scroll any pages without using your hand!".

Erweiterungsscreenshots

screenshot

Smart scrolling-Erweiterungs-CRX-Datei herunterladen

Laden Sie Smart scrolling-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Scroll up or down with your head, 

-might not work in some page 
-require webcam camera
-require camera access permission (you need to click 'allow' to start this function)

Based on course project, detail can be found here http://superdictionary.blogspot.com/2014/12/no-hands-scrolling-on-webcam-motivation.html

libraries used here:
-http://trackingjs.com/
-https://code.google.com/p/dat-gui/                    

Grundlegende Informationen zur Erweiterung

Name Smart scrolling Smart scrolling
ID amfbompifiibenpdeoknnbbcdeoannln
Offizielle URL https://chrome.google.com/webstore/detail/smart-scrolling/amfbompifiibenpdeoknnbbcdeoannln
Beschreibung Scroll any pages without using your hand!
Dateigröße 374 KB
Installationsanzahl 40
Aktuelle Version 0.11
Letztes Update 2014-12-12
Veröffentlichungsdatum 2014-12-12
Bewertung 1.88/5 Insgesamt 8 Bewertungen
Entwickler jane.hikaru
Zahlungsart free
Erweiterungswebsite http://superdictionary.blogspot.com/2014/12/no-hands-scrolling-on-webcam-motivation.html
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart scrolling",
    "description": "Scroll any pages without using your hand!",
    "version": "0.11",
    "permissions": [
        "tabs",
        ""
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js",
                "gaze_tracking.js",
                "tracking.js",
                "face-min.js",
                "dat.gui.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}