Layar Web Performance Budget

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

Cos'è Layar Web Performance Budget?

Layar Web Performance Budget è un'estensione di Chrome sviluppata da Ryan Nixon Salim, e la sua funzione principale è "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Layar Web Performance Budget

Scarica i file di estensione Layar Web Performance Budget in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Layar Web Performance Budget Layar Web Performance Budget
ID ekcelkelcighgiibhhibcpaofgadbgek
URL Ufficiale https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek
Descrizione Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Dimensione del File 33.16 KB
Conteggio Installazioni 40
Versione Corrente 1.1
Ultimo Aggiornamento 2017-05-04
Data di Pubblicazione 2017-05-03
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Ryan Nixon Salim
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/drgx/layar-chrome-extention
URL della Pagina di Aiuto https://github.com/drgx/layar-chrome-extention/issues
Lingue Supportate 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"
    ]
}