Ant Design Runner

Ant Design Runner

An ant.design web plugin that helps you edit the sample code while browsing components and preview it without going to sites such as CodeSandbox or CodePen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Ant Design Runner",
  "description": "__MSG_extDescription__",
  "version": "1.0",
  "manifest_version": 3,
  "default_locale": "zh_CN",
  "content_scripts": [
    {
      "matches": [
        "https://ant.design/*",
        "https://ant-design.antgroup.com/*",
        "https://ant-design.gitee.io/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/*"
      ],
      "matches": [
        "https://ant.design/*",
        "https://ant-design.antgroup.com/*",
        "https://ant-design.gitee.io/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}