chrome-extension-mocker

A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.

chrome-extension-mocker란 무엇입니까?

chrome-extension-mocker은(는) Sky.Sun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A mock tool based on Chrome extension, no need to change any code, support dynamic mock data."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

chrome-extension-mocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Usage
In Chrome browser, press Ctrl+Shift+I or ⌘+⌥+I to open dev tools, go to Mocker panel.

Click the New button, and enter the mock data you want. In Match Request panel, set which requests need to match, and in Mock Response panel, set the simulate response you want to return.

Note that if one request is matched, the original request will be redirected into a data uri, you can see details in Console panel.                    

확장 프로그램 기본 정보

이름 chrome-extension-mocker chrome-extension-mocker
ID kfmkpfnmkjgcalngkpkjpjngjkfkjecl
공식 URL https://chromewebstore.google.com/detail/chrome-extension-mocker/kfmkpfnmkjgcalngkpkjpjngjkfkjecl
설명 A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.
파일 크기 12.08 MB
설치 횟수 46
현재 버전 2.0.0
최근 업데이트 2021-12-06
출시 날짜 2021-12-06
개발자 Sky.Sun
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/eshengsky/chrome-extension-mocker
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "chrome-extension-mocker",
    "homepage_url": "http:\/\/localhost:8080\/",
    "description": "A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.",
    "default_locale": "en",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icons\/icon_38.png",
        "48": "icons\/icon_38.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "devtools.html",
    "browser_action": {
        "default_title": "Mocker",
        "default_icon": {
            "19": "icons\/icon_38.png",
            "38": "icons\/icon_38.png"
        }
    },
    "version": "2.0.0",
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}