JSON Viewer

Port of Firefox's JSON Viewer

JSON Viewer क्या है?

JSON Viewer Rongjian Zhang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Port of Firefox's JSON Viewer"।

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

screenshot

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

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

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

                        This is a port of Firefox's JSON Viewer

If you open a JSON file in the browser, it is parsed and given syntax highlighting. Arrays and objects are shown collapsed, and you can expand them using the "+" icons.

Source code:
https://github.com/pd4d10/json-viewer                    

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

नाम JSON Viewer JSON Viewer
ID efknglbfhoddmmfabeihlemgekhhnabb
आधिकारिक URL https://chromewebstore.google.com/detail/json-viewer/efknglbfhoddmmfabeihlemgekhhnabb
विवरण Port of Firefox's JSON Viewer
फ़ाइल का आकार 136 KB
स्थापना संख्या 38,037
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2023-09-17
प्रकाशन तिथि 2018-05-27
रेटिंग 4.75/5 कुल 40 रेटिंग्स
डेवलपर Rongjian Zhang
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/pd4d10/json-viewer
सहायता पृष्ठ URL https://github.com/pd4d10/json-viewer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "version": "2.1.0",
    "description": "Port of Firefox's JSON Viewer",
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/pd4d10\/json-viewer",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}