PagerDuty Notifier
Desktop notifications for your PagerDuty incidents.
什么是PagerDuty Notifier?
PagerDuty Notifier是由Rich Adams开发的Chrome扩展程序,该扩展的主要功能是“Desktop notifications for your PagerDuty incidents.”。
扩展截图
下载PagerDuty Notifier扩展crx文件
下载PagerDuty Notifier扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |