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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}