Examine source code of Auto Expander for Gmail™

Inspect and view changes in Auto Expander 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_extName__",
  "version": "1.5.0.5",
  "manifest_version": 3,
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icon-128.png",
    "48": "icon-128.png",
    "128": "icon-128.png"
  },
  "author": "Jacob „kurtextrem\" Groß",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "minimum_chrome_version": "88",
  "host_permissions": [
    "*://mail.google.com/*"
  ]
}