Loading Timer

Check loading time of any page!

什麼是Loading Timer?

Loading Timer是由chack2workspace開發的Chrome擴展程式,該擴展的主要功能是“Check loading time of any page!”。

擴展截圖

screenshot

下載Loading Timer擴展crx文件

下載Loading Timer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Loading Timer Loading Timer
ID ninmkdgknbnhahddjcolikjcbeehbjpl
官方網址 https://chrome.google.com/webstore/detail/loading-timer/ninmkdgknbnhahddjcolikjcbeehbjpl
簡介 Check loading time of any page!
檔案大小 12.57 KB
安裝次數 2,918
目前版本 1
更新時間 2022-12-22
上架時間 2022-12-22
開發者 chack2workspace
電子郵箱 [email protected]
付費類型 free
擴展官網 https://home.gulletogethere.xyz/
說明頁面URL https://home.gulletogethere.xyz/contact.html
支援的語言 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"
            ]
        }
    ]
}