Loading Timer

Check loading time of any page!

Loading Timer란 무엇입니까?

Loading Timer은(는) chack2workspace에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check loading time of any page!"입니다.

확장 프로그램 스크린샷

screenshot

Loading Timer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
            ]
        }
    ]
}