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"
    ]
}