RabbitMQ UI

RabbitMQ web console improvements

What is RabbitMQ UI?

RabbitMQ UI is a Chrome extension developed by MUlt1mate, and its main feature is "RabbitMQ web console improvements".

Extension Screenshots

screenshot

Download RabbitMQ UI Extension CRX File

Download RabbitMQ UI 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

                        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/                    

Extension Basic Information

Name RabbitMQ UI RabbitMQ UI
ID aojjjccnchdgfojkplokcaikfoighecb
Official URL https://chromewebstore.google.com/detail/rabbitmq-ui/aojjjccnchdgfojkplokcaikfoighecb
Description RabbitMQ web console improvements
File Size 96.11 KB
Installation Count 3,027
Current Version 0.2.1
Last Updated 2023-03-23
Publish Date 2018-08-15
Rating 5.00/5 Total 3 Ratings
Developer MUlt1mate
Email [email protected]
Payment Type free
Extension Website https://github.com/MUlt1mate/rabbitmq-ui-improvements
Supported Languages 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\/*"
            ]
        }
    ]
}