Log Enhancer
A tool that allows you to highlight or remove multiple log lines for enhanced parsing
Cos'è Log Enhancer?
Log Enhancer è un'estensione di Chrome sviluppata da erictsai6, e la sua funzione principale è "A tool that allows you to highlight or remove multiple log lines for enhanced parsing".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Log Enhancer
Scarica i file di estensione Log Enhancer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Log Enhancer |
ID | hnnbfgknkenllhlcboidljkaebgebjjk |
URL Ufficiale | https://chromewebstore.google.com/detail/log-enhancer/hnnbfgknkenllhlcboidljkaebgebjjk |
Descrizione | A tool that allows you to highlight or remove multiple log lines for enhanced parsing |
Dimensione del File | 53.8 KB |
Conteggio Installazioni | 131 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2023-08-23 |
Data di Pubblicazione | 2021-06-01 |
Sviluppatore | erictsai6 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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": [ "*:\/\/*\/*" ] } |