Xpath Ninja

Xpath Ninja

Generates xpath on clicking the element.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Xpath Ninja",
  "version": "2.0.2",
  "description": "Generates xpath on clicking the element.",
  "permissions": [
    "clipboardWrite",
    "storage",
    "sidePanel"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "side_panel": {
    "default_path": "side_panel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "csp": "script-src 'self' 'nonce-jfredfjcvnswesd'; object-src 'self'"
    }
  ],
  "devtools_page": "devtools.html",
  "action": {
    "default_title": "Xpath Ninja",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "sidebar.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}