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/
扩展基本信息
名称 | RabbitMQ UI |
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 |
电子邮箱 | [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\/*" ] } ] } |