Linkello Screen Sharing
This extension allows you to share your screen
什么是Linkello Screen Sharing?
Linkello Screen Sharing是由https://linkello.com开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to share your screen”。
扩展截图
下载Linkello Screen Sharing扩展crx文件
下载Linkello Screen Sharing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Install this plugin to enable the screen sharing feature on linkello.com. Don't forget to reload the conference page after having installed this add-on ! 扩展基本信息
| 名称 | |
| ID | eeopgbooadfjifpfalhifnogjblphecd |
| 官方URL | https://chromewebstore.google.com/detail/linkello-screen-sharing/eeopgbooadfjifpfalhifnogjblphecd |
| 简介 | This extension allows you to share your screen |
| 文件大小 | 12.11 KB |
| 安装次数 | 243 |
| 当前版本 | 1.0 |
| 更新时间 | 2019-01-09 |
| 上架时间 | 2019-01-09 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://linkello.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Linkello Screen Sharing",
"description": "This extension allows you to share your screen",
"version": "1.0",
"manifest_version": 2,
"minimum_chrome_version": "34",
"icons": {
"128": "logo_icon_128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"bridge.js"
],
"matches": [
"*:\/\/*.linkello.com\/*"
]
}
],
"permissions": [
"desktopCapture"
]
} | |