ansi-colors-chrome-extension

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

Was ist ansi-colors-chrome-extension?

ansi-colors-chrome-extension ist eine Chrome-Erweiterung, die von https://gableroux.com entwickelt wurde, und ihr Hauptmerkmal ist "Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)".

Erweiterungsscreenshots

screenshot

ansi-colors-chrome-extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie ansi-colors-chrome-extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ansi-colors-chrome-extension ansi-colors-chrome-extension
ID hpkomngllcnigoocaolicfknnhibnmfi
Offizielle URL https://chromewebstore.google.com/detail/ansi-colors-chrome-extens/hpkomngllcnigoocaolicfknnhibnmfi
Beschreibung Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)
Dateigröße 308 KB
Installationsanzahl 407
Aktuelle Version 0.0.6
Letztes Update 2021-02-16
Veröffentlichungsdatum 2017-08-18
Bewertung 2.50/5 Insgesamt 6 Bewertungen
Entwickler https://gableroux.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/GabLeRoux/ansi-colors-chrome-extension
Hilfeseite URL https://github.com/GabLeRoux/ansi-colors-chrome-extension/issues
Unterstützte Sprachen 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"
    }
}