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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        ]
    }
}