Companion for Cisco Finesse

Keep track of your Finesse state without looking at the Finesse tab.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "0.0.1",
  "description": "__MSG_extDescription__",
  "permissions": [
    "storage",
    "tabs",
    "notifications"
  ],
  "default_locale": "en",
  "commands": {
    "find-finesse": {
      "suggested_key": {
        "windows": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F",
        "linux": "Ctrl+Shift+F"
      },
      "description": "__MSG_commandDescription__"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/desktop/*",
        "http://*/desktop/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/finesseState16.png",
      "32": "images/finesseState32.png",
      "48": "images/finesseState48.png",
      "128": "images/finesseState128.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "icons": {
    "16": "images/finesseState16.png",
    "32": "images/finesseState32.png",
    "48": "images/finesseState48.png",
    "128": "images/finesseState128.png"
  },
  "web_accessible_resources": [
    "images/*.png"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "manifest_version": 2
}