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”。
擴展截圖
下載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 |
ID | lgejlnoopmcdglhfjblaeldbcfnmjddf |
官方網址 | 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\/*" ] } ] } |