Mimic , mock http requests

Mimic is a seamless mocking tool that runs inside your browser.No configuration needed!

Mimic , mock http requests란 무엇입니까?

Mimic , mock http requests은(는) Almog Sade에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Mimic is a seamless mocking tool that runs inside your browser.No configuration needed!"입니다.

확장 프로그램 스크린샷

screenshot

Mimic , mock http requests 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This plugin is a simulator for HTTP-based APIs. It can be used for mocking any web site integrate with HTTP or HTTPS.

It enables you testing of edge cases and failure modes that the real API won't reliably produce.It's created for developers who at many times wish they had an easy way to setup a mock api. 

Mimic plugin is built on mimic framework, with an intuitive web UI for injective scenarios,scripts without preconfiguration.

For more details visit : 
https://github.com/500tech/mimic                    

확장 프로그램 기본 정보

이름 Mimic , mock http requests Mimic , mock http requests
ID fbbngjdkfemadhbhoodkckipcefojnli
공식 URL https://chromewebstore.google.com/detail/mimic-mock-http-requests/fbbngjdkfemadhbhoodkckipcefojnli
설명 Mimic is a seamless mocking tool that runs inside your browser.No configuration needed!
파일 크기 2.48 MB
설치 횟수 338
현재 버전 1.0
최근 업데이트 2019-03-23
출시 날짜 2019-03-20
평점 3.60/5 총 5 개의 평점
개발자 Almog Sade
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mimic , mock http requests",
    "short_name": "Mimic",
    "description": "Mimic is a seamless mocking tool that runs inside your browser.No configuration needed!",
    "version": "1.0",
    "browser_action": {
        "default_icon": "mimic.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "mimic.png",
        "96": "mimic_large.png",
        "128": "mimic_large.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [],
    "web_accessible_resources": [
        "\/js\/utils.js",
        "\/js\/ace.js",
        "\/js\/mimic.js"
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}