Examine source code of Mail Boss Scheduler for Gmail

Inspect and view changes in Mail Boss Scheduler 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",
  "manifest_version": 3,
  "name": "Mail Boss Scheduler for Gmail",
  "short_name": "Mail Boss",
  "version": "1.12.0",
  "description": "Recurring email scheduler for Gmail",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://mail.google.com/*"
  ],
  "action": {
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "js": [
        "index.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "images/mailboss-icon-blue.png",
    "128": "images/mailboss-icon-blue.png"
  }
}