XHR Request Interceptor

Redirect XHR requests and change their headers

Cos'è XHR Request Interceptor?

XHR Request Interceptor è un'estensione di Chrome sviluppata da gabriel.annell, e la sua funzione principale è "Redirect XHR requests and change their headers".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione XHR Request Interceptor

Scarica i file di estensione XHR Request Interceptor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome XHR Request Interceptor XHR Request Interceptor
ID mkmcbagfkbbbkdcapjmaghhgbenmielk
URL Ufficiale https://chromewebstore.google.com/detail/xhr-request-interceptor/mkmcbagfkbbbkdcapjmaghhgbenmielk
Descrizione Redirect XHR requests and change their headers
Dimensione del File 574 KB
Conteggio Installazioni 101
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-05-12
Data di Pubblicazione 2022-03-22
Sviluppatore gabriel.annell
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/LGabAnnell/xhr-request-interceptor
Lingue Supportate 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"
    }
}