Element Selectors

Chrome extension to find element selectors

¿Qué es Element Selectors?

Element Selectors es una extensión de Chrome desarrollada por genaidevguru, y su función principal es "Chrome extension to find element selectors".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Element Selectors

Descarga archivos de extensión Element Selectors en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Xpath and CSS plugin to auto generate shortest xpath, css & Playwright Locators

Element Selectors plugin can also be used to auto generate the unique shortest xpath, shortest css and Playwright selectors.

Steps to generate xpath, css and playwright locator
1. Once installed, please restart your browser
2. Open the page you can want to get css selector
3. Open Devtools by clicking on the inspect window or F12 (Function F12)
4. Open the Element Selectors sidebar panel located in the devtools
5. Inspect the desired element to get the css locator

Features-
a) Playwright Locator
b) Short and Long CSS
c) Short and Long Xpath

If you are facing  any issue or want to give a feedback, feel free to reach out to me at [email protected]                    

Información Básica de la Extensión

Nombre Element Selectors Element Selectors
ID fjgebdmbjiahfjcjaemkmifpdjaldfcc
URL Oficial https://chromewebstore.google.com/detail/element-selectors/fjgebdmbjiahfjcjaemkmifpdjaldfcc
Descripción Chrome extension to find element selectors
Tamaño del Archivo 318 KB
Cantidad de Instalaciones 60
Versión Actual 0.0.1
Última Actualización 2023-10-03
Fecha de Publicación 2023-10-02
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador genaidevguru
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/gurvinder-dhillon/element-selectors-chrome-extension
URL de la Página de Ayuda https://github.com/gurvinder-dhillon/element-selectors-chrome-extension/issues
URL de la Página de Política de Privacidad https://github.com/gurvinder-dhillon/element-selectors-chrome-extension/blob/main/privacy.md
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Element Selectors",
    "description": "Chrome extension to find element selectors",
    "version": "0.0.1",
    "author": "Gurvinder Dhillon",
    "devtools_page": "devtools\/devtools.html",
    "icons": {
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "content\/content_scripts.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background\/background.js"
    },
    "permissions": [
        "clipboardWrite"
    ],
    "offline_enabled": true
}