Element Selectors

Chrome extension to find element selectors

Element Selectors란 무엇입니까?

Element Selectors은(는) genaidevguru에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension to find element selectors"입니다.

확장 프로그램 스크린샷

screenshot

Element Selectors 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}