Blue Ocean Description HTMLify

Turn Jenkins Blue Ocean Descriptions into proper HTML!

Co to jest Blue Ocean Description HTMLify?

Blue Ocean Description HTMLify to rozszerzenie Chrome opracowane przez j.r.jurman, a jego główną funkcją jest „Turn Jenkins Blue Ocean Descriptions into proper HTML!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Blue Ocean Description HTMLify

Pobierz pliki rozszerzeń Blue Ocean Description HTMLify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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).                    

Podstawowe informacje o rozszerzeniu

Nazwa Blue Ocean Description HTMLify Blue Ocean Description HTMLify
ID maahpenodjcdhodbonmdkfgnceddigae
Oficjalny URL https://chromewebstore.google.com/detail/blue-ocean-description-ht/maahpenodjcdhodbonmdkfgnceddigae
Opis Turn Jenkins Blue Ocean Descriptions into proper HTML!
Rozmiar pliku 260 KB
Liczba instalacji 345
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2022-03-19
Data Publikacji 2020-04-03
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper j.r.jurman
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/JRJurman/blue-ocean-description-htmlify-chrome-extension
Adres URL Strony Pomocy https://github.com/JRJurman/blue-ocean-description-htmlify-chrome-extension/issues
Obsługiwane Języki 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"
    }
}