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é
Eメール [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"
        ]
    }
}