Page Status

页面状态

What is Page Status?

Page Status is a Chrome extension developed by lecepin, and its main feature is "页面状态".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Page Status Extension CRX File

Download Page Status 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 Page Status Page Status
ID dpbfjbnbdjkkcjhmhmkgiadjifdgbedo
Official URL https://chromewebstore.google.com/detail/page-status/dpbfjbnbdjkkcjhmhmkgiadjifdgbedo
Description 页面状态
File Size 61.29 KB
Installation Count 57
Current Version 0.1.1
Last Updated 2021-09-13
Publish Date 2021-09-01
Developer lecepin
Email [email protected]
Payment Type free
Help Page URL https://github.com/lecepin
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Page Status",
    "version": "0.1.1",
    "description": "\u9875\u9762\u72b6\u6001",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Page Status"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}