Examine source code of ActiveCampaign

Inspect and view changes in ActiveCampaign 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": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "5.15.35",
  "manifest_version": 3,
  "default_locale": "en",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": "assets/images/ACIcon48.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "declarativeNetRequest",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://mail.google.com/",
    "https://*.api-us1.com/api/3/*",
    "https://security-auth-service.cluster.app-us1.com/auth/mobile/multi-region",
    "http://www.google-analytics.com/collect?v=*",
    "https://trackcmp.net/event*",
    "https://*.googleusercontent.com/proxy/*",
    "https://*.lt.acemlna.com/Prod/link-tracker?c=0&*&l=open*",
    "https://*.com/lt.php?c=0&*",
    "https://*.com/lt.php?x=*",
    "https://*/*/link-tracker?c=0&*",
    "http://www.google-analytics.com/collect?v=*",
    "https://trackcmp.net/event*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "block_tracker_ruleset",
        "enabled": true,
        "path": "block_tracker_rules.json"
      }
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "_locales",
        "assets/*",
        "/*.js",
        "/*.html"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/images/ACIcon16.png",
    "48": "assets/images/ACIcon48.png",
    "128": "assets/images/ACIcon128.png"
  },
  "incognito": "not_allowed",
  "offline_enabled": false
}