XPath Helper for Microsoft Edge™

XPath Helper for Microsoft Edge™

Quickly get the XPath for any element on a webpage with just one click. Simply select an element and it will display its XPath.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extNameFull__",
  "short_name": "__MSG_extName__",
  "version": "0.1.0",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "res/icons/logo/logo_16.png",
    "32": "res/icons/logo/logo_32.png",
    "48": "res/icons/logo/logo_48.png",
    "128": "res/icons/logo/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/libs/jquery-ui.min.css",
        "css/contentStyle.css"
      ],
      "js": [
        "js/libs/jquery.js",
        "js/libs/jquery-ui.min.js",
        "js/contentScript.js"
      ],
      "all_frames": false,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "author": "Oziku Technologies LLC",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "res/icons/logo/logo_16.png",
      "32": "res/icons/logo/logo_32.png",
      "48": "res/icons/logo/logo_48.png",
      "128": "res/icons/logo/logo_128.png"
    }
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "res/icons/ui/drag.png"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}