HAR Recorder

Records network request and generates HAR file.

ما هو HAR Recorder؟

HAR Recorder هو إضافة Chrome تم تطويرها بواسطة nishantmc، والميزة الرئيسية لها هي "Records network request and generates HAR file.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة HAR Recorder

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

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

                        har-recorder
Chrome extension to record network request and generates HAR file.

Uses https://github.com/cyrus-and/chrome-har-capturer to handle requests.                    

معلومات أساسية عن التمديد

الاسم HAR Recorder HAR Recorder
ID emfabjnfjiknifjlfpjobbecfepplhkd
عنوان URL الرسمي https://chromewebstore.google.com/detail/har-recorder/emfabjnfjiknifjlfpjobbecfepplhkd
الوصف Records network request and generates HAR file.
حجم الملف 22.29 KB
عدد التثبيتات 991
النسخة الحالية 1.5
آخر تحديث 2022-06-07
تاريخ النشر 2021-08-02
تقييم 3.00/5 مجموع تقييمات 1
المطور nishantmc
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/nishantmc/har-recorder
عنوان صفحة المساعدة https://github.com/nishantmc/har-recorder
عنوان صفحة سياسة الخصوصية https://www.privacypolicies.com/live/43ff5382-2a30-42b0-bef8-acaf8899c347
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HAR Recorder",
    "description": "Records network request and generates HAR file.",
    "version": "1.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "icons8-record-16.png",
            "32": "icons8-record-32.png",
            "48": "icons8-record-48.png",
            "64": "icons8-record-64.png",
            "128": "icons8-record-100.png"
        }
    },
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "storage",
        "debugger",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ]
}