JSON-handle

It's a browser and editor for JSON document.You can get a beautiful view

JSON-handle क्या है?

JSON-handle https://jsonhandle.sinaapp.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "It's a browser and editor for JSON document.You can get a beautiful view"।

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

screenshot
screenshot
screenshot

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

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

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

                        对JSON格式的内容进行浏览和编辑,以树形图样式展现JSON文档,并可实时编辑。

Edit and browse JSON document in a node tree diagram.

After installed, open the URL will trigger JSON-handle:
安装后打开下面网址可以看到JSON-handle启动的效果:
http://jsonhandle.sinaapp.com/demo.json                    

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

नाम JSON-handle JSON-handle
ID iahnhfdhidomcpggpaimmmahffihkfnj
आधिकारिक URL https://chromewebstore.google.com/detail/json-handle/iahnhfdhidomcpggpaimmmahffihkfnj
विवरण It's a browser and editor for JSON document.You can get a beautiful view
फ़ाइल का आकार 193 KB
स्थापना संख्या 207,603
वर्तमान संस्करण 0.6.2
अंतिम अपडेट 2021-12-22
प्रकाशन तिथि 2020-03-11
रेटिंग 4.79/5 कुल 442 रेटिंग्स
डेवलपर https://jsonhandle.sinaapp.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://jsonhandle.sinaapp.com/
सहायता पृष्ठ URL http://jsonhandle.sinaapp.com/
गोपनीयता नीति पृष्ठ URL https://jsonhandle.sinaapp.com
समर्थित भाषाएँ en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSON-handle",
    "version": "0.6.2",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "description": "It's a browser and editor for JSON document.You can get a beautiful view",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_title": "JSON-handle",
        "default_icon": "logo16.png"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "JSON-handle\/JSON-handle.html",
        "options.html"
    ],
    "offline_enabled": true,
    "permissions": [
        "contextMenus",
        "webRequest",
        "tabs",
        ""
    ],
    "default_locale": "en"
}