xpath creator

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

Wat is xpath creator?

xpath creator is een Chrome-extensie ontwikkeld door sunilkumar.ramamurthy, en de belangrijkste functie is "create dynamic xpaths on the go.Check the browser console for xpaths".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie xpath creator

Download xpath creator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This browser extension creates/generates all possible xpaths of any webelement.                    

Basisinformatie over de Extensie

Naam xpath creator xpath creator
ID elfinpbofafmkgjbmkfeboccoohncjam
Officiële URL https://chromewebstore.google.com/detail/xpath-creator/elfinpbofafmkgjbmkfeboccoohncjam
Beschrijving create dynamic xpaths on the go.Check the browser console for xpaths
Bestandsgrootte 39.09 KB
Aantal Installaties 65
Huidige Versie 1.0
Laatst Bijgewerkt 2019-09-24
Publicatiedatum 2019-09-22
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar sunilkumar.ramamurthy
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}