Seven JSON Viewer

Minimal JSON Viewer with JSON Path

Seven JSON Viewer क्या है?

Seven JSON Viewer https://reez.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Minimal JSON Viewer with JSON Path"।

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

screenshot
screenshot
screenshot

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

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

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

                        Minimal JSON Viewer with JSON Path Support.

Features
--------------
1. Syntax Highlighting
2. Collapsible tree for improved readability
3. Dark themed
4. Realtime JSON Path support
5. Multiple Themes

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.                    

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

नाम Seven JSON Viewer Seven JSON Viewer
ID cfahdpkjihoomfomffdbmamapgdpohoe
आधिकारिक URL https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe
विवरण Minimal JSON Viewer with JSON Path
फ़ाइल का आकार 228 KB
स्थापना संख्या 3,163
वर्तमान संस्करण 5.0
अंतिम अपडेट 2022-07-27
प्रकाशन तिथि 2020-03-17
रेटिंग 4.50/5 कुल 8 रेटिंग्स
डेवलपर https://reez.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://reez.dev/project/seven-json-viewer
सहायता पृष्ठ URL https://reez.dev/project/seven-json-viewer#support
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Seven JSON Viewer",
    "description": "Minimal JSON Viewer with JSON Path",
    "short_name": "JSON Viewer",
    "version": "5.0",
    "offline_enabled": true,
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png",
        "512": "assets\/icon-512.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}