Log Enhancer

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

什么是Log Enhancer?

Log Enhancer是由erictsai6开发的Chrome扩展程序,该扩展的主要功能是“A tool that allows you to highlight or remove multiple log lines for enhanced parsing”。

扩展截图

screenshot

下载Log Enhancer扩展crx文件

下载Log Enhancer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Log Enhancer Log Enhancer
ID hnnbfgknkenllhlcboidljkaebgebjjk
官方URL https://chromewebstore.google.com/detail/log-enhancer/hnnbfgknkenllhlcboidljkaebgebjjk
简介 A tool that allows you to highlight or remove multiple log lines for enhanced parsing
文件大小 53.8 KB
安装次数 131
当前版本 2.0.0
更新时间 2023-08-23
上架时间 2021-06-01
开发者 erictsai6
电子邮箱 [email protected]
付费类型 free
支持的语言 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": [
        "*:\/\/*\/*"
    ]
}