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是由https://gableroux.com開發的Chrome擴展程式,該擴展的主要功能是“Renders ansi escape characters on current page (ex: a log file with ansi colors viewed in chrome)”。
擴展截圖
下載ansi-colors-chrome-extension擴展crx文件
下載ansi-colors-chrome-extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | hpkomngllcnigoocaolicfknnhibnmfi |
官方網址 | 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 |
說明頁面URL | 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" } } |