Dummy

More than mock.

What is Dummy?

Dummy is a Chrome extension developed by dummy.alibaba, and its main feature is "More than mock.".

Extension Screenshots

screenshot

Download Dummy Extension CRX File

Download Dummy 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

                        应用于开发或测试时Mock数据。

* 无需等待后端API,可使用Mock直接进行逻辑开发
* 方便快捷的管理各种Mock的数据规则
* 方便模拟出数据的边界值,应用于各种数据情况的测试

注:此应用为阿里内网的应用。                    

Extension Basic Information

Name Dummy Dummy
ID khblfpjeccikamdkjelhbdnalmkdjmfn
Official URL https://chromewebstore.google.com/detail/dummy/khblfpjeccikamdkjelhbdnalmkdjmfn
Description More than mock.
File Size 531 KB
Installation Count 181
Current Version 1.1.19
Last Updated 2021-04-17
Publish Date 2021-01-09
Developer dummy.alibaba
Email [email protected]
Payment Type free
Extension Website https://dummy-mock.alibaba-inc.com
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dummy",
    "version": "1.1.19",
    "manifest_version": 2,
    "description": "More than mock.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "devtools_page": "devtools.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "More than mock.",
        "default_icon": "icon.png",
        "default_popup": "default_popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "start.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "homepage_url": "https:\/\/dummy-mock.alibaba-inc.com\/",
    "web_accessible_resources": [
        "dummy-client.js"
    ]
}