New Relic Notifier

Notifies when new items occur in New Relic RSS feed.

Co je New Relic Notifier?

New Relic Notifier je rozšíření Chrome vyvinuté Daniel Lucks, a jeho hlavní funkcí je „Notifies when new items occur in New Relic RSS feed.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření New Relic Notifier

Stáhněte si soubory rozšíření New Relic Notifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název New Relic Notifier New Relic Notifier
ID obfjgjggbmpecgfjloecpgemjehnldgk
Oficiální URL https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk
Popis Notifies when new items occur in New Relic RSS feed.
Velikost souboru 28.15 KB
Počet instalací 80
Aktuální Verze 0.0.0.1
Poslední Aktualizace 2014-04-01
Datum Vydání 2014-04-01
Hodnocení 3.00/5 Celkem 2 Hodnocení
Vývojář Daniel Lucks
Typ Platby free
Podporované Jazyky 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"
    }
}