Examine source code of HubSpot eSignatures by GetAccept

Inspect and view changes in HubSpot eSignatures by GetAccept 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",
  "content_security_policy": {
    "extension_pages": "default-src 'self'; style-src 'self'; script-src 'self'; img-src 'self' data:; font-src 'self' data:; connect-src 'self' blob: https://*.hubspot.com https://*.hubapi.com  https://*.getaccept.com https://*.ga-staging.com https://*.bugsnag.com ws://localhost:9090;"
  },
  "name": "HubSpot eSignatures by GetAccept",
  "short_name": "HubSpot",
  "version": "1.63.4",
  "author": "GetAccept Inc.",
  "manifest_version": 3,
  "description": "Electronic Signatures and Document Tracking for HubSpot CRM by GetAccept",
  "homepage_url": "https://www.getaccept.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon128.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://app.hubspot.com/sales/*",
        "https://app.hubspot.com/contacts/*",
        "https://app-eu1.hubspot.com/sales/*",
        "https://app-eu1.hubspot.com/contacts/*"
      ],
      "js": [
        "entry.js"
      ],
      "all_frames": true,
      "runt_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "icons/icon128.png",
    "default_title": "HubSpot eSignatures by GetAccept"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://*.hubspot.com/*",
    "https://*.hubapi.com/*",
    "https://*.getaccept.com/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "entry.js",
        "crm/*",
        "img/*",
        "fonts/*",
        "settings/**/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}