Performance Assistant

Visualization of web access performance data

What is Performance Assistant?

Performance Assistant is a Chrome extension developed by gongqiu, and its main feature is "Visualization of web access performance data".

Extension Screenshots

screenshot
screenshot

Download Performance Assistant Extension CRX File

Download Performance Assistant extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Performance Assistant Performance Assistant
ID phmppmglkpkjcofmoennnpdmhhhglalc
Official URL https://chromewebstore.google.com/detail/performance-assistant/phmppmglkpkjcofmoennnpdmhhhglalc
Description Visualization of web access performance data
File Size 1.34 MB
Installation Count 183
Current Version 1.0.0
Last Updated 2021-04-15
Publish Date 2021-04-14
Rating 5.00/5 Total 1 Ratings
Developer gongqiu
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}