SAGE2 Screen Capture

This chrome extension enables screensharing to SAGE2 walls

Vad är SAGE2 Screen Capture?

SAGE2 Screen Capture är en Chrome-tillägg utvecklad av https://sage2.sagecommons.org, och dess huvudfunktion är "This chrome extension enables screensharing to SAGE2 walls".

Tilläggsskärmbilder

screenshot

Ladda ner SAGE2 Screen Capture-förlängningens CRX-fil

Ladda ner SAGE2 Screen Capture-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn SAGE2 Screen Capture SAGE2 Screen Capture
ID mbkfcmpjbkmmdcfocaclghbobhnjfpkk
Officiell webbadress https://chromewebstore.google.com/detail/sage2-screen-capture/mbkfcmpjbkmmdcfocaclghbobhnjfpkk
Beskrivning This chrome extension enables screensharing to SAGE2 walls
Filstorlek 25.17 KB
Antal Installationer 1,110
Aktuell Version 2.2.0
Senast Uppdaterad 2021-09-06
Publiceringsdatum 2018-10-29
Betyg 4.43/5 Totalt 7 Betyg
Utvecklare https://sage2.sagecommons.org
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://sage2.sagecommons.org/
Hjälpsida URL https://groups.google.com/forum/#!forum/sage2
Stödda Språk 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"
    ]
}