analyzeRTC - visualize webrtc-internals

Quickly collect and analyze WebRTC browser activity

Was ist analyzeRTC - visualize webrtc-internals?

analyzeRTC - visualize webrtc-internals ist eine Chrome-Erweiterung, die von testrtc.com entwickelt wurde, und ihr Hauptmerkmal ist "Quickly collect and analyze WebRTC browser activity".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

analyzeRTC - visualize webrtc-internals-Erweiterungs-CRX-Datei herunterladen

Laden Sie analyzeRTC - visualize webrtc-internals-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name analyzeRTC - visualize webrtc-internals analyzeRTC - visualize webrtc-internals
ID jmichaepiaolacmdlbngnoephpomigcm
Offizielle URL https://chromewebstore.google.com/detail/analyzertc-visualize-webr/jmichaepiaolacmdlbngnoephpomigcm
Beschreibung Quickly collect and analyze WebRTC browser activity
Dateigröße 116 KB
Installationsanzahl 1,107
Aktuelle Version 1.7
Letztes Update 2021-02-23
Veröffentlichungsdatum 2020-08-20
Entwickler testrtc.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://testrtc.com
Hilfeseite URL https://testrtc.com/docs
Unterstützte Sprachen 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'"
}