New Relic Notifier

Notifies when new items occur in New Relic RSS feed.

Cos'è New Relic Notifier?

New Relic Notifier è un'estensione di Chrome sviluppata da Daniel Lucks, e la sua funzione principale è "Notifies when new items occur in New Relic RSS feed.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione New Relic Notifier

Scarica i file di estensione New Relic Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome New Relic Notifier New Relic Notifier
ID obfjgjggbmpecgfjloecpgemjehnldgk
URL Ufficiale https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk
Descrizione Notifies when new items occur in New Relic RSS feed.
Dimensione del File 28.15 KB
Conteggio Installazioni 80
Versione Corrente 0.0.0.1
Ultimo Aggiornamento 2014-04-01
Data di Pubblicazione 2014-04-01
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore Daniel Lucks
Tipo di Pagamento free
Lingue Supportate 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"
    }
}