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