Loading Timer
Check loading time of any page!
What is Loading Timer?
Loading Timer is a Chrome extension developed by chack2workspace, and its main feature is "Check loading time of any page!".
Extension Screenshots
Download Loading Timer Extension CRX File
Download Loading Timer 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
Loading Timer is a browser extension that allows you to easily track the time it takes for a web page to fully load. With just one click, you can see how long it takes for a page to load, giving you insight into the performance of your website and helping you optimize it for faster loading times. This extension is particularly useful for web developers and site owners who want to ensure that their pages are loading as efficiently as possible. It's also a useful tool for anyone who is interested in understanding more about how their browser is performing and how long it takes to load different types of pages. Overall, Loading Timer is a simple, yet powerful tool that can help you get a better understanding of the performance of your website and improve the user experience for your visitors!
Extension Basic Information
Name | |
ID | ninmkdgknbnhahddjcolikjcbeehbjpl |
Official URL | https://chrome.google.com/webstore/detail/loading-timer/ninmkdgknbnhahddjcolikjcbeehbjpl |
Description | Check loading time of any page! |
File Size | 12.57 KB |
Installation Count | 2,918 |
Current Version | 1 |
Last Updated | 2022-12-22 |
Publish Date | 2022-12-22 |
Developer | chack2workspace |
[email protected] | |
Payment Type | free |
Extension Website | https://home.gulletogethere.xyz/ |
Help Page URL | https://home.gulletogethere.xyz/contact.html |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": { "default_icon": "logo.png", "default_title": "Loading Timer", "default_popup": "popup.html" }, "description": "Check loading time of any page!", "icons": { "128": "logo.png" }, "manifest_version": 3, "name": "Loading Timer", "version": "1", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ] } ] } |