Server Monitoring
Check whether servers are online or not and get notified via Notification Popups
Τι είναι το Server Monitoring;
Το Server Monitoring είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον limepix, και η κύρια λειτουργία του είναι "Check whether servers are online or not and get notified via Notification Popups".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Server Monitoring
Λήψη αρχείων επέκτασης Server Monitoring σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | dcfclloijmpaechbnkbkcgfpakhjmoog |
Επίσημο URL | https://chrome.google.com/webstore/detail/server-monitoring/dcfclloijmpaechbnkbkcgfpakhjmoog |
Περιγραφή | Check whether servers are online or not and get notified via Notification Popups |
Μέγεθος Αρχείου | 929 KB |
Αριθμός Εγκαταστάσεων | 81 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2014-08-06 |
Ημερομηνία Δημοσίευσης | 2014-08-06 |
Προγραμματιστής | limepix |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |