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
官方網址 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
}