Smart scrolling

Scroll any pages without using your hand!

Smart scrolling là gì?

Smart scrolling là một tiện ích mở rộng Chrome được phát triển bởi jane.hikaru, và tính năng chính của nó là "Scroll any pages without using your hand!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Smart scrolling

Tải xuống các tệp mở rộng Smart scrolling dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Smart scrolling Smart scrolling
ID amfbompifiibenpdeoknnbbcdeoannln
URL Chính Thức https://chrome.google.com/webstore/detail/smart-scrolling/amfbompifiibenpdeoknnbbcdeoannln
Mô tả Scroll any pages without using your hand!
Kích Thước Tệp 374 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 0.11
Cập Nhật Lần Cuối 2014-12-12
Ngày Phát Hành 2014-12-12
Đánh Giá 1.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển jane.hikaru
Loại Thanh Toán free
Trang Web Mở Rộng http://superdictionary.blogspot.com/2014/12/no-hands-scrolling-on-webcam-motivation.html
Ngôn Ngữ Được Hỗ Trợ 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
}