PageLoad times

Page Load Times

PageLoad times란 무엇입니까?

PageLoad times은(는) avinash24.p에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Page Load Times"입니다.

확장 프로그램 스크린샷

screenshot

PageLoad times 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This Extension gives the fully loaded time. When the processing of the page is complete and all the resources on the page (images, CSS, etc.) have finished downloading. The browser will trigger window.onload when this occurs.


Updates:

-New icon notifications for optimum page loads
-Green icon for <3
-Yellow icon for >3 and <5
-Red icon for >5 to display very high page load                    

확장 프로그램 기본 정보

이름 PageLoad times PageLoad times
ID lglmeekjblljbeemilnpakfhgaodnpik
공식 URL https://chromewebstore.google.com/detail/pageload-times/lglmeekjblljbeemilnpakfhgaodnpik
설명 Page Load Times
파일 크기 49.39 KB
설치 횟수 2,818
현재 버전 2.0
최근 업데이트 2022-01-24
출시 날짜 2019-11-10
평점 4.73/5 총 15 개의 평점
개발자 avinash24.p
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PageLoad times",
    "description": "Page Load Times",
    "version": "2.0",
    "browser_action": {
        "default_icon": "images\/icons\/grey.png",
        "default_title": "Fully Loaded Time"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/icons\/16.png",
        "19": "images\/icons\/19.png",
        "38": "images\/icons\/38.png",
        "64": "images\/icons\/64.png",
        "128": "images\/icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_start"
        }
    ]
}