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! là gì?

Mockiato: Mocks on the Fly! là một tiện ích mở rộng Chrome được phát triển bởi mockiato.extension, và tính năng chính của nó là "Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mockiato: Mocks on the Fly!

Tải xuống các tệp mở rộng Mockiato: Mocks on the Fly! dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mockiato: Mocks on the Fly! Mockiato: Mocks on the Fly!
ID ilbkkhmnmnehcicempfpekgcpneeekao
URL Chính Thức https://chromewebstore.google.com/detail/mockiato-mocks-on-the-fly/ilbkkhmnmnehcicempfpekgcpneeekao
Mô tả Chrome extension to intercept requests, create real-time mocks, and auto-insert headers for web development & testing.
Kích Thước Tệp 477 KB
Số Lần Cài Đặt 161
Phiên Bản Hiện Tại 1.7.3
Cập Nhật Lần Cuối 2024-02-08
Ngày Phát Hành 2022-08-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển mockiato.extension
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/avivasyuta/mockiato
URL Trang Trợ Giúp https://github.com/avivasyuta/mockiato
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}