RingCentral Contact Center Voice

RingCentral Contact Center Voice

RingCentral Contact Center Voice plug-in connects agents directly to RingCentral Contact Center.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RingCentral Contact Center Voice",
  "author": "RingCentral",
  "version": "2.0.5",
  "description": "RingCentral Contact Center Voice plug-in connects agents directly to RingCentral Contact Center.",
  "action": {
    "default_icon": {
      "16": "img/icon16.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://apps.ringcentral.com/integration/googlechrome/redirect.html*"
      ],
      "all_frames": true,
      "js": [
        "js/redirect.bundle.js"
      ],
      "css": [
        "css/redirect.css"
      ]
    },
    {
      "matches": [
        "https://service.ringcentral.com/login/*",
        "https://service.ops.ringcentral.com/login/*",
        "https://login.ringcentral.com/*",
        "https://login.ops.ringcentral.com/*",
        "https://accounts.google.com/signin/oauth/*"
      ],
      "all_frames": true,
      "js": [
        "js/signIn.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "js/serviceWorker.bundle.js"
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "downloads",
    "contentSettings",
    "notifications",
    "tabs",
    "offscreen"
  ],
  "host_permissions": [
    "https://platform.ringcentral.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.js",
        "*.html",
        "/img/icon128.png"
      ],
      "matches": [],
      "extensions": []
    }
  ]
}