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”。

擴展截圖

screenshot

下載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 XHR Request Interceptor
ID mkmcbagfkbbbkdcapjmaghhgbenmielk
官方網址 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"
    }
}