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
官方網址 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"
            ]
        }
    ]
}