SAGE2 Screen Capture

This chrome extension enables screensharing to SAGE2 walls

What is SAGE2 Screen Capture?

SAGE2 Screen Capture is a Chrome extension developed by https://sage2.sagecommons.org, and its main feature is "This chrome extension enables screensharing to SAGE2 walls".

Extension Screenshots

screenshot

Download SAGE2 Screen Capture Extension CRX File

Download SAGE2 Screen Capture extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This chrome extension is developed to be used in collaborative environments. It enables desktop sharing with large displays.                    

Extension Basic Information

Name SAGE2 Screen Capture SAGE2 Screen Capture
ID mbkfcmpjbkmmdcfocaclghbobhnjfpkk
Official URL https://chromewebstore.google.com/detail/sage2-screen-capture/mbkfcmpjbkmmdcfocaclghbobhnjfpkk
Description This chrome extension enables screensharing to SAGE2 walls
File Size 25.17 KB
Installation Count 1,110
Current Version 2.2.0
Last Updated 2021-09-06
Publish Date 2018-10-29
Rating 4.43/5 Total 7 Ratings
Developer https://sage2.sagecommons.org
Email [email protected]
Payment Type free
Extension Website http://sage2.sagecommons.org/
Help Page URL https://groups.google.com/forum/#!forum/sage2
Supported Languages 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"
    ]
}