Unify Screen Capture

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

什麼是Unify Screen Capture?

Unify Screen Capture是由https://www.unify.com開發的Chrome擴展程式,該擴展的主要功能是“This extension allows Unify WebRTC connections to use the screen as a video source.”。

擴展截圖

screenshot

下載Unify Screen Capture擴展crx文件

下載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
官方網址 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"
    ]
}