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はLaurent Cozicによって開発されたChromeの拡張機能で、その主な機能は「Display GitHub Action Raw log in color, converting the Ansi colors to HTML」です。

拡張機能のスクリーンショット

screenshot
screenshot

GitHub Action Raw Log Viewer拡張機能のCRXファイルをダウンロード

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
Eメール [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\/*"
            ]
        }
    ]
}