Layar Web Performance Budget

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

Co je Layar Web Performance Budget?

Layar Web Performance Budget je rozšíření Chrome vyvinuté Ryan Nixon Salim, a jeho hlavní funkcí je „Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Layar Web Performance Budget

Stáhněte si soubory rozšíření Layar Web Performance Budget ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Layar Web Performance Budget Layar Web Performance Budget
ID ekcelkelcighgiibhhibcpaofgadbgek
Oficiální URL https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek
Popis Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Velikost souboru 33.16 KB
Počet instalací 40
Aktuální Verze 1.1
Poslední Aktualizace 2017-05-04
Datum Vydání 2017-05-03
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář Ryan Nixon Salim
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/drgx/layar-chrome-extention
URL Stránky Nápovědy https://github.com/drgx/layar-chrome-extention/issues
Podporované Jazyky 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"
    ]
}