HAR Recorder
Records network request and generates HAR file.
What is HAR Recorder?
HAR Recorder is a Chrome extension developed by nishantmc, and its main feature is "Records network request and generates HAR file.".
Extension Screenshots
Download HAR Recorder Extension CRX File
Download HAR Recorder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
har-recorder Chrome extension to record network request and generates HAR file. Uses https://github.com/cyrus-and/chrome-har-capturer to handle requests.
Extension Basic Information
Name | HAR Recorder |
ID | emfabjnfjiknifjlfpjobbecfepplhkd |
Official URL | https://chromewebstore.google.com/detail/har-recorder/emfabjnfjiknifjlfpjobbecfepplhkd |
Description | Records network request and generates HAR file. |
File Size | 22.29 KB |
Installation Count | 991 |
Current Version | 1.5 |
Last Updated | 2022-06-07 |
Publish Date | 2021-08-02 |
Rating | 3.00/5 Total 1 Ratings |
Developer | nishantmc |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/nishantmc/har-recorder |
Help Page URL | https://github.com/nishantmc/har-recorder |
Privacy Policy Page URL | https://www.privacypolicies.com/live/43ff5382-2a30-42b0-bef8-acaf8899c347 |
Supported Languages | 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:\/\/*\/*" ] } |