Oh-my-Mock

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

Qu'est-ce que Oh-my-Mock ?

Oh-my-Mock est une extension Chrome développée par Lucas Caljé, et sa fonction principale est "Extension for caching and mocking API (XHR/Fetch) responses".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Oh-my-Mock

Téléchargez les fichiers d'extension Oh-my-Mock au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Oh-my-Mock Oh-my-Mock
ID egadlcooejllkdejejkhibmaphidmock
URL Officiel https://chromewebstore.google.com/detail/oh-my-mock/egadlcooejllkdejejkhibmaphidmock
Description Extension for caching and mocking API (XHR/Fetch) responses
Taille du Fichier 7.07 MB
Nombre d'Installations 2,211
Version Actuelle 3.3.15
Dernière Mise à Jour 2023-12-20
Date de Publication 2021-03-31
Évaluation 5.00/5 Total 8 Évaluations
Développeur Lucas Caljé
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/scaljeri/oh-my-mock
URL de la Page d'Aide https://github.com/scaljeri/oh-my-mock/issues
Langues Prises en Charge 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"
        ]
    }
}