XML Plus

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

O que é XML Plus?

XML Plus é uma extensão do Chrome desenvolvida por eGust, e sua principal característica é "A powerful XML Viewer, supports text/regex and jQuery/CSS, XPath selectors".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão XML Plus

Baixe arquivos de extensão XML Plus no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome XML Plus XML Plus
ID jmhicemblbmkcbonbhkjmflehkmkiidj
URL Oficial https://chromewebstore.google.com/detail/xml-plus/jmhicemblbmkcbonbhkjmflehkmkiidj
Descrição A powerful XML Viewer, supports text/regex and jQuery/CSS, XPath selectors
Tamanho do Arquivo 176 KB
Contagem de Instalações 9,179
Versão Atual 1.2.3
Última Atualização 2019-02-20
Data de Publicação 2019-02-16
Classificação 4.50/5 Total de 10 Avaliações
Desenvolvedor eGust
Tipo de Pagamento free
Site da Extensão https://github.com/eGust/xml-plus.chrome-extension
URL da Página de Ajuda https://github.com/eGust/xml-plus.chrome-extension/issues
Idiomas Suportados 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"
    ]
}