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
Eメール [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"
    ]
}