Examine source code of Simplify Gmail

Inspect and view changes in Simplify 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": "Simplify Gmail",
  "version": "3.1.31",
  "description": "Make Gmail simpler, more capable, and more respectful",
  "homepage_url": "https://simpl.fyi",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "48": "img/app/icon48.png",
    "128": "img/app/icon128.png",
    "512": "img/app/icon512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "css": [
        "css/images.css",
        "css/simplifyGmail.css"
      ],
      "js": [
        "js/simplifyGmail.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "action": {
    "default_icon": {
      "48": "img/app/icon48.png",
      "128": "img/app/icon128.png"
    },
    "default_title": "Simplify for Gmail",
    "default_popup": "prefs/popup.html"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "simplifyTrackerList",
        "enabled": true,
        "path": "prefs/trackers.json"
      }
    ]
  },
  "background": {
    "service_worker": "js/workers.js"
  },
  "options_ui": {
    "page": "prefs/options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "prefs/*",
        "img/**",
        "fonts/*",
        "js/authUser.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "declarativeNetRequestWithHostAccess"
  ],
  "optional_permissions": [
    "contentSettings"
  ],
  "host_permissions": [
    "https://mail.google.com/*",
    "https://*.googleusercontent.com/proxy/*"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; style-src 'self'; script-src 'self'; img-src 'self'"
  }
}