xpath creator

create dynamic xpaths on the go.Check the browser console for xpaths

Qu'est-ce que xpath creator ?

xpath creator est une extension Chrome développée par sunilkumar.ramamurthy, et sa fonction principale est "create dynamic xpaths on the go.Check the browser console for xpaths".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension xpath creator

Téléchargez les fichiers d'extension xpath creator 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 browser extension creates/generates all possible xpaths of any webelement.                    

Informations de Base sur l'Extension

Nom xpath creator xpath creator
ID elfinpbofafmkgjbmkfeboccoohncjam
URL Officiel https://chromewebstore.google.com/detail/xpath-creator/elfinpbofafmkgjbmkfeboccoohncjam
Description create dynamic xpaths on the go.Check the browser console for xpaths
Taille du Fichier 39.09 KB
Nombre d'Installations 65
Version Actuelle 1.0
Dernière Mise à Jour 2019-09-24
Date de Publication 2019-09-22
Évaluation 5.00/5 Total 1 Évaluations
Développeur sunilkumar.ramamurthy
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "xpath creator",
    "version": "1.0",
    "manifest_version": 2,
    "description": "create dynamic xpaths on the go.Check the browser console for xpaths",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "create dynamic xpaths on the go.Check the browser console for xpaths",
        "default_icon": "icon16.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "generatexpath.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "notifications",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}