Codassium Screensharing
Enables screensharing for Codassium
什么是Codassium Screensharing?
Codassium Screensharing是由https://codassium.com开发的Chrome扩展程序,该扩展的主要功能是“Enables screensharing for Codassium”。
扩展截图
下载Codassium Screensharing扩展crx文件
下载Codassium Screensharing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds screensharing functionality to Codassium. See: https://codassium.com 扩展基本信息
| 名称 | |
| ID | aehpbllmmckgkcpdipcpffccjlmiiaog |
| 官方URL | https://chrome.google.com/webstore/detail/codassium-screensharing/aehpbllmmckgkcpdipcpffccjlmiiaog |
| 简介 | Enables screensharing for Codassium |
| 文件大小 | 5.74 KB |
| 安装次数 | 13 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2014-12-06 |
| 上架时间 | 2014-12-06 |
| 开发者 | https://codassium.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://codassium.com |
| 帮助页面URL | https://codassium.com/contact |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Codassium Screensharing",
"description": "Enables screensharing for Codassium",
"version": "0.1.1",
"manifest_version": 2,
"minimum_chrome_version": "34",
"icons": {
"48": "codassium_48.png",
"128": "codassium_128.png"
},
"permissions": [
"desktopCapture"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"https:\/\/codassium.devlocal\/*",
"https:\/\/codassium.com\/*"
]
}
]
} | |