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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
        "*:\/\/*\/*"
    ]
}