Page load time

Displays page load time in the toolbar

Page load time क्या है?

Page load time Alexander Vykhodtsev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays page load time in the toolbar"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Page load time एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension measures page load time and displays it in the toolbar. Navigation Timing API is used for precise measurement.


Source code available at 
https://github.com/alex-vv/page-load-time                    

एक्सटेंशन की मूल जानकारी

नाम Page load time Page load time
ID fploionmjgeclbkemipmkogoaohcdbig
आधिकारिक URL https://chromewebstore.google.com/detail/page-load-time/fploionmjgeclbkemipmkogoaohcdbig
विवरण Displays page load time in the toolbar
फ़ाइल का आकार 17.38 KB
स्थापना संख्या 171,349
वर्तमान संस्करण 3.2.1
अंतिम अपडेट 2021-02-09
प्रकाशन तिथि 2020-11-06
रेटिंग 4.54/5 कुल 252 रेटिंग्स
डेवलपर Alexander Vykhodtsev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/alex-vv/page-load-time
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page load time",
    "version": "3.2.1",
    "manifest_version": 2,
    "description": "Displays page load time in the toolbar",
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "stopwatch22.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "performance.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "stopwatch16.png",
        "48": "stopwatch48.png",
        "128": "stopwatch128.png"
    }
}