LetXPath

XPath Finder, simple and useful, open-source project by LetCode with Koushik

LetXPathとは何ですか?

LetXPathはhttps://letcode.inによって開発されたChromeの拡張機能で、その主な機能は「XPath Finder, simple and useful, open-source project by LetCode with Koushik」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

LetXPath拡張機能のCRXファイルをダウンロード

LetXPath拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        LetXPath is an open-source project, it is used to find the XPath & CSS in a single click with code snippets based on the element type.

How to use? 🤔
1. Once installed, please restart your browser
2. Open the page you can want to get XPath
3. Open Devtools by clicking on the inspect window or F12 (Function F12)
4. Open the LetXPath menu from the sidebar panel
5. Click on the desired element to get the XPath

Features 💭
1. Get the best XPath in a single click
2. Most XPath are build based on the direct element or based on the parent to the child element
3. LetXPath supports dynamic XPath like, from parent to child element relationship
eg., following, following-sibling, preceding, preceding-sibling and others
4. XPath based on the Axes
5. Enhanced Axes XPath by user selection

Snippets 🎓
1. XPath with driver code snippets
2. LetXPath supports as of now Selenium - Java, Selenium - Python, Selenium - C#, Protractor JS, Playwright Node & Java

Why LetXPath? 🤔
Yeah, I know there are plenty of XPath tools, but the intention of creating LetXPath is not only to get the XPath and snippets.
LetXPath is the only product that offers video tutorials on how to build the entire product. Every tool can give XPath but, LetXPath only offers how to build the tool itself.

Source code - https://github.com/ortoniKC/LetXPath
Tutorial - https://bit.ly/2S3eksW

What if doesn't work? 😢
Once installed please restart your browser that should fix most of the problem. 
Feel free to raise a bug on the GitHub

Is it free? 😱
100% it's free and it will be always free.

So what I get from this? 🙋 
Good question
Happiness when you installed it and provide a 5-star rating.

What is the RoadMap? 😁
Well, it's huge that cannot be described here, but most of the features are going to save your time a lot.

Thanks for reading this much, now just install and explore LetXPath, you might fall in love with it 😉                    

拡張機能の基本情報

名前 LetXPath LetXPath
ID bekehlnepmijedippfibbmbglglbmlgk
公式URL https://chromewebstore.google.com/detail/letxpath/bekehlnepmijedippfibbmbglglbmlgk
説明 XPath Finder, simple and useful, open-source project by LetCode with Koushik
ファイルサイズ 134 KB
インストール数 10,954
現在のバージョン 2.0.3
最終更新日 2023-10-08
公開日 2020-08-13
評価 4.30/5 合計 82 レビュー
開発者 https://letcode.in
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.letcode.in/
ヘルプページのURL https://www.letcode.in/
プライバシーポリシーページのURL https://github.com/ortoniKC/LetXPath/blob/dev/privacy.md
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LetXPath",
    "short_name": "XPath finder",
    "description": "XPath Finder, simple and useful, open-source project by LetCode with Koushik",
    "author": "Koushik Chatterjee",
    "version": "2.0.3",
    "manifest_version": 2,
    "icons": {
        "16": "assets\/16.png",
        "32": "assets\/32.png",
        "128": "assets\/32.png"
    },
    "permissions": [
        "",
        "contextMenus",
        "activeTab",
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": false,
            "matches": [
                ""
            ],
            "js": [
                "app\/src\/content.js",
                "app\/src\/anchorXPath.js",
                "app\/src\/getCSS.js",
                "app\/src\/getLabel.js",
                "app\/src\/methodName.js",
                "app\/src\/record.js",
                "app\/src\/search.js",
                "app\/src\/textXPath.js",
                "app\/src\/utils.js",
                "app\/src\/parentElements.js",
                "app\/src\/handleTable.js"
            ],
            "css": [
                "app\/styles\/highlight.css"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "devtools_page": "devtools.html",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "homepage_url": "https:\/\/www.letcode.in",
    "browser_action": {
        "default_title": "LetXPath",
        "default_popup": "popup\/popup.html"
    },
    "options_page": "option\/option.html",
    "offline_enabled": true
}