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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 } |