Postman Interceptor
Capture requests from any website and send them to Postman Client.
什么是Postman Interceptor?
Postman Interceptor是由https://postman.com开发的Chrome扩展程序,该扩展的主要功能是“Capture requests from any website and send them to Postman Client.”。
扩展截图
下载Postman Interceptor扩展crx文件
下载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" } |