New Relic Notifier
Notifies when new items occur in New Relic RSS feed.
Τι είναι το New Relic Notifier;
Το New Relic Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Daniel Lucks, και η κύρια λειτουργία του είναι "Notifies when new items occur in New Relic RSS feed.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης New Relic Notifier
Λήψη αρχείων επέκτασης New Relic Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension will notify you via desktop notification when new items occur in New Relic RSS feed for application and system monitoring. After installing this extension go to the New Relic monitoring website (https://rpm.newrelic.com) and log in. In the application overview you will see a new link "[Add to Notifier]" next to the RSS icon (upper right area). Click it to add this RSS feed to the "New Relic Notifier". Every time you enable this extension by clicking the icon in the browser bar (enabled-state is indicated by a green "on" label), all feed items of the last 12 hours will appear as notifications. After that, only new items in this feed will show up.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | obfjgjggbmpecgfjloecpgemjehnldgk |
Επίσημο URL | https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk |
Περιγραφή | Notifies when new items occur in New Relic RSS feed. |
Μέγεθος Αρχείου | 28.15 KB |
Αριθμός Εγκαταστάσεων | 80 |
Τρέχουσα Έκδοση | 0.0.0.1 |
Τελευταία Ενημέρωση | 2014-04-01 |
Ημερομηνία Δημοσίευσης | 2014-04-01 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Daniel Lucks |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "New Relic Notifier", "short_name": "NRN", "description": "Notifies when new items occur in New Relic RSS feed.", "version": "0.0.0.1", "permissions": [ "notifications", "tabs", "http:\/\/rpm.newrelic.com\/*", "https:\/\/rpm.newrelic.com\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/rpm.newrelic.com\/*", "https:\/\/rpm.newrelic.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "css": [ "nrn.css" ] } ], "browser_action": { "default_icon": "icon-browserbar.png", "default_title": "Click to on\/off this extension" } } |