Locator : XPath/CSS Selector

Locator : XPath/CSS Selector

Locator genarates, validates and copies xpath/css selector on click. It also supports svg.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Locator : XPath/CSS Selector",
  "version": "1.0.0.1",
  "description": "Locator genarates, validates and copies xpath/css selector on click. It also supports svg.",
  "permissions": [
    "webNavigation",
    "activeTab",
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/lo16Off.png",
    "default_title": "Enable extention and click on any element to display and copy xpath/css selector to clipboard."
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "images/lo16.png",
    "32": "images/lo32.png",
    "48": "images/lo64.png",
    "128": "images/lo128.png"
  },
  "manifest_version": 2
}