voix

voix

voix - text to speech

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "voix",
  "version": "1.0.0",
  "short_name": "voix",
  "author": "voix.us",
  "homepage_url": "https://extension.voix.us",
  "description": "voix - text to speech",
  "icons": {
    "50": "assets/img/play-50.png",
    "100": "assets/img/play-100.png"
  },
  "background": {
    "scripts": [
      "background/extension.js",
      "background/utils.js"
    ],
    "persistent": true
  },
  "browser_action": {},
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://extension.voix.us/; object-src 'self'",
  "externally_connectable": {
    "ids": "*",
    "matches": [
      "https://extension.voix.us/*"
    ]
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "background",
    "storage",
    "idle"
  ],
  "offline_enabled": true,
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": []
}