GitHub Action Raw Log Viewer

Display GitHub Action Raw log in color, converting the Ansi colors to HTML

Что такое GitHub Action Raw Log Viewer?

GitHub Action Raw Log Viewer - это расширение Chrome, разработанное Laurent Cozic, и его основная функция - "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения GitHub Action Raw Log Viewer

Скачайте файлы расширений GitHub Action Raw Log Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        By default the GitHub Actions raw logs are in plain text and often contains special color symbols (ANSI) that makes them very difficult to read. This extension not only removes these extra symbols but also use convert them to actual colors to make the log a lot more readable - the text will look as it would in your terminal window.

GitLab also offers its logs in raw format so the extension should work with it too.                    

Основная информация о расширении

Название GitHub Action Raw Log Viewer GitHub Action Raw Log Viewer
ID lgejlnoopmcdglhfjblaeldbcfnmjddf
Официальный URL https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf
Описание Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Размер файла 31.69 KB
Количество установок 107
Текущая Версия 1.1.5
Последнее Обновление 2024-03-04
Дата публикации 2022-11-09
Разработчик Laurent Cozic
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/laurent22/github-actions-logs-extension
URL страницы помощи https://github.com/laurent22/github-actions-logs-extension
URL страницы политики конфиденциальности https://joplinapp.org/privacy
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub Action Raw Log Viewer",
    "description": "Display GitHub Action Raw log in color, converting the Ansi colors to HTML",
    "version": "1.1.5",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/pipelines.actions.githubusercontent.com\/serviceHosts\/*",
                "https:\/\/*.actions.githubusercontent.com\/*",
                "https:\/\/cdn.artifacts.gitlab-static.net\/*",
                "https:\/\/*.windows.net\/actions-results\/*"
            ]
        }
    ]
}