Examine source code of Email Tracker

Inspect and view changes in Email Tracker 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": "Email Tracker",
  "description": "Free Email Tracker for Gmail",
  "version": "2025.3.16",
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "css/style.css",
        "css/modal.css",
        "css/modalCompare.css",
        "css/modalEmailInfo.css",
        "css/modalInsertLink.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "https://mail.google.com/",
    "https://api.emailtracker.cc/*"
  ],
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "*.map",
        "css/style.css",
        "css/modal.css",
        "css/modalCompare.css",
        "css/modalEmailInfo.css",
        "css/modalInsertLink.css",
        "html/modal_email_info.html",
        "html/modal_enable.html",
        "html/modal_onboarding.html",
        "html/modal_onboarding_2.html",
        "html/modal_onboarding_3.html",
        "html/modal_onboarding_4.html",
        "html/menu_toolbar.html",
        "html/menu_toolbar_disabled.html",
        "html/modal_upgrade.html",
        "html/modal_compare.html",
        "html/modal_free_invisible.html",
        "html/modal_insert_link.html",
        "html/menu_compose.html",
        "fonts/generalsans-bold-webfont.woff2",
        "fonts/generalsans-bold-webfont.woff",
        "fonts/generalsans-medium-webfont.woff",
        "fonts/generalsans-medium-webfont.woff2",
        "fonts/generalsans-regular-webfont.woff",
        "fonts/generalsans-regular-webfont.woff2",
        "images/new_background.svg"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "icons": {
    "16": "images/email_16.png",
    "48": "images/email_48.png",
    "128": "images/email_128.png"
  }
}