SAGE2 Screen Capture
This chrome extension enables screensharing to SAGE2 walls
O que é SAGE2 Screen Capture?
SAGE2 Screen Capture é uma extensão do Chrome desenvolvida por https://sage2.sagecommons.org, e sua principal característica é "This chrome extension enables screensharing to SAGE2 walls".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão SAGE2 Screen Capture
Baixe arquivos de extensão SAGE2 Screen Capture no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This chrome extension is developed to be used in collaborative environments. It enables desktop sharing with large displays.
Informações Básicas da Extensão
Nome | SAGE2 Screen Capture |
ID | mbkfcmpjbkmmdcfocaclghbobhnjfpkk |
URL Oficial | https://chromewebstore.google.com/detail/sage2-screen-capture/mbkfcmpjbkmmdcfocaclghbobhnjfpkk |
Descrição | This chrome extension enables screensharing to SAGE2 walls |
Tamanho do Arquivo | 25.17 KB |
Contagem de Instalações | 1,110 |
Versão Atual | 2.2.0 |
Última Atualização | 2021-09-06 |
Data de Publicação | 2018-10-29 |
Classificação | 4.43/5 Total de 7 Avaliações |
Desenvolvedor | https://sage2.sagecommons.org |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://sage2.sagecommons.org/ |
URL da Página de Ajuda | https://groups.google.com/forum/#!forum/sage2 |
Idiomas Suportados | 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" ] } |