DOM to JSON Converter

The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!

DOM to JSON Converter란 무엇입니까?

DOM to JSON Converter은(는) victor013에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

DOM to JSON Converter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The "DOM to JSON Converter" extracts limited information about all nodes (such as node name, it's depth in the tree, id, src, href, alt and it's text content) from a website's DOM (Document Object Model).

The nodes are all sequentially inserted into an array which is then downloaded as a JSON. The tool help users visualize and understand a website's DOM structure.                    

확장 프로그램 기본 정보

이름 DOM to JSON Converter DOM to JSON Converter
ID eipknbkoepfidigecmlofhmhlecmhfcj
공식 URL https://chromewebstore.google.com/detail/dom-to-json-converter/eipknbkoepfidigecmlofhmhlecmhfcj
설명 The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!
파일 크기 18.23 KB
설치 횟수 428
현재 버전 1.1
최근 업데이트 2017-08-16
출시 날짜 2017-08-15
평점 5.00/5 총 1 개의 평점
개발자 victor013
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DOM to JSON Converter",
    "version": "1.1",
    "description": "The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!",
    "browser_action": {
        "default_title": "Download DOM as JSON"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "offline_enabled": false,
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}