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."입니다.
확장 프로그램 스크린샷
New Relic Notifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
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" } } |