Examine source code of MyPod Space

Inspect and view changes in MyPod Space source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "MyPod Space",
  "description": "Turn any webpage into a podcast, listen to it later on your favorite podcast app.",
  "version": "0.1.3",
  "icons": {
    "16": "/icon/icon16.png",
    "32": "/icon/icon32.png",
    "48": "/icon/icon48.png",
    "96": "/icon/icon96.png",
    "128": "/icon/icon128.png"
  },
  "permissions": [
    "storage",
    "cookies",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://mypod.space/"
  ],
  "action": {
    "default_title": "Default Popup Title",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+Y",
        "mac": "Alt+Shift+Y"
      },
      "description": "Save current page into podcast"
    }
  },
  "background": {
    "type": "module",
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}