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 |
Eメール | [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" } |