Screen Share

Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.

Vad är Screen Share?

Screen Share är en Chrome-tillägg utvecklad av authorGEN, och dess huvudfunktion är "Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Screen Share-förlängningens CRX-fil

Ladda ner Screen Share-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

                        Share the screen of your browser window using Screen Share when teaching, training or collaborating online via webRTC Virtual Classroom.  Add this extension to your Chrome browser just once and share the contents of your screen or a particular application with your audience seamlessly.                    

Grundläggande Information om Tillägg

Namn Screen Share Screen Share
ID kihbmdbdahlekggklbfbgmnkifcmfcip
Officiell webbadress https://chrome.google.com/webstore/detail/screen-share/kihbmdbdahlekggklbfbgmnkifcmfcip
Beskrivning Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.
Filstorlek 13.21 KB
Antal Installationer 58,170
Aktuell Version 0.0.0.8
Senast Uppdaterad 2017-11-07
Publiceringsdatum 2017-11-07
Betyg 2.47/5 Totalt 43 Betyg
Utvecklare authorGEN
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan http://www.authorgen.com/Privacy.aspx
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Share",
    "author": "WizIQ",
    "version": "0.0.0.8",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "Screen Share allows you to share your device screen or a particular application with remote audiences during live sessions.",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}