Streye Share Screen
Capture full-screen or specific application's screen on Streye Enterprise App
什麼是Streye Share Screen?
Streye Share Screen是由Streye開發的Chrome擴展程式,該擴展的主要功能是“Capture full-screen or specific application's screen on Streye Enterprise App”。
擴展截圖
下載Streye Share Screen擴展crx文件
下載Streye Share Screen擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Chrome extension that allows share screen on Streye Enterprise 擴展基本資訊
| 名稱 | |
| ID | gjhegehdlknldoomoahpohapckgfogcd |
| 官方網址 | https://chromewebstore.google.com/detail/streye-share-screen/gjhegehdlknldoomoahpohapckgfogcd |
| 簡介 | Capture full-screen or specific application's screen on Streye Enterprise App |
| 檔案大小 | 7.23 KB |
| 安裝次數 | 20 |
| 目前版本 | 2.2 |
| 更新時間 | 2018-03-13 |
| 上架時間 | 2018-03-13 |
| 開發者 | Streye |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Streye Share Screen",
"author": "Streye",
"version": "2.2",
"manifest_version": 2,
"minimum_chrome_version": "34",
"description": "Capture full-screen or specific application's screen on Streye Enterprise App",
"homepage_url": "https:\/\/www.streye.com",
"background": {
"scripts": [
"background-script.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content-script.js"
],
"all_frames": true,
"run_at": "document_end",
"matches": [
"https:\/\/webapp-dev.streye.com\/*",
"https:\/\/webapp-pre.streye.com\/*",
"https:\/\/webapp.streye.com\/*"
]
}
],
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture"
],
"web_accessible_resources": [
"icon.png"
]
} | |