Netmon
Network monitor - view the HTTP headers of the current page, or globally, from all tabs.
Что такое Netmon?
Netmon - это расширение Chrome, разработанное https://kpion.github.io, и его основная функция - "Network monitor - view the HTTP headers of the current page, or globally, from all tabs.".
Снимки экрана расширения
Скачать файл CRX расширения Netmon
Скачайте файлы расширений Netmon в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Network monitor - see requests and responses, including the HTTP headers, of the current page, or globally. You can use it at any time, also *after* the page has loaded. This is useful when there are random errors in some cases and you just want to see what happened, list the past requests. It also constantly displays current count of requests in any given tab. And - it's open source: https://github.com/kpion/netmon If you have any suggestions, please don't hesitate to reach me on [email protected] or file an issue on the github page above.
Основная информация о расширении
Название | ![]() |
ID | fnbdjaofejpjedhleannakpdpifmchlo |
Официальный URL | https://chrome.google.com/webstore/detail/netmon/fnbdjaofejpjedhleannakpdpifmchlo |
Описание | Network monitor - view the HTTP headers of the current page, or globally, from all tabs. |
Размер файла | 1.7 MB |
Количество установок | 314 |
Текущая Версия | 1.0 |
Последнее Обновление | 2019-05-11 |
Дата публикации | 2019-05-05 |
Разработчик | https://kpion.github.io |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/kpion/netmon |
URL страницы помощи | https://github.com/kpion/netmon |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netmon", "version": "1.0", "description": "Network monitor - view the HTTP headers of the current page, or globally, from all tabs.", "homepage_url": "https:\/\/github.com\/kpion\/netmon", "permissions": [ "storage", "activeTab", "tabs", "webNavigation", "webRequest", "webRequestBlocking", "http:\/\/*\/", "https:\/\/*\/" ], "background": { "page": "background\/index.html" }, "browser_action": { "default_popup": "modules\/list\/index.html?mode=popup", "default_icon": { "16": "static\/images\/extension-icon.png", "32": "static\/images\/extension-icon.png", "48": "static\/images\/extension-icon.png", "128": "static\/images\/extension-icon.png" } }, "icons": { "16": "static\/images\/extension-icon.png", "32": "static\/images\/extension-icon.png", "48": "static\/images\/extension-icon.png", "128": "static\/images\/extension-icon.png" }, "manifest_version": 2 } |