SAGE2 Screen Capture
This chrome extension enables screensharing to SAGE2 walls
Cos'è SAGE2 Screen Capture?
SAGE2 Screen Capture è un'estensione di Chrome sviluppata da https://sage2.sagecommons.org, e la sua funzione principale è "This chrome extension enables screensharing to SAGE2 walls".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SAGE2 Screen Capture
Scarica i file di estensione SAGE2 Screen Capture in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This chrome extension is developed to be used in collaborative environments. It enables desktop sharing with large displays.
Informazioni di Base sull'Estensione
Nome | SAGE2 Screen Capture |
ID | mbkfcmpjbkmmdcfocaclghbobhnjfpkk |
URL Ufficiale | https://chromewebstore.google.com/detail/sage2-screen-capture/mbkfcmpjbkmmdcfocaclghbobhnjfpkk |
Descrizione | This chrome extension enables screensharing to SAGE2 walls |
Dimensione del File | 25.17 KB |
Conteggio Installazioni | 1,110 |
Versione Corrente | 2.2.0 |
Ultimo Aggiornamento | 2021-09-06 |
Data di Pubblicazione | 2018-10-29 |
Valutazione | 4.43/5 Totale 7 Valutazioni |
Sviluppatore | https://sage2.sagecommons.org |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://sage2.sagecommons.org/ |
URL della Pagina di Aiuto | https://groups.google.com/forum/#!forum/sage2 |
Lingue Supportate | 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" ] } |