New Relic Notifier

Notifies when new items occur in New Relic RSS feed.

Co to jest New Relic Notifier?

New Relic Notifier to rozszerzenie Chrome opracowane przez Daniel Lucks, a jego główną funkcją jest „Notifies when new items occur in New Relic RSS feed.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia New Relic Notifier

Pobierz pliki rozszerzeń New Relic Notifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa New Relic Notifier New Relic Notifier
ID obfjgjggbmpecgfjloecpgemjehnldgk
Oficjalny URL https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk
Opis Notifies when new items occur in New Relic RSS feed.
Rozmiar pliku 28.15 KB
Liczba instalacji 80
Aktualna Wersja 0.0.0.1
Ostatnia Aktualizacja 2014-04-01
Data Publikacji 2014-04-01
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper Daniel Lucks
Typ Płatności free
Obsługiwane Języki 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"
    }
}