Full XPath

Copy full xpath

Hvad er Full XPath?

Full XPath er en Chrome-udvidelse udviklet af Hongfei Wu, og dens hovedfunktion er "Copy full xpath".

Download Full XPath-udvidelses-CRX-fil

Download Full XPath-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        copy full xpath with more details, such as class name, id, sibling index, top to BODY level                    

Grundlæggende oplysninger om udvidelsen

Navn Full XPath Full XPath
ID ofjlfbcpbobinkhbhgmmffaojoaghjjc
Officiel URL https://chromewebstore.google.com/detail/full-xpath/ofjlfbcpbobinkhbhgmmffaojoaghjjc
Beskrivelse Copy full xpath
Filstørrelse 19.81 KB
Antal Installationer 34
Nuværende Version 1.0
Senest Opdateret 2018-08-27
Udgivelsesdato 2018-08-26
Udvikler Hongfei Wu
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Copy full xpath",
    "manifest_version": 2,
    "icons": {
        "16": "images\/selector_16.png",
        "48": "images\/selector_48.png",
        "128": "images\/selector_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/selector_16.png",
            "48": "images\/selector_48.png",
            "128": "images\/selector_128.png"
        },
        "default_title": "Copy full xpath with more details"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "name": "Full XPath",
    "version": "1.0",
    "permissions": [
        "contextMenus"
    ]
}