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 là gì?
Opsgenie Alert Notifier là một tiện ích mở rộng Chrome được phát triển bởi Cem Kucuk, và tính năng chính của nó là "An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API.".
Ả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 Opsgenie Alert Notifier
Tải xuống các tệp mở rộng Opsgenie Alert 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Opsgenie Alert Notifier |
ID | eibhldckggocaibkflmkkacacijegkle |
URL Chính Thức | https://chromewebstore.google.com/detail/opsgenie-alert-notifier/eibhldckggocaibkflmkkacacijegkle |
Mô tả | An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API. |
Kích Thước Tệp | 56.01 KB |
Số Lần Cài Đặt | 491 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2020-09-15 |
Ngày Phát Hành | 2020-06-23 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Cem Kucuk |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/cemkucuk/opsgenie-chrome-extension |
URL Trang Trợ Giúp | https://github.com/cemkucuk/opsgenie-chrome-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } |