Performance inspector

This extension allow user to inspect performance of current page easily

O que é Performance inspector?

Performance inspector é uma extensão do Chrome desenvolvida por ianli-承风, e sua principal característica é "This extension allow user to inspect performance of current page easily".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Performance inspector

Baixe arquivos de extensão Performance inspector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Performance inspector Performance inspector
ID bgomfgoppmhcminmdojjeejheppadagh
URL Oficial https://chrome.google.com/webstore/detail/performance-inspector/bgomfgoppmhcminmdojjeejheppadagh
Descrição This extension allow user to inspect performance of current page easily
Tamanho do Arquivo 115 KB
Contagem de Instalações 263
Versão Atual 0.5
Última Atualização 2015-09-11
Data de Publicação 2015-09-11
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor ianli-承风
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/ianli-sc/performanceInspector
Idiomas Suportados 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"
    ]
}