Examine source code of Text N Speech

Inspect and view changes in Text N Speech 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
{
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Convert speech and audio to text. Use the Refine feature to correct grammar, spelling, and punctuation errors.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 3,
  "name": "Text N Speech",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.5",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "icons/undo-icon.png",
        "scripts/jquery-3.6.0.min.js",
        "scripts/bootstrap.bundle.min.js",
        "scripts/wavesurfer.min.js"
      ]
    }
  ]
}