Oh-my-Mock

Extension for caching and mocking API (XHR/Fetch) responses

Oh-my-Mock란 무엇입니까?

Oh-my-Mock은(는) Lucas Caljé에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension for caching and mocking API (XHR/Fetch) responses"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Oh-my-Mock 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        OhMyMock mocks XMLHttpRequest and Fetch requests.  It caches responses automatically and as soon an API is called for which a response is already cached it will mock that request by serving a cached response. In the UI of OhMyMock you can modify responses, add response status codes and a much more.                    

확장 프로그램 기본 정보

이름 Oh-my-Mock Oh-my-Mock
ID egadlcooejllkdejejkhibmaphidmock
공식 URL https://chromewebstore.google.com/detail/oh-my-mock/egadlcooejllkdejejkhibmaphidmock
설명 Extension for caching and mocking API (XHR/Fetch) responses
파일 크기 7.07 MB
설치 횟수 2,211
현재 버전 3.3.15
최근 업데이트 2023-12-20
출시 날짜 2021-03-31
평점 5.00/5 총 8 개의 평점
개발자 Lucas Caljé
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/scaljeri/oh-my-mock
도움말 페이지 URL https://github.com/scaljeri/oh-my-mock/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Oh-my-Mock",
    "version": "3.3.15",
    "description": "Extension for caching and mocking API (XHR\/Fetch) responses",
    "manifest_version": 3,
    "minimum_chrome_version": "96",
    "permissions": [
        "background",
        "storage",
        "unlimitedStorage",
        "tabs",
        "declarativeNetRequest",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": "oh-my-mock\/assets\/icons\/icon-off-128.png",
        "default_title": "OhMyMock"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "oh-my-mock.js",
                "oh-my-mock.js.map",
                "early-inject.js",
                "sandbox.html"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "oh-my-mock\/index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "oh-my-mock\/assets\/icons\/icon-16.png",
        "48": "oh-my-mock\/assets\/icons\/icon-48.png",
        "128": "oh-my-mock\/assets\/icons\/icon-128.png"
    },
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    }
}