Log Enhancer

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

Apa itu Log Enhancer?

Log Enhancer adalah ekstensi Chrome yang dikembangkan oleh erictsai6, dan fitur utamanya adalah "A tool that allows you to highlight or remove multiple log lines for enhanced parsing".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Log Enhancer

Unduh file ekstensi Log Enhancer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Log Enhancer Log Enhancer
ID hnnbfgknkenllhlcboidljkaebgebjjk
URL Resmi https://chromewebstore.google.com/detail/log-enhancer/hnnbfgknkenllhlcboidljkaebgebjjk
Deskripsi A tool that allows you to highlight or remove multiple log lines for enhanced parsing
Ukuran File 53.8 KB
Jumlah Instalasi 131
Versi Saat Ini 2.0.0
Terakhir Diperbarui 2023-08-23
Tanggal Publikasi 2021-06-01
Pengembang erictsai6
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": [
        "*:\/\/*\/*"
    ]
}