ParrotMocker

Intercept h5/node.js requests and mock reponses

Cos'è ParrotMocker?

ParrotMocker è un'estensione di Chrome sviluppata da chinesedfan, e la sua funzione principale è "Intercept h5/node.js requests and mock reponses".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ParrotMocker

Scarica i file di estensione ParrotMocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome ParrotMocker ParrotMocker
ID hdhamekapmnmceohfdbfelofidflfelm
URL Ufficiale https://chromewebstore.google.com/detail/parrotmocker/hdhamekapmnmceohfdbfelofidflfelm
Descrizione Intercept h5/node.js requests and mock reponses
Dimensione del File 55.87 KB
Conteggio Installazioni 182
Versione Corrente 1.6.0
Ultimo Aggiornamento 2022-11-25
Data di Pubblicazione 2018-07-07
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore chinesedfan
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/chinesedfan/parrot-mocker
URL della Pagina di Aiuto https://github.com/chinesedfan/parrot-mocker/issues
Lingue Supportate 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:\/\/*\/*"
    ]
}