JSONView

View JSON documents in the browser.

什麼是JSONView?

JSONView是由https://jsonview.com開發的Chrome擴展程式,該擴展的主要功能是“View JSON documents in the browser.”。

擴展截圖

screenshot

下載JSONView擴展crx文件

下載JSONView擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Normally when encountering a JSON document (content type "application/json"), the browser simply shows plain text. With the JSONView extension, JSON documents are formatted, highlighted, and arrays and objects can be collapsed. Even if the JSON document contains errors, JSONView will still show the raw text. Once you've got JSONView installed, check out http://jsonview.com/example.json to see the extension in action!                    

擴展基本資訊

名稱 JSONView JSONView
ID gmegofmjomhknnokphhckolhcffdaihd
官方網址 https://chromewebstore.google.com/detail/jsonview/gmegofmjomhknnokphhckolhcffdaihd
簡介 View JSON documents in the browser.
檔案大小 84.08 KB
安裝次數 212,006
目前版本 2.6.1
更新時間 2024-01-11
上架時間 2019-03-16
評分 4.10/5 共 29 次評分
開發者 https://jsonview.com
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://github.com/bhollis/jsonview/issues
支援的語言 id,de,en,fr,nl,tr,ca,es,it,hu,pt-BR,sv,cs,sr,bg,ru,uk,hi,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSONView",
    "version": "2.6.1",
    "description": "__MSG_extensionDescription__",
    "author": "Benjamin Hollis",
    "homepage_url": "https:\/\/jsonview.com\/",
    "icons": {
        "32": "icon.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "web_accessible_resources": [
        "viewer.css",
        "viewer.js"
    ],
    "default_locale": "en"
}