Switch Domain

Switch Domain

This extension adds a page action menu to switch domains for Adobe AEM/CQ and other large projects

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.3.0",
  "manifest_version": 2,
  "name": "Switch Domain",
  "short_name": "Switch Domain",
  "description": "This extension adds a page action menu to switch domains for Adobe AEM/CQ and other large projects",
  "homepage_url": "https://github.com/clanceyp/chrome-extension-domain-switcher",
  "permissions": [
    "activeTab"
  ],
  "options_page": "options/index.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "domainSwitcher.js",
      "background.js",
      "options/js/manifest.js",
      "options/js/vendor/underscore.js",
      "options/js/vendor/zepto.js",
      "options/js/background.js"
    ]
  },
  "icons": {
    "48": "/lib/icon/swap.png"
  },
  "browser_action": {
    "default_icon": "/lib/icon/swap.png",
    "default_title": "Switch Domain",
    "default_popup": "popup.html"
  }
}