ansi-colors-chrome-extension
Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)
O que é ansi-colors-chrome-extension?
ansi-colors-chrome-extension é uma extensão do Chrome desenvolvida por https://gableroux.com, e sua principal característica é "Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ansi-colors-chrome-extension
Baixe arquivos de extensão ansi-colors-chrome-extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | ansi-colors-chrome-extension |
ID | hpkomngllcnigoocaolicfknnhibnmfi |
URL Oficial | https://chromewebstore.google.com/detail/ansi-colors-chrome-extens/hpkomngllcnigoocaolicfknnhibnmfi |
Descrição | Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome) |
Tamanho do Arquivo | 308 KB |
Contagem de Instalações | 407 |
Versão Atual | 0.0.6 |
Última Atualização | 2021-02-16 |
Data de Publicação | 2017-08-18 |
Classificação | 2.50/5 Total de 6 Avaliações |
Desenvolvedor | https://gableroux.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/GabLeRoux/ansi-colors-chrome-extension |
URL da Página de Ajuda | https://github.com/GabLeRoux/ansi-colors-chrome-extension/issues |
Idiomas Suportados | 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" } } |