SAGE2 Screen Capture
This chrome extension enables screensharing to SAGE2 walls
SAGE2 Screen Captureとは何ですか?
SAGE2 Screen Captureはhttps://sage2.sagecommons.orgによって開発されたChromeの拡張機能で、その主な機能は「This chrome extension enables screensharing to SAGE2 walls」です。
拡張機能のスクリーンショット
SAGE2 Screen Capture拡張機能のCRXファイルをダウンロード
SAGE2 Screen Capture拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This chrome extension is developed to be used in collaborative environments. It enables desktop sharing with large displays. 拡張機能の基本情報
| 名前 | |
| ID | mbkfcmpjbkmmdcfocaclghbobhnjfpkk |
| 公式URL | https://chromewebstore.google.com/detail/sage2-screen-capture/mbkfcmpjbkmmdcfocaclghbobhnjfpkk |
| 説明 | This chrome extension enables screensharing to SAGE2 walls |
| ファイルサイズ | 25.17 KB |
| インストール数 | 1,110 |
| 現在のバージョン | 2.2.0 |
| 最終更新日 | 2021-09-06 |
| 公開日 | 2018-10-29 |
| 評価 | 4.43/5 合計 7 レビュー |
| 開発者 | https://sage2.sagecommons.org |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://sage2.sagecommons.org/ |
| ヘルプページのURL | https://groups.google.com/forum/#!forum/sage2 |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "SAGE2 Screen Capture",
"author": "Thomas Marrinan - Luc Renambot",
"version": "2.2.0",
"manifest_version": 2,
"minimum_chrome_version": "36",
"description": "This chrome extension enables screensharing to SAGE2 walls",
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"js": [
"content.js"
],
"all_frames": true,
"run_at": "document_start",
"matches": [
"https:\/\/*\/*index.html",
"https:\/\/*\/*sageUI.html",
"https:\/\/*\/*sagePointerApp.html"
]
}
],
"browser_action": {
"default_title": "Send content to SAGE2",
"default_popup": "popup.html"
},
"icons": {
"48": "SAGE2_screen_capture_48.png",
"128": "SAGE2_screen_capture_128.png"
},
"permissions": [
"desktopCapture",
"tabs",
"activeTab",
"contextMenus"
],
"web_accessible_resources": [
"SAGE2_screen_capture_48.png",
"SAGE2_screen_capture_128.png"
]
} | |