Location Switcher

Location Switcher

Switching between development and production sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Location Switcher",
  "version": "1.4.2",
  "description": "Switching between development and production sites.",
  "homepage_url": "https://github.com/ethanliu/location-switcher-addon",
  "icons": {
    "48": "icons/default.svg",
    "96": "icons/default.svg"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "page_action": {
    "browser_style": true,
    "default_icon": "icons/default.svg",
    "default_popup": "/popup/popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true,
    "open_in_tab": false
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}