Webcam Switcher

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

Qu'est-ce que Webcam Switcher ?

Webcam Switcher est une extension Chrome développée par Moshe Kolodny, et sa fonction principale est "Switch webcams based on which one you're looking at.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Webcam Switcher

Téléchargez les fichiers d'extension Webcam Switcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Webcam Switcher Webcam Switcher
ID bpfkkobnfcajaidebaljcggknbfocpol
URL Officiel https://chrome.google.com/webstore/detail/webcam-switcher/bpfkkobnfcajaidebaljcggknbfocpol
Description Switch webcams based on which one you're looking at.
Taille du Fichier 10.57 MB
Nombre d'Installations 136
Version Actuelle 1.0
Dernière Mise à Jour 2022-02-15
Date de Publication 2022-02-15
Développeur Moshe Kolodny
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kolodny/webcam-switcher
URL de la Page d'Aide https://github.com/kolodny/webcam-switcher/issues
Langues Prises en Charge 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:\/\/*\/*"
            ]
        }
    ]
}