Selenideium Element Inspector

Selenideium Element Inspector

A handy tool to log attributes and Selenide, Selenium, Cypress, Playwright, Squish and TestCafe locators of the clicked element.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Selenideium Element Inspector",
  "description": "A handy tool to log attributes and Selenide, Selenium, Cypress, Playwright, Squish and TestCafe locators of the clicked element.",
  "version": "2.0",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "options_page": "resources/options.html",
  "background": {
    "service_worker": "src/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "resources/hello.html",
    "default_icon": {
      "48": "resources/Selenideium Element Inspector 48x48.jpg",
      "128": "resources/Selenideium Element Inspector 128x128.jpg"
    }
  },
  "icons": {
    "48": "resources/Selenideium Element Inspector 48x48.jpg",
    "128": "resources/Selenideium Element Inspector 128x128.jpg"
  }
}