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 |
| 官方網址 | 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"
]
} | |