Awesome RabbitMQ Management

Awesome RabbitMQ Management

Cos'è Awesome RabbitMQ Management?

Awesome RabbitMQ Management è un'estensione di Chrome sviluppata da Alex Puschinsky, e la sua funzione principale è "Awesome RabbitMQ Management".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Awesome RabbitMQ Management

Scarica i file di estensione Awesome RabbitMQ Management in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Awesome RabbitMQ Management Awesome RabbitMQ Management
ID mkemccfkdgpaelbmkbahfnpkoellgjpi
URL Ufficiale https://chromewebstore.google.com/detail/awesome-rabbitmq-manageme/mkemccfkdgpaelbmkbahfnpkoellgjpi
Descrizione Awesome RabbitMQ Management
Dimensione del File 488 KB
Conteggio Installazioni 820
Versione Corrente 1.5.0
Ultimo Aggiornamento 2022-11-22
Data di Pubblicazione 2018-09-19
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Alex Puschinsky
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/alexpusch/awesome-rabbitmq-chrome
Lingue Supportate 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"
            ]
        }
    ]
}