JSON Viewer

Port of Firefox's JSON Viewer

什麼是JSON Viewer?

JSON Viewer是由Rongjian Zhang開發的Chrome擴展程式,該擴展的主要功能是“Port of Firefox's JSON Viewer”。

擴展截圖

screenshot

下載JSON Viewer擴展crx文件

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

擴展使用說明

                        This is a port of Firefox's JSON Viewer

If you open a JSON file in the browser, it is parsed and given syntax highlighting. Arrays and objects are shown collapsed, and you can expand them using the "+" icons.

Source code:
https://github.com/pd4d10/json-viewer                    

擴展基本資訊

名稱 JSON Viewer JSON Viewer
ID efknglbfhoddmmfabeihlemgekhhnabb
官方網址 https://chromewebstore.google.com/detail/json-viewer/efknglbfhoddmmfabeihlemgekhhnabb
簡介 Port of Firefox's JSON Viewer
檔案大小 136 KB
安裝次數 38,037
目前版本 2.1.0
更新時間 2023-09-17
上架時間 2018-05-27
評分 4.75/5 共 40 次評分
開發者 Rongjian Zhang
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/pd4d10/json-viewer
說明頁面URL https://github.com/pd4d10/json-viewer
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "version": "2.1.0",
    "description": "Port of Firefox's JSON Viewer",
    "offline_enabled": true,
    "homepage_url": "https:\/\/github.com\/pd4d10\/json-viewer",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ]
}