HAR/JSON viewer

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

O que é HAR/JSON viewer?

HAR/JSON viewer é uma extensão do Chrome desenvolvida por Savr Goryaev, e sua principal característica é "Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão HAR/JSON viewer

Baixe arquivos de extensão HAR/JSON viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome HAR/JSON viewer HAR/JSON viewer
ID bghceahjdhjncoohgobeohgnmfnooibd
URL Oficial https://chromewebstore.google.com/detail/harjson-viewer/bghceahjdhjncoohgobeohgnmfnooibd
Descrição Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.
Tamanho do Arquivo 133 KB
Contagem de Instalações 6,504
Versão Atual 1.5.0
Última Atualização 2021-10-28
Data de Publicação 2020-09-15
Classificação 4.20/5 Total de 5 Avaliações
Desenvolvedor Savr Goryaev
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/hindmost/har-viewer-extension
Idiomas Suportados 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"
    }
}