GitHub Action Raw Log Viewer

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

GitHub Action Raw Log Viewer là gì?

GitHub Action Raw Log Viewer là một tiện ích mở rộng Chrome được phát triển bởi Laurent Cozic, và tính năng chính của nó là "Display GitHub Action Raw log in color, converting the Ansi colors to HTML".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Action Raw Log Viewer

Tải xuống các tệp mở rộng GitHub Action Raw Log Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Action Raw Log Viewer GitHub Action Raw Log Viewer
ID lgejlnoopmcdglhfjblaeldbcfnmjddf
URL Chính Thức https://chromewebstore.google.com/detail/github-action-raw-log-vie/lgejlnoopmcdglhfjblaeldbcfnmjddf
Mô tả Display GitHub Action Raw log in color, converting the Ansi colors to HTML
Kích Thước Tệp 31.69 KB
Số Lần Cài Đặt 107
Phiên Bản Hiện Tại 1.1.5
Cập Nhật Lần Cuối 2024-03-04
Ngày Phát Hành 2022-11-09
Nhà Phát Triển Laurent Cozic
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/laurent22/github-actions-logs-extension
URL Trang Trợ Giúp https://github.com/laurent22/github-actions-logs-extension
URL Trang Chính Sách Bảo Mật https://joplinapp.org/privacy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}