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!

Cos'è DOM to JSON Converter?

DOM to JSON Converter è un'estensione di Chrome sviluppata da victor013, e la sua funzione principale è "The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione DOM to JSON Converter

Scarica i file di estensione DOM to JSON Converter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome DOM to JSON Converter DOM to JSON Converter
ID eipknbkoepfidigecmlofhmhlecmhfcj
URL Ufficiale https://chromewebstore.google.com/detail/dom-to-json-converter/eipknbkoepfidigecmlofhmhlecmhfcj
Descrizione The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!
Dimensione del File 18.23 KB
Conteggio Installazioni 428
Versione Corrente 1.1
Ultimo Aggiornamento 2017-08-16
Data di Pubblicazione 2017-08-15
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore victor013
Tipo di Pagamento free
Lingue Supportate 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"
    }
}