PagerDuty Notifier
Desktop notifications for your PagerDuty incidents.
PagerDuty Notifier란 무엇입니까?
PagerDuty Notifier은(는) Rich Adams에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Desktop notifications for your PagerDuty incidents."입니다.
확장 프로그램 스크린샷
PagerDuty Notifier 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Displays your newly triggered PagerDuty incidents as desktop notifications, allowing you to acknowledge and resolve the incidents directly from the notification. Has options to control which incidents you get notifications for (high vs low urgency, filter by users, filter by services, etc). Note: You should not rely on this as your primary alert mechanism, there are no delivery guarantees with this extension. You are strongly encouraged to add phone and SMS notifications to your PagerDuty profile for maximum alerting reliability.
확장 프로그램 기본 정보
이름 | PagerDuty Notifier |
ID | bcmhejapohpmhgnpidaeiaedackacelm |
공식 URL | https://chromewebstore.google.com/detail/pagerduty-notifier/bcmhejapohpmhgnpidaeiaedackacelm |
설명 | Desktop notifications for your PagerDuty incidents. |
파일 크기 | 42.9 KB |
설치 횟수 | 3,306 |
현재 버전 | 0.23 |
최근 업데이트 | 2020-06-03 |
출시 날짜 | 2020-06-02 |
평점 | 4.00/5 총 10 개의 평점 |
개발자 | Rich Adams |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/PagerDuty/chrome-notifier |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PagerDuty Notifier", "short_name": "PD Notifier", "description": "Desktop notifications for your PagerDuty incidents.", "version": "0.23", "author": "Rich Adams (https:\/\/richadams.me)", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "64": "images\/icon-64.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png" }, "permissions": [ "notifications", "background", "storage", "alarms", "https:\/\/*.pagerduty.com\/api\/v1\/*", "contextMenus" ], "options_ui": { "open_in_tab": true, "page": "options\/options.html" }, "background": { "scripts": [ "lib\/pd-api.js", "background\/pd-notifier.js" ], "persistent": true }, "browser_action": { "default_icon": "images\/browser-icon-32.png" } } |