Layar Web Performance Budget

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

What is Layar Web Performance Budget?

Layar Web Performance Budget is a Chrome extension developed by Ryan Nixon Salim, and its main feature is "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".

Extension Screenshots

screenshot

Download Layar Web Performance Budget Extension CRX File

Download Layar Web Performance Budget extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Layar Web Performance Budget Layar Web Performance Budget
ID ekcelkelcighgiibhhibcpaofgadbgek
Official URL https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek
Description Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
File Size 33.16 KB
Installation Count 40
Current Version 1.1
Last Updated 2017-05-04
Publish Date 2017-05-03
Rating 4.00/5 Total 1 Ratings
Developer Ryan Nixon Salim
Email [email protected]
Payment Type free
Extension Website https://github.com/drgx/layar-chrome-extention
Help Page URL https://github.com/drgx/layar-chrome-extention/issues
Supported Languages 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"
    ]
}