Cloud Plugin

Cloud Plugin

Connect your browser with a powerful Cloud Group PBX.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.0.3",
  "name": "Cloud Plugin",
  "default_locale": "nl",
  "description": "Connect your browser with a powerful Cloud Group PBX.",
  "author": "Cloud Group NV",
  "icons": {
    "16": "img/logo_dark.png",
    "128": "img/logo_dark.png"
  },
  "action": {
    "default_icon": "img/logo_dark.png",
    "default_title": "Cloud Group NV",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "css/toastr.min.css",
        "css/custom.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/toastr.min.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/service_worker.js"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "notifications",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}