performance-HTML
This extensions displays some technical and structural performance data of websites.
什么是performance-HTML?
performance-HTML是由Daniel Lucks开发的Chrome扩展程序,该扩展的主要功能是“This extensions displays some technical and structural performance data of websites.”。
扩展截图
下载performance-HTML扩展crx文件
下载performance-HTML扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension determines and displays some very useful performance data of websites in a quick and easy way. Just open the website you want to inspect, click the icon in the browser bar and a popup shows up. The popup will show performance data like: DNS Lookup Time, Network Connection Time, Time to First Byte, Document Ready and Document Complete. It also shows some performance information in terms of the DOM, such as number of external files (Javascript, CSS) or number of DOM elements. And finally there is a panel for memory usage of Javascript execution. This extension will give you the possibility to get a quick overview of the performance of a website and to compare it with other sites. Feedback is very welcome! If you have some feedback or ideas for additional information to show in the popup, don't hesitate to contact me.
扩展基本信息
名称 | performance-HTML |
ID | ogpakokhpomfmndbddggogokkmcjebpl |
官方URL | https://chromewebstore.google.com/detail/performance-html/ogpakokhpomfmndbddggogokkmcjebpl |
简介 | This extensions displays some technical and structural performance data of websites. |
文件大小 | 19.31 KB |
安装次数 | 1,395 |
当前版本 | 0.1.3 |
更新时间 | 2013-12-30 |
上架时间 | 2013-12-30 |
评分 | 4.38/5 共8次评分 |
开发者 | Daniel Lucks |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "performance-HTML", "description": "This extensions displays some technical and structural performance data of websites.", "version": "0.1.3", "permissions": [ "tabs", "*:\/\/*\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "browser_action": { "default_icon": "images\/icon-24.png", "default_popup": "popup\/index.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } } |