Hubgets Screen Share
Hubgets Screen share extension
什麼是Hubgets Screen Share?
Hubgets Screen Share是由https://hubgets.com開發的Chrome擴展程式,該擴展的主要功能是“Hubgets Screen share extension”。
擴展截圖
下載Hubgets Screen Share擴展crx文件
下載Hubgets Screen Share擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Enables screen sharing features in Hubgets. You will be able to share your screen with your team and other parties.
Hubgets is a communication and collaboration app that makes your business more productive. Free up to 20 team members. 擴展基本資訊
| 名稱 | |
| ID | afbegohpenghgnldhimopeoemdapmiio |
| 官方網址 | https://chromewebstore.google.com/detail/hubgets-screen-share/afbegohpenghgnldhimopeoemdapmiio |
| 簡介 | Hubgets Screen share extension |
| 檔案大小 | 13.76 KB |
| 安裝次數 | 84 |
| 目前版本 | 0.0.1.3 |
| 更新時間 | 2017-01-26 |
| 上架時間 | 2017-01-26 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | https://hubgets.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://hubgets.com |
| 隱私政策頁面URL | https://www.hubgets.com/company/privacy-policy |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hubgets Screen Share",
"author": "Hubgets",
"version": "0.0.1.3",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Hubgets Screen share extension",
"homepage_url": "https:\/\/hubgets.com\/",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https:\/\/*\/*"
]
}
],
"page_action": {
"default_icon": {
"48": "icons\/pa_icon_48.png",
"96": "icons\/[email protected]",
"128": "icons\/pa_icon_128.png",
"256": "icons\/[email protected]"
}
},
"icons": {
"16": "icons\/favicon_16x16.png",
"48": "icons\/icon_48.png",
"96": "icons\/[email protected]",
"128": "icons\/icon_128.png",
"256": "icons\/[email protected]"
},
"permissions": [
"https:\/\/*\/*",
"desktopCapture",
"tabs"
]
} | |