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.
扩展基本信息
名称 | SAGE2 Screen Capture |
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 |
电子邮箱 | [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" ] } |