New Relic Notifier

Notifies when new items occur in New Relic RSS feed.

New Relic Notifierとは何ですか?

New Relic NotifierはDaniel Lucksによって開発されたChromeの拡張機能で、その主な機能は「Notifies when new items occur in New Relic RSS feed.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

New Relic Notifier拡張機能のCRXファイルをダウンロード

New Relic Notifier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 New Relic Notifier New Relic Notifier
ID obfjgjggbmpecgfjloecpgemjehnldgk
公式URL https://chrome.google.com/webstore/detail/new-relic-notifier/obfjgjggbmpecgfjloecpgemjehnldgk
説明 Notifies when new items occur in New Relic RSS feed.
ファイルサイズ 28.15 KB
インストール数 80
現在のバージョン 0.0.0.1
最終更新日 2014-04-01
公開日 2014-04-01
評価 3.00/5 合計 2 レビュー
開発者 Daniel Lucks
支払い方法 free
対応言語 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"
    }
}