performance-HTML

This extensions displays some technical and structural performance data of websites.

performance-HTML क्या है?

performance-HTML Daniel Lucks द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extensions displays some technical and structural performance data of websites."।

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

screenshot

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

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

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

                        This extension determines and displays some very useful performance data of websites in a quick and easy way. Just open the website you want to inspect, click the icon in the browser bar and a popup shows up.

The popup will show performance data like: DNS Lookup Time, Network Connection Time, Time to First Byte, Document Ready and Document Complete. It also shows some performance information in terms of the DOM, such as number of external files (Javascript, CSS) or number of DOM elements. And finally there is a panel for memory usage of Javascript execution.

This extension will give you the possibility to get a quick overview of the performance of a website and to compare it with other sites.

Feedback is very welcome! If you have some feedback or ideas for additional information to show in the popup, don't hesitate to contact me.                    

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

नाम performance-HTML performance-HTML
ID ogpakokhpomfmndbddggogokkmcjebpl
आधिकारिक URL https://chromewebstore.google.com/detail/performance-html/ogpakokhpomfmndbddggogokkmcjebpl
विवरण This extensions displays some technical and structural performance data of websites.
फ़ाइल का आकार 19.31 KB
स्थापना संख्या 1,395
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2013-12-30
प्रकाशन तिथि 2013-12-30
रेटिंग 4.38/5 कुल 8 रेटिंग्स
डेवलपर Daniel Lucks
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "performance-HTML",
    "description": "This extensions displays some technical and structural performance data of websites.",
    "version": "0.1.3",
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "browser_action": {
        "default_icon": "images\/icon-24.png",
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}