DOM to JSON Selector

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

DOM to JSON Selector क्या है?

DOM to JSON Selector victor013 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The tool extracts element details for highlighted component of webpage DOM."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DOM to JSON Selector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम DOM to JSON Selector DOM to JSON Selector
ID mgnnbcacopddmbmikjmhadpchchcekln
आधिकारिक URL https://chromewebstore.google.com/detail/dom-to-json-selector/mgnnbcacopddmbmikjmhadpchchcekln
विवरण The tool extracts element details for highlighted component of webpage DOM.
फ़ाइल का आकार 48.55 KB
स्थापना संख्या 384
वर्तमान संस्करण 1.1
अंतिम अपडेट 2017-08-16
प्रकाशन तिथि 2017-08-15
डेवलपर victor013
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}