paThor

paThor

CSS selector and xPath validator

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "paThor",
  "manifest_version": 2,
  "description": "CSS selector and xPath validator",
  "version": "0.1",
  "background": {
    "page": "background.html"
  },
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "paThor"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js",
        "contentscript.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "web_accessible_resources": [
    "executeQuery.js"
  ]
}