Switch Telecom Softphone Click-To-Call

Switch Telecom Softphone Click-To-Call

Switch Telecom softphone companion addon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Switch Telecom Softphone Click-To-Call",
  "version": "1.0.2",
  "description": "Switch Telecom softphone companion addon",
  "icons": {
    "48": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "clicktocall.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "Switch Telecom Softphone Click-To-Call",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "tabs",
    "storage"
  ]
}