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"
]
} | |