Status Monitor for Google Wifi & OnHub

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

Qu'est-ce que Status Monitor for Google Wifi & OnHub ?

Status Monitor for Google Wifi & OnHub est une extension Chrome développée par https://semenkovich.com, et sa fonction principale est "Monitor the connectivity of your Google OnHub / Wifi router & report any network changes. By Nick Semenkovich ".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Status Monitor for Google Wifi & OnHub

Téléchargez les fichiers d'extension Status Monitor for Google Wifi & OnHub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Status Monitor for Google Wifi & OnHub Status Monitor for Google Wifi & OnHub
ID amemccpljobdbgofeleoapbbdomodhpp
URL Officiel https://chromewebstore.google.com/detail/status-monitor-for-google/amemccpljobdbgofeleoapbbdomodhpp
Description Monitor the connectivity of your Google OnHub / Wifi router & report any network changes. By Nick Semenkovich
Taille du Fichier 63.31 KB
Nombre d'Installations 1,216
Version Actuelle 2018.01.28
Dernière Mise à Jour 2019-01-31
Date de Publication 2019-01-30
Évaluation 4.50/5 Total 4 Évaluations
Développeur https://semenkovich.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/semenko/chrome-status-monitor-for-google-wifi
URL de la Page d'Aide https://github.com/semenko/chrome-status-monitor-for-google-wifi/issues
Langues Prises en Charge 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\/*"
    ]
}