New Relic Notifier
Notifies when new items occur in New Relic RSS feed.
O que é New Relic Notifier?
New Relic Notifier é uma extensão do Chrome desenvolvida por Daniel Lucks, e sua principal característica é "Notifies when new items occur in New Relic RSS feed.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão New Relic Notifier
Baixe arquivos de extensão New Relic Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | obfjgjggbmpecgfjloecpgemjehnldgk |
URL Oficial | https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk |
Descrição | Notifies when new items occur in New Relic RSS feed. |
Tamanho do Arquivo | 28.15 KB |
Contagem de Instalações | 80 |
Versão Atual | 0.0.0.1 |
Última Atualização | 2014-04-01 |
Data de Publicação | 2014-04-01 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | Daniel Lucks |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |