Element Selectors

Chrome extension to find element selectors

Element Selectorsคืออะไร?

Element Selectors เป็นส่วนขยายของ Chrome ที่พัฒนาโดย genaidevguru และคุณลักษณะหลักของมันคือ "Chrome extension to find element selectors"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Element Selectors

ดาวน์โหลดไฟล์ส่วนขยาย Element Selectors ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Element Selectors Element Selectors
ID fjgebdmbjiahfjcjaemkmifpdjaldfcc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/element-selectors/fjgebdmbjiahfjcjaemkmifpdjaldfcc
คำอธิบาย Chrome extension to find element selectors
ขนาดไฟล์ 318 KB
จำนวนการติดตั้ง 60
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2023-10-03
วันที่เผยแพร่ 2023-10-02
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา genaidevguru
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gurvinder-dhillon/element-selectors-chrome-extension
URL หน้าช่วยเหลือ https://github.com/gurvinder-dhillon/element-selectors-chrome-extension/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/gurvinder-dhillon/element-selectors-chrome-extension/blob/main/privacy.md
ภาษาที่รองรับ 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
}