YMock: Mock API calls info

YMock: Mock API calls info

前端重构和开发时模拟后台接口返回数据的辅助开发工具。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YMock: Mock API calls info",
  "description": "前端重构和开发时模拟后台接口返回数据的辅助开发工具。",
  "version": "1.9.1",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "devtools_page": "index.html",
  "web_accessible_resources": [
    "ajaxIntercept.js",
    "clipboard.min.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content.js"
      ],
      "css": [
        "./custom-style.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "/images/logo.png",
    "32": "/images/logo.png",
    "48": "/images/logo.png",
    "128": "/images/logo.png"
  }
}