WebStream WebRTC Screen Capture
This extension allows WebStream WebRTC connections to use the screen as a video source.
Что такое WebStream WebRTC Screen Capture?
WebStream WebRTC Screen Capture - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension allows WebStream WebRTC connections to use the screen as a video source.".
Снимки экрана расширения
Скачать файл CRX расширения WebStream WebRTC Screen Capture
Скачайте файлы расширений WebStream WebRTC Screen Capture в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
Название | WebStream WebRTC Screen Capture |
ID | aiiaoeidafjmbmncceigjjbhoopljehf |
Официальный URL | https://chromewebstore.google.com/detail/webstream-webrtc-screen-c/aiiaoeidafjmbmncceigjjbhoopljehf |
Описание | This extension allows WebStream WebRTC connections to use the screen as a video source. |
Размер файла | 395 KB |
Количество установок | 23 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2018-11-12 |
Дата публикации | 2018-11-11 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Unknown |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |