Log Enhancer

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

Log Enhancerคืออะไร?

Log Enhancer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย erictsai6 และคุณลักษณะหลักของมันคือ "A tool that allows you to highlight or remove multiple log lines for enhanced parsing"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Log Enhancer

ดาวน์โหลดไฟล์ส่วนขยาย 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": [
        "*:\/\/*\/*"
    ]
}