VidFuse Screen Capturing
WebRTC screen capturing extension for VidFuse
什么是VidFuse Screen Capturing?
VidFuse Screen Capturing是由NOVP开发的Chrome扩展程序,该扩展的主要功能是“WebRTC screen capturing extension for VidFuse”。
扩展截图
下载VidFuse Screen Capturing扩展crx文件
下载VidFuse Screen Capturing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Please install this extension to record video in VidStitch. 扩展基本信息
| 名称 | |
| ID | ejcnaeoghcpoeokoiobolljonggadmgd |
| 官方URL | https://chrome.google.com/webstore/detail/vidfuse-screen-capturing/ejcnaeoghcpoeokoiobolljonggadmgd |
| 简介 | WebRTC screen capturing extension for VidFuse |
| 文件大小 | 16.88 KB |
| 安装次数 | 24 |
| 当前版本 | 2.0.1 |
| 更新时间 | 2018-02-02 |
| 上架时间 | 2018-02-02 |
| 开发者 | NOVP |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://vidthere.com/privacy |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "VidFuse Screen Capturing",
"author": "VidFuse",
"version": "2.0.1",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "WebRTC screen capturing extension for VidFuse",
"homepage_url": "https:\/\/vidfuse.com\/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"*:\/\/*.loc\/*",
"*:\/\/*.vidfuse.com\/*"
]
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon16.png",
"icon48.png",
"icon128.png"
]
} | |