Postman Interceptor
Capture requests from any website and send them to Postman Client.
Что такое Postman Interceptor?
Postman Interceptor - это расширение Chrome, разработанное https://postman.com, и его основная функция - "Capture requests from any website and send them to Postman Client.".
Снимки экрана расширения
Скачать файл CRX расширения Postman Interceptor
Скачайте файлы расширений Postman Interceptor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Postman Interceptor helps you send requests which use browser cookies through the Postman app. It can also send headers which are normally restricted by Chrome but are critical for testing APIs. The Interceptor makes this process painless. Something that would have required a proxy earlier can now be achieved without any installation steps or extra configuration.
Основная информация о расширении
Название | Postman Interceptor |
ID | aicmkgpgakddgnaphhhpliifpcfhicfo |
Официальный URL | https://chromewebstore.google.com/detail/postman-interceptor/aicmkgpgakddgnaphhhpliifpcfhicfo |
Описание | Capture requests from any website and send them to Postman Client. |
Размер файла | 459 KB |
Количество установок | 800,000 |
Текущая Версия | 3.0.5 |
Последнее Обновление | 2024-01-05 |
Дата публикации | 2020-06-18 |
Рейтинг | 4.32/5 Всего 948 оценок |
Разработчик | https://postman.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://www.postman.com |
URL страницы помощи | https://github.com/postmanlabs/postman-app-support/issues |
URL страницы политики конфиденциальности | https://www.getpostman.com/licenses/privacy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Postman Interceptor", "description": "Capture requests from any website and send them to Postman Client.", "icons": { "16": "assets\/interceptor_16x16.png", "32": "assets\/interceptor_32x32.png", "48": "assets\/interceptor_48x48.png", "128": "assets\/interceptor_128x128.png" }, "action": { "default_title": "Postman Interceptor", "default_icon": "assets\/interceptor_48x48.png", "default_popup": "html\/index.html" }, "background": { "service_worker": "background\/background.js", "type": "module" }, "host_permissions": [ "*:\/\/*\/**" ], "permissions": [ "webRequest", "nativeMessaging", "storage", "cookies" ], "manifest_version": 3, "version": "3.0.5" } |