HAR/JSON viewer

Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.

什麼是HAR/JSON viewer?

HAR/JSON viewer是由Savr Goryaev開發的Chrome擴展程式,該擴展的主要功能是“Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.”。

擴展截圖

screenshot
screenshot
screenshot

下載HAR/JSON viewer擴展crx文件

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

擴展使用說明

                        Embedded HAR/JSON viewer. Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files. Allows to switch between HAR (if available), JSON tree and plain (original) views.
Note: In order to get this viewer working with local files you have to grant the respective permission: chrome://extensions -> HAR/JSON viewer -> Details -> Allow access to File URLs.                    

擴展基本資訊

名稱 HAR/JSON viewer HAR/JSON viewer
ID bghceahjdhjncoohgobeohgnmfnooibd
官方網址 https://chromewebstore.google.com/detail/harjson-viewer/bghceahjdhjncoohgobeohgnmfnooibd
簡介 Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.
檔案大小 133 KB
安裝次數 6,504
目前版本 1.5.0
更新時間 2021-10-28
上架時間 2020-09-15
評分 4.20/5 共 5 次評分
開發者 Savr Goryaev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/hindmost/har-viewer-extension
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "HAR\/JSON viewer",
    "description": "Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.",
    "version": "1.5.0",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon-colored-16.png",
        "32": "icon-colored-32.png",
        "64": "icon-colored-64.png",
        "128": "icon-colored-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "harviewer\/*",
                "connection.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon-colored-16.png",
            "32": "icon-colored-32.png"
        },
        "default_title": "HAR\/JSON viewer"
    }
}