UCBee Dashboard extension

UCBee Dashboard extension

Click to dial application for the UCBee telecommunication systems

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "UCBee Dashboard Extension",
  "version": "1.2.2",
  "manifest_version": 2,
  "description": "Dashboard for the UCBee telecommunication systems",
  "browser_action": {
    "default_icon": "icons/icon-128.png",
    "default_popup": "ui/Popup.html",
    "default_title": "UCBee Dashboard"
  },
  "icons": {
    "128": "icons/icon-128.png"
  },
  "background": {
    "page": "background.html"
  },
  "options_page": "ui/Settings.html",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "num.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "/ui/popup/*"
  ],
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "notifications",
    "contextMenus"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "53.0"
    }
  }
}