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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub Action Raw Log Viewer
قم بتنزيل ملفات الامتداد GitHub Action Raw Log Viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | https://github.com/laurent22/github-actions-logs-extension |
عنوان صفحة سياسة الخصوصية | 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\/*" ] } ] } |