WebStream WebRTC Screen Capture
This extension allows WebStream WebRTC connections to use the screen as a video source.
Co to jest WebStream WebRTC Screen Capture?
WebStream WebRTC Screen Capture to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension allows WebStream WebRTC connections to use the screen as a video source.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia WebStream WebRTC Screen Capture
Pobierz pliki rozszerzeń WebStream WebRTC Screen Capture w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
Nazwa | WebStream WebRTC Screen Capture |
ID | aiiaoeidafjmbmncceigjjbhoopljehf |
Oficjalny URL | https://chromewebstore.google.com/detail/webstream-webrtc-screen-c/aiiaoeidafjmbmncceigjjbhoopljehf |
Opis | This extension allows WebStream WebRTC connections to use the screen as a video source. |
Rozmiar pliku | 395 KB |
Liczba instalacji | 23 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2018-11-12 |
Data Publikacji | 2018-11-11 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WebStream WebRTC Screen Capture", "version": "1.0.1", "description": "This extension allows WebStream WebRTC connections to use the screen as a video source.", "icons": { "16": "WebStream-16.png", "32": "WebStream-32.png", "48": "WebStream-48.png", "128": "WebStream-128.png" }, "author": "WebStream", "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "content.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "*:\/\/*\/*" ] } ], "homepage_url": "https:\/\/teleconnect.care\/", "minimum_chrome_version": "34", "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "WebStream-16.png", "WebStream-32.png", "WebStream-48.png", "WebStream-128.png" ] } |