Awesome RabbitMQ Management

Awesome RabbitMQ Management

Co je Awesome RabbitMQ Management?

Awesome RabbitMQ Management je rozšíření Chrome vyvinuté Alex Puschinsky, a jeho hlavní funkcí je „Awesome RabbitMQ Management“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Awesome RabbitMQ Management

Stáhněte si soubory rozšíření Awesome RabbitMQ Management ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Awesome RabbitMQ Management Awesome RabbitMQ Management
ID mkemccfkdgpaelbmkbahfnpkoellgjpi
Oficiální URL https://chromewebstore.google.com/detail/awesome-rabbitmq-manageme/mkemccfkdgpaelbmkbahfnpkoellgjpi
Popis Awesome RabbitMQ Management
Velikost souboru 488 KB
Počet instalací 820
Aktuální Verze 1.5.0
Poslední Aktualizace 2022-11-22
Datum Vydání 2018-09-19
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Alex Puschinsky
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/alexpusch/awesome-rabbitmq-chrome
Podporované Jazyky 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"
            ]
        }
    ]
}