Smart scrolling

Scroll any pages without using your hand!

什么是Smart scrolling?

Smart scrolling是由jane.hikaru开发的Chrome扩展程序,该扩展的主要功能是“Scroll any pages without using your hand!”。

扩展截图

screenshot

下载Smart scrolling扩展crx文件

下载Smart scrolling扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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/                    

扩展基本信息

名称 Smart scrolling Smart scrolling
ID amfbompifiibenpdeoknnbbcdeoannln
官方URL https://chrome.google.com/webstore/detail/smart-scrolling/amfbompifiibenpdeoknnbbcdeoannln
简介 Scroll any pages without using your hand!
文件大小 374 KB
安装次数 40
当前版本 0.11
更新时间 2014-12-12
上架时间 2014-12-12
评分 1.88/5 共8次评分
开发者 jane.hikaru
付费类型 free
扩展官网 http://superdictionary.blogspot.com/2014/12/no-hands-scrolling-on-webcam-motivation.html
支持的语言 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
}