XPATH Builder

XPATH Builder

Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "XPATH Builder",
  "version": "0.0.6.0",
  "description": "Toggle active state by clicking the extention icon. Then click on the DOM element and you get JS prompt with XPATH expression in it.",
  "icons": {
    "16": "icon_16x16.png",
    "19": "icon_19x19.png",
    "32": "icon_32x32.png",
    "38": "icon_38x38.png",
    "48": "icon_48x48.png",
    "128": "icon_128x128.png"
  },
  "browser_action": {
    "default_title": "XPATH Builder",
    "default_icon": {
      "19": "icon_19x19.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "author": "Rosen Suvariev <[email protected]>",
  "permissions": [
    "activeTab"
  ],
  "minimum_chrome_version": "49.0.0"
}