Screen Capturing

This WebRTC screen capturing extension can be used within any WebRTC library/application!

Cos'è Screen Capturing?

Screen Capturing è un'estensione di Chrome sviluppata da https://appinux.com, e la sua funzione principale è "This WebRTC screen capturing extension can be used within any WebRTC library/application!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Screen Capturing

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

                        Developer tool for screen sharing by Appinux A/S                    

Informazioni di Base sull'Estensione

Nome Screen Capturing Screen Capturing
ID hccmdbhopgjapkajcmdegkpplnahngnl
URL Ufficiale https://chromewebstore.google.com/detail/screen-capturing/hccmdbhopgjapkajcmdegkpplnahngnl
Descrizione This WebRTC screen capturing extension can be used within any WebRTC library/application!
Dimensione del File 5.33 KB
Conteggio Installazioni 87
Versione Corrente 3.5
Ultimo Aggiornamento 2019-04-26
Data di Pubblicazione 2019-04-26
Sviluppatore https://appinux.com
Tipo di Pagamento free
Sito Web dell'Estensione https://appinux.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screen Capturing",
    "author": "Muaz Khan",
    "version": "3.5",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This WebRTC screen capturing extension can be used within any WebRTC library\/application!",
    "homepage_url": "http:\/\/www.appinux.com\/",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}