DOM to JSON Selector

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

Was ist DOM to JSON Selector?

DOM to JSON Selector ist eine Chrome-Erweiterung, die von victor013 entwickelt wurde, und ihr Hauptmerkmal ist "The tool extracts element details for highlighted component of webpage DOM.".

Erweiterungsscreenshots

screenshot
screenshot

DOM to JSON Selector-Erweiterungs-CRX-Datei herunterladen

Laden Sie DOM to JSON Selector-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 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.                    

Grundlegende Informationen zur Erweiterung

Name DOM to JSON Selector DOM to JSON Selector
ID mgnnbcacopddmbmikjmhadpchchcekln
Offizielle URL https://chromewebstore.google.com/detail/dom-to-json-selector/mgnnbcacopddmbmikjmhadpchchcekln
Beschreibung The tool extracts element details for highlighted component of webpage DOM.
Dateigröße 48.55 KB
Installationsanzahl 384
Aktuelle Version 1.1
Letztes Update 2017-08-16
Veröffentlichungsdatum 2017-08-15
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 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"
    }
}