Voiso Contact Center

Voiso Contact Center

Enables click-to-call and SMS capabilities in any web-based application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "2.0.0",
  "manifest_version": 3,
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content-script.js"
      ],
      "css": [
        "content-script.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*.voiso.com/stats"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "dispatch-script.js"
      ],
      "matches": [
        "https://*.voiso.com/stats"
      ]
    }
  ],
  "background": {
    "service_worker": "background-script.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/icons/call-icon.svg",
        "/icons/sms-icon.svg",
        "/icons/tooltip-logo.svg",
        "/icons/tooltip-logo-dark.svg",
        "content-script.css",
        "shadow-root.css",
        "voiso-fonts.css",
        "/fonts/GraphikLC-Regular.ttf",
        "popup-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": "./icons/icon-16.png",
    "default_popup": "./login-popup.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "./icons/icon-16.png",
    "32": "./icons/icon-32.png",
    "48": "./icons/icon-48.png",
    "128": "./icons/icon-128.png"
  }
}