Multiparty-Meeting Screen Sharing
This extension allows you to share your screen in the multiparty web-meeting you are in.
什么是Multiparty-Meeting Screen Sharing?
Multiparty-Meeting Screen Sharing是由https://akademia.no开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to share your screen in the multiparty web-meeting you are in.”。
扩展截图
下载Multiparty-Meeting Screen Sharing扩展crx文件
下载Multiparty-Meeting Screen Sharing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Open source extension for sharing your screen in web meetings. 扩展基本信息
| 名称 | |
| ID | fckajcjdaabdgnbdcmhhebdglogjfodi |
| 官方URL | https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi |
| 简介 | This extension allows you to share your screen in the multiparty web-meeting you are in. |
| 文件大小 | 11.19 KB |
| 安装次数 | 95 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2018-09-18 |
| 上架时间 | 2018-09-18 |
| 开发者 | https://akademia.no |
| 付费类型 | free |
| 扩展官网 | https://github.com/havfo/multiparty-meeting-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Multiparty-Meeting Screen Sharing",
"short_name": "Screen Sharing",
"version": "0.1.1",
"manifest_version": 2,
"description": "This extension allows you to share your screen in the multiparty web-meeting you are in.",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"desktopCapture",
"tabs",
"https:\/\/*\/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"all_frames": true,
"run_at": "document_end"
}
]
} | |