Smart scrolling

Scroll any pages without using your hand!

Wat is Smart scrolling?

Smart scrolling is een Chrome-extensie ontwikkeld door jane.hikaru, en de belangrijkste functie is "Scroll any pages without using your hand!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Smart scrolling

Download Smart scrolling-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

                        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/                    

Basisinformatie over de Extensie

Naam Smart scrolling Smart scrolling
ID amfbompifiibenpdeoknnbbcdeoannln
Officiële URL https://chrome.google.com/webstore/detail/smart-scrolling/amfbompifiibenpdeoknnbbcdeoannln
Beschrijving Scroll any pages without using your hand!
Bestandsgrootte 374 KB
Aantal Installaties 40
Huidige Versie 0.11
Laatst Bijgewerkt 2014-12-12
Publicatiedatum 2014-12-12
Beoordeling 1.88/5 Totaal 8 Beoordelingen
Ontwikkelaar jane.hikaru
Betalingswijze free
Extensiewebsite http://superdictionary.blogspot.com/2014/12/no-hands-scrolling-on-webcam-motivation.html
Ondersteunde Talen 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
}