Awesome RabbitMQ Management

Awesome RabbitMQ Management

什么是Awesome RabbitMQ Management?

Awesome RabbitMQ Management是由Alex Puschinsky开发的Chrome扩展程序,该扩展的主要功能是“Awesome RabbitMQ Management”。

扩展截图

screenshot
screenshot
screenshot

下载Awesome RabbitMQ Management扩展crx文件

下载Awesome RabbitMQ Management扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Awesome RabbitMQ Management Awesome RabbitMQ Management
ID mkemccfkdgpaelbmkbahfnpkoellgjpi
官方URL https://chromewebstore.google.com/detail/awesome-rabbitmq-manageme/mkemccfkdgpaelbmkbahfnpkoellgjpi
简介 Awesome RabbitMQ Management
文件大小 488 KB
安装次数 820
当前版本 1.5.0
更新时间 2022-11-22
上架时间 2018-09-19
评分 5.00/5 共2次评分
开发者 Alex Puschinsky
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/alexpusch/awesome-rabbitmq-chrome
支持的语言 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"
            ]
        }
    ]
}