analyzeRTC - visualize webrtc-internals

Quickly collect and analyze WebRTC browser activity

Cos'è analyzeRTC - visualize webrtc-internals?

analyzeRTC - visualize webrtc-internals è un'estensione di Chrome sviluppata da testrtc.com, e la sua funzione principale è "Quickly collect and analyze WebRTC browser activity".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione analyzeRTC - visualize webrtc-internals

Scarica i file di estensione analyzeRTC - visualize webrtc-internals 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

                        NOTE: This extension requires a paid subscription plan with testRTC to use

analyzeRTC, by testRTC, is a simple Chrome extension to automatically collect and analyze WebRTC statistics to help you debug and troubleshoot issues.

analyzeRTC enables you to easily collect webrtc-internal dumps and any associated information from your WebRTC application while it is running, without the need to tell your clients to download and send dump files. Inside testRTC, you will be able to use the analyzeRTC tool to view the results in a simple way, making debugging and troubleshooting production related issues a breeze.                    

Informazioni di Base sull'Estensione

Nome analyzeRTC - visualize webrtc-internals analyzeRTC - visualize webrtc-internals
ID jmichaepiaolacmdlbngnoephpomigcm
URL Ufficiale https://chromewebstore.google.com/detail/analyzertc-visualize-webr/jmichaepiaolacmdlbngnoephpomigcm
Descrizione Quickly collect and analyze WebRTC browser activity
Dimensione del File 116 KB
Conteggio Installazioni 1,107
Versione Corrente 1.7
Ultimo Aggiornamento 2021-02-23
Data di Pubblicazione 2020-08-20
Sviluppatore testrtc.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://testrtc.com
URL della Pagina di Aiuto https://testrtc.com/docs
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Quickly collect and analyze WebRTC browser activity",
    "version": "1.7",
    "name": "analyzeRTC - visualize webrtc-internals",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icon-128.png",
        "injectScript.bundle.js"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}