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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Log Enhancer
قم بتنزيل ملفات الامتداد Log Enhancer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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": [ "*:\/\/*\/*" ] } |