HAR/JSON viewer

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

Vad är HAR/JSON viewer?

HAR/JSON viewer är en Chrome-tillägg utvecklad av Savr Goryaev, och dess huvudfunktion är "Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner HAR/JSON viewer-förlängningens CRX-fil

Ladda ner HAR/JSON viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn HAR/JSON viewer HAR/JSON viewer
ID bghceahjdhjncoohgobeohgnmfnooibd
Officiell webbadress https://chromewebstore.google.com/detail/harjson-viewer/bghceahjdhjncoohgobeohgnmfnooibd
Beskrivning Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.
Filstorlek 133 KB
Antal Installationer 6,504
Aktuell Version 1.5.0
Senast Uppdaterad 2021-10-28
Publiceringsdatum 2020-09-15
Betyg 4.20/5 Totalt 5 Betyg
Utvecklare Savr Goryaev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/hindmost/har-viewer-extension
Stödda Språk 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"
    }
}