XHR Request Interceptor

Redirect XHR requests and change their headers

What is XHR Request Interceptor?

XHR Request Interceptor is a Chrome extension developed by gabriel.annell, and its main feature is "Redirect XHR requests and change their headers".

Extension Screenshots

screenshot

Download XHR Request Interceptor Extension CRX File

Download XHR Request Interceptor 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

                        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.                    

Extension Basic Information

Name XHR Request Interceptor XHR Request Interceptor
ID mkmcbagfkbbbkdcapjmaghhgbenmielk
Official URL https://chromewebstore.google.com/detail/xhr-request-interceptor/mkmcbagfkbbbkdcapjmaghhgbenmielk
Description Redirect XHR requests and change their headers
File Size 574 KB
Installation Count 101
Current Version 1.0.0
Last Updated 2023-05-12
Publish Date 2022-03-22
Developer gabriel.annell
Email [email protected]
Payment Type free
Extension Website https://github.com/LGabAnnell/xhr-request-interceptor
Supported Languages 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"
    }
}