AWS CodeBuild Logs Colorizer [Unofficial]

Re-add terminal colors to AWS CodeBuild Logs and delete control characters.

Co to jest AWS CodeBuild Logs Colorizer [Unofficial]?

AWS CodeBuild Logs Colorizer [Unofficial] to rozszerzenie Chrome opracowane przez joshua.j.wilborn, a jego główną funkcją jest „Re-add terminal colors to AWS CodeBuild Logs and delete control characters.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AWS CodeBuild Logs Colorizer [Unofficial]

Pobierz pliki rozszerzeń AWS CodeBuild Logs Colorizer [Unofficial] 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 is the recolor the AWS CodeBuild logs since it strips out the color escape sequences. This will make it much easier to read your logs, because it will match what you would see locally. Works with both background and foreground colors.

It watches for changes in the AWS CodeBuild logs, and reruns the colorizing as each new line is added to the log.

* 24-Bit True Color Support
* 256 Color Support
* Italic, bold, underline
* Ability to toggle between original and colorized

This extension is open sourced here: https://github.com/JoshuaJWilborn/colorize-the-logs

The code is provided under MIT license, and contributions are welcome!

The author is Joshua Wilborn. Website: https://wilborn.info                    

Podstawowe informacje o rozszerzeniu

Nazwa AWS CodeBuild Logs Colorizer [Unofficial] AWS CodeBuild Logs Colorizer [Unofficial]
ID mobkdmnncoiccdekgjjkkkdjoaankdbb
Oficjalny URL https://chromewebstore.google.com/detail/aws-codebuild-logs-colori/mobkdmnncoiccdekgjjkkkdjoaankdbb
Opis Re-add terminal colors to AWS CodeBuild Logs and delete control characters.
Rozmiar pliku 45.33 KB
Liczba instalacji 31
Aktualna Wersja 0.13
Ostatnia Aktualizacja 2020-10-18
Data Publikacji 2019-12-20
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper joshua.j.wilborn
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/JoshuaJWilborn/colorize-the-logs
Adres URL Strony Pomocy https://github.com/JoshuaJWilborn/colorize-the-logs
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS CodeBuild Logs Colorizer [Unofficial]",
    "author": "Joshua Wilborn",
    "version": "0.13",
    "manifest_version": 2,
    "description": "Re-add terminal colors to AWS CodeBuild Logs and delete control characters.",
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/codesuite\/*"
            ],
            "js": [
                "dist\/bundle.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "assets\/logo.png"
    },
    "browser_action": {
        "default_icon": "assets\/logo.png"
    }
}