Screen Sharing

Capture full-screen or specific application's screen.

Cos'è Screen Sharing?

Screen Sharing è un'estensione di Chrome sviluppata da https://engducate.com, e la sua funzione principale è "Capture full-screen or specific application's screen.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Screen Sharing

Scarica i file di estensione Screen Sharing 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

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

Informazioni di Base sull'Estensione

Nome Screen Sharing Screen Sharing
ID aafipaghlllcbognnpmdplmpielpaepp
URL Ufficiale https://chromewebstore.google.com/detail/screen-sharing/aafipaghlllcbognnpmdplmpielpaepp
Descrizione Capture full-screen or specific application's screen.
Dimensione del File 5.52 KB
Conteggio Installazioni 124
Versione Corrente 1.4
Ultimo Aggiornamento 2018-11-28
Data di Pubblicazione 2018-11-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://engducate.com
Tipo di Pagamento free
Sito Web dell'Estensione https://engducate.com/
Lingue Supportate 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"
    ]
}