Exponea Console

Exponea Console

Browser extension used to help working with and debugging the Exponea SDK.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Exponea Console",
  "homepage_url": "https://docs.exponea.com/docs/exponea-console",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "devtools_page": "devtools.html",
  "action": {
    "default_title": "Exponea Console",
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src https://api.exponea.com"
  },
  "version": "1.3.0",
  "description": "Browser extension used to help working with and debugging the Exponea SDK."
}