JSON-handle

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

Cos'è JSON-handle?

JSON-handle è un'estensione di Chrome sviluppata da https://jsonhandle.sinaapp.com, e la sua funzione principale è "It's a browser and editor for JSON document.You can get a beautiful view".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione JSON-handle

Scarica i file di estensione JSON-handle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        对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                    

Informazioni di Base sull'Estensione

Nome JSON-handle JSON-handle
ID iahnhfdhidomcpggpaimmmahffihkfnj
URL Ufficiale https://chromewebstore.google.com/detail/json-handle/iahnhfdhidomcpggpaimmmahffihkfnj
Descrizione It's a browser and editor for JSON document.You can get a beautiful view
Dimensione del File 193 KB
Conteggio Installazioni 207,603
Versione Corrente 0.6.2
Ultimo Aggiornamento 2021-12-22
Data di Pubblicazione 2020-03-11
Valutazione 4.79/5 Totale 442 Valutazioni
Sviluppatore https://jsonhandle.sinaapp.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://jsonhandle.sinaapp.com/
URL della Pagina di Aiuto http://jsonhandle.sinaapp.com/
URL della Pagina della Politica sulla Privacy https://jsonhandle.sinaapp.com
Lingue Supportate 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"
}