Element Selectors

Chrome extension to find element selectors

Apa itu Element Selectors?

Element Selectors adalah ekstensi Chrome yang dikembangkan oleh genaidevguru, dan fitur utamanya adalah "Chrome extension to find element selectors".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Element Selectors

Unduh file ekstensi Element Selectors dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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]                    

Informasi Dasar Ekstensi

Nama Element Selectors Element Selectors
ID fjgebdmbjiahfjcjaemkmifpdjaldfcc
URL Resmi https://chromewebstore.google.com/detail/element-selectors/fjgebdmbjiahfjcjaemkmifpdjaldfcc
Deskripsi Chrome extension to find element selectors
Ukuran File 318 KB
Jumlah Instalasi 60
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2023-10-03
Tanggal Publikasi 2023-10-02
Penilaian 5.00/5 Total 1 Penilaian
Pengembang genaidevguru
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/gurvinder-dhillon/element-selectors-chrome-extension
URL Halaman Bantuan https://github.com/gurvinder-dhillon/element-selectors-chrome-extension/issues
URL Halaman Kebijakan Privasi https://github.com/gurvinder-dhillon/element-selectors-chrome-extension/blob/main/privacy.md
Bahasa yang Didukung 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
}