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”。
擴展截圖
下載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 擴展基本資訊
| 名稱 | |
| ID | bgomfgoppmhcminmdojjeejheppadagh |
| 官方網址 | 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"
]
} | |