Performance inspector

This extension allow user to inspect performance of current page easily

Qu'est-ce que Performance inspector ?

Performance inspector est une extension Chrome développée par ianli-承风, et sa fonction principale est "This extension allow user to inspect performance of current page easily".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Performance inspector

Téléchargez les fichiers d'extension Performance inspector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Performance extension to show window.performance of current page.
显示当前页面的window.performance拉取的内容

update: 09/11/2015
1. Fix bug of : Chrome added function "toJSON" in result of window.performance.getEntries()

update: 07/11/2015
1. Fix bug of : Chrome changed the type of timing to PerformanceTiming, resource to PerformanceResourceTiming. Not able to use JSON.stringify to parse them to String.

update: 11/21/2014
1. fix bug of get short name of entries
2. update layout for help doc

update: 11/09/2014
1. fix bug of no response for tab nav
2. fix bug for not able to back to develop tools when click link                    

Informations de Base sur l'Extension

Nom Performance inspector Performance inspector
ID bgomfgoppmhcminmdojjeejheppadagh
URL Officiel https://chrome.google.com/webstore/detail/performance-inspector/bgomfgoppmhcminmdojjeejheppadagh
Description This extension allow user to inspect performance of current page easily
Taille du Fichier 115 KB
Nombre d'Installations 263
Version Actuelle 0.5
Dernière Mise à Jour 2015-09-11
Date de Publication 2015-09-11
Évaluation 5.00/5 Total 1 Évaluations
Développeur ianli-承风
Type de Paiement free
URL de la Page d'Aide https://github.com/ianli-sc/performanceInspector
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Performance inspector",
    "description": "This extension allow user to inspect performance of current page easily",
    "version": "0.5",
    "content_security_policy": "default-src 'self'  chrome-extension-resource: ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-eval';  connect-src *; frame-src *;",
    "devtools_page": "performance.html",
    "web_accessible_resources": [
        "*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webNavigation",
        "history"
    ]
}