Request Interceptor
Request Interceptor Extension for Chrome.
什么是Request Interceptor?
Request Interceptor是由beDev开发的Chrome扩展程序,该扩展的主要功能是“Request Interceptor Extension for Chrome.”。
扩展截图
下载Request Interceptor扩展crx文件
下载Request Interceptor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Request Interceptor provides you to intercept HTTP/HTTPS request packets. After intercepting, those request packets you can:
- Forward intercepted requests,
- Drop intercepted requests,
- Modify header values,
- Modify POST data,
- Add customized request headers,
- Delete customized request headers,
- Save request details as a JSON file,
- Copy URLs from requests,
- Pick which resource types to intercept,
- Browse request history. 扩展基本信息
| 名称 | |
| ID | hkkjcknodnahjdnemannhkhnfedifkoh |
| 官方URL | https://chromewebstore.google.com/detail/request-interceptor/hkkjcknodnahjdnemannhkhnfedifkoh |
| 简介 | Request Interceptor Extension for Chrome. |
| 文件大小 | 23.97 KB |
| 安装次数 | 1,007 |
| 当前版本 | 1.0 |
| 更新时间 | 2021-07-01 |
| 上架时间 | 2021-06-30 |
| 评分 | 4.25/5 共12次评分 |
| 开发者 | beDev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Request Interceptor",
"description": "Request Interceptor Extension for Chrome.",
"version": "1.0",
"manifest_version": 2,
"background": {
"scripts": [
"js\/background.js"
]
},
"browser_action": {
"default_title": "Request Interceptor",
"default_icon": {
"16": "\/icons\/icon16.png",
"32": "\/icons\/icon32.png",
"48": "\/icons\/icon48.png",
"128": "\/icons\/icon128.png"
}
},
"icons": {
"16": "\/icons\/icon16.png",
"32": "\/icons\/icon32.png",
"48": "\/icons\/icon48.png",
"128": "\/icons\/icon128.png"
},
"permissions": [
"debugger",
"storage",
"unlimitedStorage"
]
} | |