Log Enhancer

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

Co je Log Enhancer?

Log Enhancer je rozšíření Chrome vyvinuté erictsai6, a jeho hlavní funkcí je „A tool that allows you to highlight or remove multiple log lines for enhanced parsing“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Log Enhancer

Stáhněte si soubory rozšíření Log Enhancer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Log Enhancer Log Enhancer
ID hnnbfgknkenllhlcboidljkaebgebjjk
Oficiální URL https://chromewebstore.google.com/detail/log-enhancer/hnnbfgknkenllhlcboidljkaebgebjjk
Popis A tool that allows you to highlight or remove multiple log lines for enhanced parsing
Velikost souboru 53.8 KB
Počet instalací 131
Aktuální Verze 2.0.0
Poslední Aktualizace 2023-08-23
Datum Vydání 2021-06-01
Vývojář erictsai6
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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": [
        "*:\/\/*\/*"
    ]
}