ElemPick - A Selector XPath Element Picker

A simple element picker that can generate CSS Selectors and XPath expressions.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "action": {
    "default_title": "__MSG_title__",
    "default_icon": {
      "16": "/app/media/icon.png",
      "24": "/app/media/icon.png",
      "32": "/app/media/icon.png"
    }
  },
  "background": {
    "service_worker": "/app/background/background.js"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "/app/media/icon.png",
    "48": "/app/media/icon.png",
    "128": "/app/media/icon.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "120",
  "name": "__MSG_store_name__",
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting",
    "storage"
  ],
  "short_name": "__MSG_short_name__",
  "version": "1.1",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/shr/picker/picker.html"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}