QuicklyChat Screen Sharing
This extension allows you to share your screen to quickly.chat
什么是QuicklyChat Screen Sharing?
QuicklyChat Screen Sharing是由http://qqquickly.chat开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to share your screen to quickly.chat”。
扩展截图
下载QuicklyChat Screen Sharing扩展crx文件
下载QuicklyChat Screen Sharing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to share your screen. 扩展基本信息
| 名称 | |
| ID | dkmjjdaadpoolcnbcbomoiipifbghlke |
| 官方URL | https://chrome.google.com/webstore/detail/quicklychat-screen-sharin/dkmjjdaadpoolcnbcbomoiipifbghlke |
| 简介 | This extension allows you to share your screen to quickly.chat |
| 文件大小 | 8.86 KB |
| 安装次数 | 30 |
| 当前版本 | 2.0.1 |
| 更新时间 | 2017-08-28 |
| 上架时间 | 2017-08-28 |
| 开发者 | http://qqquickly.chat |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://qqquickly.chat |
| 帮助页面URL | http://twitter.com/omnipresencehq |
| 支持的语言 | en |
| manifest.json | |
{
"manifest_version": 2,
"minimum_chrome_version": "34",
"name": "QuicklyChat Screen Sharing",
"short_name": "quickly.chat",
"author": "quickly.chat",
"version": "2.0.1",
"description": "This extension allows you to share your screen to quickly.chat",
"homepage_url": "https:\/\/qqquickly.chat\/",
"offline_enabled": true,
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"browser_action": {
"default_icon": {
"32": "icon32.png"
}
},
"icons": {
"128": "icon128.png"
},
"permissions": [
"desktopCapture"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/*\/*",
"http:\/\/localhost:9009\/*"
]
}
]
} | |