Voicepods - Realistic Text to Speech

Voicepods - Realistic Text to Speech

Bring words to realistic AI generated voice - Convert any written text on the web into speech.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "description": "Bring words to realistic AI generated voice - Convert any written text on the web into speech.",
  "short_name": "Voicepods",
  "name": "Voicepods - Realistic Text to Speech",
  "version": "0.1.0",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Voicepods - Realistic Text to Speech"
  },
  "icons": {
    "16": "logo-small.png",
    "48": "logo-small.png",
    "128": "logo-small.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js",
      "jquery.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "swal.css"
      ],
      "js": [
        "swal.js",
        "contentscript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "http://app.voicepods.com/*"
  ],
  "web_accessible_resources": [
    "confirmation.html"
  ]
}