Webcam Switcher

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

ما هو Webcam Switcher؟

Webcam Switcher هو إضافة Chrome تم تطويرها بواسطة Moshe Kolodny، والميزة الرئيسية لها هي "Switch webcams based on which one you're looking at.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Webcam Switcher

قم بتنزيل ملفات الامتداد Webcam Switcher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Webcam Switcher Webcam Switcher
ID bpfkkobnfcajaidebaljcggknbfocpol
عنوان URL الرسمي https://chrome.google.com/webstore/detail/webcam-switcher/bpfkkobnfcajaidebaljcggknbfocpol
الوصف Switch webcams based on which one you're looking at.
حجم الملف 10.57 MB
عدد التثبيتات 136
النسخة الحالية 1.0
آخر تحديث 2022-02-15
تاريخ النشر 2022-02-15
المطور Moshe Kolodny
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/kolodny/webcam-switcher
عنوان صفحة المساعدة https://github.com/kolodny/webcam-switcher/issues
اللغات المدعومة 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:\/\/*\/*"
            ]
        }
    ]
}