analyzeRTC - visualize webrtc-internals

Quickly collect and analyze WebRTC browser activity

Что такое analyzeRTC - visualize webrtc-internals?

analyzeRTC - visualize webrtc-internals - это расширение Chrome, разработанное testrtc.com, и его основная функция - "Quickly collect and analyze WebRTC browser activity".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения analyzeRTC - visualize webrtc-internals

Скачайте файлы расширений 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'"
}