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
电子邮箱 [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
}