UC Manager

UC Manager

The unified communications manager is a toolset to assist you to use your PBX easily with your daily phone use.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionShortName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.0.11",
  "manifest_version": 2,
  "icons": {
    "16": "assets/icon.png",
    "32": "assets/icon_32.png",
    "48": "assets/icon_48.png",
    "64": "assets/icon_64.png",
    "128": "assets/icon_128.png"
  },
  "browser_action": {
    "default_icon": "assets/icon.png",
    "default_title": "__MSG_browserActionTitle__"
  },
  "background": {
    "scripts": [
      "background/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content/custom_design.css"
      ],
      "js": [
        "content/content.js",
        "content/interface_processing.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "storage"
  ],
  "options_ui": {
    "page": "settings/options.html",
    "chrome_style": true
  },
  "default_locale": "nl"
}