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文件

下载Oh-my-Mock扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        ]
    }
}