Cam Scroller

This extension lets a user scroll webpages using webcam gestures.

Cam Scroller là gì?

Cam Scroller là một tiện ích mở rộng Chrome được phát triển bởi jwexler, và tính năng chính của nó là "This extension lets a user scroll webpages using webcam gestures.".

Ả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 Cam Scroller

Tải xuống các tệp mở rộng Cam Scroller 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

                        Cam Scroller is an open-source Chrome extension that uses your webcam and deeplearn.js to enable scrolling through webpages using custom gestures that you define. 

Check out the code at https://github.com/PAIR-code/cam-scroller

It makes use of the deeplearn.js KNN image classifier. In doing so, your webcam images are processed locally on your machine and at no time is any information collected or sent externally.

This simple Chrome extension is meant to show, through a minimal example, the types of experiences that can be enabled through the use of browser-based machine learning.

This is not an officially supported Google product.                    

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

Tên Cam Scroller Cam Scroller
ID egljnginfcbpehnpfojpbogiopdgjjak
URL Chính Thức https://chromewebstore.google.com/detail/cam-scroller/egljnginfcbpehnpfojpbogiopdgjjak
Mô tả This extension lets a user scroll webpages using webcam gestures.
Kích Thước Tệp 172 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2018-03-29
Ngày Phát Hành 2018-03-29
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển jwexler
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/PAIR-code/cam-scroller
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cam Scroller",
    "description": "This extension lets a user scroll webpages using webcam gestures.",
    "version": "0.1.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage"
    ]
}