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ファイルをダウンロード

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

拡張機能の使用方法

                        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"
    }
}