Oh-my-Mock

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

Cos'è Oh-my-Mock?

Oh-my-Mock è un'estensione di Chrome sviluppata da Lucas Caljé, e la sua funzione principale è "Extension for caching and mocking API (XHR/Fetch) responses".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Oh-my-Mock

Scarica i file di estensione Oh-my-Mock in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Oh-my-Mock Oh-my-Mock
ID egadlcooejllkdejejkhibmaphidmock
URL Ufficiale https://chromewebstore.google.com/detail/oh-my-mock/egadlcooejllkdejejkhibmaphidmock
Descrizione Extension for caching and mocking API (XHR/Fetch) responses
Dimensione del File 7.07 MB
Conteggio Installazioni 2,211
Versione Corrente 3.3.15
Ultimo Aggiornamento 2023-12-20
Data di Pubblicazione 2021-03-31
Valutazione 5.00/5 Totale 8 Valutazioni
Sviluppatore Lucas Caljé
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/scaljeri/oh-my-mock
URL della Pagina di Aiuto https://github.com/scaljeri/oh-my-mock/issues
Lingue Supportate 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"
        ]
    }
}