Examine source code of Email Tracker For Gmail - MailerPlex

Inspect and view changes in Email Tracker For Gmail - MailerPlex 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 For Gmail  - MailerPlex",
  "description": "Free email tracker for Gmail. See email tracking and link click stats in real-time",
  "version": "2.0.0.9",
  "version_name": "2.0.0.9",
  "short_name": "mailerplex",
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "content.js",
        "common/js/lib/underscore-min.js",
        "common/js/lib/jquery-3.3.1.min.js"
      ],
      "css": [
        "common/css/emt.css",
        "common/css/scroll-toggle.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "emt-bg.js"
  },
  "permissions": [
    "scripting",
    "storage",
    "background",
    "alarms",
    "notifications",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "gcm"
  ],
  "host_permissions": [
    "https://mail.google.com/",
    "https://inbox.google.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "common/images/*",
        "common/fonts/*",
        "enablepopup.html",
        "common/test.html",
        "common/option-popup.html",
        "threadview-sidebar.html",
        "disableddropdown.html",
        "installftupopup.html",
        "*.ttf",
        "*.png",
        "pageWorld.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*.googleusercontent.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.mailerplex.com/*",
      "http://localhost/*"
    ]
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "action": {
    "default_icon": {
      "16": "common/images/emt16.png",
      "32": "common/images/emt32.png",
      "48": "common/images/emt48.png",
      "128": "common/images/emt128.png"
    },
    "default_title": "MailerPlex"
  },
  "icons": {
    "16": "common/images/emt16.png",
    "32": "common/images/emt32.png",
    "48": "common/images/emt48.png",
    "128": "common/images/emt128.png"
  },
  "manifest_version": 3
}