PageLoad times

Page Load Times

PageLoad times क्या है?

PageLoad times avinash24.p द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Page Load Times"।

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

screenshot

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

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

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

                        This Extension gives the fully loaded time. When the processing of the page is complete and all the resources on the page (images, CSS, etc.) have finished downloading. The browser will trigger window.onload when this occurs.


Updates:

-New icon notifications for optimum page loads
-Green icon for <3
-Yellow icon for >3 and <5
-Red icon for >5 to display very high page load                    

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

नाम PageLoad times PageLoad times
ID lglmeekjblljbeemilnpakfhgaodnpik
आधिकारिक URL https://chromewebstore.google.com/detail/pageload-times/lglmeekjblljbeemilnpakfhgaodnpik
विवरण Page Load Times
फ़ाइल का आकार 49.39 KB
स्थापना संख्या 2,818
वर्तमान संस्करण 2.0
अंतिम अपडेट 2022-01-24
प्रकाशन तिथि 2019-11-10
रेटिंग 4.73/5 कुल 15 रेटिंग्स
डेवलपर avinash24.p
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PageLoad times",
    "description": "Page Load Times",
    "version": "2.0",
    "browser_action": {
        "default_icon": "images\/icons\/grey.png",
        "default_title": "Fully Loaded Time"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/icons\/16.png",
        "19": "images\/icons\/19.png",
        "38": "images\/icons\/38.png",
        "64": "images\/icons\/64.png",
        "128": "images\/icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_start"
        }
    ]
}