Screen Sharing

Capture full-screen or specific application's screen.

Co je Screen Sharing?

Screen Sharing je rozšíření Chrome vyvinuté https://engducate.com, a jeho hlavní funkcí je „Capture full-screen or specific application's screen.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Screen Sharing

Stáhněte si soubory rozšíření Screen Sharing ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        To enable screen sharing on the following websites:
- https://webrtc.ziotes.com/
- https://localhost:8443/
- https://engducate.com/
- https://ko.engducate.com/                    

Základní Informace o Rozšíření

Název Screen Sharing Screen Sharing
ID aafipaghlllcbognnpmdplmpielpaepp
Oficiální URL https://chromewebstore.google.com/detail/screen-sharing/aafipaghlllcbognnpmdplmpielpaepp
Popis Capture full-screen or specific application's screen.
Velikost souboru 5.52 KB
Počet instalací 124
Aktuální Verze 1.4
Poslední Aktualizace 2018-11-28
Datum Vydání 2018-11-27
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://engducate.com
Typ Platby free
Webové stránky Rozšíření https://engducate.com/
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Sharing",
    "author": "Emmanuel Joseph Perion",
    "version": "1.4",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "Capture full-screen or specific application's screen.",
    "homepage_url": "https:\/\/webrtc.ziotes.com\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                "https:\/\/webrtc.ziotes.com\/*",
                "https:\/\/localhost\/*",
                "https:\/\/engducate.com\/*",
                "https:\/\/ko.engducate.com\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}