FC Mock Api GeneratorDEV

FC Mock Api GeneratorDEV

With this extension you can easily create mocks of all our ajax calls!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FC Mock Api GeneratorDEV",
  "short_name": "fcMockGen",
  "description": "With this extension you can easily create mocks of all our ajax calls!",
  "version": "1.2.6",
  "browser_action": {
    "default_icon": "img/iconChromeX128.png",
    "default_title": "Open popup for recording options!",
    "default_popup": "popup.html"
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "icons": {
    "16": "img/iconChromeX16.png",
    "48": "img/iconChromeX48.png",
    "128": "img/iconChromeX128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://127.0.0.1:8080/*",
        "*://freedcamp.com/*",
        "*://localhost/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/popup.js",
        "js/jquery.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/iconChromeX16.png"
  ],
  "permissions": [
    "activeTab"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+C"
      }
    }
  }
}