Examine source code of Gmail Editor

Inspect and view changes in Gmail Editor 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",
  "manifest_version": 3,
  "name": "Gmail Editor",
  "version": "1.3.0",
  "description": "Gmail Editor is a powerful Chrome extension designed for users who want to enhance their editing efficiency within Gmail.",
  "icons": {
    "48": "logo.png",
    "128": "logo.png"
  },
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "static/js/web.js",
        "static/js/client.js"
      ],
      "css": [],
      "matches": [
        "https://mail.google.com/*",
        "https://admin.beacas.com/*",
        "https://admin.easyemail.pro/*",
        "https://demo.easyemail.pro/*",
        "http://localhost:3003/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "logo.png"
    },
    "default_title": "background",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/js/dom.js",
        "static/js/client.js",
        "index.css",
        "logo.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "commands": {},
  "permissions": []
}