Oh-my-Mock

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

Was ist Oh-my-Mock?

Oh-my-Mock ist eine Chrome-Erweiterung, die von Lucas Caljé entwickelt wurde, und ihr Hauptmerkmal ist "Extension for caching and mocking API (XHR/Fetch) responses".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Oh-my-Mock-Erweiterungs-CRX-Datei herunterladen

Laden Sie Oh-my-Mock-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Oh-my-Mock Oh-my-Mock
ID egadlcooejllkdejejkhibmaphidmock
Offizielle URL https://chromewebstore.google.com/detail/oh-my-mock/egadlcooejllkdejejkhibmaphidmock
Beschreibung Extension for caching and mocking API (XHR/Fetch) responses
Dateigröße 7.07 MB
Installationsanzahl 2,211
Aktuelle Version 3.3.15
Letztes Update 2023-12-20
Veröffentlichungsdatum 2021-03-31
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler Lucas Caljé
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/scaljeri/oh-my-mock
Hilfeseite URL https://github.com/scaljeri/oh-my-mock/issues
Unterstützte Sprachen 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"
        ]
    }
}