Examine source code of engageX

Inspect and view changes in engageX 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": "engageX",
  "version": "1.1.5",
  "description": "Effortless social media commenting with just one click",
  "action": {
    "default_title": "Welcome to engageX",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "extension-icons/icon16.png",
    "32": "extension-icons/icon32.png",
    "48": "extension-icons/icon48.png",
    "128": "extension-icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://www.linkedin.com/*",
        "https://mail.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "assets/css/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icons/positive.svg",
        "assets/icons/humor.svg",
        "assets/icons/inspire.svg",
        "assets/icons/curious.svg",
        "assets/icons/oppose.svg",
        "assets/icons/logo-white.svg",
        "assets/icons/logo-black.svg",
        "assets/icons/formal.svg",
        "assets/icons/information.svg",
        "assets/icons/humar.svg",
        "assets/icons/newemail.svg",
        "assets/icons/vectordrop.svg",
        "assets/icons/closeround.svg",
        "assets/fonts/Poppins-Black.ttf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}