RabbitMQ UI

RabbitMQ web console improvements

Cos'è RabbitMQ UI?

RabbitMQ UI è un'estensione di Chrome sviluppata da MUlt1mate, e la sua funzione principale è "RabbitMQ web console improvements".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione RabbitMQ UI

Scarica i file di estensione RabbitMQ UI 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

                        This extension improves RabbitMQ web console UI

Features:
 * Saves last message for each queue and restores it when you open queue page
 * JSON parsing for messages in queue payload
 * Buttons to beautify and minify JSON in payload

Requirements:
 * Tested on RabbitMQ 3.11.5
 * Currently requires URL to match expression http(s)://:15672/                    

Informazioni di Base sull'Estensione

Nome RabbitMQ UI RabbitMQ UI
ID aojjjccnchdgfojkplokcaikfoighecb
URL Ufficiale https://chromewebstore.google.com/detail/rabbitmq-ui/aojjjccnchdgfojkplokcaikfoighecb
Descrizione RabbitMQ web console improvements
Dimensione del File 96.11 KB
Conteggio Installazioni 3,027
Versione Corrente 0.2.1
Ultimo Aggiornamento 2023-03-23
Data di Pubblicazione 2018-08-15
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore MUlt1mate
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/MUlt1mate/rabbitmq-ui-improvements
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "RabbitMQ UI",
    "short_name": "RabbitMQ UI",
    "description": "RabbitMQ web console improvements",
    "version": "0.2.1",
    "icons": {
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "author": "MUlt1mate",
    "action": {
        "default_icon": "img\/icon128.png",
        "default_title": "RabbitMQ UI"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "json-formatter_old.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*:15672\/*",
                "https:\/\/*:15672\/*"
            ]
        }
    ]
}