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是由warpwiredev开发的Chrome扩展程序,该扩展的主要功能是“This screen capturing extension allows for the capture of screen or application window data into Warpwire.”。
扩展截图
下载Warpwire Screen Capture扩展crx文件
下载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" ] } |