ParrotMocker

Intercept h5/node.js requests and mock reponses

Apa itu ParrotMocker?

ParrotMocker adalah ekstensi Chrome yang dikembangkan oleh chinesedfan, dan fitur utamanya adalah "Intercept h5/node.js requests and mock reponses".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi ParrotMocker

Unduh file ekstensi ParrotMocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama ParrotMocker ParrotMocker
ID hdhamekapmnmceohfdbfelofidflfelm
URL Resmi https://chromewebstore.google.com/detail/parrotmocker/hdhamekapmnmceohfdbfelofidflfelm
Deskripsi Intercept h5/node.js requests and mock reponses
Ukuran File 55.87 KB
Jumlah Instalasi 182
Versi Saat Ini 1.6.0
Terakhir Diperbarui 2022-11-25
Tanggal Publikasi 2018-07-07
Penilaian 5.00/5 Total 2 Penilaian
Pengembang chinesedfan
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/chinesedfan/parrot-mocker
URL Halaman Bantuan https://github.com/chinesedfan/parrot-mocker/issues
Bahasa yang Didukung 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:\/\/*\/*"
    ]
}