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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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"
}