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! هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة Mockiato: Mocks on the Fly!

قم بتنزيل ملفات الامتداد Mockiato: Mocks on the Fly! بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
        }
    ]
}