Performance Assistant

Visualization of web access performance data

什么是Performance Assistant?

Performance Assistant是由gongqiu开发的Chrome扩展程序,该扩展的主要功能是“Visualization of web access performance data”。

扩展截图

screenshot
screenshot

下载Performance Assistant扩展crx文件

下载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"
    ]
}