Server Monitoring
Check whether servers are online or not and get notified via Notification Popups
Cos'è Server Monitoring?
Server Monitoring è un'estensione di Chrome sviluppata da limepix, e la sua funzione principale è "Check whether servers are online or not and get notified via Notification Popups".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Server Monitoring
Scarica i file di estensione Server Monitoring in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | dcfclloijmpaechbnkbkcgfpakhjmoog |
| URL Ufficiale | https://chrome.google.com/webstore/detail/server-monitoring/dcfclloijmpaechbnkbkcgfpakhjmoog |
| Descrizione | Check whether servers are online or not and get notified via Notification Popups |
| Dimensione del File | 929 KB |
| Conteggio Installazioni | 81 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2014-08-06 |
| Data di Pubblicazione | 2014-08-06 |
| Sviluppatore | limepix |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |