Oh-my-Mock

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

Wat is Oh-my-Mock?

Oh-my-Mock is een Chrome-extensie ontwikkeld door Lucas Caljé, en de belangrijkste functie is "Extension for caching and mocking API (XHR/Fetch) responses".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Oh-my-Mock

Download Oh-my-Mock-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Oh-my-Mock Oh-my-Mock
ID egadlcooejllkdejejkhibmaphidmock
Officiële URL https://chromewebstore.google.com/detail/oh-my-mock/egadlcooejllkdejejkhibmaphidmock
Beschrijving Extension for caching and mocking API (XHR/Fetch) responses
Bestandsgrootte 7.07 MB
Aantal Installaties 2,211
Huidige Versie 3.3.15
Laatst Bijgewerkt 2023-12-20
Publicatiedatum 2021-03-31
Beoordeling 5.00/5 Totaal 8 Beoordelingen
Ontwikkelaar Lucas Caljé
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/scaljeri/oh-my-mock
Help Pagina-URL https://github.com/scaljeri/oh-my-mock/issues
Ondersteunde Talen 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"
        ]
    }
}