Examine source code of LetXPath

Inspect and view changes in LetXPath 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": "LetXPath",
  "short_name": "XPath finder",
  "description": "XPath Finder, simple and useful, open-source project by LetCode with Koushik",
  "author": "Koushik Chatterjee",
  "version": "3.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "assets/16.png",
    "32": "assets/32.png",
    "128": "assets/32.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": false,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "app/src/content.js",
        "app/src/conversion.js",
        "app/src/anchorXPath.js",
        "app/src/getCSS.js",
        "app/src/getLabel.js",
        "app/src/methodName.js",
        "app/src/record.js",
        "app/src/search.js",
        "app/src/textXPath.js",
        "app/src/utils.js",
        "app/src/parentElements.js",
        "app/src/handleTable.js"
      ],
      "css": [
        "app/styles/highlight.css"
      ]
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "devtools_page": "devtools.html",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "homepage_url": "https://www.letcode.in",
  "options_page": "option/option.html",
  "offline_enabled": true
}