Examine source code of UnQuote for Gmail

Inspect and view changes in UnQuote 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": "UnQuote for Gmail",
  "description": "Unquote text of previous mails from the reply",
  "version": "1.0.5",
  "manifest_version": 3,
  "icons": {
    "128": "assets/icon.png"
  },
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "action": {
    "default_title": "UnQuote for Gmail",
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "cs/index.js"
      ],
      "run_at": "document_end"
    }
  ]
}