Puppy - Target Activity Inspector

Puppy - Target Activity Inspector

This extension highlights active Adobe Target activities, such as A/B tests on a webpage and other Target activities in effect.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "This extension highlights active Adobe Target activities, such as A/B tests on a webpage and other Target activities in effect.",
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "Puppy - Target Activity Inspector",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "128.png",
    "license": "LICENSE"
  },
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js",
        "script.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "script.bundle.js",
        "icon-128.png",
        "icon-34.png",
        "16.png",
        "16bw.png",
        "48.png",
        "48bw.png",
        "128.png",
        "128bw.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}