JSON Formatter

Makes JSON easy to read. Open source.

JSON Formatter क्या है?

JSON Formatter Nik Rolls द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes JSON easy to read. Open source."।

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

screenshot
screenshot

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

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

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

                        Makes JSON easy to read. Open source. A fork of the original (no-longer updated) extension by Callum Locke.

FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting with 36 light and dark themes
   •   Collapsible trees, with indent guides
   •   Line numbers
   •   Clickable URLs
   •   Toggle between raw and parsed JSON
   •   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 "json" in the console

(Note: this extension might clash with other JSON highlighters/beautifiers, like ‘JSONView’, ‘Pretty JSON’ or ‘Sight’ – disable those before trying this.)

PRO TIP
Hold down Ctrl (or Cmd on Mac) while collapsing a tree if you want to collapse all its siblings too.

PRIVACY
No tracking, no advertising, and nothing else nefarious.

SOURCE CODE
github.com/nikrolls/json-formatter

BUGS/SUGGESTIONS
github.com/nikrolls/json-formatter/issues

QUESTIONS
twitter.com/nikrolls                    

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

नाम JSON Formatter JSON Formatter
ID mhimpmpmffogbmmkmajibklelopddmjf
आधिकारिक URL https://chromewebstore.google.com/detail/json-formatter/mhimpmpmffogbmmkmajibklelopddmjf
विवरण Makes JSON easy to read. Open source.
फ़ाइल का आकार 40.9 KB
स्थापना संख्या 45,977
वर्तमान संस्करण 0.10.0
अंतिम अपडेट 2017-05-08
प्रकाशन तिथि 2017-05-08
रेटिंग 4.35/5 कुल 65 रेटिंग्स
डेवलपर Nik Rolls
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/nikrolls/json-formatter
सहायता पृष्ठ URL https://github.com/nikrolls/json-formatter/Issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter",
    "version": "0.10.0",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/nikrolls\/json-formatter",
    "author": "Nik Rolls, Callum Locke",
    "minimum_edge_version": "40",
    "minimum_chrome_version": "21",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        ""
    ]
}