Linkello Screen Sharing
This extension allows you to share your screen
什麼是Linkello Screen Sharing?
Linkello Screen Sharing是由https://linkello.com開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to share your screen”。
擴展截圖
下載Linkello Screen Sharing擴展crx文件
下載Linkello Screen Sharing擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Install this plugin to enable the screen sharing feature on linkello.com. Don't forget to reload the conference page after having installed this add-on ! 擴展基本資訊
| 名稱 | |
| ID | eeopgbooadfjifpfalhifnogjblphecd |
| 官方網址 | https://chromewebstore.google.com/detail/linkello-screen-sharing/eeopgbooadfjifpfalhifnogjblphecd |
| 簡介 | This extension allows you to share your screen |
| 檔案大小 | 12.11 KB |
| 安裝次數 | 243 |
| 目前版本 | 1.0 |
| 更新時間 | 2019-01-09 |
| 上架時間 | 2019-01-09 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | https://linkello.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Linkello Screen Sharing",
"description": "This extension allows you to share your screen",
"version": "1.0",
"manifest_version": 2,
"minimum_chrome_version": "34",
"icons": {
"128": "logo_icon_128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"js": [
"bridge.js"
],
"matches": [
"*:\/\/*.linkello.com\/*"
]
}
],
"permissions": [
"desktopCapture"
]
} | |