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 с друзьями, чтобы легко установить расширения 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. Основная информация о расширении
| Название | |
| 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": [
"*:\/\/*\/*"
]
} | |