VOXBOX - Emails With Voice

VOXBOX - Emails With Voice

Add a voice message to your Gmail emails. Instantly share VOXBOX voice recordings in your Gmail emails. Save Time - A more…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "VOXBOX - Emails With Voice",
  "short_name": "VOXBOX - Emails With Voice",
  "description": "",
  "version": "1.0.0",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*",
        "*://inbox.google.com/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "icons": {
    "128": "128.png"
  },
  "web_accessible_resources": [
    "*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}