Page load time
Displays page load time in the toolbar
什么是Page load time?
Page load time是由Alexander Vykhodtsev开发的Chrome扩展程序,该扩展的主要功能是“Displays page load time in the toolbar”。
扩展截图
下载Page load time扩展crx文件
下载Page load time扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension measures page load time and displays it in the toolbar. Navigation Timing API is used for precise measurement.
Source code available at
https://github.com/alex-vv/page-load-time 扩展基本信息
| 名称 | |
| ID | fploionmjgeclbkemipmkogoaohcdbig |
| 官方URL | https://chromewebstore.google.com/detail/page-load-time/fploionmjgeclbkemipmkogoaohcdbig |
| 简介 | Displays page load time in the toolbar |
| 文件大小 | 17.38 KB |
| 安装次数 | 171,349 |
| 当前版本 | 3.2.1 |
| 更新时间 | 2021-02-09 |
| 上架时间 | 2020-11-06 |
| 评分 | 4.54/5 共252次评分 |
| 开发者 | Alexander Vykhodtsev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/alex-vv/page-load-time |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Page load time",
"version": "3.2.1",
"manifest_version": 2,
"description": "Displays page load time in the toolbar",
"background": {
"scripts": [
"browser-polyfill.min.js",
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "stopwatch22.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"browser-polyfill.min.js",
"performance.js"
]
}
],
"permissions": [
"activeTab",
"storage"
],
"icons": {
"16": "stopwatch16.png",
"48": "stopwatch48.png",
"128": "stopwatch128.png"
}
} | |