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!
Qu'est-ce que DOM to JSON Converter ?
DOM to JSON Converter est une extension Chrome développée par victor013, et sa fonction principale est "The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension DOM to JSON Converter
Téléchargez les fichiers d'extension DOM to JSON Converter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | DOM to JSON Converter |
ID | eipknbkoepfidigecmlofhmhlecmhfcj |
URL Officiel | https://chromewebstore.google.com/detail/dom-to-json-converter/eipknbkoepfidigecmlofhmhlecmhfcj |
Description | The tool extracts element details (name, url, id, depth, value, alt, src and href) from webpage DOM. Works for iframes, too! |
Taille du Fichier | 18.23 KB |
Nombre d'Installations | 428 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2017-08-16 |
Date de Publication | 2017-08-15 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | victor013 |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |