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