JSON Viewer

Validates and makes JSON documents easy to read. Open source.

JSON Viewer क्या है?

JSON Viewer teocci द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Validates and makes JSON documents easy to read. Open source."।

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

screenshot
screenshot

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

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

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

                        JSONViewer port for Chrome is an updated version of Gildas' JSOnView extension. 

Features:
* Syntax highlighting
* Collapsible trees, with indent guides amd items count
* Clickable URL's
* JSON & JSONP support
* Toggle between raw and parsed JSON
* Works on any valid JSON page even on local files too (if you enable this in chrome://extensions)

Note: 
This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience.
 
Try it out on these URLs:
https://jsonplaceholder.typicode.com/todos/1    1 todo
https://jsonplaceholder.typicode.com/posts      100 posts
https://jsonplaceholder.typicode.com/comments   500 comments
https://jsonplaceholder.typicode.com/albums     100 albums
https://jsonplaceholder.typicode.com/photos     5000 photos
https://jsonplaceholder.typicode.com/todos      200 todos
https://jsonplaceholder.typicode.com/users      10 users


Original firefox extension is here: http://benhollis.net/software/jsonview/

Changes Logs:
============
v.1.0.3 - Removed console logs.

v.1.0.1 - Updated to Manifest V3. Minor bug fixes

v.0.8.17 - Removed Traffzilla for interfering with other websites

v.0.8.15 - Added Traffzilla due to Traffzilla's policies

v.0.8.13 - Removed Traffzilla for interfering with other websites

v.0.8.11 - Added Traffzilla and disclaimer

v.0.8.9 - Added Options menu. Minor bug fixes

V.0.8.7 - Removed Traffzila

v.0.8.5 - Added Traffzila

v.0.8.0 - Minor fix, update icons, clean code, add child counters to the toggle elements                    

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

नाम JSON Viewer JSON Viewer
ID aimiinbnnkboelefkjlenlgimcabobli
आधिकारिक URL https://chromewebstore.google.com/detail/json-viewer/aimiinbnnkboelefkjlenlgimcabobli
विवरण Validates and makes JSON documents easy to read. Open source.
फ़ाइल का आकार 104 KB
स्थापना संख्या 62,973
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2024-02-24
प्रकाशन तिथि 2019-01-29
रेटिंग 4.24/5 कुल 155 रेटिंग्स
डेवलपर teocci
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/teocci/JSONView-for-Chrome.git
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "short_name": "JSONViewer",
    "version": "1.0.3",
    "description": "Validates and makes JSON documents easy to read. Open source.",
    "homepage_url": "https:\/\/github.com\/teocci\/JSONView-for-Chrome",
    "minimum_chrome_version": "88",
    "icons": {
        "16": "assets\/images\/jsonview16.png",
        "48": "assets\/images\/jsonview48.png",
        "128": "assets\/images\/jsonview128.png"
    },
    "options_page": "assets\/options.html",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/options.html",
                "assets\/source.html",
                "assets\/css-editor.html",
                "assets\/css\/jsonview.css",
                "assets\/css\/jsonview-core.css",
                "assets\/css\/content-error.css",
                "assets\/images\/options.png",
                "assets\/images\/close.png",
                "assets\/images\/error.gif"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "clipboardWrite",
        "scripting",
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*",
        ""
    ]
}