Conpass Builder

Conpass Builder

User Engagement flows builder, for Conpass customers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Conpass Builder",
  "description": "User Engagement flows builder, for Conpass customers",
  "version": "1.70.66",
  "short_name": "Conpass",
  "homepage_url": "https://conpass.io/",
  "default_locale": "en",
  "action": {
    "default_title": "Conpass Builder",
    "default_icon": "assets/icon_off.png"
  },
  "icons": {
    "128": "assets/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "styles.css",
        "assets/*.png",
        "assets/css/*.css",
        "assets/*.svg",
        "assets/*.woff2",
        "myscript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "identity",
    "tabs",
    "scripting",
    "storage",
    "runtime",
    "extension",
    "unlimitedStorage"
  ],
  "optional_permissions": [],
  "host_permissions": [
    "*://app.conpass.io/*",
    "*://*.omie.com.br/*"
  ],
  "optional_host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "externally_connectable": {
    "matches": [
      "*://app.conpass.io/*",
      "*://*.omie.com.br/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}