ResponseTime Monitor

Shows the response times of up to three webservers. Useful to see how the internet/server connection performs.

ResponseTime Monitor क्या है?

ResponseTime Monitor Patrick Brunner द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows the response times of up to three webservers. Useful to see how the internet/server connection performs."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        What can I do with this extension?
Basically this extension shows you the response time of a webserver and draws a nice chart.

What can I do with this information?
You can see how your internet connection performs or how fast your own webserver responds.

What does the chart show?
It shows the last 31 response times. Higher bars mean higher response times. If the request timed out it shows a red bar.

How can I interpret these response times?
If the bars are about the same height it is a sign for a healthy internet connection/server load. If there are red lines and blue lines mixed up or the chart is very volatile your internet connection is unstable or the server is overloaded. If it shows only red something is terribly wrong ...

Why does this need permission to "Your data on all websites"?
To perform checks to a user specific URL it is required that the extension can send requests to 'all websites'.                    

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

नाम ResponseTime Monitor ResponseTime Monitor
ID bjgaobjkcmihhaiihefopfinhjaghfce
आधिकारिक URL https://chromewebstore.google.com/detail/responsetime-monitor/bjgaobjkcmihhaiihefopfinhjaghfce
विवरण Shows the response times of up to three webservers. Useful to see how the internet/server connection performs.
फ़ाइल का आकार 49.63 KB
स्थापना संख्या 3,473
वर्तमान संस्करण 2.0
अंतिम अपडेट 2020-03-15
प्रकाशन तिथि 2020-03-15
रेटिंग 4.42/5 कुल 19 रेटिंग्स
डेवलपर Patrick Brunner
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ResponseTime Monitor",
    "short_name": "ResponseTime",
    "manifest_version": 2,
    "version": "2.0",
    "description": "Shows the response times of up to three webservers. Useful to see how the internet\/server connection performs.",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "browser_action": {
        "default_icon": "img\/loading.png",
        "default_title": "Please wait ...",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/www.google.com\/images\/*",
        "notifications"
    ],
    "optional_permissions": [
        ""
    ],
    "options_page": "options.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}