Network Information
Useful information about your system's connection including, type, speed, and rtt.
Network Informationคืออะไร?
Network Information เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Keller และคุณลักษณะหลักของมันคือ "Useful information about your system's connection including, type, speed, and rtt."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Network Information
ดาวน์โหลดไฟล์ส่วนขยาย Network Information ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Network Information is an extension that provides information about your system's connection. It is working based on a new JavaScript API called "navigator.connection". When you open the toolbar popup UI, there is a big speed gauge at the top center which shows the "downlink" speed for your browser. This speed refers to the estimated bandwidth in megabits per second (not related to the current internet speed). Other metrics for the network information API are connection type and round trip time (rtt). There is a reload button at the top right corner of the screen which is for reloading the app UI. There is also a wifi icon at the middle right section of the screen which shows the online or offline status of your browser. If you found a bug to report, or have a feature request in mind, please fill the bug report form in the add-on's homepage (https://mybrowseraddon.com/network-information.html).
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Network Information |
ID | aplgkncdgdlldhcghahpnlkokohpinfg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/network-information/aplgkncdgdlldhcghahpnlkokohpinfg |
คำอธิบาย | Useful information about your system's connection including, type, speed, and rtt. |
ขนาดไฟล์ | 32.41 KB |
จำนวนการติดตั้ง | 1,974 |
เวอร์ชันปัจจุบัน | 0.1.2 |
อัปเดตครั้งล่าสุด | 2023-11-06 |
วันที่เผยแพร่ | 2019-12-09 |
คะแนน | 4.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Keller |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://mybrowseraddon.com/network-information.html |
URL หน้าช่วยเหลือ | https://mybrowseraddon.com/network-information.html |
URL หน้านโยบายความเป็นส่วนตัว | https://mybrowseraddon.com/privacy-policy/keller.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.2", "manifest_version": 3, "offline_enabled": true, "permissions": [ "storage" ], "name": "Network Information", "homepage_url": "https:\/\/mybrowseraddon.com\/network-information.html", "description": "Useful information about your system's connection including, type, speed, and rtt.", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Network Information", "default_popup": "data\/interface\/index.html?popup", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |