Log Enhancer

A tool that allows you to highlight or remove multiple log lines for enhanced parsing

What is Log Enhancer?

Log Enhancer is a Chrome extension developed by erictsai6, and its main feature is "A tool that allows you to highlight or remove multiple log lines for enhanced parsing".

Extension Screenshots

screenshot

Download Log Enhancer Extension CRX File

Download Log Enhancer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Log Enhancer Log Enhancer
ID hnnbfgknkenllhlcboidljkaebgebjjk
Official URL https://chromewebstore.google.com/detail/log-enhancer/hnnbfgknkenllhlcboidljkaebgebjjk
Description A tool that allows you to highlight or remove multiple log lines for enhanced parsing
File Size 53.8 KB
Installation Count 131
Current Version 2.0.0
Last Updated 2023-08-23
Publish Date 2021-06-01
Developer erictsai6
Email [email protected]
Payment Type free
Supported Languages 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": [
        "*:\/\/*\/*"
    ]
}