JSON Viewer

Makes JSON response easy to read.

什麼是JSON Viewer?

JSON Viewer是由https://timleland.com開發的Chrome擴展程式,該擴展的主要功能是“Makes JSON response easy to read.”。

擴展截圖

screenshot

下載JSON Viewer擴展crx文件

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

擴展使用說明

                        Open source JSON viewer
FEATURES
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON

Source: https://github.com/timleland/Json-Viewer-Extension                    

擴展基本資訊

名稱 JSON Viewer JSON Viewer
ID bbdgkoocgebebgihgkhfhlpekclhmfem
官方網址 https://chromewebstore.google.com/detail/json-viewer/bbdgkoocgebebgihgkhfhlpekclhmfem
簡介 Makes JSON response easy to read.
檔案大小 59.51 KB
安裝次數 4,749
目前版本 2.0.0
更新時間 2022-02-24
上架時間 2020-09-13
評分 5.00/5 共 1 次評分
開發者 https://timleland.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://timleland.com/json-viewer-extension/
說明頁面URL https://timleland.com/contact/
隱私政策頁面URL https://t.ly/privacy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Viewer",
    "homepage_url": "https:\/\/timleland.com\/json-viewer-extension",
    "description": "Makes JSON response easy to read.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery-3.3.1.min.js",
                "vendor\/json-viewer\/jquery.json-viewer.js",
                "js\/main.js"
            ],
            "css": [
                "vendor\/json-viewer\/jquery.json-viewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}