DJSON. JSON Viewer & Formatter

Extension to format and view JSON, from Web, Input or File.

DJSON. JSON Viewer & Formatter क्या है?

DJSON. JSON Viewer & Formatter dar.desantis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension to format and view JSON, from Web, Input or File."।

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

screenshot
screenshot
screenshot

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

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

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

                        FEATURES
* Format JSON and JSONP input or responses
* Minify or Beautify JSON
* Theme support
* Syntax highlighting
* Collapsible trees, with indent guides
* Recursive collapsible elements
* Clickable URLs
* Toggle between raw and parsed JSON
* Line numbers
* Works on any valid JSON page – URL doesn't matter
* Works on local files too (if you enable this in `chrome://extensions`)
* You can inspect the JSON by typing `djson` in the console
* Counts items and properties in a collection
* Show JSON path of the elements on hover and copy it with the context menu
* Option to start with JSON collapsed (always or if the file is big)
* Recognize nested JSON strings in properties value
* Hashes, Encode, Time Strings, Numbers utils

Pro Tip
* Hold down control (or cmd on Mac) while collapsing a tree if you want to collapse all its siblings too.
* Hold down shift while collapsing a tree if you want to collapse also all his children                    

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

नाम DJSON. JSON Viewer & Formatter DJSON. JSON Viewer & Formatter
ID chaeijjekipecdajnijdldjjipaegdjc
आधिकारिक URL https://chromewebstore.google.com/detail/djson-json-viewer-formatt/chaeijjekipecdajnijdldjjipaegdjc
विवरण Extension to format and view JSON, from Web, Input or File.
फ़ाइल का आकार 126 KB
स्थापना संख्या 11,969
वर्तमान संस्करण 0.6.0
अंतिम अपडेट 2019-03-23
प्रकाशन तिथि 2019-03-23
रेटिंग 4.77/5 कुल 66 रेटिंग्स
डेवलपर dar.desantis
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dardesantis/DJSON-Viewer
सहायता पृष्ठ URL https://github.com/dardesantis/DJSON-Viewer/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DJSON. JSON Viewer & Formatter",
    "short_name": "DJSON Viewer",
    "version": "0.6.0",
    "manifest_version": 2,
    "description": "Extension to format and view JSON, from Web, Input or File.",
    "homepage_url": "https:\/\/github.com\/dardesantis\/DJSON-Viewer",
    "minimum_chrome_version": "35",
    "offline_enabled": true,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/32.png"
        },
        "default_title": "DJSON Viewer",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "popup.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "clipboardWrite",
        "tabs",
        "contextMenus"
    ]
}