Chrome AEM Plugin

Chrome AEM Plugin

Plugin to save time debugging as an AEM developer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome AEM Plugin",
  "description": "Plugin to save time debugging as an AEM developer.",
  "version": "2.0.0",
  "permissions": [
    "declarativeContent",
    "storage",
    "tabs",
    "activeTab"
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/aem-plugin-16.png",
      "32": "images/aem-plugin-32.png",
      "48": "images/aem-plugin-48.png",
      "128": "images/aem-plugin-128.png"
    }
  },
  "icons": {
    "16": "images/aem-plugin-16.png",
    "32": "images/aem-plugin-32.png",
    "48": "images/aem-plugin-48.png",
    "128": "images/aem-plugin-128.png"
  },
  "options_page": "options.html",
  "commands": {
    "openInEdit": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "windows": "Alt+Shift+E",
        "mac": "Alt+Shift+E"
      },
      "description": "Shortcut to open current page in edit mode"
    },
    "openInCrx": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "windows": "Alt+Shift+C",
        "mac": "Alt+Shift+C"
      },
      "description": "Shortcut to open current page in CRX/DE"
    },
    "openInPreview": {
      "suggested_key": {
        "default": "Ctrl+Shift+D",
        "windows": "Alt+Shift+D",
        "mac": "Alt+Shift+D"
      },
      "description": "Shortcut to open current page as published (wcmmode=Disabled)"
    },
    "openInSites": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "windows": "Alt+Shift+S",
        "mac": "Alt+Shift+S"
      },
      "description": "Shortcut to open current page in the sites console"
    }
  }
}