Smart scrolling

Scroll any pages without using your hand!

Smart scrollingคืออะไร?

Smart scrolling เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jane.hikaru และคุณลักษณะหลักของมันคือ "Scroll any pages without using your hand!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smart scrolling

ดาวน์โหลดไฟล์ส่วนขยาย 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
}