Server Monitoring
Check whether servers are online or not and get notified via Notification Popups
Vad är Server Monitoring?
Server Monitoring är en Chrome-tillägg utvecklad av limepix, och dess huvudfunktion är "Check whether servers are online or not and get notified via Notification Popups".
Tilläggsskärmbilder
Ladda ner Server Monitoring-förlängningens CRX-fil
Ladda ner Server Monitoring-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | dcfclloijmpaechbnkbkcgfpakhjmoog |
Officiell webbadress | https://chrome.google.com/webstore/detail/server-monitoring/dcfclloijmpaechbnkbkcgfpakhjmoog |
Beskrivning | Check whether servers are online or not and get notified via Notification Popups |
Filstorlek | 929 KB |
Antal Installationer | 81 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2014-08-06 |
Publiceringsdatum | 2014-08-06 |
Utvecklare | limepix |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |