Better Network Panel
Extends the Developer Tools, adding a new Network Panel in the Developer Tools window with better searching and response previews.
Что такое Better Network Panel?
Better Network Panel - это расширение Chrome, разработанное https://leviolson.com, и его основная функция - "Extends the Developer Tools, adding a new Network Panel in the Developer Tools window with better searching and response previews.".
Снимки экрана расширения
Скачать файл CRX расширения Better Network Panel
Скачайте файлы расширений Better Network Panel в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension is Open Source: https://github.com/leothelocust/better-network-chrome-panel Although it doesn't do everything the default Network panel does, it does way more regarding Searching/Filtering. It doesn't only search the URL, it also searches every part of the request, including headers and post body. Additionally, if a response is in JSON, and contains some stringified node in that response, this tool auto-parses that string. See the Changelog here: https://leviolson.com/posts/bnp-changelog
Основная информация о расширении
Название | Better Network Panel |
ID | kknnkgpbclaljhfcknhbebhppmkmoaml |
Официальный URL | https://chromewebstore.google.com/detail/better-network-panel/kknnkgpbclaljhfcknhbebhppmkmoaml |
Описание | Extends the Developer Tools, adding a new Network Panel in the Developer Tools window with better searching and response previews. |
Размер файла | 2.14 MB |
Количество установок | 1,000 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2021-01-28 |
Дата публикации | 2020-10-08 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | https://leviolson.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://leviolson.com/posts/chrome-ext-better-network-panel |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Network Panel", "version": "1.0.1", "minimum_chrome_version": "44.0", "description": "Extends the Developer Tools, adding a new Network Panel in the Developer Tools window with better searching and response previews.", "devtools_page": "devtools.html", "icons": { "128": "icon-128x128.png" }, "background": { "scripts": [ "background.js" ] }, "manifest_version": 2 } |