analyzeRTC - visualize webrtc-internals

Quickly collect and analyze WebRTC browser activity

什麼是analyzeRTC - visualize webrtc-internals?

analyzeRTC - visualize webrtc-internals是由testrtc.com開發的Chrome擴展程式,該擴展的主要功能是“Quickly collect and analyze WebRTC browser activity”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載analyzeRTC - visualize webrtc-internals擴展crx文件

下載analyzeRTC - visualize webrtc-internals擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 analyzeRTC - visualize webrtc-internals analyzeRTC - visualize webrtc-internals
ID jmichaepiaolacmdlbngnoephpomigcm
官方網址 https://chromewebstore.google.com/detail/analyzertc-visualize-webr/jmichaepiaolacmdlbngnoephpomigcm
簡介 Quickly collect and analyze WebRTC browser activity
檔案大小 116 KB
安裝次數 1,107
目前版本 1.7
更新時間 2021-02-23
上架時間 2020-08-20
開發者 testrtc.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://testrtc.com
說明頁面URL https://testrtc.com/docs
支援的語言 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'"
}