Custom Xpath

Custom Xpath

Generate custom xpaths and download as page object files

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Custom Xpath",
  "version": "0.0.2",
  "description": "Generate custom xpaths and download as page object files",
  "author": "Praveen Kannan",
  "action": {
    "default_icon": "CX_icon.png"
  },
  "icons": {
    "16": "CX_16.png",
    "48": "CX_48.png",
    "128": "CX_128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "event.js"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "template.html",
        "list.html",
        "icon128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "_execute_action": {
    "suggested_key": {
      "default": "Alt+c"
    }
  }
}