chrome-extension-mocker

A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.

What is chrome-extension-mocker?

chrome-extension-mocker is a Chrome extension developed by Sky.Sun, and its main feature is "A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download chrome-extension-mocker Extension CRX File

Download chrome-extension-mocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Usage
In Chrome browser, press Ctrl+Shift+I or ⌘+⌥+I to open dev tools, go to Mocker panel.

Click the New button, and enter the mock data you want. In Match Request panel, set which requests need to match, and in Mock Response panel, set the simulate response you want to return.

Note that if one request is matched, the original request will be redirected into a data uri, you can see details in Console panel.                    

Extension Basic Information

Name chrome-extension-mocker chrome-extension-mocker
ID kfmkpfnmkjgcalngkpkjpjngjkfkjecl
Official URL https://chromewebstore.google.com/detail/chrome-extension-mocker/kfmkpfnmkjgcalngkpkjpjngjkfkjecl
Description A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.
File Size 12.08 MB
Installation Count 46
Current Version 2.0.0
Last Updated 2021-12-06
Publish Date 2021-12-06
Developer Sky.Sun
Email [email protected]
Payment Type free
Extension Website https://github.com/eshengsky/chrome-extension-mocker
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "chrome-extension-mocker",
    "homepage_url": "http:\/\/localhost:8080\/",
    "description": "A mock tool based on Chrome extension, no need to change any code, support dynamic mock data.",
    "default_locale": "en",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icons\/icon_38.png",
        "48": "icons\/icon_38.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "devtools.html",
    "browser_action": {
        "default_title": "Mocker",
        "default_icon": {
            "19": "icons\/icon_38.png",
            "38": "icons\/icon_38.png"
        }
    },
    "version": "2.0.0",
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}