ParrotMocker

Intercept h5/node.js requests and mock reponses

Τι είναι το ParrotMocker;

Το ParrotMocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον chinesedfan, και η κύρια λειτουργία του είναι "Intercept h5/node.js requests and mock reponses".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ParrotMocker

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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:\/\/*\/*"
    ]
}