Opsgenie Alert Notifier
An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API.
Τι είναι το Opsgenie Alert Notifier;
Το Opsgenie Alert Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cem Kucuk, και η κύρια λειτουργία του είναι "An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Opsgenie Alert Notifier
Λήψη αρχείων επέκτασης Opsgenie Alert Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Opsgenie Alert Notifier is an extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API's List Alert endpoint. Configurations: * Select Opsgenie region: US or EU * Set API Key from your Opsgenie account which should have READ access * Set Time Interval for polling Rest API, keep in mind your rates * Put down your Alert Query (About: https://docs.opsgenie.com/docs/alerts-search-query-help) Extension Popup view: * Check your latest alerts by clicking Opsgenie logo on browser's extensions section * See count of alerts on icon's badge (max limit is 100) * Check for error messages if any Notifications: * If you have new notifications after new request to REST API, you will get browser notification. * If there is one, you can access that notification via clicking it. * If more than one, you can see list of them (not supported for MacOS because of OS limitations) CAUTION: For using this extension, you should have an active Opsgenie account Source: https://github.com/cemkucuk/opsgenie-chrome-extension
Βασικές Πληροφορίες Επέκτασης
Όνομα | Opsgenie Alert Notifier |
ID | eibhldckggocaibkflmkkacacijegkle |
Επίσημο URL | https://chromewebstore.google.com/detail/opsgenie-alert-notifier/eibhldckggocaibkflmkkacacijegkle |
Περιγραφή | An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API. |
Μέγεθος Αρχείου | 56.01 KB |
Αριθμός Εγκαταστάσεων | 491 |
Τρέχουσα Έκδοση | 1.1.1 |
Τελευταία Ενημέρωση | 2020-09-15 |
Ημερομηνία Δημοσίευσης | 2020-06-23 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Cem Kucuk |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/cemkucuk/opsgenie-chrome-extension |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/cemkucuk/opsgenie-chrome-extension/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Opsgenie Alert Notifier", "version": "1.1.1", "description": "An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie\u2019s REST API.", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Opsgenie Alert Notifier", "default_popup": "popup.html" }, "permissions": [ "*:\/\/*.opsgenie.com\/*", "webRequest", "webRequestBlocking", "storage", "notifications" ], "options_page": "options.html", "icons": { "16": "images\/16x16.png", "32": "images\/32x32.png", "48": "images\/48x48.png", "128": "images\/128x128.png" }, "manifest_version": 2 } |