Daktela

Daktela

Client for Daktela V6 omnichannel system that enables agents manage operator activities from any browser tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "version": "4.1.2",
  "homepage_url": "https://www.daktela.com",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "48": "icons/icon.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "icons/icon-offline.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "http://*.daktela.com/*",
        "https://*.daktela.com/*"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "config/config.js",
        "cli.js",
        "content/content-script.js",
        "sentry/sentry.js"
      ]
    },
    {
      "matches": [
        "https://docs.daktela.com/*"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "config/config.js",
        "cli.js",
        "content/content-script.js",
        "sentry/sentry.js"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options/options.html"
  }
}