Voxeet Native Extension

Voxeet Native Extension

Experience True Voice surround sound quality and powerful collaboration tools that let your business move at the speed of sound

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Voxeet Native Extension",
  "version": "0.6",
  "description": "Experience True Voice surround sound quality and powerful collaboration tools that let your business move at the speed of sound",
  "permissions": [
    "nativeMessaging",
    "activeTab",
    "tabs"
  ],
  "icons": {
    "64": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.voxeet.com/*",
        "*://*.voxeet.io/*"
      ],
      "js": [
        "content-scripts.js"
      ],
      "run_at": "document_start"
    }
  ]
}