JSON Viewer Pro

A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…

什麼是JSON Viewer Pro?

JSON Viewer Pro是由Rahul Baruri開發的Chrome擴展程式,該擴展的主要功能是“A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…”。

擴展截圖

screenshot
screenshot
screenshot

下載JSON Viewer Pro擴展crx文件

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

擴展使用說明

                        A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options.

 ✅ Completely Free and no advertisements.

Core features:

✅ Beautify JSON response from API
✅ Visual representation of JSON with Chart
✅ Depth traversing of JSON property using breadcrumbs
✅ Write custom JSON in Input area
✅ Import local JSON file
✅ Download JSON file using Context Menu
✅ URL filters
✅ Change Themes
✅ Custom CSS
✅ Cool User Interface.
✅ Copy property and value
✅ Access JSON in your console using only json keyword                    

擴展基本資訊

名稱 JSON Viewer Pro JSON Viewer Pro
ID eifflpmocdbdmepbjaopkkhbfmdgijcc
官方網址 https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc
簡介 A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
檔案大小 338 KB
安裝次數 385,193
目前版本 1.0.1
更新時間 2021-03-21
上架時間 2020-10-04
評分 4.77/5 共 111 次評分
開發者 Rahul Baruri
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/rbrahul/Awesome-JSON-Viewer
說明頁面URL https://github.com/rbrahul/Awesome-JSON-Viewer
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Viewer Pro",
    "short_name": "JSON Viewer",
    "offline_enabled": true,
    "version": "1.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icons\/icon-16.png",
        "38": "images\/icons\/icon-32.png",
        "128": "images\/icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "\/js\/contentScript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "images\/icons\/icon-16.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "\/js\/main.js",
        "\/css\/main.css",
        "\/css\/themes\/mdn.css",
        "options.html",
        "images\/icons\/gear.png"
    ]
}