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
官方網址 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"
    ]
}