XML Plus

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

XML Plus란 무엇입니까?

XML Plus은(는) eGust에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A powerful XML Viewer, supports text/regex and jQuery/CSS, XPath selectors"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

XML Plus 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}