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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}