HAR Recorder
Records network request and generates HAR file.
HAR Recorderとは何ですか?
HAR Recorderはnishantmcによって開発されたChromeの拡張機能で、その主な機能は「Records network request and generates HAR file.」です。
拡張機能のスクリーンショット
HAR Recorder拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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:\/\/*\/*" ] } |