Status Monitor for Google Wifi & OnHub

Monitor the connectivity of your Google OnHub / Wifi router & report any network changes. By Nick Semenkovich

Status Monitor for Google Wifi & OnHubคืออะไร?

Status Monitor for Google Wifi & OnHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://semenkovich.com และคุณลักษณะหลักของมันคือ "Monitor the connectivity of your Google OnHub / Wifi router & report any network changes. By Nick Semenkovich "

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Status Monitor for Google Wifi & OnHub

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

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

                        An extension to monitor the network staus of your Google Wifi (or OnHub) router, checking for connectivity, uptime, changes in WAN IP, and more.

This polls the status API (generally at http://testwifi.here/api/v1/status) every minute upon startup.

The following changes are detected:
- Loss of internet connection
- Software update available/applied
- Uptime changes
- Link state changes
- WAN IP / DNS changes

Notifications are provided via the Notifications API, and can be configured in the extension options.

By Nick Semenkovich 

======== CODE ========
Please contribute! https://github.com/semenko/chrome-limit-history-lifetime

Copyright 2019, Nick Semenkovich 

Released under the MIT License. See LICENSE for details.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Status Monitor for Google Wifi & OnHub Status Monitor for Google Wifi & OnHub
ID amemccpljobdbgofeleoapbbdomodhpp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/status-monitor-for-google/amemccpljobdbgofeleoapbbdomodhpp
คำอธิบาย Monitor the connectivity of your Google OnHub / Wifi router & report any network changes. By Nick Semenkovich
ขนาดไฟล์ 63.31 KB
จำนวนการติดตั้ง 1,216
เวอร์ชันปัจจุบัน 2018.01.28
อัปเดตครั้งล่าสุด 2019-01-31
วันที่เผยแพร่ 2019-01-30
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://semenkovich.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/semenko/chrome-status-monitor-for-google-wifi
URL หน้าช่วยเหลือ https://github.com/semenko/chrome-status-monitor-for-google-wifi/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Status Monitor for Google Wifi & OnHub",
    "version": "2018.01.28",
    "manifest_version": 2,
    "description": "Monitor the connectivity of your Google OnHub \/ Wifi router & report any network changes. By Nick Semenkovich ",
    "homepage_url": "https:\/\/github.com\/semenko\/chrome-status-monitor-for-google-wifi",
    "icons": {
        "16": "icons\/antenna-16.png",
        "48": "icons\/antenna-48.png",
        "128": "icons\/antenna-128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": false
    },
    "options_ui": {
        "page": "src\/options\/options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_icon": "icons\/antenna-19.png",
        "default_title": "Connecting to router...",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "alarms",
        "notifications",
        "storage",
        "*:\/\/onhub.here\/*",
        "*:\/\/testwifi.here\/*"
    ]
}