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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}