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
官方URL 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'"
}