Server Monitoring
Check whether servers are online or not and get notified via Notification Popups
Was ist Server Monitoring?
Server Monitoring ist eine Chrome-Erweiterung, die von limepix entwickelt wurde, und ihr Hauptmerkmal ist "Check whether servers are online or not and get notified via Notification Popups".
Erweiterungsscreenshots
Server Monitoring-Erweiterungs-CRX-Datei herunterladen
Laden Sie Server Monitoring-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dcfclloijmpaechbnkbkcgfpakhjmoog |
| Offizielle URL | https://chrome.google.com/webstore/detail/server-monitoring/dcfclloijmpaechbnkbkcgfpakhjmoog |
| Beschreibung | Check whether servers are online or not and get notified via Notification Popups |
| Dateigröße | 929 KB |
| Installationsanzahl | 81 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2014-08-06 |
| Veröffentlichungsdatum | 2014-08-06 |
| Entwickler | limepix |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |