Mockiato: Mocks on the Fly!

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

What is Mockiato: Mocks on the Fly!?

Mockiato: Mocks on the Fly! is a Chrome extension developed by mockiato.extension, and its main feature is "Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Mockiato: Mocks on the Fly! Extension CRX File

Download Mockiato: Mocks on the Fly! extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Mockiato: Mocks on the Fly! Mockiato: Mocks on the Fly!
ID ilbkkhmnmnehcicempfpekgcpneeekao
Official URL https://chromewebstore.google.com/detail/mockiato-mocks-on-the-fly/ilbkkhmnmnehcicempfpekgcpneeekao
Description Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing.
File Size 477 KB
Installation Count 161
Current Version 1.7.3
Last Updated 2024-02-08
Publish Date 2022-08-30
Rating 5.00/5 Total 2 Ratings
Developer mockiato.extension
Email [email protected]
Payment Type free
Extension Website https://github.com/avivasyuta/mockiato
Help Page URL https://github.com/avivasyuta/mockiato
Supported Languages 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"
        }
    ]
}