PodKit: Listen to webpages

PodKit: Listen to webpages

Turn webpages into engaging audio conversations.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PodKit: Listen to webpages",
  "version": "1.0.3",
  "description": "Turn webpages into engaging audio conversations.",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "sidePanel"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://podkit.io/login"
      ],
      "all_frames": true,
      "js": [
        "scripts/token.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://*.podkit.io/*"
    ],
    "accepts_tls_channel_id": false
  },
  "action": {
    "default_title": "PodKit - Listen to webpages"
  },
  "background": {
    "service_worker": "scripts/service-worker.js"
  },
  "side_panel": {
    "default_path": "sidepanel/sidepanel.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "sidepanel/tts_voices.json"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}