Rainbow JSON Formatter

Makes JSON easy to read. Open source.

Rainbow JSON Formatter क्या है?

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

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

screenshot
screenshot

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

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

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

                        Makes JSON easy to read by formatting it and apply different colors for bracket pairs.

=== Features ===

- JSON & JSONP support
- Rainbow colors for bracket pairs
- Syntax highlighting with 36 light and dark themes 
- Line numbers 
- Clickable URLs
- Toggle between raw and parsed JSON 
- Works on local files too (if you enable this in chrome://extension)
- You can inspect the JSON by typing "json" in the console 


Note: This extension might clash with other JSON beautifiers, make sure you're using only one of them.

=== Privacy ===

No tracking, no advertising.

=== Source Code ===

https://github.com/vitozev/rainbow-json-formatter

=== Bugs & Improvement Requests

https://github.com/vitozev/rainbow-json-formatter/issues

=== Pro Tip ===

Hold down the Ctrl (or Cmd on Mac) key while collapsing a tree if you want to collapse all its siblings as well.                    

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

नाम Rainbow JSON Formatter Rainbow JSON Formatter
ID dbiolbddipbicaokllijphafkgbedhcm
आधिकारिक URL https://chromewebstore.google.com/detail/rainbow-json-formatter/dbiolbddipbicaokllijphafkgbedhcm
विवरण Makes JSON easy to read. Open source.
फ़ाइल का आकार 52.65 KB
स्थापना संख्या 866
वर्तमान संस्करण 0.1.2
अंतिम अपडेट 2020-12-02
प्रकाशन तिथि 2020-10-06
रेटिंग 4.33/5 कुल 6 रेटिंग्स
डेवलपर vitozev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/vitozev/rainbow-json-formatter
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rainbow JSON Formatter",
    "version": "0.1.2",
    "manifest_version": 2,
    "description": "Makes JSON easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/vitozev\/json-formatter",
    "author": "Kristian Vitozev",
    "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",
        "*:\/\/*\/*",
        ""
    ]
}