DOM to JSON Selector

The tool extracts element details for highlighted component of webpage DOM.

Qu'est-ce que DOM to JSON Selector ?

DOM to JSON Selector est une extension Chrome développée par victor013, et sa fonction principale est "The tool extracts element details for highlighted component of webpage DOM.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension DOM to JSON Selector

Téléchargez les fichiers d'extension DOM to JSON Selector 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 Selector" is a modified version of the "DOM to JSON Converter" Extension. The selector allows users to choose a specific element. Just click on the extension icon and hover over the webpage. As you hover over an element, it would highlighted. Click on the element you would like to get the DOM-JSON of.

The extension would then extract the node name, depth, id, src, href, alt and text content of the selected element and it's children.                    

Informations de Base sur l'Extension

Nom DOM to JSON Selector DOM to JSON Selector
ID mgnnbcacopddmbmikjmhadpchchcekln
URL Officiel https://chromewebstore.google.com/detail/dom-to-json-selector/mgnnbcacopddmbmikjmhadpchchcekln
Description The tool extracts element details for highlighted component of webpage DOM.
Taille du Fichier 48.55 KB
Nombre d'Installations 384
Version Actuelle 1.1
Dernière Mise à Jour 2017-08-16
Date de Publication 2017-08-15
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 Selector",
    "version": "1.1",
    "description": "The tool extracts element details for highlighted component of webpage DOM.",
    "browser_action": {
        "default_title": "DOM-JSON Selector"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-3.2.1.min.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "offline_enabled": false,
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "css\/*.css",
        "js\/*.js"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}