Dictation for Gmail

Dictate messages in Gmail™. Why type, when you can speak?
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "Greg Sadetsky",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "short_name": "Dictation",
  "default_locale": "en",
  "version": "1.0.14",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "extension.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "styles.css",
        "extension.js",
        "scripts/volume-processor.js",
        "icons/*"
      ],
      "matches": [
        "*://mail.google.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "*://mail.google.com/*"
  ]
}