Mimic , mock http requests

Mimic is a seamless mocking tool that runs inside your browser.No configuration needed!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mimic , mock http requests",
  "short_name": "Mimic",
  "description": "Mimic is a seamless mocking tool that runs inside your browser.No configuration needed!",
  "version": "1.0",
  "browser_action": {
    "default_icon": "mimic.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "mimic.png",
    "96": "mimic_large.png",
    "128": "mimic_large.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [],
  "web_accessible_resources": [
    "/js/utils.js",
    "/js/ace.js",
    "/js/mimic.js"
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}