Cam Scroller

This extension lets a user scroll webpages using webcam gestures.

什么是Cam Scroller?

Cam Scroller是由jwexler开发的Chrome扩展程序,该扩展的主要功能是“This extension lets a user scroll webpages using webcam gestures.”。

扩展截图

screenshot

下载Cam Scroller扩展crx文件

下载Cam Scroller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Cam Scroller Cam Scroller
ID egljnginfcbpehnpfojpbogiopdgjjak
官方URL https://chromewebstore.google.com/detail/cam-scroller/egljnginfcbpehnpfojpbogiopdgjjak
简介 This extension lets a user scroll webpages using webcam gestures.
文件大小 172 KB
安装次数 44
当前版本 0.1.2
更新时间 2018-03-29
上架时间 2018-03-29
评分 1.00/5 共1次评分
开发者 jwexler
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/PAIR-code/cam-scroller
支持的语言 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"
    ]
}