Log Enhancer
A tool that allows you to highlight or remove multiple log lines for enhanced parsing
Co to jest Log Enhancer?
Log Enhancer to rozszerzenie Chrome opracowane przez erictsai6, a jego główną funkcją jest „A tool that allows you to highlight or remove multiple log lines for enhanced parsing”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Log Enhancer
Pobierz pliki rozszerzeń Log Enhancer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Log Enhancer |
ID | hnnbfgknkenllhlcboidljkaebgebjjk |
Oficjalny URL | https://chromewebstore.google.com/detail/log-enhancer/hnnbfgknkenllhlcboidljkaebgebjjk |
Opis | A tool that allows you to highlight or remove multiple log lines for enhanced parsing |
Rozmiar pliku | 53.8 KB |
Liczba instalacji | 131 |
Aktualna Wersja | 2.0.0 |
Ostatnia Aktualizacja | 2023-08-23 |
Data Publikacji | 2021-06-01 |
Deweloper | erictsai6 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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": [ "*:\/\/*\/*" ] } |