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.”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Postman Interceptor
ID aicmkgpgakddgnaphhhpliifpcfhicfo
官方網址 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"
}