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 هو إضافة Chrome تم تطويرها بواسطة Savr Goryaev، والميزة الرئيسية لها هي "Visualizes HTTP Archive (HAR) files opened locally or online. Also features JSON tree view for HAR and any structured JSON files.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة HAR/JSON viewer

قم بتنزيل ملفات الامتداد HAR/JSON viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان URL الرسمي 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"
    }
}