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 |
公式URL | 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 |
Eメール | [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": [ "*:\/\/*\/*" ] } |