Cam Scroller

This extension lets a user scroll webpages using webcam gestures.

O que é Cam Scroller?

Cam Scroller é uma extensão do Chrome desenvolvida por jwexler, e sua principal característica é "This extension lets a user scroll webpages using webcam gestures.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Cam Scroller

Baixe arquivos de extensão Cam Scroller no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Cam Scroller Cam Scroller
ID egljnginfcbpehnpfojpbogiopdgjjak
URL Oficial https://chromewebstore.google.com/detail/cam-scroller/egljnginfcbpehnpfojpbogiopdgjjak
Descrição This extension lets a user scroll webpages using webcam gestures.
Tamanho do Arquivo 172 KB
Contagem de Instalações 44
Versão Atual 0.1.2
Última Atualização 2018-03-29
Data de Publicação 2018-03-29
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor jwexler
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/PAIR-code/cam-scroller
Idiomas Suportados 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"
    ]
}