Element Locator

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

Qu'est-ce que Element Locator ?

Element Locator est une extension Chrome développée par yehudak, et sa fonction principale est "Locate and save web elements and get their xpath/cssSelector code".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Element Locator

Téléchargez les fichiers d'extension Element Locator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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)                    

Informations de Base sur l'Extension

Nom Element Locator Element Locator
ID pldlfgnilfdheajekfphjkjeooignhkc
URL Officiel https://chromewebstore.google.com/detail/element-locator/pldlfgnilfdheajekfphjkjeooignhkc
Description Locate and save web elements and get their xpath/cssSelector code
Taille du Fichier 264 KB
Nombre d'Installations 12,340
Version Actuelle 1.8
Dernière Mise à Jour 2019-06-06
Date de Publication 2019-06-06
Évaluation 3.45/5 Total 22 Évaluations
Développeur yehudak
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}