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
官方網址 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"
    }
}