Switch environment

Switch environment

Switch from production to development environment, opening the same url into dev environment such as in localhost.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Switch environment",
  "description": "Switch from production to development environment, opening the same url into dev environment such as in localhost.",
  "version": "3.0.0",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "parseuri.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Switch!",
    "default_icon": "code_48x52.png"
  },
  "icons": {
    "48": "code_48x52.png",
    "128": "code_124x135.png"
  },
  "options_page": "options.html"
}