Podcastle AI

Podcastle AI

Podcastle converts text news/articles to a podcast, with very natural human speech using machine learning.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.4.2",
  "short_name": "Podcastle",
  "name": "Podcastle AI",
  "description": "Podcastle converts text news/articles to a podcast, with very natural human speech using machine learning.",
  "browser_action": {
    "default_title": "Podcastle",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "permissions": [
    "tabs",
    "cookies",
    "*://*.podcastle.dev/",
    "*://*.podcastle.ai/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}