Performance Assistant

Visualization of web access performance data

Что такое Performance Assistant?

Performance Assistant - это расширение Chrome, разработанное gongqiu, и его основная функция - "Visualization of web access performance data".

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

screenshot
screenshot

Скачать файл CRX расширения Performance Assistant

Скачайте файлы расширений Performance Assistant в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        便捷查看页面的加载性能,还能自定义性能指标。支持持续监听,并绘制一段时间内的加载性能曲线,方便观察。                    

Основная информация о расширении

Название Performance Assistant Performance Assistant
ID phmppmglkpkjcofmoennnpdmhhhglalc
Официальный URL https://chromewebstore.google.com/detail/performance-assistant/phmppmglkpkjcofmoennnpdmhhhglalc
Описание Visualization of web access performance data
Размер файла 1.34 MB
Количество установок 183
Текущая Версия 1.0.0
Последнее Обновление 2021-04-15
Дата публикации 2021-04-14
Рейтинг 5.00/5 Всего 1 оценок
Разработчик gongqiu
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Performance Assistant",
    "version": "1.0.0",
    "description": "Visualization of web access performance data",
    "icons": {
        "16": "monitor-icon.png",
        "48": "monitor-icon.png",
        "128": "monitor-icon.png"
    },
    "browser_action": {
        "default_icon": "monitor-icon.png",
        "default_title": "\u9875\u9762\u6027\u80fd\u52a9\u624b",
        "default_popup": "popup.html"
    },
    "devtools_page": "devtools.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "inject.js"
    ]
}