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 |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |