Postman Interceptor

Capture requests from any website and send them to Postman Client.

What is Postman Interceptor?

Postman Interceptor is a Chrome extension developed by https://postman.com, and its main feature is "Capture requests from any website and send them to Postman Client.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Postman Interceptor Extension CRX File

Download Postman Interceptor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Postman Interceptor Postman Interceptor
ID aicmkgpgakddgnaphhhpliifpcfhicfo
Official URL https://chromewebstore.google.com/detail/postman-interceptor/aicmkgpgakddgnaphhhpliifpcfhicfo
Description Capture requests from any website and send them to Postman Client.
File Size 459 KB
Installation Count 800,000
Current Version 3.0.5
Last Updated 2024-01-05
Publish Date 2020-06-18
Rating 4.32/5 Total 948 Ratings
Developer https://postman.com
Email [email protected]
Payment Type free
Extension Website http://www.postman.com
Help Page URL https://github.com/postmanlabs/postman-app-support/issues
Privacy Policy Page URL https://www.getpostman.com/licenses/privacy
Supported Languages 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"
}