API Interceptor

Chrome extension that intercepts and modifies network requests

API Interceptor란 무엇입니까?

API Interceptor은(는) Anshul Nema에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension that intercepts and modifies network requests"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

API Interceptor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        API Interceptor is a Chrome extension designed for developers and testers. It allows you to intercept and analyse network requests made by web pages. With API Interceptor, you can modify network requests, making it an invaluable tool for debugging and testing web applications

Key features include:
Real-time request interception
Response/Schema analysis/modification using JSON Editor
Mocking response using JSON Schema Faker
Supplying own custom API response
Response status modification

Whether you're a web developer, quality assurance engineer, or just curious about what's happening under the hood of your favourite websites, API Interceptor can be your go-to tool

For a particular request, you can ->
*View Server Response*: Raw response for the request directly from the original server
*View Server Schema*: Raw response schema
*Customize Response*: Customize the original server response
*Customize Schema*: Customize the resposne schema (to be used for generating fake response)
*Generate Fake Response*: Generate fake response using the customized schema

API Interceptor currently only requires these permissions - "storage", "debugger"

"debugger" is required in order for response modification to work. "storage" is required to store the maintaining clientId

** Good To Know **
1, You will see ["api-interceptor" started debugging this browser] message on the top when API Interceptor icon is clicked. This is because it uses the debugger API, which is needed for response modification. Due to Chrome's security policy (https://crbug.com/1096262), that banner would show up on all tabs even when a tab is not being modified, and it may still for a few more seconds after ModResponse is paused or disabled. To hide it, you can run chrome with --silent-debugger-extension-api command line switch.
2, Clicking on the "Cancel" button on the ["api-interceptor" started debugging this browser] message will stop intercepting requests going in the page. To reactivate it, click on the "Play" button in the extension popup

For more visit - https://api-interceptor.com/                    

확장 프로그램 기본 정보

이름 API Interceptor API Interceptor
ID fjnajobamaheacabagbadcchpodflmgl
공식 URL https://chromewebstore.google.com/detail/api-interceptor/fjnajobamaheacabagbadcchpodflmgl
설명 Chrome extension that intercepts and modifies network requests
파일 크기 2.4 MB
설치 횟수 50
현재 버전 0.0.1
최근 업데이트 2023-11-05
출시 날짜 2023-11-05
평점 5.00/5 총 1 개의 평점
개발자 Anshul Nema
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://api-interceptor.com/
도움말 페이지 URL https://api-interceptor.com/faqs
개인정보 보호 정책 페이지 URL https://api-interceptor.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "API Interceptor",
    "version": "0.0.1",
    "description": "Chrome extension that intercepts and modifies network requests",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_icon": "icon-50.png"
    },
    "icons": {
        "128": "icon-200.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon-200.png",
                "icon-50.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "debugger",
        "activeTab"
    ]
}