Examine source code of Mail Reader for Gmail

Inspect and view changes in Mail Reader for Gmail 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "0.0.4",
  "manifest_version": 3,
  "host_permissions": [
    "*://*.google.com/mail*"
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "tts"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "assets/voice48.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "content.js"
      ],
      "matches": [
        "*://*.google.com/mail*"
      ]
    }
  ],
  "icons": {
    "48": "assets/voice48.png",
    "128": "assets/voice128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/speak.png"
      ],
      "matches": [
        "*://*.google.com/*"
      ]
    }
  ]
}