PagerDuty Notifier
Desktop notifications for your PagerDuty incidents.
PagerDuty Notifier क्या है?
PagerDuty Notifier Rich Adams द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Desktop notifications for your PagerDuty incidents."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PagerDuty Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |