HAR/JSON viewer

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

Cos'è HAR/JSON viewer?

HAR/JSON viewer è un'estensione di Chrome sviluppata da Savr Goryaev, e la sua funzione principale è "Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione HAR/JSON viewer

Scarica i file di estensione HAR/JSON viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome HAR/JSON viewer HAR/JSON viewer
ID bghceahjdhjncoohgobeohgnmfnooibd
URL Ufficiale https://chromewebstore.google.com/detail/harjson-viewer/bghceahjdhjncoohgobeohgnmfnooibd
Descrizione Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.
Dimensione del File 133 KB
Conteggio Installazioni 6,504
Versione Corrente 1.5.0
Ultimo Aggiornamento 2021-10-28
Data di Pubblicazione 2020-09-15
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore Savr Goryaev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/hindmost/har-viewer-extension
Lingue Supportate 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"
    }
}