Log Enhancer
A tool that allows you to highlight or remove multiple log lines for enhanced parsing
Qu'est-ce que Log Enhancer ?
Log Enhancer est une extension Chrome développée par erictsai6, et sa fonction principale est "A tool that allows you to highlight or remove multiple log lines for enhanced parsing".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Log Enhancer
Téléchargez les fichiers d'extension Log Enhancer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Log Enhancer |
ID | hnnbfgknkenllhlcboidljkaebgebjjk |
URL Officiel | https://chromewebstore.google.com/detail/log-enhancer/hnnbfgknkenllhlcboidljkaebgebjjk |
Description | A tool that allows you to highlight or remove multiple log lines for enhanced parsing |
Taille du Fichier | 53.8 KB |
Nombre d'Installations | 131 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2023-08-23 |
Date de Publication | 2021-06-01 |
Développeur | erictsai6 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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": [ "*:\/\/*\/*" ] } |