xpath creator

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

Apa itu xpath creator?

xpath creator adalah ekstensi Chrome yang dikembangkan oleh sunilkumar.ramamurthy, dan fitur utamanya adalah "create dynamic xpaths on the go.Check the browser console for xpaths".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi xpath creator

Unduh file ekstensi xpath creator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama xpath creator xpath creator
ID elfinpbofafmkgjbmkfeboccoohncjam
URL Resmi https://chromewebstore.google.com/detail/xpath-creator/elfinpbofafmkgjbmkfeboccoohncjam
Deskripsi create dynamic xpaths on the go.Check the browser console for xpaths
Ukuran File 39.09 KB
Jumlah Instalasi 65
Versi Saat Ini 1.0
Terakhir Diperbarui 2019-09-24
Tanggal Publikasi 2019-09-22
Penilaian 5.00/5 Total 1 Penilaian
Pengembang sunilkumar.ramamurthy
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        ]
    }
}