Page load time

Displays page load time in the toolbar

Page load time là gì?

Page load time là một tiện ích mở rộng Chrome được phát triển bởi Alexander Vykhodtsev, và tính năng chính của nó là "Displays page load time in the toolbar".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Page load time 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 measures page load time and displays it in the toolbar. Navigation Timing API is used for precise measurement.


Source code available at 
https://github.com/alex-vv/page-load-time                    

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

Tên Page load time Page load time
ID fploionmjgeclbkemipmkogoaohcdbig
URL Chính Thức https://chromewebstore.google.com/detail/page-load-time/fploionmjgeclbkemipmkogoaohcdbig
Mô tả Displays page load time in the toolbar
Kích Thước Tệp 17.38 KB
Số Lần Cài Đặt 171,349
Phiên Bản Hiện Tại 3.2.1
Cập Nhật Lần Cuối 2021-02-09
Ngày Phát Hành 2020-11-06
Đánh Giá 4.54/5 Tổng số 252 Đánh Giá
Nhà Phát Triển Alexander Vykhodtsev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alex-vv/page-load-time
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page load time",
    "version": "3.2.1",
    "manifest_version": 2,
    "description": "Displays page load time in the toolbar",
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "stopwatch22.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "performance.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "stopwatch16.png",
        "48": "stopwatch48.png",
        "128": "stopwatch128.png"
    }
}