Mockiato: Mocks on the Fly!

Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing.

Cos'è Mockiato: Mocks on the Fly!?

Mockiato: Mocks on the Fly! è un'estensione di Chrome sviluppata da mockiato.extension, e la sua funzione principale è "Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Mockiato: Mocks on the Fly!

Scarica i file di estensione Mockiato: Mocks on the Fly! 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

                        Mockiato is an extension for Google Chrome, designed to optimize web application development and testing. It allows you to intercept outgoing requests in real-time and create mocks for them, ensuring quick emulation of server responses.

In addition, Mockiato enables the addition or modification of headers in requests. This feature significantly simplifies request configuration and saves developers' time. Combined, these tools provide flexibility and convenience, making the development and testing process more efficient and reliable.

You can submit issues, bugs or feature request at https://github.com/avivasyuta/mockiato/issues                    

Informazioni di Base sull'Estensione

Nome Mockiato: Mocks on the Fly! Mockiato: Mocks on the Fly!
ID ilbkkhmnmnehcicempfpekgcpneeekao
URL Ufficiale https://chromewebstore.google.com/detail/mockiato-mocks-on-the-fly/ilbkkhmnmnehcicempfpekgcpneeekao
Descrizione Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing.
Dimensione del File 477 KB
Conteggio Installazioni 161
Versione Corrente 1.7.3
Ultimo Aggiornamento 2024-02-08
Data di Pubblicazione 2022-08-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore mockiato.extension
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/avivasyuta/mockiato
URL della Pagina di Aiuto https://github.com/avivasyuta/mockiato
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mockiato: Mocks on the Fly!",
    "description": "Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing.",
    "version": "1.7.3",
    "devtools_page": "devtools.html",
    "icons": {
        "16": "icons\/mockiato-16.png",
        "128": "icons\/mockiato-128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/mockiato-16.png",
            "128": "icons\/mockiato-128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "mockiato.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ]
}