Log Enhancer
A tool that allows you to highlight or remove multiple log lines for enhanced parsing
什麼是Log Enhancer?
Log Enhancer是由erictsai6開發的Chrome擴展程式,該擴展的主要功能是“A tool that allows you to highlight or remove multiple log lines for enhanced parsing”。
擴展截圖
下載Log Enhancer擴展crx文件
下載Log Enhancer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This chrome extension will give the user the ability to highlight with custom colors (or remove) log lines based on user-input regex. This improves readability and reduces the risk of missing something due to user error.
擴展基本資訊
名稱 | Log Enhancer |
ID | hnnbfgknkenllhlcboidljkaebgebjjk |
官方網址 | https://chromewebstore.google.com/detail/log-enhancer/hnnbfgknkenllhlcboidljkaebgebjjk |
簡介 | A tool that allows you to highlight or remove multiple log lines for enhanced parsing |
檔案大小 | 53.8 KB |
安裝次數 | 131 |
目前版本 | 2.0.0 |
更新時間 | 2023-08-23 |
上架時間 | 2021-06-01 |
開發者 | erictsai6 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Log Enhancer", "version": "2.0.0", "manifest_version": 3, "description": "A tool that allows you to highlight or remove multiple log lines for enhanced parsing", "homepage_url": "https:\/\/github.com\/erictsai6\/log-enhancer-chrome-ext", "minimum_chrome_version": "88", "icons": { "16": "icons\/16.png", "64": "icons\/64.png", "128": "icons\/128.png" }, "background": { "service_worker": "build-background.js" }, "action": { "default_popup": "index.html" }, "permissions": [ "activeTab", "storage", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ] } |