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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |