New Relic Notifier

Notifies when new items occur in New Relic RSS feed.

Was ist New Relic Notifier?

New Relic Notifier ist eine Chrome-Erweiterung, die von Daniel Lucks entwickelt wurde, und ihr Hauptmerkmal ist "Notifies when new items occur in New Relic RSS feed.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

New Relic Notifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie New Relic Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name New Relic Notifier New Relic Notifier
ID obfjgjggbmpecgfjloecpgemjehnldgk
Offizielle URL https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk
Beschreibung Notifies when new items occur in New Relic RSS feed.
Dateigröße 28.15 KB
Installationsanzahl 80
Aktuelle Version 0.0.0.1
Letztes Update 2014-04-01
Veröffentlichungsdatum 2014-04-01
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Daniel Lucks
Zahlungsart free
Unterstützte Sprachen 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"
    }
}