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!
Was ist DOM to JSON Converter?
DOM to JSON Converter ist eine Chrome-Erweiterung, die von victor013 entwickelt wurde, und ihr Hauptmerkmal ist "The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!".
Erweiterungsscreenshots
DOM to JSON Converter-Erweiterungs-CRX-Datei herunterladen
Laden Sie DOM to JSON Converter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | DOM to JSON Converter |
ID | eipknbkoepfidigecmlofhmhlecmhfcj |
Offizielle URL | https://chromewebstore.google.com/detail/dom-to-json-converter/eipknbkoepfidigecmlofhmhlecmhfcj |
Beschreibung | The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too! |
Dateigröße | 18.23 KB |
Installationsanzahl | 428 |
Aktuelle Version | 1.1 |
Letztes Update | 2017-08-16 |
Veröffentlichungsdatum | 2017-08-15 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | victor013 |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |