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. 擴展基本資訊
| 名稱 | |
| ID | emfabjnfjiknifjlfpjobbecfepplhkd |
| 官方網址 | 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:\/\/*\/*"
]
} | |