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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}