Directchat

Directchat

Extensão Directcall CHAT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "4.2.4",
  "name": "Directchat",
  "description": "Extensão Directcall CHAT",
  "author": "Directcall",
  "action": {
    "default_title": "DirectCHAT",
    "default_icon": "img/icon.png"
  },
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "64": "img/icon.png",
    "128": "img/icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://*.directcallsoft.com/*"
    ],
    "accepts_tls_channel_id": false
  },
  "host_permissions": [
    "*://*.directcallsoft.com/*"
  ],
  "permissions": [
    "storage",
    "idle",
    "tabs",
    "chrome://apps",
    "chrome-extension://*",
    "file:///*",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.bitrix24.com.br/*",
        "https://*.directcallsoft.com/*"
      ],
      "js": [
        "/socket/socket.io.min.js",
        "/src/main.js",
        "/src/events.js"
      ]
    }
  ]
}