New Relic Notifier
Notifies when new items occur in New Relic RSS feed.
Qu'est-ce que New Relic Notifier ?
New Relic Notifier est une extension Chrome développée par Daniel Lucks, et sa fonction principale est "Notifies when new items occur in New Relic RSS feed.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension New Relic Notifier
Téléchargez les fichiers d'extension New Relic Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | obfjgjggbmpecgfjloecpgemjehnldgk |
URL Officiel | https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk |
Description | Notifies when new items occur in New Relic RSS feed. |
Taille du Fichier | 28.15 KB |
Nombre d'Installations | 80 |
Version Actuelle | 0.0.0.1 |
Dernière Mise à Jour | 2014-04-01 |
Date de Publication | 2014-04-01 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | Daniel Lucks |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |