HAR Recorder

Records network request and generates HAR file.

HAR Recorder란 무엇입니까?

HAR Recorder은(는) nishantmc에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Records network request and generates HAR file."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

HAR Recorder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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:\/\/*\/*"
    ]
}