PagerDuty Notifier
Desktop notifications for your PagerDuty incidents.
PagerDuty Notifier là gì?
PagerDuty Notifier là một tiện ích mở rộng Chrome được phát triển bởi Rich Adams, và tính năng chính của nó là "Desktop notifications for your PagerDuty incidents.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PagerDuty Notifier
Tải xuống các tệp mở rộng PagerDuty Notifier dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PagerDuty Notifier |
ID | bcmhejapohpmhgnpidaeiaedackacelm |
URL Chính Thức | https://chromewebstore.google.com/detail/pagerduty-notifier/bcmhejapohpmhgnpidaeiaedackacelm |
Mô tả | Desktop notifications for your PagerDuty incidents. |
Kích Thước Tệp | 42.9 KB |
Số Lần Cài Đặt | 3,306 |
Phiên Bản Hiện Tại | 0.23 |
Cập Nhật Lần Cuối | 2020-06-03 |
Ngày Phát Hành | 2020-06-02 |
Đánh Giá | 4.00/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | Rich Adams |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/PagerDuty/chrome-notifier |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |