PageLoad times

Page Load Times

PageLoad timesคืออะไร?

PageLoad times เป็นส่วนขยายของ Chrome ที่พัฒนาโดย avinash24.p และคุณลักษณะหลักของมันคือ "Page Load Times"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PageLoad times

ดาวน์โหลดไฟล์ส่วนขยาย PageLoad times ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}