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
官方網址 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"
    }
}