VLR Screen Capturing

This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js!

Cos'è VLR Screen Capturing?

VLR Screen Capturing è un'estensione di Chrome sviluppata da ward.ye, e la sua funzione principale è "This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione VLR Screen Capturing

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

                        application's screen on any HTTPs domain! Even audio+tab!
This WebRTC screen capturing extension can be used in all domains, in all WebRTC applications :)

It merely captures the screen and returns sourceId. Your application can use that sourceId to use screen stream.                    

Informazioni di Base sull'Estensione

Nome VLR Screen Capturing VLR Screen Capturing
ID jnbggkpmcolbjifdboognjfadicchgoa
URL Ufficiale https://chrome.google.com/webstore/detail/vlr-screen-capturing/jnbggkpmcolbjifdboognjfadicchgoa
Descrizione This WebRTC screen capturing extension can be used within any WebRTC library/application! Use getScreenId.js!
Dimensione del File 7.8 KB
Conteggio Installazioni 11
Versione Corrente 3.3
Ultimo Aggiornamento 2016-04-19
Data di Pubblicazione 2016-04-19
Sviluppatore ward.ye
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VLR Screen Capturing",
    "author": "Nabil Mohammed",
    "version": "3.3",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This WebRTC screen capturing extension can be used within any WebRTC library\/application! Use getScreenId.js!",
    "homepage_url": "https:\/\/vlr.taalim.us\/deskshare\/chrome\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "*:\/\/vlr.taalim.us\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}