Unify Screen Capture

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

Wat is Unify Screen Capture?

Unify Screen Capture is een Chrome-extensie ontwikkeld door https://www.unify.com, en de belangrijkste functie is "This extension allows Unify WebRTC connections to use the screen as a video source.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Unify Screen Capture

Download Unify Screen Capture-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Unify Screen Capture Unify Screen Capture
ID habmbajnacidcciecdkkablilolhkopd
Officiële URL https://chromewebstore.google.com/detail/unify-screen-capture/habmbajnacidcciecdkkablilolhkopd
Beschrijving This extension allows Unify WebRTC connections to use the screen as a video source.
Bestandsgrootte 7.63 KB
Aantal Installaties 43
Huidige Versie 1.0.0
Laatst Bijgewerkt 2023-12-05
Publicatiedatum 2019-05-28
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://www.unify.com
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://unify.com/en/privacy-policy
Ondersteunde Talen 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"
    ]
}