JSON Hero

A beautiful JSON explorer packed with features

什麼是JSON Hero?

JSON Hero是由https://jsonhero.io開發的Chrome擴展程式,該擴展的主要功能是“A beautiful JSON explorer packed with features”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載JSON Hero擴展crx文件

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

擴展使用說明

                        JSON Hero is an open-source, beautiful JSON explorer for the web that lets you browse, search and navigate your JSON files at speed.

The JSON Hero Chrome extension allows you to quickly send JSON to view in JSON Hero. Or turn on *auto-mode and any pure JSON responses in Chrome will be transformed into a JSON Hero view.

This extension will also allow you to send JSON from a Github file or a Firestore document right to JSON Hero. Just activate the extension in the toolbar whenever you are viewing a JSON GitHub file or a Firestore document in the Firestore console and they'll open in JSON Hero.

* By turning on auto-mode any pure JSON responses will be automatically sent to jsonhero.io. If you are running a custom instance of JSON Hero, you can change the server URL in the extension settings.                    

擴展基本資訊

名稱 JSON Hero JSON Hero
ID dneionnnnjnofppmhcccbiaklandilch
官方網址 https://chromewebstore.google.com/detail/json-hero/dneionnnnjnofppmhcccbiaklandilch
簡介 A beautiful JSON explorer packed with features
檔案大小 868 KB
安裝次數 1,665
目前版本 0.0.1
更新時間 2022-06-05
上架時間 2022-06-04
評分 4.43/5 共 7 次評分
開發者 https://jsonhero.io
電子郵箱 [email protected]
付費類型 free
擴展官網 https://jsonhero.io
隱私政策頁面URL https://jsonhero.io/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "JSON Hero",
    "description": "A beautiful JSON explorer packed with features",
    "version": "0.0.1",
    "author": "Eric Allam",
    "options_page": "options.html",
    "background": {
        "service_worker": "build\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "24": "icon-24.png",
            "32": "icon-32.png"
        }
    },
    "icons": {
        "512": "icon-512.png",
        "128": "icon-128.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "16": "icon-16.png"
    },
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "build\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [],
            "matches": []
        }
    ]
}