Examine source code of CheckMates Quick Access Addon

Inspect and view changes in CheckMates Quick Access Addon 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": "CheckMates Quick Access Addon",
  "version": "1.74.14",
  "description": "CheckMates quick access menu (Keyboard Shortcut = 'Alt+5')",
  "icons": {
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "contextMenus",
    "notifications",
    "scripting",
    "storage"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+5",
        "mac": "Alt+5"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.checkpoint.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "https://*.checkpoint.com/*"
  ],
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  }
}