3CX Click2Call (BETA)

3CX Click2Call (BETA)

The 3CX browser extension provides click2call from any website or CRM system for 3CX PBX users.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_description__",
  "manifest_version": 3,
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "default_locale": "en",
  "name": "__MSG_name__",
  "short_name": "__MSG_short__",
  "permissions": [
    "storage",
    "tabs"
  ],
  "version": "5.0.0.100",
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": false
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": false,
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ]
}