ansi-colors-chrome-extension
Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)
Qu'est-ce que ansi-colors-chrome-extension ?
ansi-colors-chrome-extension est une extension Chrome développée par https://gableroux.com, et sa fonction principale est "Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ansi-colors-chrome-extension
Téléchargez les fichiers d'extension ansi-colors-chrome-extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ansi-colors-chrome-extension |
ID | hpkomngllcnigoocaolicfknnhibnmfi |
URL Officiel | https://chromewebstore.google.com/detail/ansi-colors-chrome-extens/hpkomngllcnigoocaolicfknnhibnmfi |
Description | Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome) |
Taille du Fichier | 308 KB |
Nombre d'Installations | 407 |
Version Actuelle | 0.0.6 |
Dernière Mise à Jour | 2021-02-16 |
Date de Publication | 2017-08-18 |
Évaluation | 2.50/5 Total 6 Évaluations |
Développeur | https://gableroux.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/GabLeRoux/ansi-colors-chrome-extension |
URL de la Page d'Aide | https://github.com/GabLeRoux/ansi-colors-chrome-extension/issues |
Langues Prises en Charge | 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" } } |