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 هو إضافة Chrome تم تطويرها بواسطة Ryan Nixon Salim، والميزة الرئيسية لها هي "Extension to show web performance with budget capability (Speed index, DOMContentLoaded, Time to first byte)".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Layar Web Performance Budget

قم بتنزيل ملفات الامتداد Layar Web Performance Budget بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    ]
}