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是由Cem Kucuk開發的Chrome擴展程式,該擴展的主要功能是“An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API.”。
擴展截圖
下載Opsgenie Alert Notifier擴展crx文件
下載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 |
官方網址 | 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 } |