XSwitch

XSwitch

A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "XSwitch",
  "description": "A tool for redirecting URLs and allowing CORS to make the local development experience easy and happy.",
  "short_name": "xs",
  "version": "1.17.1",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "images/grey_128.png",
    "default_title": "XSwitch",
    "default_popup": "XSwitch.html"
  },
  "permissions": [
    "webRequest",
    "storage",
    "webRequestBlocking",
    "browsingData",
    "<all_urls>"
  ],
  "icons": {
    "48": "images/grey_128.png",
    "128": "images/grey_128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+X",
        "mac": "Command+Shift+X",
        "default": "Ctrl+Shift+X"
      }
    }
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.min.js"
    ]
  }
}