analyzeRTC - visualize webrtc-internals

Quickly collect and analyze WebRTC browser activity

¿Qué es analyzeRTC - visualize webrtc-internals?

analyzeRTC - visualize webrtc-internals es una extensión de Chrome desarrollada por testrtc.com, y su función principal es "Quickly collect and analyze WebRTC browser activity".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión analyzeRTC - visualize webrtc-internals

Descarga archivos de extensión analyzeRTC - visualize webrtc-internals en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre analyzeRTC - visualize webrtc-internals analyzeRTC - visualize webrtc-internals
ID jmichaepiaolacmdlbngnoephpomigcm
URL Oficial https://chromewebstore.google.com/detail/analyzertc-visualize-webr/jmichaepiaolacmdlbngnoephpomigcm
Descripción Quickly collect and analyze WebRTC browser activity
Tamaño del Archivo 116 KB
Cantidad de Instalaciones 1,107
Versión Actual 1.7
Última Actualización 2021-02-23
Fecha de Publicación 2020-08-20
Desarrollador testrtc.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://testrtc.com
URL de la Página de Ayuda https://testrtc.com/docs
Idiomas Soportados 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'"
}