Smart scrolling

Scroll any pages without using your hand!

What is Smart scrolling?

Smart scrolling is a Chrome extension developed by jane.hikaru, and its main feature is "Scroll any pages without using your hand!".

Extension Screenshots

screenshot

Download Smart scrolling Extension CRX File

Download Smart scrolling extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Smart scrolling Smart scrolling
ID amfbompifiibenpdeoknnbbcdeoannln
Official URL https://chrome.google.com/webstore/detail/smart-scrolling/amfbompifiibenpdeoknnbbcdeoannln
Description Scroll any pages without using your hand!
File Size 374 KB
Installation Count 40
Current Version 0.11
Last Updated 2014-12-12
Publish Date 2014-12-12
Rating 1.88/5 Total 8 Ratings
Developer jane.hikaru
Payment Type free
Extension Website http://superdictionary.blogspot.com/2014/12/no-hands-scrolling-on-webcam-motivation.html
Supported Languages 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
}