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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}