Convert Engine

Convert Engine

The CRM Plugin for the Convert Engine platform. This plugin allows Convert Engine to talk to your CRM (if supported).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Convert Engine",
  "description": "The CRM Plugin for the Convert Engine platform. This plugin allows Convert Engine to talk to your CRM (if supported).",
  "version": "1.0.3",
  "icons": {
    "16": "icon-16x16.png",
    "32": "icon-32x32.png",
    "48": "icon-48x48.png",
    "128": "icon-128x128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_icon": "icon-32x32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/vendor.js",
        "js/content_script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}