Layar Web Performance Budget

Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)

Layar Web Performance Budget là gì?

Layar Web Performance Budget là một tiện ích mở rộng Chrome được phát triển bởi Ryan Nixon Salim, và tính năng chính của nó là "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".

Ả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 Layar Web Performance Budget

Tải xuống các tệp mở rộng Layar Web Performance Budget 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

                        Layar Performence budget is showing your website performance ( RUM Speed Index, DOMContentLoaded and TTFB) with budget capability. This extension will help you when develop website so you can improve your web speed. Happy tweaking!                    

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

Tên Layar Web Performance Budget Layar Web Performance Budget
ID ekcelkelcighgiibhhibcpaofgadbgek
URL Chính Thức https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek
Mô tả Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Kích Thước Tệp 33.16 KB
Số Lần Cài Đặt 40
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-05-04
Ngày Phát Hành 2017-05-03
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Ryan Nixon Salim
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/drgx/layar-chrome-extention
URL Trang Trợ Giúp https://github.com/drgx/layar-chrome-extention/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Layar Web Performance Budget",
    "short_name": "Layar",
    "description": "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon\/layar-black.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon\/layar-black.png",
        "48": "icon\/layar-black.png",
        "128": "icon\/layar-black.png"
    },
    "web_accessible_resources": [
        "svg\/arrow.svg"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "javascripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "css\/style.css"
            ],
            "js": [
                "javascripts\/rum-speedindex.js",
                "javascripts\/main.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ]
}