Interceptor

Run web clients without backends by mocking HTTP requests

Interceptor란 무엇입니까?

Interceptor은(는) Codemancers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Run web clients without backends by mocking HTTP requests"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Run web clients without backends by mocking HTTP requests

During development, often times front-end devs have to wait for the back-end devs to offer an API to work on. Even after the API is given, if the front-end team wants a different set of data to work on, they again need to wait for the changes to be made and hosted. We, front-end developers resort to techniques like storing the data in a variable or using mock API’s.

To overcome this, we are working on a browser extension Interceptor, which lets you define your own response, and everytime the browser requests data from a particular URL, returns you with mock data instead of, from the server.                    

확장 프로그램 기본 정보

이름 Interceptor Interceptor
ID enenfaicdcfgcnjmiigcjbmlbaoapnen
공식 URL https://chrome.google.com/webstore/detail/interceptor/enenfaicdcfgcnjmiigcjbmlbaoapnen
설명 Run web clients without backends by mocking HTTP requests
파일 크기 314 KB
설치 횟수 4,000
현재 버전 0.3.0
최근 업데이트 2019-09-23
출시 날짜 2019-09-23
평점 3.00/5 총 22 개의 평점
개발자 Codemancers
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/code-mancers/interceptor
도움말 페이지 URL https://github.com/code-mancers/interceptor/issues
개인정보 보호 정책 페이지 URL https://github.com/code-mancers/interceptor/blob/master/Privacy-policy.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Interceptor",
    "description": "Run web clients without backends by mocking HTTP requests",
    "version": "0.3.0",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "lib\/nise.min.js"
    ],
    "browser_action": {
        "default_title": "Interceptor",
        "default_popup": "index.html",
        "default_icon": "images\/icon.png"
    },
    "permissions": [
        "webRequest",
        "tabs",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "webNavigation"
    ]
}