Server Monitoring

Check whether servers are online or not and get notified via Notification Popups

¿Qué es Server Monitoring?

Server Monitoring es una extensión de Chrome desarrollada por limepix, y su función principal es "Check whether servers are online or not and get notified via Notification Popups".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Server Monitoring

Descarga archivos de extensión Server Monitoring en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Server Monitoring is a simple to use Chrome Extension that monitors your server. All checks are mare completely on the client-side (in your browser) via JavaScript. 

Checks are made every ten seconds. 

If a server is not reachable for five times, you will receive a notification popup.

Enjoy and feel free to contact me for bugs or improvement ideas.                    

Información Básica de la Extensión

Nombre Server Monitoring Server Monitoring
ID dcfclloijmpaechbnkbkcgfpakhjmoog
URL Oficial https://chrome.google.com/webstore/detail/server-monitoring/dcfclloijmpaechbnkbkcgfpakhjmoog
Descripción Check whether servers are online or not and get notified via Notification Popups
Tamaño del Archivo 929 KB
Cantidad de Instalaciones 81
Versión Actual 1.1
Última Actualización 2014-08-06
Fecha de Publicación 2014-08-06
Desarrollador limepix
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Server Monitoring",
    "short_name": "Server Monitoring",
    "description": "Check whether servers are online or not and get notified via Notification Popups",
    "version": "1.1",
    "permissions": [
        "webRequest",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "notifications",
        "tabs"
    ],
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/base.js",
            "js\/popup.js",
            "js\/background.js",
            "js\/moment.min.js"
        ]
    },
    "options_page": "html\/options.html",
    "browser_action": {
        "default_icon": {
            "19": "images\/logo_19.png",
            "38": "images\/logo_38.png",
            "48": "images\/logo_48.png"
        },
        "default_title": "Server Monitor",
        "default_popup": "html\/popup.html"
    }
}