Webcam Switcher

Switch webcams based on which one you're looking at.

O que é Webcam Switcher?

Webcam Switcher é uma extensão do Chrome desenvolvida por Moshe Kolodny, e sua principal característica é "Switch webcams based on which one you're looking at.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Webcam Switcher

Baixe arquivos de extensão Webcam Switcher 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

                        This extension allows you to have multiple webcams used for a video call and will switch to whichever webcam you're looking most closely at.

You can change how often the face detection is checked and as well as how long you need to be looking at a new camera for it to switch (to protect against a quick glance).

This extension was uses
https://github.com/justadudewhohacks/face-api.js

And follows the following technique to create a virtual webcam
https://github.com/spite/virtual-webcam                    

Informações Básicas da Extensão

Nome Webcam Switcher Webcam Switcher
ID bpfkkobnfcajaidebaljcggknbfocpol
URL Oficial https://chrome.google.com/webstore/detail/webcam-switcher/bpfkkobnfcajaidebaljcggknbfocpol
Descrição Switch webcams based on which one you're looking at.
Tamanho do Arquivo 10.57 MB
Contagem de Instalações 136
Versão Atual 1.0
Última Atualização 2022-02-15
Data de Publicação 2022-02-15
Desenvolvedor Moshe Kolodny
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kolodny/webcam-switcher
URL da Página de Ajuda https://github.com/kolodny/webcam-switcher/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Webcam Switcher",
    "description": "Switch webcams based on which one you're looking at.",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_title": "Open the popup"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "loader.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content_script.js",
                "assets\/*.js",
                "models\/*",
                "models\/*.json",
                "models\/*.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}