C3 Example Extension
Enables screen sharing for Example application. This extension has no user interface.
什么是C3 Example Extension?
C3 Example Extension是由c3.ericsson开发的Chrome扩展程序,该扩展的主要功能是“Enables screen sharing for Example application. This extension has no user interface.”。
扩展截图
下载C3 Example Extension扩展crx文件
下载C3 Example Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Enables screen sharing for c3 applications by using the ChromeExtensionId. 扩展基本信息
| 名称 | |
| ID | epajpkbdigdpepgncdpmilaoamkjgoah |
| 官方URL | https://chrome.google.com/webstore/detail/c3-example-extension/epajpkbdigdpepgncdpmilaoamkjgoah |
| 简介 | Enables screen sharing for Example application. This extension has no user interface. |
| 文件大小 | 8.01 KB |
| 安装次数 | 22 |
| 当前版本 | 2.1.0 |
| 更新时间 | 2017-01-17 |
| 上架时间 | 2017-01-17 |
| 开发者 | c3.ericsson |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "C3 Example Extension",
"description": "Enables screen sharing for Example application. This extension has no user interface.",
"version": "2.1.0",
"manifest_version": 2,
"icons": {
"128": "icon.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"tabs",
"activeTab",
"tabCapture",
"desktopCapture",
"notifications"
]
} | |