RabbitMQ UI
RabbitMQ web console improvements
RabbitMQ UIとは何ですか?
RabbitMQ UIはMUlt1mateによって開発されたChromeの拡張機能で、その主な機能は「RabbitMQ web console improvements」です。
拡張機能のスクリーンショット
RabbitMQ UI拡張機能のCRXファイルをダウンロード
RabbitMQ UI拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension improves RabbitMQ web console UI
Features:
* Saves last message for each queue and restores it when you open queue page
* JSON parsing for messages in queue payload
* Buttons to beautify and minify JSON in payload
Requirements:
* Tested on RabbitMQ 3.11.5
* Currently requires URL to match expression http(s)://:15672/ 拡張機能の基本情報
| 名前 | |
| ID | aojjjccnchdgfojkplokcaikfoighecb |
| 公式URL | https://chromewebstore.google.com/detail/rabbitmq-ui/aojjjccnchdgfojkplokcaikfoighecb |
| 説明 | RabbitMQ web console improvements |
| ファイルサイズ | 96.11 KB |
| インストール数 | 3,027 |
| 現在のバージョン | 0.2.1 |
| 最終更新日 | 2023-03-23 |
| 公開日 | 2018-08-15 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | MUlt1mate |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/MUlt1mate/rabbitmq-ui-improvements |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "RabbitMQ UI",
"short_name": "RabbitMQ UI",
"description": "RabbitMQ web console improvements",
"version": "0.2.1",
"icons": {
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"author": "MUlt1mate",
"action": {
"default_icon": "img\/icon128.png",
"default_title": "RabbitMQ UI"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"css": [
"styles.css"
],
"js": [
"json-formatter_old.js",
"content.js"
],
"matches": [
"http:\/\/*:15672\/*",
"https:\/\/*:15672\/*"
]
}
]
} | |