Performance inspector

This extension allow user to inspect performance of current page easily

Performance inspectorとは何ですか?

Performance inspectorはianli-承风によって開発されたChromeの拡張機能で、その主な機能は「This extension allow user to inspect performance of current page easily」です。

拡張機能のスクリーンショット

screenshot
screenshot

Performance inspector拡張機能のCRXファイルをダウンロード

Performance inspector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Performance inspector Performance inspector
ID bgomfgoppmhcminmdojjeejheppadagh
公式URL https://chrome.google.com/webstore/detail/performance-inspector/bgomfgoppmhcminmdojjeejheppadagh
説明 This extension allow user to inspect performance of current page easily
ファイルサイズ 115 KB
インストール数 263
現在のバージョン 0.5
最終更新日 2015-09-11
公開日 2015-09-11
評価 5.00/5 合計 1 レビュー
開発者 ianli-承风
支払い方法 free
ヘルプページのURL https://github.com/ianli-sc/performanceInspector
対応言語 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"
    ]
}