Element Selectors

Chrome extension to find element selectors

Element Selectorsとは何ですか?

Element Selectorsはgenaidevguruによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to find element selectors」です。

拡張機能のスクリーンショット

screenshot

Element Selectors拡張機能のCRXファイルをダウンロード

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
Eメール [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
}