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"
    }
}