LiveVox helper

LiveVox helper

useful addon to calling through LiveVox

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LiveVox helper",
  "version": "0.1.3",
  "description": "useful addon to calling through LiveVox",
  "browser_action": {
    "name": "LiveVox helper",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "jquery-2.1.4.min.js",
      "common.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jquery-2.1.4.min.js",
        "common.js",
        "content_script.js"
      ],
      "matches": [
        "*://*.livevox.com/*"
      ]
    }
  ],
  "manifest_version": 2
}