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
官方網址 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"
    ]
}