Layar Web Performance Budget

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

Wat is Layar Web Performance Budget?

Layar Web Performance Budget is een Chrome-extensie ontwikkeld door Ryan Nixon Salim, en de belangrijkste functie is "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Layar Web Performance Budget

Download Layar Web Performance Budget-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Layar Web Performance Budget Layar Web Performance Budget
ID ekcelkelcighgiibhhibcpaofgadbgek
Officiële URL https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek
Beschrijving Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
Bestandsgrootte 33.16 KB
Aantal Installaties 40
Huidige Versie 1.1
Laatst Bijgewerkt 2017-05-04
Publicatiedatum 2017-05-03
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Ryan Nixon Salim
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/drgx/layar-chrome-extention
Help Pagina-URL https://github.com/drgx/layar-chrome-extention/issues
Ondersteunde Talen 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"
    ]
}