Appcues Builder

Appcues Builder

Build Appcues experiences and events while on your website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "8.0.4",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "action": {
    "default_title": "__MSG_appName__"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "permissions": [
    "scripting",
    "tabs",
    "activeTab",
    "storage",
    "contextMenus",
    "alarms"
  ],
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/static/*"
      ],
      "matches": [
        "https://*.appcues.com/*",
        "*://localhost/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.appcues.com/*",
      "*://localhost/*"
    ]
  },
  "icons": {
    "16": "images/icon-16-prod.png",
    "32": "images/icon-32-prod.png",
    "48": "images/icon-48-prod.png",
    "128": "images/icon-128-prod.png",
    "256": "images/icon-256-prod.png",
    "512": "images/icon-512-prod.png"
  },
  "default_locale": "en",
  "content_security_policy": {
    "extension_pages": "default-src 'self'; font-src 'self'; img-src 'self'; style-src 'self'; frame-src 'self' https://*.appcues.com; connect-src 'self' https://*.appcues.com https://*.appcues.net https://api.cloudinary.com https://api.segment.io https://appcues-crx.global.ssl.fastly.net https://*.sentry.io https://www.googleapis.com;"
  }
}