Unify Screen Capture
This extension allows Unify WebRTC connections to use the screen as a video source.
Cos'è Unify Screen Capture?
Unify Screen Capture è un'estensione di Chrome sviluppata da https://www.unify.com, e la sua funzione principale è "This extension allows Unify WebRTC connections to use the screen as a video source.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Unify Screen Capture
Scarica i file di estensione Unify Screen Capture in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension allows Unify WebRTC connections to use the screen as a video source.
Informazioni di Base sull'Estensione
Nome | Unify Screen Capture |
ID | habmbajnacidcciecdkkablilolhkopd |
URL Ufficiale | https://chromewebstore.google.com/detail/unify-screen-capture/habmbajnacidcciecdkkablilolhkopd |
Descrizione | This extension allows Unify WebRTC connections to use the screen as a video source. |
Dimensione del File | 7.63 KB |
Conteggio Installazioni | 43 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2023-12-05 |
Data di Pubblicazione | 2019-05-28 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://www.unify.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://unify.com/en/privacy-policy |
Lingue Supportate | 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" ] } |