RingCentral

RingCentral

Seamlessly integrate your RingCentral communications and collaboration solution with Google Cloud to create a powerful business communications hub.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.2.18",
  "name": "RingCentral",
  "description": "RingCentral",
  "permissions": [
    "http://*/",
    "https://*/",
    "storage",
    "activeTab",
    "tabs",
    "identity",
    "notifications",
    "unlimitedStorage",
    "https://*.google.com/*"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "./assets/16x16.png",
      "32": "./assets/32x32.png"
    }
  },
  "icons": {
    "16": "./assets/16x16.png",
    "32": "./assets/32x32.png",
    "48": "./assets/48x48.png",
    "128": "./assets/128x128.png"
  },
  "background": {
    "scripts": [
      "./config.js",
      "./background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./config.js",
        "./content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "65.0"
    }
  }
}