Performance inspector
This extension allow user to inspect performance of current page easily
Performance inspector là gì?
Performance inspector là một tiện ích mở rộng Chrome được phát triển bởi ianli-承风, và tính năng chính của nó là "This extension allow user to inspect performance of current page easily".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Performance inspector
Tải xuống các tệp mở rộng Performance inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bgomfgoppmhcminmdojjeejheppadagh |
URL Chính Thức | https://chrome.google.com/webstore/detail/performance-inspector/bgomfgoppmhcminmdojjeejheppadagh |
Mô tả | This extension allow user to inspect performance of current page easily |
Kích Thước Tệp | 115 KB |
Số Lần Cài Đặt | 263 |
Phiên Bản Hiện Tại | 0.5 |
Cập Nhật Lần Cuối | 2015-09-11 |
Ngày Phát Hành | 2015-09-11 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | ianli-承风 |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/ianli-sc/performanceInspector |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |