Element Locator

Locate and save web elements and get their xpath/cssSelector code

什么是Element Locator?

Element Locator是由yehudak开发的Chrome扩展程序,该扩展的主要功能是“Locate and save web elements and get their xpath/cssSelector code”。

扩展截图

screenshot

下载Element Locator扩展crx文件

下载Element Locator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension allows you to locate and save HTML elements for each page(url),
And shows XPath and CSS-Selector for each saved element.

***Great for web developers or for bulid faster Selenium Tests***
NOTE: After install finisg, open or refresh the page you want to work on.

More Options:
1. Show list of element-attributes
2. Click on element in the elements list will show the chosen element on page
3. Mark (with border) all saved elements
4. Delete one / all saved element in current page(url)                    

扩展基本信息

名称 Element Locator Element Locator
ID pldlfgnilfdheajekfphjkjeooignhkc
官方URL https://chromewebstore.google.com/detail/element-locator/pldlfgnilfdheajekfphjkjeooignhkc
简介 Locate and save web elements and get their xpath/cssSelector code
文件大小 264 KB
安装次数 12,340
当前版本 1.8
更新时间 2019-06-06
上架时间 2019-06-06
评分 3.45/5 共22次评分
开发者 yehudak
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Element Locator",
    "version": "1.8",
    "description": "Locate and save web elements and get their xpath\/cssSelector code",
    "icons": {
        "16": "images\/elementsLocator16.png",
        "48": "images\/elementsLocator48.png",
        "128": "images\/elementsLocator128.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "browser_action": {
        "default_title": "Element Locator",
        "default_popup": "ElementLocator.html"
    },
    "background": {
        "scripts": [
            "node_modules\/idb-keyval\/dist\/idb-keyval-min.js",
            "scripts\/general.js",
            "scripts\/eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/general.js",
                "scripts\/contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/general.css"
    ]
}