XHR Request Interceptor
Redirect XHR requests and change their headers
Co je XHR Request Interceptor?
XHR Request Interceptor je rozšíření Chrome vyvinuté gabriel.annell, a jeho hlavní funkcí je „Redirect XHR requests and change their headers“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření XHR Request Interceptor
Stáhněte si soubory rozšíření XHR Request Interceptor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | XHR Request Interceptor |
ID | mkmcbagfkbbbkdcapjmaghhgbenmielk |
Oficiální URL | https://chromewebstore.google.com/detail/xhr-request-interceptor/mkmcbagfkbbbkdcapjmaghhgbenmielk |
Popis | Redirect XHR requests and change their headers |
Velikost souboru | 574 KB |
Počet instalací | 101 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2023-05-12 |
Datum Vydání | 2022-03-22 |
Vývojář | gabriel.annell |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/LGabAnnell/xhr-request-interceptor |
Podporované Jazyky | 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" } } |