PageLoad times

Page Load Times

PageLoad times là gì?

PageLoad times là một tiện ích mở rộng Chrome được phát triển bởi avinash24.p, và tính năng chính của nó là "Page Load Times".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PageLoad times

Tải xuống các tệp mở rộng PageLoad times dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PageLoad times PageLoad times
ID lglmeekjblljbeemilnpakfhgaodnpik
URL Chính Thức https://chromewebstore.google.com/detail/pageload-times/lglmeekjblljbeemilnpakfhgaodnpik
Mô tả Page Load Times
Kích Thước Tệp 49.39 KB
Số Lần Cài Đặt 2,818
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2022-01-24
Ngày Phát Hành 2019-11-10
Đánh Giá 4.73/5 Tổng số 15 Đánh Giá
Nhà Phát Triển avinash24.p
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}