ansi-colors-chrome-extension

Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)

ما هو ansi-colors-chrome-extension؟

ansi-colors-chrome-extension هو إضافة Chrome تم تطويرها بواسطة https://gableroux.com، والميزة الرئيسية لها هي "Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)".

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

screenshot

تحميل ملف CRX للإضافة ansi-colors-chrome-extension

قم بتنزيل ملفات الامتداد ansi-colors-chrome-extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Convert ANSI characters to colors on the fly / on button click for the lazy ones. This open source plugins reads the content of the page when you click the extension icon and runs rburns/ansi-to-html on the current page to convert from hard to read characters to actual html without ansi codes.

All details and changelog is available on the public repository of this plugin.                    

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

الاسم ansi-colors-chrome-extension ansi-colors-chrome-extension
ID hpkomngllcnigoocaolicfknnhibnmfi
عنوان URL الرسمي https://chromewebstore.google.com/detail/ansi-colors-chrome-extens/hpkomngllcnigoocaolicfknnhibnmfi
الوصف Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)
حجم الملف 308 KB
عدد التثبيتات 407
النسخة الحالية 0.0.6
آخر تحديث 2021-02-16
تاريخ النشر 2017-08-18
تقييم 2.50/5 مجموع تقييمات 6
المطور https://gableroux.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/GabLeRoux/ansi-colors-chrome-extension
عنوان صفحة المساعدة https://github.com/GabLeRoux/ansi-colors-chrome-extension/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ansi-colors-chrome-extension",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "file:\/\/\/*",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "ansi colors chrome extension"
    }
}