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 |
电子邮箱 | [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:\/\/*\/*" ] } |