MockMan - mock APIs

Mocks api responses for AJAX (XHR) requests. (Postman for Frontend)

MockMan - mock APIs란 무엇입니까?

MockMan - mock APIs은(는) sudobird에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Mocks api responses for AJAX (XHR) requests. (Postman for Frontend)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

MockMan - mock APIs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is essentially built to increase productivity in frontend development. Made for developers, it lets users to define requests (url, method and mock response) for AJAX calls. 
Supports all common libraries like axios, superagent, XMLHttp, fetch etc. 
Response can be a JSON object or an error. 
It includes JSON formatter, and JSON viewer to better visualise data in collapsible form. 

Each request can be individually turned on/off to apply mocking. 
There's a global power switch to turn off mocking all the requests at once. 

The JSON object maker lets users to make the object in JS syntax and the formatter will convert it into valid JSON object with inverted commas and no trailing commas etc. 

Features: 
1. Urls are regex enabled
2. Labels for requests, so user can add different versions of same api
3. Delay in response
4. Test your app with success and error responses.
5. Add response headers to request.

Steps for Users - 
1. Define the api url, method, response JSON or error msg to be mocked.
2. Refresh the project and the ajax request will be mocked. Mocked url will disappear from network tab and appear in console.                    

확장 프로그램 기본 정보

이름 MockMan - mock APIs MockMan - mock APIs
ID bigfgeehfoenaimkoohnokeeideaomnd
공식 URL https://chromewebstore.google.com/detail/mockman-mock-apis/bigfgeehfoenaimkoohnokeeideaomnd
설명 Mocks api responses for AJAX (XHR) requests. (Postman for Frontend)
파일 크기 2.3 MB
설치 횟수 1,887
현재 버전 4.2.0
최근 업데이트 2023-09-20
출시 날짜 2020-07-08
평점 4.45/5 총 11 개의 평점
개발자 sudobird
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://mockman.dev/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MockMan - mock APIs",
    "description": "Mocks api responses for AJAX (XHR) requests. (Postman for Frontend)",
    "version": "4.2.0",
    "action": {
        "default_icon": "assets\/icon-dark.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "globals.js",
                "content-script.js"
            ]
        }
    ],
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "app\/*",
                "mocky.prod.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "app\/*",
                "mocky.prod.js"
            ],
            "matches": [
                "file:\/\/\/*"
            ]
        }
    ]
}