Page Status
页面状态
Wat is Page Status?
Page Status is een Chrome-extensie ontwikkeld door lecepin, en de belangrijkste functie is "页面状态".
Extensie Screenshots
Download het CRX-bestand van de extensie Page Status
Download Page Status-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        显示页面在加载完成的过程中的所有细节信息。包括:加载时间、加载资源信息、大文件信息、慢文件信息、帧率等。                     Basisinformatie over de Extensie
| Naam |   |  
| ID | dpbfjbnbdjkkcjhmhmkgiadjifdgbedo | 
| Officiële URL | https://chromewebstore.google.com/detail/page-status/dpbfjbnbdjkkcjhmhmkgiadjifdgbedo | 
| Beschrijving | 页面状态 | 
| Bestandsgrootte | 61.29 KB | 
| Aantal Installaties | 57 | 
| Huidige Versie | 0.1.1 | 
| Laatst Bijgewerkt | 2021-09-13 | 
| Publicatiedatum | 2021-09-01 | 
| Ontwikkelaar | lecepin | 
| [email protected] | |
| Betalingswijze | free | 
| Help Pagina-URL | https://github.com/lecepin | 
| Ondersteunde Talen | 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"
            ]
        }
    ]
}  |  |