Server Monitoring

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

What is Server Monitoring?

Server Monitoring is a Chrome extension developed by limepix, and its main feature is "Check whether servers are online or not and get notified via Notification Popups".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Server Monitoring Extension CRX File

Download Server Monitoring extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Server Monitoring Server Monitoring
ID dcfclloijmpaechbnkbkcgfpakhjmoog
Official URL https://chrome.google.com/webstore/detail/server-monitoring/dcfclloijmpaechbnkbkcgfpakhjmoog
Description Check whether servers are online or not and get notified via Notification Popups
File Size 929 KB
Installation Count 81
Current Version 1.1
Last Updated 2014-08-06
Publish Date 2014-08-06
Developer limepix
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}