Fast Mock

Fast Mock

Tool for Front-end development engineer, which can fast creat mock!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fast Mock",
  "version": "1.0.1",
  "description": "Tool for Front-end development engineer, which can fast creat mock!",
  "permissions": [
    "declarativeContent",
    "storage",
    "webNavigation",
    "tabs",
    "notifications",
    "http://*/",
    "https://*/",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "libs/co.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {},
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "options_page": "iframe/index.html",
  "web_accessible_resources": [
    "pageScripts/defaultSettings.js",
    "pageScripts/main.js",
    "iframe/index.html"
  ]
}