xpath creator

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

xpath creatorคืออะไร?

xpath creator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sunilkumar.ramamurthy และคุณลักษณะหลักของมันคือ "create dynamic xpaths on the go.Check the browser console for xpaths"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย xpath creator

ดาวน์โหลดไฟล์ส่วนขยาย xpath creator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ xpath creator xpath creator
ID elfinpbofafmkgjbmkfeboccoohncjam
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/xpath-creator/elfinpbofafmkgjbmkfeboccoohncjam
คำอธิบาย create dynamic xpaths on the go.Check the browser console for xpaths
ขนาดไฟล์ 39.09 KB
จำนวนการติดตั้ง 65
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-09-24
วันที่เผยแพร่ 2019-09-22
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา sunilkumar.ramamurthy
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
        ]
    }
}