MockMan - mock APIs

Mocks api responses for AJAX (XHR) requests. (Postman for Frontend)

MockMan - mock APIs क्या है?

MockMan - mock APIs sudobird द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mocks api responses for AJAX (XHR) requests. (Postman for Frontend)"।

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

screenshot
screenshot
screenshot

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

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

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

                        This is essentially built to increase productivity in frontend development. Made for developers, it lets users to define requests (url, method and mock response) for AJAX calls. 
Supports all common libraries like axios, superagent, XMLHttp, fetch etc. 
Response can be a JSON object or an error. 
It includes JSON formatter, and JSON viewer to better visualise data in collapsible form. 

Each request can be individually turned on/off to apply mocking. 
There's a global power switch to turn off mocking all the requests at once. 

The JSON object maker lets users to make the object in JS syntax and the formatter will convert it into valid JSON object with inverted commas and no trailing commas etc. 

Features: 
1. Urls are regex enabled
2. Labels for requests, so user can add different versions of same api
3. Delay in response
4. Test your app with success and error responses.
5. Add response headers to request.

Steps for Users - 
1. Define the api url, method, response JSON or error msg to be mocked.
2. Refresh the project and the ajax request will be mocked. Mocked url will disappear from network tab and appear in console.                    

एक्सटेंशन की मूल जानकारी

नाम MockMan - mock APIs MockMan - mock APIs
ID bigfgeehfoenaimkoohnokeeideaomnd
आधिकारिक URL https://chromewebstore.google.com/detail/mockman-mock-apis/bigfgeehfoenaimkoohnokeeideaomnd
विवरण Mocks api responses for AJAX (XHR) requests. (Postman for Frontend)
फ़ाइल का आकार 2.3 MB
स्थापना संख्या 1,887
वर्तमान संस्करण 4.2.0
अंतिम अपडेट 2023-09-20
प्रकाशन तिथि 2020-07-08
रेटिंग 4.45/5 कुल 11 रेटिंग्स
डेवलपर sudobird
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://mockman.dev/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MockMan - mock APIs",
    "description": "Mocks api responses for AJAX (XHR) requests. (Postman for Frontend)",
    "version": "4.2.0",
    "action": {
        "default_icon": "assets\/icon-dark.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "globals.js",
                "content-script.js"
            ]
        }
    ],
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "app\/*",
                "mocky.prod.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "app\/*",
                "mocky.prod.js"
            ],
            "matches": [
                "file:\/\/\/*"
            ]
        }
    ]
}