Softphone Extension

Softphone Extension

Edge extension for use with our Softphone application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Softphone Extension",
  "description": "Edge extension for use with our Softphone application",
  "version": "1.0",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "helper.js",
        "country_prefix.js",
        "script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "pages/index/index.html"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "pages/options/options.html"
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}