Blue Ocean Description HTMLify

Turn Jenkins Blue Ocean Descriptions into proper HTML!

Cos'è Blue Ocean Description HTMLify?

Blue Ocean Description HTMLify è un'estensione di Chrome sviluppata da j.r.jurman, e la sua funzione principale è "Turn Jenkins Blue Ocean Descriptions into proper HTML!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Blue Ocean Description HTMLify

Scarica i file di estensione Blue Ocean Description HTMLify 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 package will automatically update the description message in the Jenkins Blue Ocean UI so that it renders as HTML, not as plain text. This should give you parity with the default Jenkins UI (which has supported HTML).                    

Informazioni di Base sull'Estensione

Nome Blue Ocean Description HTMLify Blue Ocean Description HTMLify
ID maahpenodjcdhodbonmdkfgnceddigae
URL Ufficiale https://chromewebstore.google.com/detail/blue-ocean-description-ht/maahpenodjcdhodbonmdkfgnceddigae
Descrizione Turn Jenkins Blue Ocean Descriptions into proper HTML!
Dimensione del File 260 KB
Conteggio Installazioni 345
Versione Corrente 1.2
Ultimo Aggiornamento 2022-03-19
Data di Pubblicazione 2020-04-03
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore j.r.jurman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JRJurman/blue-ocean-description-htmlify-chrome-extension
URL della Pagina di Aiuto https://github.com/JRJurman/blue-ocean-description-htmlify-chrome-extension/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blue Ocean Description HTMLify",
    "version": "1.2",
    "description": "Turn Jenkins Blue Ocean Descriptions into proper HTML!",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/blue\/*"
            ],
            "js": [
                "htmlify.js"
            ],
            "css": [
                "htmlify.css"
            ]
        }
    ],
    "icons": {
        "128": "ship_emoji.png"
    }
}