Awesome RabbitMQ Management

Awesome RabbitMQ Management

What is Awesome RabbitMQ Management?

Awesome RabbitMQ Management is a Chrome extension developed by Alex Puschinsky, and its main feature is "Awesome RabbitMQ Management".

Extension Screenshots

screenshot
screenshot
screenshot

Download Awesome RabbitMQ Management Extension CRX File

Download Awesome RabbitMQ Management 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

                        RabbitMQ queues view can become unusable with many queues, especially if you're using the sharding plugin. This extension will add a new tab in RabbitMQs management console with an awesome view of your queues:

- Sharded queues will be collapsed to a single line
- The UI will alert you when queues have no consumers or has accumulated many messages
- Configurable alerts for specific queues.
- Filter each column                    

Extension Basic Information

Name Awesome RabbitMQ Management Awesome RabbitMQ Management
ID mkemccfkdgpaelbmkbahfnpkoellgjpi
Official URL https://chromewebstore.google.com/detail/awesome-rabbitmq-manageme/mkemccfkdgpaelbmkbahfnpkoellgjpi
Description Awesome RabbitMQ Management
File Size 488 KB
Installation Count 820
Current Version 1.5.0
Last Updated 2022-11-22
Publish Date 2018-09-19
Rating 5.00/5 Total 2 Ratings
Developer Alex Puschinsky
Email [email protected]
Payment Type free
Extension Website https://github.com/alexpusch/awesome-rabbitmq-chrome
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Awesome RabbitMQ Management",
    "version": "1.5.0",
    "manifest_version": 3,
    "options_page": "options.html",
    "description": "Awesome RabbitMQ Management",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon19.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon128.png",
                "bootstrap.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "bundle.js"
            ]
        }
    ]
}