Element Locator

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

Element Locator là gì?

Element Locator là một tiện ích mở rộng Chrome được phát triển bởi yehudak, và tính năng chính của nó là "Locate and save web elements and get their xpath/cssSelector code".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Element Locator

Tải xuống các tệp mở rộng Element Locator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Element Locator Element Locator
ID pldlfgnilfdheajekfphjkjeooignhkc
URL Chính Thức https://chromewebstore.google.com/detail/element-locator/pldlfgnilfdheajekfphjkjeooignhkc
Mô tả Locate and save web elements and get their xpath/cssSelector code
Kích Thước Tệp 264 KB
Số Lần Cài Đặt 12,340
Phiên Bản Hiện Tại 1.8
Cập Nhật Lần Cuối 2019-06-06
Ngày Phát Hành 2019-06-06
Đánh Giá 3.45/5 Tổng số 22 Đánh Giá
Nhà Phát Triển yehudak
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}