AWS CodeBuild Logs Colorizer [Unofficial]

Re-add terminal colors to AWS CodeBuild Logs and delete control characters.

ما هو AWS CodeBuild Logs Colorizer [Unofficial]؟

AWS CodeBuild Logs Colorizer [Unofficial] هو إضافة Chrome تم تطويرها بواسطة joshua.j.wilborn، والميزة الرئيسية لها هي "Re-add terminal colors to AWS CodeBuild Logs and delete control characters.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة AWS CodeBuild Logs Colorizer [Unofficial]

قم بتنزيل ملفات الامتداد AWS CodeBuild Logs Colorizer [Unofficial] بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This package is the recolor the AWS CodeBuild logs since it strips out the color escape sequences. This will make it much easier to read your logs, because it will match what you would see locally. Works with both background and foreground colors.

It watches for changes in the AWS CodeBuild logs, and reruns the colorizing as each new line is added to the log.

* 24-Bit True Color Support
* 256 Color Support
* Italic, bold, underline
* Ability to toggle between original and colorized

This extension is open sourced here: https://github.com/JoshuaJWilborn/colorize-the-logs

The code is provided under MIT license, and contributions are welcome!

The author is Joshua Wilborn. Website: https://wilborn.info                    

معلومات أساسية عن التمديد

الاسم AWS CodeBuild Logs Colorizer [Unofficial] AWS CodeBuild Logs Colorizer [Unofficial]
ID mobkdmnncoiccdekgjjkkkdjoaankdbb
عنوان URL الرسمي https://chromewebstore.google.com/detail/aws-codebuild-logs-colori/mobkdmnncoiccdekgjjkkkdjoaankdbb
الوصف Re-add terminal colors to AWS CodeBuild Logs and delete control characters.
حجم الملف 45.33 KB
عدد التثبيتات 31
النسخة الحالية 0.13
آخر تحديث 2020-10-18
تاريخ النشر 2019-12-20
تقييم 3.67/5 مجموع تقييمات 3
المطور joshua.j.wilborn
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/JoshuaJWilborn/colorize-the-logs
عنوان صفحة المساعدة https://github.com/JoshuaJWilborn/colorize-the-logs
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS CodeBuild Logs Colorizer [Unofficial]",
    "author": "Joshua Wilborn",
    "version": "0.13",
    "manifest_version": 2,
    "description": "Re-add terminal colors to AWS CodeBuild Logs and delete control characters.",
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/codesuite\/*"
            ],
            "js": [
                "dist\/bundle.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "assets\/logo.png"
    },
    "browser_action": {
        "default_icon": "assets\/logo.png"
    }
}