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은(는) https://semenkovich.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Monitor the connectivity of your Google OnHub / Wifi router & report any network changes. By Nick Semenkovich "입니다.

확장 프로그램 스크린샷

screenshot

Status Monitor for Google Wifi & OnHub 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}