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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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:\/\/*\/*"
            ]
        }
    ]
}