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!
Vad är DOM to JSON Converter?
DOM to JSON Converter är en Chrome-tillägg utvecklad av victor013, och dess huvudfunktion är "The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!".
Tilläggsskärmbilder
Ladda ner DOM to JSON Converter-förlängningens CRX-fil
Ladda ner DOM to JSON Converter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | DOM to JSON Converter |
ID | eipknbkoepfidigecmlofhmhlecmhfcj |
Officiell webbadress | https://chromewebstore.google.com/detail/dom-to-json-converter/eipknbkoepfidigecmlofhmhlecmhfcj |
Beskrivning | The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too! |
Filstorlek | 18.23 KB |
Antal Installationer | 428 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2017-08-16 |
Publiceringsdatum | 2017-08-15 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | victor013 |
Betalningssätt | free |
Stödda Språk | 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" } } |