WebSync: Generate & Validate Selectors

WebSync: Generate & Validate Selectors

Easily write and verify CSS and XPath selectors.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "wsbaser",
  "name": "WebSync: Generate & Validate Selectors",
  "version": "0.1.1",
  "description": "Easily write and verify CSS and XPath selectors.",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "64": "icons/icon64.png"
  },
  "background": {
    "service_worker": "assets/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "assets/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "css": [
        "assets/content.css"
      ],
      "all_frames": true
    }
  ],
  "devtools_page": "./devtools.html"
}