Mockiato: Mocks on the Fly!

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

Mockiato: Mocks on the Fly! क्या है?

Mockiato: Mocks on the Fly! mockiato.extension द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mockiato: Mocks on the Fly! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Mockiato: Mocks on the Fly! Mockiato: Mocks on the Fly!
ID ilbkkhmnmnehcicempfpekgcpneeekao
आधिकारिक URL https://chromewebstore.google.com/detail/mockiato-mocks-on-the-fly/ilbkkhmnmnehcicempfpekgcpneeekao
विवरण Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing.
फ़ाइल का आकार 477 KB
स्थापना संख्या 161
वर्तमान संस्करण 1.7.3
अंतिम अपडेट 2024-02-08
प्रकाशन तिथि 2022-08-30
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर mockiato.extension
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/avivasyuta/mockiato
सहायता पृष्ठ URL https://github.com/avivasyuta/mockiato
समर्थित भाषाएँ 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"
        }
    ]
}