Layar Web Performance Budget

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

Was ist Layar Web Performance Budget?

Layar Web Performance Budget ist eine Chrome-Erweiterung, die von Ryan Nixon Salim entwickelt wurde, und ihr Hauptmerkmal ist "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".

Erweiterungsscreenshots

screenshot

Layar Web Performance Budget-Erweiterungs-CRX-Datei herunterladen

Laden Sie Layar Web Performance Budget-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Layar Web Performance Budget Layar Web Performance Budget
ID ekcelkelcighgiibhhibcpaofgadbgek
Offizielle URL https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek
Beschreibung Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Dateigröße 33.16 KB
Installationsanzahl 40
Aktuelle Version 1.1
Letztes Update 2017-05-04
Veröffentlichungsdatum 2017-05-03
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler Ryan Nixon Salim
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/drgx/layar-chrome-extention
Hilfeseite URL https://github.com/drgx/layar-chrome-extention/issues
Unterstützte Sprachen 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"
    ]
}