ParrotMocker

Intercept h5/node.js requests and mock reponses

ParrotMocker là gì?

ParrotMocker là một tiện ích mở rộng Chrome được phát triển bởi chinesedfan, và tính năng chính của nó là "Intercept h5/node.js requests and mock reponses".

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

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ParrotMocker

Tải xuống các tệp mở rộng ParrotMocker 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

                        Supports to intercept XHR/JSONP/Fetch requests and forward to the specified mock server.                    

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

Tên ParrotMocker ParrotMocker
ID hdhamekapmnmceohfdbfelofidflfelm
URL Chính Thức https://chromewebstore.google.com/detail/parrotmocker/hdhamekapmnmceohfdbfelofidflfelm
Mô tả Intercept h5/node.js requests and mock reponses
Kích Thước Tệp 55.87 KB
Số Lần Cài Đặt 182
Phiên Bản Hiện Tại 1.6.0
Cập Nhật Lần Cuối 2022-11-25
Ngày Phát Hành 2018-07-07
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển chinesedfan
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/chinesedfan/parrot-mocker
URL Trang Trợ Giúp https://github.com/chinesedfan/parrot-mocker/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ParrotMocker",
    "version": "1.6.0",
    "description": "Intercept h5\/node.js requests and mock reponses",
    "icons": {
        "128": "img\/parrot-128.png"
    },
    "action": {
        "default_title": "ParrotMocker",
        "default_icon": "img\/parrot-32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "build\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "build\/parrot.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}