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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ https://github.com/nishantmc/har-recorder
URL หน้านโยบายความเป็นส่วนตัว 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:\/\/*\/*"
    ]
}