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
}