XHR Request Interceptor
Redirect XHR requests and change their headers
什么是XHR Request Interceptor?
XHR Request Interceptor是由gabriel.annell开发的Chrome扩展程序,该扩展的主要功能是“Redirect XHR requests and change their headers”。
扩展截图
下载XHR Request Interceptor扩展crx文件
下载XHR Request Interceptor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Redirect XHR requests and modify headers from any front-end application to wherever you want! Easy to use interface and supports regex (RE2). Especially useful for full-stack devs: Redirect from any environment to test your back-end developments.
扩展基本信息
名称 | XHR Request Interceptor |
ID | mkmcbagfkbbbkdcapjmaghhgbenmielk |
官方URL | https://chromewebstore.google.com/detail/xhr-request-interceptor/mkmcbagfkbbbkdcapjmaghhgbenmielk |
简介 | Redirect XHR requests and change their headers |
文件大小 | 574 KB |
安装次数 | 101 |
当前版本 | 1.0.0 |
更新时间 | 2023-05-12 |
上架时间 | 2022-03-22 |
开发者 | gabriel.annell |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/LGabAnnell/xhr-request-interceptor |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "XHR Request Interceptor", "description": "Redirect XHR requests and change their headers", "version": "1.0.0", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Edit rules" }, "permissions": [ "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" } } |