VoxReader - Text to Speech

VoxReader - Text to Speech

Listen to any website with VoxReader

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.2.0",
  "description": "__MSG_appDescription__",
  "default_locale": "ru",
  "author": "VoXReader",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "unlimitedStorage",
    "<all_urls>",
    "contextMenus",
    "downloads"
  ],
  "background": {
    "scripts": [
      "vendors/bundle.js",
      "bg/bundle.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/48x48.png",
    "default_title": "__MSG_appName__"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "vendors/bundle.js",
        "contentnew/bundle.js"
      ]
    }
  ],
  "icons": {
    "48": "images/48x48.png"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "popup/*css",
    "content/*css",
    "contentnew/*css",
    "images/*",
    "_locales/*"
  ]
}