XML Plus

A powerful XML Viewer, supports text/regex and jQuery/CSS, XPath selectors

XML Plus क्या है?

XML Plus eGust द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A powerful XML Viewer, supports text/regex and jQuery/CSS, XPath selectors"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में XML Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        1. Supports both `CSS` and `XPath` selectors.
2. Supports text search and `Regular Expression` search.
3. Both `querySelectorAll` and `jQuery` flavors of CSS selectors are available.
4. `RegEx` is the only **CASE-INSENSITIVE** one.
5. Highly optimized for large XML files ( > 1MB ).
6. Stand-alone version - extremely fast because of avoiding Chrome's slow loading process.
7. Global `x` variable (`window.x`) is available in DevTools which includes:
    * `doc` - raw XML document object
    * `root` - root XML element object
    * `cur` - current selected node
    * `$` - jQuery bound on root element
    * `history` - search results
    * `$q` - helper for jQuery search
    * `cs` - helper for CSS search
    * `re` - helper for RegEx search
    * `tx` - helper for Text search
    * `xp` - helper for XPath search

    > Above helpers are `(expression, baseElement = root) => []` and searching on `baseElement` which is `x.root` by default.                    

एक्सटेंशन की मूल जानकारी

नाम XML Plus XML Plus
ID jmhicemblbmkcbonbhkjmflehkmkiidj
आधिकारिक URL https://chromewebstore.google.com/detail/xml-plus/jmhicemblbmkcbonbhkjmflehkmkiidj
विवरण A powerful XML Viewer, supports text/regex and jQuery/CSS, XPath selectors
फ़ाइल का आकार 176 KB
स्थापना संख्या 9,179
वर्तमान संस्करण 1.2.3
अंतिम अपडेट 2019-02-20
प्रकाशन तिथि 2019-02-16
रेटिंग 4.50/5 कुल 10 रेटिंग्स
डेवलपर eGust
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/eGust/xml-plus.chrome-extension
सहायता पृष्ठ URL https://github.com/eGust/xml-plus.chrome-extension/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "XML Plus",
    "version": "1.2.3",
    "description": "A powerful XML Viewer, supports text\/regex and jQuery\/CSS, XPath selectors",
    "author": "eGust",
    "homepage_url": "https:\/\/github.com\/eGust\/xml-plus",
    "icons": {
        "16": "icons\/logo-16.png",
        "48": "icons\/logo-48.png",
        "128": "icons\/logo-128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "web_accessible_resources": [
        "css\/content.css"
    ]
}