Smart scrolling

Scroll any pages without using your hand!

Qu'est-ce que Smart scrolling ?

Smart scrolling est une extension Chrome développée par jane.hikaru, et sa fonction principale est "Scroll any pages without using your hand!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Smart scrolling

Téléchargez les fichiers d'extension Smart scrolling au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Smart scrolling Smart scrolling
ID amfbompifiibenpdeoknnbbcdeoannln
URL Officiel https://chrome.google.com/webstore/detail/smart-scrolling/amfbompifiibenpdeoknnbbcdeoannln
Description Scroll any pages without using your hand!
Taille du Fichier 374 KB
Nombre d'Installations 40
Version Actuelle 0.11
Dernière Mise à Jour 2014-12-12
Date de Publication 2014-12-12
Évaluation 1.88/5 Total 8 Évaluations
Développeur jane.hikaru
Type de Paiement free
Site Web de l'Extension http://superdictionary.blogspot.com/2014/12/no-hands-scrolling-on-webcam-motivation.html
Langues Prises en Charge 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
}