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 |
Eメール | [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" } } |