ResponseTime Monitor

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

ResponseTime Monitorคืออะไร?

ResponseTime Monitor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย ResponseTime Monitor

ดาวน์โหลดไฟล์ส่วนขยาย ResponseTime Monitor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        ]
    }
}