ParrotMocker

Intercept h5/node.js requests and mock reponses

ParrotMocker क्या है?

ParrotMocker chinesedfan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Intercept h5/node.js requests and mock reponses"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ParrotMocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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:\/\/*\/*"
    ]
}