ParrotMocker

Intercept h5/node.js requests and mock reponses

ParrotMockerとは何ですか?

ParrotMockerはchinesedfanによって開発されたChromeの拡張機能で、その主な機能は「Intercept h5/node.js requests and mock reponses」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

ParrotMocker拡張機能のCRXファイルをダウンロード

ParrotMocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 ParrotMocker ParrotMocker
ID hdhamekapmnmceohfdbfelofidflfelm
公式URL https://chromewebstore.google.com/detail/parrotmocker/hdhamekapmnmceohfdbfelofidflfelm
説明 Intercept h5/node.js requests and mock reponses
ファイルサイズ 55.87 KB
インストール数 182
現在のバージョン 1.6.0
最終更新日 2022-11-25
公開日 2018-07-07
評価 5.00/5 合計 2 レビュー
開発者 chinesedfan
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/chinesedfan/parrot-mocker
ヘルプページのURL https://github.com/chinesedfan/parrot-mocker/issues
対応言語 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:\/\/*\/*"
    ]
}