VOiZiT

VOiZiT

Turn user selected text into an audio treat by installing VOiZiT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VOiZiT",
  "author": "N!z A",
  "version": "1.4",
  "description": "Turn user selected text into an audio treat by installing VOiZiT",
  "background": {
    "scripts": [
      "/src/js/voizit.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "src/img/voizit16.png",
      "32": "src/img/voizit32.png",
      "48": "src/img/voizit48.png",
      "128": "src/img/voizit128.png"
    },
    "default_popup": "/src/popup.html",
    "default_title": "Read content Enablement"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/src/css/content.css"
      ],
      "js": [
        "/src/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/src/css/fonts/*"
  ],
  "icons": {
    "16": "src/img/voizit16.png",
    "32": "src/img/voizit32.png",
    "48": "src/img/voizit48.png",
    "128": "src/img/voizit128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tts",
    "tabs"
  ],
  "manifest_version": 2,
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+V"
      }
    }
  }
}