ParrotMocker

Intercept h5/node.js requests and mock reponses

What is ParrotMocker?

ParrotMocker is a Chrome extension developed by chinesedfan, and its main feature is "Intercept h5/node.js requests and mock reponses".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download ParrotMocker Extension CRX File

Download ParrotMocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name ParrotMocker ParrotMocker
ID hdhamekapmnmceohfdbfelofidflfelm
Official URL https://chromewebstore.google.com/detail/parrotmocker/hdhamekapmnmceohfdbfelofidflfelm
Description Intercept h5/node.js requests and mock reponses
File Size 55.87 KB
Installation Count 182
Current Version 1.6.0
Last Updated 2022-11-25
Publish Date 2018-07-07
Rating 5.00/5 Total 2 Ratings
Developer chinesedfan
Email [email protected]
Payment Type free
Extension Website https://github.com/chinesedfan/parrot-mocker
Help Page URL https://github.com/chinesedfan/parrot-mocker/issues
Supported Languages 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:\/\/*\/*"
    ]
}