Unify Screen Capture

This extension allows Unify WebRTC connections to use the screen as a video source.

Unify Screen Captureคืออะไร?

Unify Screen Capture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.unify.com และคุณลักษณะหลักของมันคือ "This extension allows Unify WebRTC connections to use the screen as a video source."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unify Screen Capture

ดาวน์โหลดไฟล์ส่วนขยาย Unify Screen Capture ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension allows Unify WebRTC connections to use the screen as a video source.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Unify Screen Capture Unify Screen Capture
ID habmbajnacidcciecdkkablilolhkopd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/unify-screen-capture/habmbajnacidcciecdkkablilolhkopd
คำอธิบาย This extension allows Unify WebRTC connections to use the screen as a video source.
ขนาดไฟล์ 7.63 KB
จำนวนการติดตั้ง 43
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2023-12-05
วันที่เผยแพร่ 2019-05-28
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://www.unify.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://unify.com/en/privacy-policy
ภาษาที่รองรับ de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unify Screen Capture",
    "version": "1.0.0",
    "description": "This extension allows Unify WebRTC connections to use the screen as a video source.",
    "icons": {
        "16": "screencapture_16.png",
        "32": "screencapture_32.png",
        "48": "screencapture_48.png",
        "128": "screencapture_128.png"
    },
    "author": "Unify Communications and Collaboration GmbH & Co. KG",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "homepage_url": "https:\/\/www.unify.com",
    "minimum_chrome_version": "34",
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "screencapture_16.png",
        "screencapture_32.png",
        "screencapture_48.png",
        "screencapture_128.png"
    ]
}