Layar Web Performance Budget

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

什么是Layar Web Performance Budget?

Layar Web Performance Budget是由Ryan Nixon Salim开发的Chrome扩展程序,该扩展的主要功能是“Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)”。

扩展截图

screenshot

下载Layar Web Performance Budget扩展crx文件

下载Layar Web Performance Budget扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Layar Web Performance Budget Layar Web Performance Budget
ID ekcelkelcighgiibhhibcpaofgadbgek
官方URL https://chromewebstore.google.com/detail/layar-web-performance-bud/ekcelkelcighgiibhhibcpaofgadbgek
简介 Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)
文件大小 33.16 KB
安装次数 40
当前版本 1.1
更新时间 2017-05-04
上架时间 2017-05-03
评分 4.00/5 共1次评分
开发者 Ryan Nixon Salim
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/drgx/layar-chrome-extention
帮助页面URL https://github.com/drgx/layar-chrome-extention/issues
支持的语言 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"
    ]
}