Unify Screen Capture
This extension allows Unify WebRTC connections to use the screen as a video source.
Vad är Unify Screen Capture?
Unify Screen Capture är en Chrome-tillägg utvecklad av https://www.unify.com, och dess huvudfunktion är "This extension allows Unify WebRTC connections to use the screen as a video source.".
Tilläggsskärmbilder
Ladda ner Unify Screen Capture-förlängningens CRX-fil
Ladda ner Unify Screen Capture-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension allows Unify WebRTC connections to use the screen as a video source. Grundläggande Information om Tillägg
| Namn | |
| ID | habmbajnacidcciecdkkablilolhkopd |
| Officiell webbadress | https://chromewebstore.google.com/detail/unify-screen-capture/habmbajnacidcciecdkkablilolhkopd |
| Beskrivning | This extension allows Unify WebRTC connections to use the screen as a video source. |
| Filstorlek | 7.63 KB |
| Antal Installationer | 43 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2023-12-05 |
| Publiceringsdatum | 2019-05-28 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | https://www.unify.com |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://unify.com/en/privacy-policy |
| Stödda Språk | 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"
]
} | |