Page load time
Displays page load time in the toolbar
What is Page load time?
Page load time is a Chrome extension developed by Alexander Vykhodtsev, and its main feature is "Displays page load time in the toolbar".
Extension Screenshots
Download Page load time Extension CRX File
Download Page load time extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Page load time |
ID | fploionmjgeclbkemipmkogoaohcdbig |
Official URL | https://chromewebstore.google.com/detail/page-load-time/fploionmjgeclbkemipmkogoaohcdbig |
Description | Displays page load time in the toolbar |
File Size | 17.38 KB |
Installation Count | 171,349 |
Current Version | 3.2.1 |
Last Updated | 2021-02-09 |
Publish Date | 2020-11-06 |
Rating | 4.54/5 Total 252 Ratings |
Developer | Alexander Vykhodtsev |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/alex-vv/page-load-time |
Supported Languages | 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" } } |