C-Meeting Desktop Sharing Extension
Enhance your C-Meeting web conference with desktop and application sharing with Google Chrome.
什麼是C-Meeting Desktop Sharing Extension?
C-Meeting Desktop Sharing Extension是由jheuler開發的Chrome擴展程式,該擴展的主要功能是“Enhance your C-Meeting web conference with desktop and application sharing with Google Chrome.”。
擴展截圖
下載C-Meeting Desktop Sharing Extension擴展crx文件
下載C-Meeting Desktop Sharing Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This desktop sharing extension enables sharing from the Chrome browser for C-Meeting, Concert-Oh and BpresentLive. 擴展基本資訊
| 名稱 | |
| ID | jgldmgcakddjinippbpmbjldahfoojhn |
| 官方網址 | https://chromewebstore.google.com/detail/c-meeting-desktop-sharing/jgldmgcakddjinippbpmbjldahfoojhn |
| 簡介 | Enhance your C-Meeting web conference with desktop and application sharing with Google Chrome. |
| 檔案大小 | 27.52 KB |
| 安裝次數 | 384 |
| 目前版本 | 1.0.0.1 |
| 更新時間 | 2016-06-01 |
| 上架時間 | 2016-06-01 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | jheuler |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"icons": {
"16": "Icon16.png",
"32": "Icon32.png",
"48": "Icon48.png",
"128": "Icon128.png"
},
"name": "C-Meeting Desktop Sharing Extension",
"short_name": "CMDeskShare",
"description": "Enhance your C-Meeting web conference with desktop and application sharing with Google Chrome.",
"version": "1.0.0.1",
"permissions": [
"nativeMessaging"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.cefriel.it\/*",
"*:\/\/*.concert-oh.com\/*",
"*:\/\/*.bpresentlive.com\/*",
"*:\/\/*.c-meeting.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
]
} | |