Layar Web Performance Budget

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

¿Qué es Layar Web Performance Budget?

Layar Web Performance Budget es una extensión de Chrome desarrollada por Ryan Nixon Salim, y su función principal es "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Layar Web Performance Budget

Descarga archivos de extensión Layar Web Performance Budget en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Layar Web Performance Budget Layar Web Performance Budget
ID ekcelkelcighgiibhhibcpaofgadbgek
URL Oficial https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek
Descripción Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Tamaño del Archivo 33.16 KB
Cantidad de Instalaciones 40
Versión Actual 1.1
Última Actualización 2017-05-04
Fecha de Publicación 2017-05-03
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador Ryan Nixon Salim
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/drgx/layar-chrome-extention
URL de la Página de Ayuda https://github.com/drgx/layar-chrome-extention/issues
Idiomas Soportados 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"
    ]
}