Warpwire Screen Capture
This screen capturing extension allows for the capture of screen or application window data into Warpwire.
Что такое Warpwire Screen Capture?
Warpwire Screen Capture - это расширение Chrome, разработанное warpwiredev, и его основная функция - "This screen capturing extension allows for the capture of screen or application window data into Warpwire.".
Снимки экрана расширения
Скачать файл CRX расширения Warpwire Screen Capture
Скачайте файлы расширений Warpwire Screen Capture в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Warpwire Screen Capture is a free extension that allows Warpwire users to record their screens and save the recording to Warpwire, without leaving the browser. This extension is required for Screen Capture within Warpwire. Any Warpwire user who is interested in screen capture should install this plugin. Users can record either an individual window, or their entire screen. Simply install the extension and make a recording. * Screen Capture within the Browser * Save recordings directly to Warpwire Media Libraries * Record entire screen or single window * Use native camera and mic, or attached USB cameras and mic
Основная информация о расширении
Название | Warpwire Screen Capture |
ID | iljpecogeagjijkjnnghgapofcdejmej |
Официальный URL | https://chromewebstore.google.com/detail/warpwire-screen-capture/iljpecogeagjijkjnnghgapofcdejmej |
Описание | This screen capturing extension allows for the capture of screen or application window data into Warpwire. |
Размер файла | 11.67 KB |
Количество установок | 617 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2017-10-05 |
Дата публикации | 2017-10-05 |
Рейтинг | 4.00/5 Всего 5 оценок |
Разработчик | warpwiredev |
Тип оплаты | free |
Официальный сайт расширения | https://www.warpwire.com/ |
URL страницы помощи | https://www.warpwire.com/support/capture/screen-capture |
URL страницы политики конфиденциальности | https://www.warpwire.com/legal/privacy-policy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Warpwire Screen Capture", "author": "Warpwire", "version": "1.0.0", "default_locale": "en", "manifest_version": 2, "minimum_chrome_version": "34", "description": "This screen capturing extension allows for the capture of screen or application window data into Warpwire.", "homepage_url": "https:\/\/www.warpwire.com", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/bootstrap.warpwire.com\/*" ] } ], "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon-48.png", "icon-128.png" ] } |