Layar Web Performance Budget

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

Apa itu Layar Web Performance Budget?

Layar Web Performance Budget adalah ekstensi Chrome yang dikembangkan oleh Ryan Nixon Salim, dan fitur utamanya adalah "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Layar Web Performance Budget

Unduh file ekstensi Layar Web Performance Budget dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Layar Web Performance Budget Layar Web Performance Budget
ID ekcelkelcighgiibhhibcpaofgadbgek
URL Resmi https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek
Deskripsi Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Ukuran File 33.16 KB
Jumlah Instalasi 40
Versi Saat Ini 1.1
Terakhir Diperbarui 2017-05-04
Tanggal Publikasi 2017-05-03
Penilaian 4.00/5 Total 1 Penilaian
Pengembang Ryan Nixon Salim
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/drgx/layar-chrome-extention
URL Halaman Bantuan https://github.com/drgx/layar-chrome-extention/issues
Bahasa yang Didukung 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"
    ]
}