Chameleon Builder

Chameleon Builder

Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "icons": {
    "128": "images/icon.png"
  },
  "browser_action": {
    "default_title": "Chameleon Builder",
    "default_icon": "images/icon.png",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.chameleon.io/*",
        "https://app.trychameleon.com/*"
      ],
      "js": [
        "js/content/app.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/content/end.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "externally_connectable": {
    "ids": [],
    "matches": [
      "https://*.chameleon.io/*",
      "https://*.trychameleon.com/*"
    ]
  },
  "permissions": [
    "https://*/*",
    "tabs"
  ],
  "web_accessible_resources": [],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "name": "Chameleon Builder",
  "short_name": "Chameleon Builder",
  "version": "3.2.7",
  "description": "Create in-product Experiences (microsurveys, tours, banners, modals etc.) without coding."
}