AutomaticXpathGenerator

This will generate xpaths for elements on the webpage

AutomaticXpathGeneratorคืออะไร?

AutomaticXpathGenerator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aamir Mohammed Suhail และคุณลักษณะหลักของมันคือ "This will generate xpaths for elements on the webpage"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension is used to generate the xpaths automatically for the web page. It will generate the xpaths for each and every element on the web page and displays it next to the corresponding web elements. User has to just click the xpath to copy and use it in automation script. Also for anyone who doesn't know how to write the xpaths, this extension will be very useful.                    

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

ชื่อ AutomaticXpathGenerator AutomaticXpathGenerator
ID amcbnabgjffdhibpmgcnpnmjpfjliikh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/automaticxpathgenerator/amcbnabgjffdhibpmgcnpnmjpfjliikh
คำอธิบาย This will generate xpaths for elements on the webpage
ขนาดไฟล์ 21.71 KB
จำนวนการติดตั้ง 657
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2021-06-21
วันที่เผยแพร่ 2021-06-16
คะแนน 2.33/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Aamir Mohammed Suhail
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutomaticXpathGenerator",
    "version": "1.2",
    "description": "This will generate xpaths for elements on the webpage",
    "icons": {
        "128": ".\/icons\/128_g.png",
        "48": ".\/icons\/48_g.png",
        "32": ".\/icons\/32_g.png",
        "16": ".\/icons\/16_g.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "demo.html",
        "default_icon": ".\/icons\/128_g.png"
    }
}