Log Enhancer
A tool that allows you to highlight or remove multiple log lines for enhanced parsing
Was ist Log Enhancer?
Log Enhancer ist eine Chrome-Erweiterung, die von erictsai6 entwickelt wurde, und ihr Hauptmerkmal ist "A tool that allows you to highlight or remove multiple log lines for enhanced parsing".
Erweiterungsscreenshots
Log Enhancer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Log Enhancer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Log Enhancer |
ID | hnnbfgknkenllhlcboidljkaebgebjjk |
Offizielle URL | https://chromewebstore.google.com/detail/log-enhancer/hnnbfgknkenllhlcboidljkaebgebjjk |
Beschreibung | A tool that allows you to highlight or remove multiple log lines for enhanced parsing |
Dateigröße | 53.8 KB |
Installationsanzahl | 131 |
Aktuelle Version | 2.0.0 |
Letztes Update | 2023-08-23 |
Veröffentlichungsdatum | 2021-06-01 |
Entwickler | erictsai6 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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": [ "*:\/\/*\/*" ] } |