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 là gì?

Status Monitor for Google Wifi & OnHub là một tiện ích mở rộng Chrome được phát triển bởi https://semenkovich.com, và tính năng chính của nó là "Monitor the connectivity of your Google OnHub / Wifi router & report any network changes. By Nick Semenkovich ".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Status Monitor for Google Wifi & OnHub

Tải xuống các tệp mở rộng Status Monitor for Google Wifi & OnHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Status Monitor for Google Wifi & OnHub Status Monitor for Google Wifi & OnHub
ID amemccpljobdbgofeleoapbbdomodhpp
URL Chính Thức https://chromewebstore.google.com/detail/status-monitor-for-google/amemccpljobdbgofeleoapbbdomodhpp
Mô tả Monitor the connectivity of your Google OnHub / Wifi router & report any network changes. By Nick Semenkovich
Kích Thước Tệp 63.31 KB
Số Lần Cài Đặt 1,216
Phiên Bản Hiện Tại 2018.01.28
Cập Nhật Lần Cuối 2019-01-31
Ngày Phát Hành 2019-01-30
Đánh Giá 4.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://semenkovich.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/semenko/chrome-status-monitor-for-google-wifi
URL Trang Trợ Giúp https://github.com/semenko/chrome-status-monitor-for-google-wifi/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}