JSON Lite

Fast JSON viewer - highlights, shows items count/size, handles large files

JSON Lite क्या है?

JSON Lite Lauri Rooden द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fast JSON viewer - highlights, shows items count/size, handles large files"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Features:

 - Format JSON/JSONP responses and clipboard
 - Select and format/encode/decode text on every page
 - Collapsible arrays, objects and long values
 - Collapse all childs with Ctrl(Command) + Click
 - Collapse property also on all sibling items with Alt(Option) + Click
 - Count items and properties in a collection
 - Show collection sizes
 - Do its best to show large (10MB+) JSON files
 - Do its best to show invalid JSON files
 - Do not sort objects with numeric keys
 - Do not round large numbers
 - "Save as..." saves the original JSON document
 - Select and copy a working JSON from the formatted JSON

Copyright (c) 2016-2023 Lauri Rooden  
The MIT License                    

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

नाम JSON Lite JSON Lite
ID acacmjcicejlmjcheoklfdchempahoag
आधिकारिक URL https://chromewebstore.google.com/detail/json-lite/acacmjcicejlmjcheoklfdchempahoag
विवरण Fast JSON viewer - highlights, shows items count/size, handles large files
फ़ाइल का आकार 21.82 KB
स्थापना संख्या 10,498
वर्तमान संस्करण 23.5.0
अंतिम अपडेट 2023-05-20
प्रकाशन तिथि 2019-06-18
रेटिंग 4.88/5 कुल 48 रेटिंग्स
डेवलपर Lauri Rooden
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/lauriro/json-lite
सहायता पृष्ठ URL https://github.com/lauriro/json-lite/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Lite",
    "version": "23.5.0",
    "author": "Lauri Rooden",
    "description": "Fast JSON viewer - highlights, shows items count\/size, handles large files",
    "icons": {
        "128": "img\/icon-128.png",
        "48": "img\/icon-48.png",
        "32": "img\/icon-32.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_icon": {
            "48": "img\/icon-48.png"
        },
        "default_popup": "options.html?p"
    }
}