analyzeRTC - visualize webrtc-internals

Quickly collect and analyze WebRTC browser activity

Vad är analyzeRTC - visualize webrtc-internals?

analyzeRTC - visualize webrtc-internals är en Chrome-tillägg utvecklad av testrtc.com, och dess huvudfunktion är "Quickly collect and analyze WebRTC browser activity".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner analyzeRTC - visualize webrtc-internals-förlängningens CRX-fil

Ladda ner analyzeRTC - visualize webrtc-internals-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn analyzeRTC - visualize webrtc-internals analyzeRTC - visualize webrtc-internals
ID jmichaepiaolacmdlbngnoephpomigcm
Officiell webbadress https://chromewebstore.google.com/detail/analyzertc-visualize-webr/jmichaepiaolacmdlbngnoephpomigcm
Beskrivning Quickly collect and analyze WebRTC browser activity
Filstorlek 116 KB
Antal Installationer 1,107
Aktuell Version 1.7
Senast Uppdaterad 2021-02-23
Publiceringsdatum 2020-08-20
Utvecklare testrtc.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://testrtc.com
Hjälpsida URL https://testrtc.com/docs
Stödda Språk 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'"
}