New Relic Notifier

Notifies when new items occur in New Relic RSS feed.

¿Qué es New Relic Notifier?

New Relic Notifier es una extensión de Chrome desarrollada por Daniel Lucks, y su función principal es "Notifies when new items occur in New Relic RSS feed.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión New Relic Notifier

Descarga archivos de extensión New Relic Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre New Relic Notifier New Relic Notifier
ID obfjgjggbmpecgfjloecpgemjehnldgk
URL Oficial https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk
Descripción Notifies when new items occur in New Relic RSS feed.
Tamaño del Archivo 28.15 KB
Cantidad de Instalaciones 80
Versión Actual 0.0.0.1
Última Actualización 2014-04-01
Fecha de Publicación 2014-04-01
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador Daniel Lucks
Tipo de Pago free
Idiomas Soportados 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"
    }
}