Opsgenie Alert Notifier
An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API.
What is Opsgenie Alert Notifier?
Opsgenie Alert Notifier is a Chrome extension developed by Cem Kucuk, and its main feature is "An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API.".
Extension Screenshots
Download Opsgenie Alert Notifier Extension CRX File
Download Opsgenie Alert Notifier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Opsgenie Alert Notifier |
ID | eibhldckggocaibkflmkkacacijegkle |
Official URL | https://chromewebstore.google.com/detail/opsgenie-alert-notifier/eibhldckggocaibkflmkkacacijegkle |
Description | An extension for showing latest alerts and getting notifications for new alert(s) via polling Opsgenie’s REST API. |
File Size | 56.01 KB |
Installation Count | 491 |
Current Version | 1.1.1 |
Last Updated | 2020-09-15 |
Publish Date | 2020-06-23 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Cem Kucuk |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/cemkucuk/opsgenie-chrome-extension |
Help Page URL | https://github.com/cemkucuk/opsgenie-chrome-extension/issues |
Supported Languages | 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 } |