Examine source code of AH Debugger BETA

Inspect and view changes in AH Debugger BETA 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": "AH Debugger BETA",
  "description": "THIS EXTENSION IS FOR BETA TESTING",
  "version": "0.0.1.6",
  "icons": {
    "128": "/logo_ah128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "AH Debugger"
  },
  "background": {
    "type": "module",
    "service_worker": "background.js"
  },
  "devtools_page": "devtools.html",
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "devtools-panel.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "devtools.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "dataLayerListener.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "tabs",
    "storage",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "http://localhost:5173/*",
        "https://ah-com.pages.dev/*"
      ],
      "run_at": "document_start",
      "js": [
        "content-scripts/cd.js"
      ]
    },
    {
      "matches": [
        "http://localhost:5173/*",
        "http://localhost:5174/*",
        "https://ah-com.pages.dev/*",
        "https://dev.ah-basic-validator.pages.dev/",
        "https://qa.assertionhub.com/*"
      ],
      "js": [
        "content-scripts/contentScript.js"
      ]
    }
  ]
}