AEM Chrome Plug-in

AEM Chrome Plug-in

Devtools panel for AEM development. Includes in-browser Log Tracer and Adaptive Forms development tooling

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AEM Chrome Plug-in",
  "version": "0.8.0",
  "manifest_version": 2,
  "description": "Devtools panel for AEM development. Includes in-browser Log Tracer and Adaptive Forms development tooling",
  "devtools_page": "devtools.html",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "vendor/assets/javascripts/jquery-2.2.0.min.js",
      "assets/javascripts/background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "*://*/*"
      ],
      "js": [
        "aem-chrome-plugin--adaptive-form--content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "aem-chrome-plugin--adaptive-form--custom-script.js"
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "assets/images/aem-chrome-plugin_logo_16x16.png",
    "48": "assets/images/aem-chrome-plugin_logo_48x48.png",
    "128": "assets/images/aem-chrome-plugin_logo_128x128.png"
  }
}