XHR Request Interceptor

Redirect XHR requests and change their headers

Что такое XHR Request Interceptor?

XHR Request Interceptor - это расширение Chrome, разработанное gabriel.annell, и его основная функция - "Redirect XHR requests and change their headers".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения XHR Request Interceptor

Скачайте файлы расширений 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
Официальный 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
Электронная почта [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"
    }
}