PagerDuty Notifier
Desktop notifications for your PagerDuty incidents.
ما هو PagerDuty Notifier؟
PagerDuty Notifier هو إضافة Chrome تم تطويرها بواسطة Rich Adams، والميزة الرئيسية لها هي "Desktop notifications for your PagerDuty incidents.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة PagerDuty Notifier
قم بتنزيل ملفات الامتداد PagerDuty Notifier بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" } } |